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/file.c | |
parent | fe5f5d2e908957392aebbb852a6fb22885860d4b (diff) | |
download | linux-c2e8764009a0245fd24fcd2a63ffbf64236af016.tar.bz2 |
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/file.c')
-rw-r--r-- | fs/cifs/file.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/cifs/file.c b/fs/cifs/file.c index 5fedf6cb5a56..f624c4d4a393 100644 --- a/fs/cifs/file.c +++ b/fs/cifs/file.c @@ -1684,7 +1684,8 @@ retry: tofind = min((cifs_sb->wsize / PAGE_CACHE_SIZE) - 1, end - index) + 1; - wdata = cifs_writedata_alloc((unsigned int)tofind); + wdata = cifs_writedata_alloc((unsigned int)tofind, + cifs_writev_complete); if (!wdata) { rc = -ENOMEM; break; |