diff options
author | Ronnie Sahlberg <lsahlber@redhat.com> | 2018-08-08 07:07:46 +0200 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2018-08-09 01:10:26 +0200 |
commit | 1eb9fb52040fc6e5656c277b562229f09467c9f8 (patch) | |
tree | 5f20bbdb56917b58f37e160b6ba112c708b7f6b5 /fs/cifs/smb2proto.h | |
parent | cifs: add SMB2_query_info_[init|free]() (diff) | |
download | linux-1eb9fb52040fc6e5656c277b562229f09467c9f8.tar.xz linux-1eb9fb52040fc6e5656c277b562229f09467c9f8.zip |
cifs: create SMB2_open_init()/SMB2_open_free() helpers.
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 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/cifs/smb2proto.h b/fs/cifs/smb2proto.h index 1255cde5133b..57bdd2711974 100644 --- a/fs/cifs/smb2proto.h +++ b/fs/cifs/smb2proto.h @@ -133,6 +133,10 @@ extern int SMB2_open(const unsigned int xid, struct cifs_open_parms *oparms, __le16 *path, __u8 *oplock, struct smb2_file_all_info *buf, struct kvec *err_iov, int *resp_buftype); +extern int SMB2_open_init(struct cifs_tcon *tcon, struct smb_rqst *rqst, + __u8 *oplock, struct cifs_open_parms *oparms, + __le16 *path); +extern void SMB2_open_free(struct smb_rqst *rqst); extern int SMB2_ioctl(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid, u64 volatile_fid, u32 opcode, bool is_fsctl, char *in_data, u32 indatalen, |