diff options
author | Ronnie Sahlberg <lsahlber@redhat.com> | 2018-04-26 16:50:49 +0200 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2018-05-28 00:56:35 +0200 |
commit | 97ca1762246d6eeb1b48dff8a179d1a92ce24227 (patch) | |
tree | 09eb232f138a7cadd2d54ce6e3cdbabf5b6d05ea /fs/cifs/smb2proto.h | |
parent | cifs: store the leaseKey in the fid on SMB2_open (diff) | |
download | linux-97ca1762246d6eeb1b48dff8a179d1a92ce24227.tar.xz linux-97ca1762246d6eeb1b48dff8a179d1a92ce24227.zip |
cifs: add a new SMB2_close_flags function
And make SMB2_close just a wrapper for SMB2_close_flags.
We need this as we will start to send SMB2_CLOSE pdus using special
flags.
Signed-off-by: Ronnie Sahlberg <lsahlber@redhat.com>
Reviewed-by: Pavel Shilovsky <pshilov@microsoft.com>
Signed-off-by: Steve French <smfrench@gmail.com>
Diffstat (limited to 'fs/cifs/smb2proto.h')
-rw-r--r-- | fs/cifs/smb2proto.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/cifs/smb2proto.h b/fs/cifs/smb2proto.h index 8d7bb9a1dcb4..4b0db6af7fe7 100644 --- a/fs/cifs/smb2proto.h +++ b/fs/cifs/smb2proto.h @@ -131,6 +131,8 @@ extern int SMB2_ioctl(const unsigned int xid, struct cifs_tcon *tcon, char **out_data, u32 *plen /* returned data len */); 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, + u64 persistent_fid, u64 volatile_fid, int flags); extern int SMB2_flush(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_file_id, u64 volatile_file_id); extern int SMB2_query_eas(const unsigned int xid, struct cifs_tcon *tcon, |