lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <20190411015850.GA10504@lkp-wsm-ep1> Date: Thu, 11 Apr 2019 09:58:50 +0800 From: kbuild test robot <lkp@...el.com> To: Mike Marshall <hubcap@...ibond.com> Cc: kbuild-all@...org, Martin Brandenburg <martin@...ibond.com>, devel@...ts.orangefs.org, linux-kernel@...r.kernel.org Subject: [RFC PATCH hubcap] orangefs: orangefs_file_open() can be static Fixes: 9a959aaffd70 ("orangefs: remember count when reading.") Signed-off-by: kbuild test robot <lkp@...el.com> --- file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/orangefs/file.c b/fs/orangefs/file.c index d198af9..01d0db6 100644 --- a/fs/orangefs/file.c +++ b/fs/orangefs/file.c @@ -571,7 +571,7 @@ static int orangefs_lock(struct file *filp, int cmd, struct file_lock *fl) return rc; } -int orangefs_file_open(struct inode * inode, struct file *file) +static int orangefs_file_open(struct inode * inode, struct file *file) { file->private_data = NULL; return generic_file_open(inode, file);
Powered by blists - more mailing lists