diff options
Diffstat (limited to 'xlators/features/utime/src/utime-gen-fops-c.py')
| -rw-r--r-- | xlators/features/utime/src/utime-gen-fops-c.py | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/xlators/features/utime/src/utime-gen-fops-c.py b/xlators/features/utime/src/utime-gen-fops-c.py index d7f12d18f2b..ab56dc9a4b3 100644 --- a/xlators/features/utime/src/utime-gen-fops-c.py +++ b/xlators/features/utime/src/utime-gen-fops-c.py @@ -16,7 +16,7 @@ gf_utime_@NAME@ (call_frame_t *frame, xlator_t *this,  {          gl_timespec_get(&frame->root->ctime); -        (void) utime_update_attribute_flags(frame, GF_FOP_@UPNAME@); +        (void) utime_update_attribute_flags(frame, this, GF_FOP_@UPNAME@);          STACK_WIND (frame, gf_utime_@NAME@_cbk, FIRST_CHILD(this),                      FIRST_CHILD(this)->fops->@NAME@, @SHORT_ARGS@);          return 0; @@ -41,7 +41,7 @@ gf_utime_@NAME@ (call_frame_t *frame, xlator_t *this,  {          gl_timespec_get(&frame->root->ctime); -        (void) utime_update_attribute_flags(frame, GF_FOP_READ); +        (void) utime_update_attribute_flags(frame, this, GF_FOP_READ);          STACK_WIND (frame, gf_utime_@NAME@_cbk, FIRST_CHILD(this),                      FIRST_CHILD(this)->fops->@NAME@, @SHORT_ARGS@);          return 0; @@ -55,7 +55,7 @@ gf_utime_@NAME@ (call_frame_t *frame, xlator_t *this,  {          gl_timespec_get(&frame->root->ctime); -        (void) utime_update_attribute_flags(frame, GF_FOP_WRITE); +        (void) utime_update_attribute_flags(frame, this, GF_FOP_WRITE);          STACK_WIND (frame, gf_utime_@NAME@_cbk, FIRST_CHILD(this),                      FIRST_CHILD(this)->fops->@NAME@, @SHORT_ARGS@);          return 0;  | 
