diff options
| author | ChenXiaoSong <chenxiaosong@kylinos.cn> | 2025-12-07 09:13:06 +0800 |
|---|---|---|
| committer | Steve French <stfrench@microsoft.com> | 2025-12-09 21:19:43 -0600 |
| commit | a1237c203f1757480dc2f3b930608ee00072d3cc (patch) | |
| tree | e2f6ada3c776dc310524504d9d15804e564e49dd | |
| parent | 3d99347a2e1ae60d9368b1d734290bab1acde0ce (diff) | |
smb/client: fix NT_STATUS_NO_DATA_DETECTED value
This was reported by the KUnit tests in the later patches.
See MS-ERREF 2.3.1 STATUS_NO_DATA_DETECTED. 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>
| -rw-r--r-- | fs/smb/client/nterr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/smb/client/nterr.h b/fs/smb/client/nterr.h index 180602c22355..4fd79a82c817 100644 --- a/fs/smb/client/nterr.h +++ b/fs/smb/client/nterr.h @@ -41,7 +41,7 @@ extern const struct nt_err_code_struct nt_errs[]; #define NT_STATUS_MEDIA_CHANGED 0x8000001c #define NT_STATUS_END_OF_MEDIA 0x8000001e #define NT_STATUS_MEDIA_CHECK 0x80000020 -#define NT_STATUS_NO_DATA_DETECTED 0x8000001c +#define NT_STATUS_NO_DATA_DETECTED 0x80000022 #define NT_STATUS_STOPPED_ON_SYMLINK 0x8000002d #define NT_STATUS_DEVICE_REQUIRES_CLEANING 0x80000288 #define NT_STATUS_DEVICE_DOOR_OPEN 0x80000288 |
