diff options
author | Pavel Shilovsky <pshilovsky@samba.org> | 2012-09-18 19:20:29 -0400 |
---|---|---|
committer | Steve French <smfrench@gmail.com> | 2012-09-24 22:46:28 -0400 |
commit | c9de5c80d536e556568ccd45b9599870d4993b7d (patch) | |
tree | 5ae40ff872bc69cf5be996f2e6a75ea746d8ed58 /fs/cifs/cifsglob.h | |
parent | 09a4707e7638247302c6d798061aed117141fb74 (diff) |
CIFS: Move async write 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.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h index 93dd582bb8d1..aef167470654 100644 --- a/fs/cifs/cifsglob.h +++ b/fs/cifs/cifsglob.h | |||
@@ -173,6 +173,7 @@ struct cifs_fattr; | |||
173 | struct smb_vol; | 173 | struct smb_vol; |
174 | struct cifs_fid; | 174 | struct cifs_fid; |
175 | struct cifs_readdata; | 175 | struct cifs_readdata; |
176 | struct cifs_writedata; | ||
176 | 177 | ||
177 | struct smb_version_operations { | 178 | struct smb_version_operations { |
178 | int (*send_cancel)(struct TCP_Server_Info *, void *, | 179 | int (*send_cancel)(struct TCP_Server_Info *, void *, |
@@ -283,6 +284,8 @@ struct smb_version_operations { | |||
283 | int (*flush)(const unsigned int, struct cifs_tcon *, struct cifs_fid *); | 284 | int (*flush)(const unsigned int, struct cifs_tcon *, struct cifs_fid *); |
284 | /* async read from the server */ | 285 | /* async read from the server */ |
285 | int (*async_readv)(struct cifs_readdata *); | 286 | int (*async_readv)(struct cifs_readdata *); |
287 | /* async write to the server */ | ||
288 | int (*async_writev)(struct cifs_writedata *); | ||
286 | }; | 289 | }; |
287 | 290 | ||
288 | struct smb_version_values { | 291 | struct smb_version_values { |