diff options
author | Pavel Shilovsky <pshilovsky@samba.org> | 2013-07-09 16:20:30 +0200 |
---|---|---|
committer | Steve French <smfrench@gmail.com> | 2013-07-10 20:08:40 +0200 |
commit | 064f6047a123d61dd52bb44605c999cd8ef727d9 (patch) | |
tree | 1be5444dd6726a51682b3581418e97488251f168 /fs/cifs/smb2proto.h | |
parent | CIFS: Introduce cifs_open_parms struct (diff) | |
download | linux-064f6047a123d61dd52bb44605c999cd8ef727d9.tar.xz linux-064f6047a123d61dd52bb44605c999cd8ef727d9.zip |
CIFS: Make SMB2_open use cifs_open_parms struct
to prepare it for further durable handle reconnect processing.
Signed-off-by: Pavel Shilovsky <pshilovsky@samba.org>
Signed-off-by: Steven French <steven@steven-GA-970A-DS3.(none)>
Diffstat (limited to 'fs/cifs/smb2proto.h')
-rw-r--r-- | fs/cifs/smb2proto.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/cifs/smb2proto.h b/fs/cifs/smb2proto.h index 206efde13f71..1a5ecbed40ed 100644 --- a/fs/cifs/smb2proto.h +++ b/fs/cifs/smb2proto.h @@ -104,10 +104,8 @@ extern int SMB2_tcon(const unsigned int xid, struct cifs_ses *ses, const char *tree, struct cifs_tcon *tcon, const struct nls_table *); extern int SMB2_tdis(const unsigned int xid, struct cifs_tcon *tcon); -extern int SMB2_open(const unsigned int xid, struct cifs_tcon *tcon, - __le16 *path, u64 *persistent_fid, u64 *volatile_fid, - __u32 desired_access, __u32 create_disposition, - __u32 create_options, __u8 *oplock, +extern int SMB2_open(const unsigned int xid, struct cifs_open_parms *oparms, + __le16 *path, __u8 *oplock, struct smb2_file_all_info *buf); extern int SMB2_ioctl(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid, u64 volatile_fid, u32 opcode, |