diff options
author | Raghavendra G <rgowdapp@redhat.com> | 2014-08-14 16:44:23 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2014-08-26 04:57:01 -0700 |
commit | 172100209e531e94168d0974bfb0995704d9dddd (patch) | |
tree | 4bdfd3440ec9b5f1bfe684073ac8e741ead0a4be /libglusterfs/src | |
parent | a1fe3d72e373bf0deaed152842d12d94bb9129dc (diff) |
libglusterfs/syncop: implement inodelk
Change-Id: Iea489157490b70cb2bb03576b0d4943c6d8f052d
BUG: 1130888
Signed-off-by: Raghavendra G <rgowdapp@redhat.com>
Reviewed-on: http://review.gluster.org/8522
Reviewed-by: Pranith Kumar Karampuri <pkarampu@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'libglusterfs/src')
-rw-r--r-- | libglusterfs/src/syncop.c | 40 | ||||
-rw-r--r-- | libglusterfs/src/syncop.h | 4 |
2 files changed, 44 insertions, 0 deletions
diff --git a/libglusterfs/src/syncop.c b/libglusterfs/src/syncop.c index 3dd622c8e99..c0a85b2830c 100644 --- a/libglusterfs/src/syncop.c +++ b/libglusterfs/src/syncop.c @@ -2329,3 +2329,43 @@ syncop_lk (xlator_t *subvol, fd_t *fd, int cmd, struct gf_flock *flock) return -args.op_errno; return args.op_ret; } + +int32_t +syncop_inodelk_cbk (call_frame_t *frame, void *cookie, xlator_t *this, + int32_t op_ret, int32_t op_errno, dict_t *xdata) +{ + struct syncargs *args = NULL; + + args = cookie; + + args->op_ret = op_ret; + args->op_errno = op_errno; + + if (xdata) + args->xdata = dict_ref (xdata); + + __wake (args); + + return 0; + +} + +int +syncop_inodelk (xlator_t *subvol, const char *volume, loc_t *loc, int32_t cmd, + struct gf_flock *lock, dict_t *xdata_req, dict_t **xdata_rsp) +{ + struct syncargs args = {0, }; + + SYNCOP (subvol, (&args), syncop_inodelk_cbk, subvol->fops->inodelk, + volume, loc, cmd, lock, xdata_req); + + if (xdata_rsp) + *xdata_rsp = args.xdata; + else + dict_unref (args.xdata); + + if (args.op_ret < 0) + return -args.op_errno; + + return args.op_ret; +} diff --git a/libglusterfs/src/syncop.h b/libglusterfs/src/syncop.h index e3a07649340..80b899badb2 100644 --- a/libglusterfs/src/syncop.h +++ b/libglusterfs/src/syncop.h @@ -418,4 +418,8 @@ int syncop_rename (xlator_t *subvol, loc_t *oldloc, loc_t *newloc); int syncop_lk (xlator_t *subvol, fd_t *fd, int cmd, struct gf_flock *flock); +int +syncop_inodelk (xlator_t *subvol, const char *volume, loc_t *loc, int32_t cmd, + struct gf_flock *lock, dict_t *xdata_req, dict_t **xdata_rsp); + #endif /* _SYNCOP_H */ |