diff options
author | Sachin Prabhu <sprabhu@redhat.com> | 2013-03-11 13:08:49 +0000 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2013-03-13 14:09:20 -0500 |
commit | 47c78f4a70d791ff44cab3254b489605a52e3181 (patch) | |
tree | c3923432f02c31fb2625e8fae7572839e6f8bbf7 /fs/cifs/netmisc.c | |
parent | 6c23cbbd5056b155401b0a2b5567d530e6c750c4 (diff) | |
download | linux-47c78f4a70d791ff44cab3254b489605a52e3181.tar.gz linux-47c78f4a70d791ff44cab3254b489605a52e3181.tar.bz2 linux-47c78f4a70d791ff44cab3254b489605a52e3181.zip |
cifs: map NT_STATUS_SHARING_VIOLATION to EBUSY instead of ETXTBSY
NT_SHARING_VIOLATION errors are mapped to ETXTBSY which is unexpected
for operations such as unlink where we can hit these errors.
The patch maps the error NT_SHARING_VIOLATION to EBUSY instead. The
patch also replaces all instances of ETXTBSY in
cifs_rename_pending_delete() with EBUSY.
Signed-off-by: Sachin Prabhu <sprabhu@redhat.com>
Reviewed-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/netmisc.c')
-rw-r--r-- | fs/cifs/netmisc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/netmisc.c b/fs/cifs/netmisc.c index a82bc51fdc82..c0b25b28be6c 100644 --- a/fs/cifs/netmisc.c +++ b/fs/cifs/netmisc.c @@ -62,7 +62,7 @@ static const struct smb_to_posix_error mapping_table_ERRDOS[] = { {ERRdiffdevice, -EXDEV}, {ERRnofiles, -ENOENT}, {ERRwriteprot, -EROFS}, - {ERRbadshare, -ETXTBSY}, + {ERRbadshare, -EBUSY}, {ERRlock, -EACCES}, {ERRunsup, -EINVAL}, {ERRnosuchshare, -ENXIO}, |