Skip to content

Commit 9f99caa

Browse files
ChenXiaoSongsmfrench
authored andcommitted
smb/client: fix NT_STATUS_UNABLE_TO_FREE_VM value
This was reported by the KUnit tests in the later patches. See MS-ERREF 2.3.1 STATUS_UNABLE_TO_FREE_VM. Keep it consistent with the value in the documentation. Signed-off-by: ChenXiaoSong <chenxiaosong@kylinos.cn> Acked-by: Paulo Alcantara (Red Hat) <pc@manguebit.org> Signed-off-by: Steve French <stfrench@microsoft.com>
1 parent b2b50fc commit 9f99caa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fs/smb/client/nterr.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ extern const struct nt_err_code_struct nt_errs[];
7070
#define NT_STATUS_NO_MEMORY 0xC0000000 | 0x0017
7171
#define NT_STATUS_CONFLICTING_ADDRESSES 0xC0000000 | 0x0018
7272
#define NT_STATUS_NOT_MAPPED_VIEW 0xC0000000 | 0x0019
73-
#define NT_STATUS_UNABLE_TO_FREE_VM 0x80000000 | 0x001a
73+
#define NT_STATUS_UNABLE_TO_FREE_VM 0xC0000000 | 0x001a
7474
#define NT_STATUS_UNABLE_TO_DELETE_SECTION 0xC0000000 | 0x001b
7575
#define NT_STATUS_INVALID_SYSTEM_SERVICE 0xC0000000 | 0x001c
7676
#define NT_STATUS_ILLEGAL_INSTRUCTION 0xC0000000 | 0x001d

0 commit comments

Comments
 (0)