diff options
author | Pavel Shilovsky <pshilovsky@samba.org> | 2013-07-09 10:20:30 -0400 |
---|---|---|
committer | Steve French <smfrench@gmail.com> | 2013-07-10 14:08:40 -0400 |
commit | 064f6047a123d61dd52bb44605c999cd8ef727d9 (patch) | |
tree | 1be5444dd6726a51682b3581418e97488251f168 /fs/cifs/smb2proto.h | |
parent | 226730b4d8adae393dc07092655cdd29d2a2ff07 (diff) |
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, | |||
104 | const char *tree, struct cifs_tcon *tcon, | 104 | const char *tree, struct cifs_tcon *tcon, |
105 | const struct nls_table *); | 105 | const struct nls_table *); |
106 | extern int SMB2_tdis(const unsigned int xid, struct cifs_tcon *tcon); | 106 | extern int SMB2_tdis(const unsigned int xid, struct cifs_tcon *tcon); |
107 | extern int SMB2_open(const unsigned int xid, struct cifs_tcon *tcon, | 107 | extern int SMB2_open(const unsigned int xid, struct cifs_open_parms *oparms, |
108 | __le16 *path, u64 *persistent_fid, u64 *volatile_fid, | 108 | __le16 *path, __u8 *oplock, |
109 | __u32 desired_access, __u32 create_disposition, | ||
110 | __u32 create_options, __u8 *oplock, | ||
111 | struct smb2_file_all_info *buf); | 109 | struct smb2_file_all_info *buf); |
112 | extern int SMB2_ioctl(const unsigned int xid, struct cifs_tcon *tcon, | 110 | extern int SMB2_ioctl(const unsigned int xid, struct cifs_tcon *tcon, |
113 | u64 persistent_fid, u64 volatile_fid, u32 opcode, | 111 | u64 persistent_fid, u64 volatile_fid, u32 opcode, |