summaryrefslogtreecommitdiffstats
path: root/xlators/features/path-convertor/src/path.c
diff options
context:
space:
mode:
Diffstat (limited to 'xlators/features/path-convertor/src/path.c')
-rw-r--r--xlators/features/path-convertor/src/path.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/xlators/features/path-convertor/src/path.c b/xlators/features/path-convertor/src/path.c
index 293f34177a5..8badef38cd6 100644
--- a/xlators/features/path-convertor/src/path.c
+++ b/xlators/features/path-convertor/src/path.c
@@ -1021,7 +1021,7 @@ path_checksum (call_frame_t *frame,
int32_t
path_entrylk (call_frame_t *frame, xlator_t *this,
- loc_t *loc, const char *basename,
+ const char *volume, loc_t *loc, const char *basename,
entrylk_cmd cmd, entrylk_type type)
{
char *loc_path = (char *)loc->path;
@@ -1036,7 +1036,7 @@ path_entrylk (call_frame_t *frame, xlator_t *this,
STACK_WIND (frame, path_common_cbk,
FIRST_CHILD(this),
FIRST_CHILD(this)->fops->entrylk,
- loc, basename, cmd, type);
+ volume, loc, basename, cmd, type);
loc->path = loc_path;
if (tmp_path != loc_path)
@@ -1047,7 +1047,7 @@ path_entrylk (call_frame_t *frame, xlator_t *this,
int32_t
path_inodelk (call_frame_t *frame, xlator_t *this,
- loc_t *loc, int32_t cmd, struct flock *lock)
+ const char *volume, loc_t *loc, int32_t cmd, struct flock *lock)
{
char *loc_path = (char *)loc->path;
char *tmp_path = NULL;
@@ -1062,7 +1062,7 @@ path_inodelk (call_frame_t *frame, xlator_t *this,
path_common_cbk,
FIRST_CHILD(this),
FIRST_CHILD(this)->fops->inodelk,
- loc, cmd, lock);
+ volume, loc, cmd, lock);
loc->path = loc_path;
if (tmp_path != loc_path)