diff options
Diffstat (limited to 'fs/nfs/dir.c')
| -rw-r--r-- | fs/nfs/dir.c | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/nfs/dir.c b/fs/nfs/dir.c index 89f98e9a024..32062c33c85 100644 --- a/fs/nfs/dir.c +++ b/fs/nfs/dir.c @@ -29,7 +29,6 @@  #include <linux/nfs_fs.h>  #include <linux/nfs_mount.h>  #include <linux/pagemap.h> -#include <linux/smp_lock.h>  #include <linux/pagevec.h>  #include <linux/namei.h>  #include <linux/mount.h> @@ -1026,12 +1025,12 @@ static struct dentry *nfs_atomic_lookup(struct inode *dir, struct dentry *dentry  				res = NULL;  				goto out;  			/* This turned out not to be a regular file */ -			case -EISDIR:  			case -ENOTDIR:  				goto no_open;  			case -ELOOP:  				if (!(nd->intent.open.flags & O_NOFOLLOW))  					goto no_open; +			/* case -EISDIR: */  			/* case -EINVAL: */  			default:  				goto out;  |