Commit d7e5852b authored by Hyunchul Lee's avatar Hyunchul Lee Committed by Namjae Jeon

cifsd: make alignment match open parenthesis

checkpatch.pl complains as the following:

Alignment should match open parenthesis.
Signed-off-by: default avatarHyunchul Lee <hyc.lee@gmail.com>
Signed-off-by: default avatarNamjae Jeon <namjae.jeon@samsung.com>
Signed-off-by: default avatarSteve French <stfrench@microsoft.com>
parent 40c594b6
...@@ -182,7 +182,8 @@ struct posix_acl_state { ...@@ -182,7 +182,8 @@ struct posix_acl_state {
int parse_sec_desc(struct smb_ntsd *pntsd, int acl_len, int parse_sec_desc(struct smb_ntsd *pntsd, int acl_len,
struct smb_fattr *fattr); struct smb_fattr *fattr);
int build_sec_desc(struct smb_ntsd *pntsd, struct smb_ntsd *ppntsd, int build_sec_desc(struct smb_ntsd *pntsd, struct smb_ntsd *ppntsd,
int addition_info, __u32 *secdesclen, struct smb_fattr *fattr); int addition_info, __u32 *secdesclen,
struct smb_fattr *fattr);
int init_acl_state(struct posix_acl_state *state, int cnt); int init_acl_state(struct posix_acl_state *state, int cnt);
void free_acl_state(struct posix_acl_state *state); void free_acl_state(struct posix_acl_state *state);
void posix_state_to_acl(struct posix_acl_state *state, void posix_state_to_acl(struct posix_acl_state *state,
......
...@@ -934,8 +934,8 @@ ssize_t ksmbd_vfs_getxattr(struct dentry *dentry, char *xattr_name, ...@@ -934,8 +934,8 @@ ssize_t ksmbd_vfs_getxattr(struct dentry *dentry, char *xattr_name,
if (!buf) if (!buf)
return -ENOMEM; return -ENOMEM;
xattr_len = vfs_getxattr(&init_user_ns, dentry, xattr_name, (void *)buf, xattr_len = vfs_getxattr(&init_user_ns, dentry, xattr_name,
xattr_len); (void *)buf, xattr_len);
if (xattr_len > 0) if (xattr_len > 0)
*xattr_buf = buf; *xattr_buf = buf;
else else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment