diff options
author | 2024-08-22 08:20:55 +0000 | |
---|---|---|
committer | 2024-09-15 10:42:44 -0500 | |
commit | 3651487607ae778df1051a0a38bb34a5bd34e3b7 (patch) | |
tree | cf26d998433248e0bb46d3a3a83a8a6db4bed61a /fs/smb/client/xattr.c | |
parent | Linux 6.11 (diff) | |
download | wireguard-linux-3651487607ae778df1051a0a38bb34a5bd34e3b7.tar.xz wireguard-linux-3651487607ae778df1051a0a38bb34a5bd34e3b7.zip |
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/xattr.c')
-rw-r--r-- | fs/smb/client/xattr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/smb/client/xattr.c b/fs/smb/client/xattr.c index 6780aa3e98a1..58a584f0b27e 100644 --- a/fs/smb/client/xattr.c +++ b/fs/smb/client/xattr.c @@ -162,7 +162,7 @@ static int cifs_xattr_set(const struct xattr_handler *handler, case XATTR_CIFS_ACL: case XATTR_CIFS_NTSD: case XATTR_CIFS_NTSD_FULL: { - struct cifs_ntsd *pacl; + struct smb_ntsd *pacl; if (!value) goto out; @@ -315,7 +315,7 @@ static int cifs_xattr_get(const struct xattr_handler *handler, * fetch owner and DACL otherwise */ u32 acllen, extra_info; - struct cifs_ntsd *pacl; + struct smb_ntsd *pacl; if (pTcon->ses->server->ops->get_acl == NULL) goto out; /* rc already EOPNOTSUPP */ |