aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs/smb2pdu.h
diff options
context:
space:
mode:
authorAurelien Aptel <aaptel@suse.com>2020-02-08 15:50:56 +0100
committerSteve French <stfrench@microsoft.com>2020-03-22 22:49:09 -0500
commit2e8af978d9bb7ec3719dadc7c97014a287dec388 (patch)
treea91009c0a32de8f937c3b7ab7accb62436299bfc /fs/cifs/smb2pdu.h
parentcifs: print warning mounting with vers=1.0 (diff)
downloadlinux-dev-2e8af978d9bb7ec3719dadc7c97014a287dec388.tar.xz
linux-dev-2e8af978d9bb7ec3719dadc7c97014a287dec388.zip
cifs: rename posix create rsp
little progress on the posix create response. * rename struct to create_posix_rsp to match with the request create_posix context * make struct packed * pass smb info struct for parse_posix_ctxt to fill * use smb info struct as param * update TODO What needs to be done: SMB2_open() has an optional smb info out argument that it will fill. Callers making use of this are: - smb3_query_mf_symlink (need to investigate) - smb2_open_file Callers of smb2_open_file (via server->ops->open) are passing an smbinfo struct but that struct cannot hold POSIX information. All the call stack needs to be changed for a different info type. Maybe pass SMB generic struct like cifs_fattr instead. Signed-off-by: Aurelien Aptel <aaptel@suse.com> Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/cifs/smb2pdu.h')
-rw-r--r--fs/cifs/smb2pdu.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/fs/cifs/smb2pdu.h b/fs/cifs/smb2pdu.h
index fa03df130f1a..3addecebc25d 100644
--- a/fs/cifs/smb2pdu.h
+++ b/fs/cifs/smb2pdu.h
@@ -1604,11 +1604,14 @@ struct smb2_file_id_information {
extern char smb2_padding[7];
/* equivalent of the contents of SMB3.1.1 POSIX open context response */
-struct smb_posix_info {
+struct create_posix_rsp {
__le32 nlink;
__le32 reparse_tag;
__le32 mode;
- kuid_t uid;
- kuid_t gid;
+ /*
+ * var sized owner SID
+ * var sized group SID
+ */
+} __packed;
};
#endif /* _SMB2PDU_H */