Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7451c4f0 authored by Carsten Otte's avatar Carsten Otte Committed by Trond Myklebust
Browse files

NFS: remove needless check in nfs_opendir()



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

Signed-off-by: default avatarCarsten Otte <cotte@de.ibm.com>
Cc: Trond Myklebust <trond.myklebust@fys.uio.no>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
parent b9d9506d
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -128,14 +128,13 @@ struct inode_operations nfs4_dir_inode_operations = {
static int
nfs_opendir(struct inode *inode, struct file *filp)
{
	int res = 0;
	int res;

	dfprintk(VFS, "NFS: opendir(%s/%ld)\n",
			inode->i_sb->s_id, inode->i_ino);

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