diff options
author | Ronnie Sahlberg <lsahlber@redhat.com> | 2019-03-13 05:37:48 +0100 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2019-03-15 01:32:35 +0100 |
commit | ccdc77a3054afb851473e43f4d60890263cd22e9 (patch) | |
tree | 5fc10b1b23058b430f75c8da21cb35ebe2ef1bca /fs/cifs/smb2proto.h | |
parent | smb3: Add dynamic trace points for various compounded smb3 ops (diff) | |
download | linux-ccdc77a3054afb851473e43f4d60890263cd22e9.tar.xz linux-ccdc77a3054afb851473e43f4d60890263cd22e9.zip |
cifs: add SMB2_ioctl_init/free helpers to be used with compounding
Define an _init() and a _free() function for SMB2_init so that we will
be able to use it with compounds.
Signed-off-by: Ronnie Sahlberg <lsahlber@redhat.com>
Signed-off-by: Steve French <stfrench@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 72cc563c32fe..3c32d0cfea69 100644 --- a/fs/cifs/smb2proto.h +++ b/fs/cifs/smb2proto.h @@ -144,6 +144,10 @@ 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, char **out_data, u32 *plen /* returned data len */); +extern int SMB2_ioctl_init(struct cifs_tcon *tcon, struct smb_rqst *rqst, + u64 persistent_fid, u64 volatile_fid, u32 opcode, + bool is_fsctl, char *in_data, u32 indatalen); +extern void SMB2_ioctl_free(struct smb_rqst *rqst); extern int SMB2_close(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_file_id, u64 volatile_file_id); extern int SMB2_close_flags(const unsigned int xid, struct cifs_tcon *tcon, |