mirror of
https://github.com/torvalds/linux.git
synced 2026-06-04 12:35:52 +02:00
smb/client: add NT_STATUS_RANGE_NOT_FOUND
See MS-ERREf 2.3.1 STATUS_RANGE_NOT_FOUND. Signed-off-by: Huiwen He <hehuiwen@kylinos.cn> Signed-off-by: ChenXiaoSong <chenxiaosong@kylinos.cn> Signed-off-by: Steve French <stfrench@microsoft.com>
This commit is contained in:
parent
fbf88e79c5
commit
47b84c745b
|
|
@ -685,6 +685,7 @@ const struct nt_err_code_struct nt_errs[] = {
|
|||
NT_STATUS_DIRECTORY_IS_A_REPARSE_POINT},
|
||||
{"NT_STATUS_ENCRYPTION_FAILED", NT_STATUS_ENCRYPTION_FAILED},
|
||||
{"NT_STATUS_DECRYPTION_FAILED", NT_STATUS_DECRYPTION_FAILED},
|
||||
{"NT_STATUS_RANGE_NOT_FOUND", NT_STATUS_RANGE_NOT_FOUND},
|
||||
{"NT_STATUS_NETWORK_SESSION_EXPIRED", NT_STATUS_NETWORK_SESSION_EXPIRED},
|
||||
{"NT_STATUS_NO_MORE_ENTRIES", NT_STATUS_NO_MORE_ENTRIES},
|
||||
{"NT_STATUS_MORE_ENTRIES", NT_STATUS_MORE_ENTRIES},
|
||||
|
|
|
|||
|
|
@ -555,6 +555,7 @@ extern const struct nt_err_code_struct nt_errs[];
|
|||
#define NT_STATUS_DIRECTORY_IS_A_REPARSE_POINT (0xC0000000 | 0x0281)
|
||||
#define NT_STATUS_ENCRYPTION_FAILED (0xC0000000 | 0x028a)
|
||||
#define NT_STATUS_DECRYPTION_FAILED (0xC0000000 | 0x028b)
|
||||
#define NT_STATUS_RANGE_NOT_FOUND (0xC0000000 | 0x028c)
|
||||
#define NT_STATUS_NETWORK_SESSION_EXPIRED (0xC0000000 | 0x035c)
|
||||
#define NT_STATUS_NO_SUCH_JOB (0xC0000000 | 0xEDE) /* scheduler */
|
||||
#define NT_STATUS_NO_PREAUTH_INTEGRITY_HASH_OVERLAP (0xC0000000 | 0x5D0000)
|
||||
|
|
|
|||
|
|
@ -662,7 +662,7 @@ static const struct {
|
|||
ERRDOS, 161, NT_STATUS_DIRECTORY_IS_A_REPARSE_POINT}, {
|
||||
ERRDOS, ERRnoaccess, NT_STATUS_ENCRYPTION_FAILED}, {
|
||||
ERRDOS, ERRnoaccess, NT_STATUS_DECRYPTION_FAILED}, {
|
||||
ERRHRD, ERRgeneral, 0xc000028c}, {
|
||||
ERRHRD, ERRgeneral, NT_STATUS_RANGE_NOT_FOUND}, {
|
||||
ERRDOS, ERRnoaccess, 0xc000028d}, {
|
||||
ERRDOS, ERRnoaccess, 0xc000028e}, {
|
||||
ERRDOS, ERRnoaccess, 0xc000028f}, {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user