diff options
author | Pavel Shilovsky <pshilovsky@samba.org> | 2012-06-20 09:50:01 -0400 |
---|---|---|
committer | Steve French <smfrench@gmail.com> | 2012-07-24 11:25:10 -0400 |
commit | f7ec0d0bbc5cff9edd649e6891e7e2efcb94c038 (patch) | |
tree | ea751dfec328b01adf2c5c8d93df2a1ebe74230e /fs/cifs/nterr.h | |
parent | 6d5786a34d98bffb8ad50d8053d1e53231fe0636 (diff) |
CIFS: Rename 7 error codes to NT_ style
and consider such codes as CIFS errors.
Reviewed-by: Jeff Layton <jlayton@samba.org>
Signed-off-by: Pavel Shilovsky <pshilovsky@samba.org>
Signed-off-by: Steve French <smfrench@gmail.com>
Diffstat (limited to 'fs/cifs/nterr.h')
-rw-r--r-- | fs/cifs/nterr.h | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/fs/cifs/nterr.h b/fs/cifs/nterr.h index 257267367d41..7a0eae5ae7c9 100644 --- a/fs/cifs/nterr.h +++ b/fs/cifs/nterr.h | |||
@@ -35,18 +35,20 @@ struct nt_err_code_struct { | |||
35 | extern const struct nt_err_code_struct nt_errs[]; | 35 | extern const struct nt_err_code_struct nt_errs[]; |
36 | 36 | ||
37 | /* Win32 Status codes. */ | 37 | /* Win32 Status codes. */ |
38 | #define STATUS_MORE_ENTRIES 0x0105 | 38 | #define NT_STATUS_MORE_ENTRIES 0x0105 |
39 | #define ERROR_INVALID_PARAMETER 0x0057 | 39 | #define NT_ERROR_INVALID_PARAMETER 0x0057 |
40 | #define ERROR_INSUFFICIENT_BUFFER 0x007a | 40 | #define NT_ERROR_INSUFFICIENT_BUFFER 0x007a |
41 | #define STATUS_1804 0x070c | 41 | #define NT_STATUS_1804 0x070c |
42 | #define STATUS_NOTIFY_ENUM_DIR 0x010c | 42 | #define NT_STATUS_NOTIFY_ENUM_DIR 0x010c |
43 | 43 | ||
44 | /* Win32 Error codes extracted using a loop in smbclient then printing a | 44 | /* |
45 | netmon sniff to a file. */ | 45 | * Win32 Error codes extracted using a loop in smbclient then printing a netmon |
46 | * sniff to a file. | ||
47 | */ | ||
46 | 48 | ||
47 | #define NT_STATUS_OK 0x0000 | 49 | #define NT_STATUS_OK 0x0000 |
48 | #define STATUS_SOME_UNMAPPED 0x0107 | 50 | #define NT_STATUS_SOME_UNMAPPED 0x0107 |
49 | #define STATUS_BUFFER_OVERFLOW 0x80000005 | 51 | #define NT_STATUS_BUFFER_OVERFLOW 0x80000005 |
50 | #define NT_STATUS_NO_MORE_ENTRIES 0x8000001a | 52 | #define NT_STATUS_NO_MORE_ENTRIES 0x8000001a |
51 | #define NT_STATUS_MEDIA_CHANGED 0x8000001c | 53 | #define NT_STATUS_MEDIA_CHANGED 0x8000001c |
52 | #define NT_STATUS_END_OF_MEDIA 0x8000001e | 54 | #define NT_STATUS_END_OF_MEDIA 0x8000001e |