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 PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Fri, 31 Aug 2018 01:34:27 +0300 From: Igor Stoppa <igor.stoppa@...il.com> To: linux-kernel@...r.kernel.org Cc: igor.stoppa@...il.com, Igor Stoppa <igor.stoppa@...wei.com>, Alexander Viro <viro@...iv.linux.org.uk> Subject: [PATCH 21/23] filesystems: remove unnecessary unlikely() WARN_ON() already contains an unlikely(), so it's not necessary to wrap it into another. Signed-off-by: Igor Stoppa <igor.stoppa@...wei.com> Cc: Alexander Viro <viro@...iv.linux.org.uk> --- fs/open.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/open.c b/fs/open.c index 0285ce7dbd51..19a9e4b378d3 100644 --- a/fs/open.c +++ b/fs/open.c @@ -750,7 +750,7 @@ static int do_dentry_open(struct file *f, f->f_mode |= FMODE_ATOMIC_POS; f->f_op = fops_get(inode->i_fop); - if (unlikely(WARN_ON(!f->f_op))) { + if (WARN_ON(!f->f_op)) { error = -ENODEV; goto cleanup_all; } -- 2.17.1
Powered by blists - more mailing lists