diff options
author | Ronnie Sahlberg <lsahlber@redhat.com> | 2018-08-08 07:07:49 +0200 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2018-08-10 04:19:56 +0200 |
commit | 730928c8f4be88e9d6a027a16b1e8fa9c59fc077 (patch) | |
tree | 92389fc801609bbe19bf1bceabec10db8e79d940 /fs/cifs/smb2proto.h | |
parent | cifs: update receive_encrypted_standard to handle compounded responses (diff) | |
download | linux-730928c8f4be88e9d6a027a16b1e8fa9c59fc077.tar.xz linux-730928c8f4be88e9d6a027a16b1e8fa9c59fc077.zip |
cifs: update smb2_queryfs() to use compounding
Change smb2_queryfs() to use a Create/QueryInfo/Close compound request.
Signed-off-by: Ronnie Sahlberg <lsahlber@redhat.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Reviewed-by: Paulo Alcantara <palcantara@suse.com>
Reviewed-by: Pavel Shilovsky <pshilov@microsoft.com>
Diffstat (limited to 'fs/cifs/smb2proto.h')
-rw-r--r-- | fs/cifs/smb2proto.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/fs/cifs/smb2proto.h b/fs/cifs/smb2proto.h index 57bdd2711974..b4076577eeb7 100644 --- a/fs/cifs/smb2proto.h +++ b/fs/cifs/smb2proto.h @@ -229,6 +229,12 @@ extern int smb3_validate_negotiate(const unsigned int, struct cifs_tcon *); extern enum securityEnum smb2_select_sectype(struct TCP_Server_Info *, enum securityEnum); +extern int smb3_encryption_required(const struct cifs_tcon *tcon); +extern int smb2_validate_iov(unsigned int offset, unsigned int buffer_length, + struct kvec *iov, unsigned int min_buf_size); +extern void smb2_copy_fs_info_to_kstatfs( + struct smb2_fs_full_size_info *pfs_inf, + struct kstatfs *kst); extern int smb311_crypto_shash_allocate(struct TCP_Server_Info *server); extern int smb311_update_preauth_hash(struct cifs_ses *ses, struct kvec *iov, int nvec); |