aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs/cifsglob.h
diff options
context:
space:
mode:
authorPavel Shilovsky <pshilovsky@samba.org>2012-09-18 19:20:28 -0400
committerSteve French <smfrench@gmail.com>2012-09-24 22:46:27 -0400
commitfc9c59662e0cd37577556d0de865268baeb9b293 (patch)
tree3b89e75e749bd1d06a7cbfd3cf4b074aa67eb7ec /fs/cifs/cifsglob.h
parent3a3bab509f3f0e7295caab24e9102ce303edb50b (diff)
CIFS: Move async read to ops struct
Signed-off-by: Pavel Shilovsky <pshilovsky@samba.org> Signed-off-by: Steve French <smfrench@gmail.com>
Diffstat (limited to 'fs/cifs/cifsglob.h')
-rw-r--r--fs/cifs/cifsglob.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h
index e5cb1941e251..fcf81c05635f 100644
--- a/fs/cifs/cifsglob.h
+++ b/fs/cifs/cifsglob.h
@@ -172,6 +172,7 @@ struct dfs_info3_param;
172struct cifs_fattr; 172struct cifs_fattr;
173struct smb_vol; 173struct smb_vol;
174struct cifs_fid; 174struct cifs_fid;
175struct cifs_readdata;
175 176
176struct smb_version_operations { 177struct smb_version_operations {
177 int (*send_cancel)(struct TCP_Server_Info *, void *, 178 int (*send_cancel)(struct TCP_Server_Info *, void *,
@@ -280,6 +281,8 @@ struct smb_version_operations {
280 int (*close)(const unsigned int, struct cifs_tcon *, struct cifs_fid *); 281 int (*close)(const unsigned int, struct cifs_tcon *, struct cifs_fid *);
281 /* send a flush request to the server */ 282 /* send a flush request to the server */
282 int (*flush)(const unsigned int, struct cifs_tcon *, struct cifs_fid *); 283 int (*flush)(const unsigned int, struct cifs_tcon *, struct cifs_fid *);
284 /* async read from the server */
285 int (*async_readv)(struct cifs_readdata *);
283}; 286};
284 287
285struct smb_version_values { 288struct smb_version_values {