diff options
author | Anand V. Avati <avati@amp.gluster.com> | 2009-04-11 01:25:26 +0530 |
---|---|---|
committer | Anand V. Avati <avati@amp.gluster.com> | 2009-04-12 11:33:46 +0530 |
commit | f551e72584b3525d5a55c6fb4456d7b9ca5cb5f3 (patch) | |
tree | cc8a2bb3c5f1389872bfd8f94387da1764bff831 | |
parent | c723c0dae5fd2887b714a08bcaeadb663e4de44b (diff) |
update cluster/unify with new readv writev prototypes
Signed-off-by: Anand V. Avati <avati@amp.gluster.com>
-rw-r--r-- | xlators/cluster/unify/src/unify.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/xlators/cluster/unify/src/unify.c b/xlators/cluster/unify/src/unify.c index 34321082832..a5447035fa6 100644 --- a/xlators/cluster/unify/src/unify.c +++ b/xlators/cluster/unify/src/unify.c @@ -2212,9 +2212,10 @@ unify_readv_cbk (call_frame_t *frame, int32_t op_errno, struct iovec *vector, int32_t count, - struct stat *stbuf) + struct stat *stbuf, + struct iobref *iobref) { - STACK_UNWIND (frame, op_ret, op_errno, vector, count, stbuf); + STACK_UNWIND (frame, op_ret, op_errno, vector, count, stbuf, iobref); return 0; } @@ -2271,7 +2272,8 @@ unify_writev (call_frame_t *frame, fd_t *fd, struct iovec *vector, int32_t count, - off_t off) + off_t off, + struct iobref *iobref) { UNIFY_CHECK_FD_CTX_AND_UNWIND_ON_ERR (fd); xlator_t *child = NULL; @@ -2287,7 +2289,8 @@ unify_writev (call_frame_t *frame, fd, vector, count, - off); + off, + iobref); return 0; } |