mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 05:44:45 +01:00
smb/client: rename ERRinvlevel to ERRunknownlevel
See MS-CIFS 2.2.2.4 ERRunknownlevel. Keep the name consistent with the documentation. 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
cd55c6e311
commit
ac635d68ba
2 changed files with 3 additions and 3 deletions
|
|
@ -47,7 +47,7 @@ static const struct smb_to_posix_error mapping_table_ERRDOS[] = {
|
|||
{ERRinvparm, -EINVAL},
|
||||
{ERRdiskfull, -ENOSPC},
|
||||
{ERRinvname, -ENOENT},
|
||||
{ERRinvlevel, -EOPNOTSUPP},
|
||||
{ERRunknownlevel, -EOPNOTSUPP},
|
||||
{ERRdirnotempty, -ENOTEMPTY},
|
||||
{ERRnotlocked, -ENOLCK},
|
||||
{ERRcancelviolation, -ENOLCK},
|
||||
|
|
@ -669,7 +669,7 @@ static const struct {
|
|||
ERRDOS, ERRnoaccess, 0xc0000290}, {
|
||||
ERRDOS, ERRbadfunc, 0xc000029c}, {
|
||||
ERRDOS, ERRsymlink, NT_STATUS_STOPPED_ON_SYMLINK}, {
|
||||
ERRDOS, ERRinvlevel, NT_STATUS_OS2_INVALID_LEVEL}, {
|
||||
ERRDOS, ERRunknownlevel, NT_STATUS_OS2_INVALID_LEVEL}, {
|
||||
0, 0, 0 }
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -80,7 +80,7 @@
|
|||
#define ERRinvparm 87
|
||||
#define ERRdiskfull 112
|
||||
#define ERRinvname 123
|
||||
#define ERRinvlevel 124
|
||||
#define ERRunknownlevel 124
|
||||
#define ERRdirnotempty 145
|
||||
#define ERRnotlocked 158
|
||||
#define ERRcancelviolation 173
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue