diff options
Diffstat (limited to 'fs/nfs/nfs4proc.c')
| -rw-r--r-- | fs/nfs/nfs4proc.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c index f9254fb0c9d..fe0cd9eb1d4 100644 --- a/fs/nfs/nfs4proc.c +++ b/fs/nfs/nfs4proc.c @@ -39,6 +39,7 @@  #include <linux/delay.h>  #include <linux/errno.h>  #include <linux/string.h> +#include <linux/slab.h>  #include <linux/sunrpc/clnt.h>  #include <linux/nfs.h>  #include <linux/nfs4.h> @@ -2067,8 +2068,7 @@ nfs4_open_revalidate(struct inode *dir, struct dentry *dentry, int openflags, st  			case -EDQUOT:  			case -ENOSPC:  			case -EROFS: -				lookup_instantiate_filp(nd, (struct dentry *)state, NULL); -				return 1; +				return PTR_ERR(state);  			default:  				goto out_drop;  		}  |