diff options
author | ChenXiaoSong <chenxiaosong@kylinos.cn> | 2024-08-22 08:20:55 +0000 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2024-09-15 10:42:44 -0500 |
commit | 3651487607ae778df1051a0a38bb34a5bd34e3b7 (patch) | |
tree | cf26d998433248e0bb46d3a3a83a8a6db4bed61a /fs/smb/client/smb2pdu.c | |
parent | 98f7e32f20d28ec452afb208f9cffc08448a2652 (diff) |
smb/client: rename cifs_ntsd to smb_ntsd
Preparation for moving acl definitions to new common header file.
Use the following shell command to rename:
find fs/smb/client -type f -exec sed -i \
's/struct cifs_ntsd/struct smb_ntsd/g' {} +
Signed-off-by: ChenXiaoSong <chenxiaosong@kylinos.cn>
Reviewed-by: Namjae Jeon <linkinjeon@kernel.org>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/smb/client/smb2pdu.c')
-rw-r--r-- | fs/smb/client/smb2pdu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/smb/client/smb2pdu.c b/fs/smb/client/smb2pdu.c index 88dc49d67037..b619b38bab80 100644 --- a/fs/smb/client/smb2pdu.c +++ b/fs/smb/client/smb2pdu.c @@ -5683,7 +5683,7 @@ SMB2_set_eof(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid, int SMB2_set_acl(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid, u64 volatile_fid, - struct cifs_ntsd *pnntsd, int pacllen, int aclflag) + struct smb_ntsd *pnntsd, int pacllen, int aclflag) { return send_set_info(xid, tcon, persistent_fid, volatile_fid, current->tgid, 0, SMB2_O_INFO_SECURITY, aclflag, |