From 199e7a1a2ed920cde204ba05cbe1a3483184b5ed Mon Sep 17 00:00:00 2001 From: Huiwen He Date: Wed, 21 Jan 2026 19:49:10 +0800 Subject: [PATCH] smb/client: add NT_STATUS_VOLUME_NOT_UPGRADED See MS-ERREf 2.3.1 STATUS_VOLUME_NOT_UPGRADED. Signed-off-by: Huiwen He Signed-off-by: ChenXiaoSong Signed-off-by: Steve French --- fs/smb/client/nterr.c | 1 + fs/smb/client/nterr.h | 1 + fs/smb/client/smb1maperror.c | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/fs/smb/client/nterr.c b/fs/smb/client/nterr.c index 256f14209f56..ab5a2119efd0 100644 --- a/fs/smb/client/nterr.c +++ b/fs/smb/client/nterr.c @@ -690,6 +690,7 @@ const struct nt_err_code_struct nt_errs[] = { {"NT_STATUS_NO_EFS", NT_STATUS_NO_EFS}, {"NT_STATUS_WRONG_EFS", NT_STATUS_WRONG_EFS}, {"NT_STATUS_NO_USER_KEYS", NT_STATUS_NO_USER_KEYS}, + {"NT_STATUS_VOLUME_NOT_UPGRADED", NT_STATUS_VOLUME_NOT_UPGRADED}, {"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}, diff --git a/fs/smb/client/nterr.h b/fs/smb/client/nterr.h index b34e522e6f87..b04cd0d786b1 100644 --- a/fs/smb/client/nterr.h +++ b/fs/smb/client/nterr.h @@ -560,6 +560,7 @@ extern const struct nt_err_code_struct nt_errs[]; #define NT_STATUS_NO_EFS (0xC0000000 | 0x028e) #define NT_STATUS_WRONG_EFS (0xC0000000 | 0x028f) #define NT_STATUS_NO_USER_KEYS (0xC0000000 | 0x0290) +#define NT_STATUS_VOLUME_NOT_UPGRADED (0xC0000000 | 0x029c) #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) diff --git a/fs/smb/client/smb1maperror.c b/fs/smb/client/smb1maperror.c index 0e1c8763afff..2de241f89cb6 100644 --- a/fs/smb/client/smb1maperror.c +++ b/fs/smb/client/smb1maperror.c @@ -667,7 +667,7 @@ static const struct { ERRDOS, ERRnoaccess, NT_STATUS_NO_EFS}, { ERRDOS, ERRnoaccess, NT_STATUS_WRONG_EFS}, { ERRDOS, ERRnoaccess, NT_STATUS_NO_USER_KEYS}, { - ERRDOS, ERRbadfunc, 0xc000029c}, { + ERRDOS, ERRbadfunc, NT_STATUS_VOLUME_NOT_UPGRADED}, { ERRDOS, ERRsymlink, NT_STATUS_STOPPED_ON_SYMLINK}, { ERRDOS, ERRunknownlevel, NT_STATUS_OS2_INVALID_LEVEL}, { 0, 0, 0 } -- 2.47.3