Skip to content

Commit 9ec7629

Browse files
ChenXiaoSongsmfrench
authored andcommitted
smb: move notify completion filter flags into common/smb2pdu.h
Some of these definitions are already in common/smb2pdu.h, remove the duplicate client side definitions, and move FILE_NOTIFY_CHANGE_NAME to common header file. Signed-off-by: ChenXiaoSong <chenxiaosong@kylinos.cn> Signed-off-by: Steve French <stfrench@microsoft.com>
1 parent a71a4aa commit 9ec7629

2 files changed

Lines changed: 1 addition & 14 deletions

File tree

fs/smb/client/cifspdu.h

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1357,20 +1357,6 @@ typedef struct smb_com_transaction_change_notify_rsp {
13571357
__u16 ByteCount;
13581358
/* __u8 Pad[3]; */
13591359
} __packed TRANSACT_CHANGE_NOTIFY_RSP;
1360-
/* Completion Filter flags for Notify */
1361-
#define FILE_NOTIFY_CHANGE_FILE_NAME 0x00000001
1362-
#define FILE_NOTIFY_CHANGE_DIR_NAME 0x00000002
1363-
#define FILE_NOTIFY_CHANGE_NAME 0x00000003
1364-
#define FILE_NOTIFY_CHANGE_ATTRIBUTES 0x00000004
1365-
#define FILE_NOTIFY_CHANGE_SIZE 0x00000008
1366-
#define FILE_NOTIFY_CHANGE_LAST_WRITE 0x00000010
1367-
#define FILE_NOTIFY_CHANGE_LAST_ACCESS 0x00000020
1368-
#define FILE_NOTIFY_CHANGE_CREATION 0x00000040
1369-
#define FILE_NOTIFY_CHANGE_EA 0x00000080
1370-
#define FILE_NOTIFY_CHANGE_SECURITY 0x00000100
1371-
#define FILE_NOTIFY_CHANGE_STREAM_NAME 0x00000200
1372-
#define FILE_NOTIFY_CHANGE_STREAM_SIZE 0x00000400
1373-
#define FILE_NOTIFY_CHANGE_STREAM_WRITE 0x00000800
13741360

13751361
#define FILE_ACTION_ADDED 0x00000001
13761362
#define FILE_ACTION_REMOVED 0x00000002

fs/smb/common/smb2pdu.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -991,6 +991,7 @@ struct smb2_set_info_rsp {
991991
/* notify completion filter flags. See MS-FSCC 2.6 and MS-SMB2 2.2.35 */
992992
#define FILE_NOTIFY_CHANGE_FILE_NAME 0x00000001
993993
#define FILE_NOTIFY_CHANGE_DIR_NAME 0x00000002
994+
#define FILE_NOTIFY_CHANGE_NAME 0x00000003
994995
#define FILE_NOTIFY_CHANGE_ATTRIBUTES 0x00000004
995996
#define FILE_NOTIFY_CHANGE_SIZE 0x00000008
996997
#define FILE_NOTIFY_CHANGE_LAST_WRITE 0x00000010

0 commit comments

Comments
 (0)