aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/fs/smb/client/xattr.c
diff options
context:
space:
mode:
authorChenXiaoSong <chenxiaosong@kylinos.cn>2024-08-22 08:20:55 +0000
committerSteve French <stfrench@microsoft.com>2024-09-15 10:42:44 -0500
commit3651487607ae778df1051a0a38bb34a5bd34e3b7 (patch)
treecf26d998433248e0bb46d3a3a83a8a6db4bed61a /fs/smb/client/xattr.c
parentLinux 6.11 (diff)
downloadwireguard-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.c4
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 */