diff options
author | Weston Andros Adamson <dros@netapp.com> | 2012-11-02 18:00:56 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-11-02 18:51:54 -0400 |
commit | 998f40b550f257e436485291802fa938e4cf580f (patch) | |
tree | ed84ccfb1020d6d074d4e07f25b6ea9a78431d3f /fs | |
parent | f9b1ef5f06d65a01952169b67d474f7f0dcb0206 (diff) |
NFS4: nfs4_opendata_access should return errno
Return errno - not an NFS4ERR_. This worked because NFS4ERR_ACCESS == EACCES.
Signed-off-by: Weston Andros Adamson <dros@netapp.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/nfs/nfs4proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c index 091baab3eccf..5eec4429970c 100644 --- a/fs/nfs/nfs4proc.c +++ b/fs/nfs/nfs4proc.c | |||
@@ -1749,7 +1749,7 @@ static int nfs4_opendata_access(struct rpc_cred *cred, | |||
1749 | 1749 | ||
1750 | /* even though OPEN succeeded, access is denied. Close the file */ | 1750 | /* even though OPEN succeeded, access is denied. Close the file */ |
1751 | nfs4_close_state(state, fmode); | 1751 | nfs4_close_state(state, fmode); |
1752 | return -NFS4ERR_ACCESS; | 1752 | return -EACCES; |
1753 | } | 1753 | } |
1754 | 1754 | ||
1755 | /* | 1755 | /* |