diff options
| author | Carsten Otte <cotte@de.ibm.com> | 2006-04-19 13:06:37 -0400 |
|---|---|---|
| committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2006-04-19 13:06:37 -0400 |
| commit | 7451c4f0ee53e36fd74168af8df75b28fd04a2aa (patch) | |
| tree | d981de4189c559d8e0a9f291c9919dde396c9a04 /fs/nfs | |
| parent | b9d9506d944865876e67281a4e4269d823ce5381 (diff) | |
NFS: remove needless check in nfs_opendir()
Local variable res was initialized to 0 - no check needed here.
Signed-off-by: Carsten Otte <cotte@de.ibm.com>
Cc: Trond Myklebust <trond.myklebust@fys.uio.no>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs')
| -rw-r--r-- | fs/nfs/dir.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/nfs/dir.c b/fs/nfs/dir.c index a23f34894167..cae74dd4c7f5 100644 --- a/fs/nfs/dir.c +++ b/fs/nfs/dir.c | |||
| @@ -128,15 +128,14 @@ struct inode_operations nfs4_dir_inode_operations = { | |||
| 128 | static int | 128 | static int |
| 129 | nfs_opendir(struct inode *inode, struct file *filp) | 129 | nfs_opendir(struct inode *inode, struct file *filp) |
| 130 | { | 130 | { |
| 131 | int res = 0; | 131 | int res; |
| 132 | 132 | ||
| 133 | dfprintk(VFS, "NFS: opendir(%s/%ld)\n", | 133 | dfprintk(VFS, "NFS: opendir(%s/%ld)\n", |
| 134 | inode->i_sb->s_id, inode->i_ino); | 134 | inode->i_sb->s_id, inode->i_ino); |
| 135 | 135 | ||
| 136 | lock_kernel(); | 136 | lock_kernel(); |
| 137 | /* Call generic open code in order to cache credentials */ | 137 | /* Call generic open code in order to cache credentials */ |
| 138 | if (!res) | 138 | res = nfs_open(inode, filp); |
| 139 | res = nfs_open(inode, filp); | ||
| 140 | unlock_kernel(); | 139 | unlock_kernel(); |
| 141 | return res; | 140 | return res; |
| 142 | } | 141 | } |
