diff options
author | Steve French <stfrench@microsoft.com> | 2020-06-12 09:25:21 -0500 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2020-06-12 13:21:15 -0500 |
commit | 975221eca5fbfdb4b6b1d17c9e540d4d7627ce18 (patch) | |
tree | 198ac249e567c11a1702d89557bcac88e43fdd8b /fs/cifs/cifsproto.h | |
parent | e4bd7c4a8d2a8471d821dd29919378d1b8567091 (diff) | |
download | linux-next-975221eca5fbfdb4b6b1d17c9e540d4d7627ce18.tar.gz |
smb3: allow uid and gid owners to be set on create with idsfromsid mount option
Currently idsfromsid mount option allows querying owner information from the
special sids used to represent POSIX uids and gids but needed changes to
populate the security descriptor context with the owner information when
idsfromsid mount option was used.
Signed-off-by: Steve French <stfrench@microsoft.com>
Reviewed-by: Pavel Shilovsky <pshilov@microsoft.com>
Diffstat (limited to 'fs/cifs/cifsproto.h')
-rw-r--r-- | fs/cifs/cifsproto.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/cifs/cifsproto.h b/fs/cifs/cifsproto.h index b603da73f4f5..7a836ec0438e 100644 --- a/fs/cifs/cifsproto.h +++ b/fs/cifs/cifsproto.h @@ -222,6 +222,7 @@ extern int set_cifs_acl(struct cifs_ntsd *, __u32, struct inode *, const char *, int); extern unsigned int setup_authusers_ACE(struct cifs_ace *pace); extern unsigned int setup_special_mode_ACE(struct cifs_ace *pace, __u64 nmode); +extern unsigned int setup_special_user_owner_ACE(struct cifs_ace *pace); extern void dequeue_mid(struct mid_q_entry *mid, bool malformed); extern int cifs_read_from_socket(struct TCP_Server_Info *server, char *buf, |