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: <62905e31f7483c8681286b90b121f0044163baed.1291923889.git.joe@perches.com> Date: Thu, 9 Dec 2010 12:04:04 -0800 From: Joe Perches <joe@...ches.com> To: Jan Kara <jack@...e.cz>, Andrew Morton <akpm@...ux-foundation.org>, Andreas Dilger <adilger.kernel@...ger.ca> Cc: Jiri Kosina <trivial@...nel.org>, linux-ext4@...r.kernel.org, linux-kernel@...r.kernel.org Subject: [PATCH 11/15] ext3: Remove duplicate unlikely from IS_ERR IS_ERR already uses unlikely, remove unlikely from the call sites. Signed-off-by: Joe Perches <joe@...ches.com> --- fs/ext3/namei.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fs/ext3/namei.c b/fs/ext3/namei.c index bce9dce..268f776 100644 --- a/fs/ext3/namei.c +++ b/fs/ext3/namei.c @@ -1047,7 +1047,7 @@ static struct dentry *ext3_lookup(struct inode * dir, struct dentry *dentry, str return ERR_PTR(-EIO); } inode = ext3_iget(dir->i_sb, ino); - if (unlikely(IS_ERR(inode))) { + if (IS_ERR(inode)) { if (PTR_ERR(inode) == -ESTALE) { ext3_error(dir->i_sb, __func__, "deleted inode referenced: %lu", -- 1.7.3.3.464.gf80b6 -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists