aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext4
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2010-12-19 21:38:46 -0500
committerTheodore Ts'o <tytso@mit.edu>2010-12-19 21:38:46 -0500
commit6ca7b13dea385484e2fcc89790b8030697c5014a (patch)
tree5dd8c1e46de01e91459c8a92e01274f598904769 /fs/ext4
parentjbd2: simplify return path of journal_init_common (diff)
downloadlinux-dev-6ca7b13dea385484e2fcc89790b8030697c5014a.tar.xz
linux-dev-6ca7b13dea385484e2fcc89790b8030697c5014a.zip
ext4: Remove redundant unlikely()
IS_ERR() already implies unlikely(), so it can be omitted here. Signed-off-by: Tobias Klauser <tklauser@distanz.ch> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4')
-rw-r--r--fs/ext4/namei.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c
index dc40e75cba88..203086498caa 100644
--- a/fs/ext4/namei.c
+++ b/fs/ext4/namei.c
@@ -1036,7 +1036,7 @@ static struct dentry *ext4_lookup(struct inode *dir, struct dentry *dentry, stru
return ERR_PTR(-EIO);
}
inode = ext4_iget(dir->i_sb, ino);
- if (unlikely(IS_ERR(inode))) {
+ if (IS_ERR(inode)) {
if (PTR_ERR(inode) == -ESTALE) {
EXT4_ERROR_INODE(dir,
"deleted inode referenced: %u",