diff options
author | Jeff Layton <jlayton@redhat.com> | 2012-03-23 14:40:55 -0400 |
---|---|---|
committer | Jeff Layton <jlayton@redhat.com> | 2012-03-23 14:40:55 -0400 |
commit | c2e8764009a0245fd24fcd2a63ffbf64236af016 (patch) | |
tree | 91f3a0503fda92f8c2cf06166adcd801ca98fe4a /fs/cifs/cifsproto.h | |
parent | fe5f5d2e908957392aebbb852a6fb22885860d4b (diff) |
cifs: allow caller to specify completion op when allocating writedata
We'll need a different set of write completion ops when not writing out
of the pagecache.
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Reviewed-by: Pavel Shilovsky <piastry@etersoft.ru>
Diffstat (limited to 'fs/cifs/cifsproto.h')
-rw-r--r-- | fs/cifs/cifsproto.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/cifs/cifsproto.h b/fs/cifs/cifsproto.h index 9e68340c7306..cbf09cdd42a7 100644 --- a/fs/cifs/cifsproto.h +++ b/fs/cifs/cifsproto.h | |||
@@ -495,7 +495,9 @@ struct cifs_writedata { | |||
495 | }; | 495 | }; |
496 | 496 | ||
497 | int cifs_async_writev(struct cifs_writedata *wdata); | 497 | int cifs_async_writev(struct cifs_writedata *wdata); |
498 | struct cifs_writedata *cifs_writedata_alloc(unsigned int nr_pages); | 498 | void cifs_writev_complete(struct work_struct *work); |
499 | struct cifs_writedata *cifs_writedata_alloc(unsigned int nr_pages, | ||
500 | work_func_t complete); | ||
499 | void cifs_writedata_release(struct kref *refcount); | 501 | void cifs_writedata_release(struct kref *refcount); |
500 | 502 | ||
501 | #endif /* _CIFSPROTO_H */ | 503 | #endif /* _CIFSPROTO_H */ |