[patch] [trivial] remove needless check in nfs_opendir()

From: Carsten Otte
Date: Tue Mar 21 2006 - 08:30:46 EST


local variable res was initialized to 0 - no check needed here.

signed-off-by: Carsten Otte <cotte@xxxxxxxxxx>
--
diff -ruN linux-2.6.16/fs/nfs/dir.c linux-2.6.16-fix/fs/nfs/dir.c
--- linux-2.6.16/fs/nfs/dir.c 2006-03-20 06:53:29.000000000 +0100
+++ linux-2.6.16-fix/fs/nfs/dir.c 2006-03-21 14:01:41.000000000 +0100
@@ -131,8 +131,7 @@

lock_kernel();
/* Call generic open code in order to cache credentials */
- if (!res)
- res = nfs_open(inode, filp);
+ res = nfs_open(inode, filp);
unlock_kernel();
return res;
}


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/