diff options
| -rw-r--r-- | xlators/performance/write-behind/src/write-behind.c | 9 | 
1 files changed, 1 insertions, 8 deletions
diff --git a/xlators/performance/write-behind/src/write-behind.c b/xlators/performance/write-behind/src/write-behind.c index 1a8bfe7df..2124550de 100644 --- a/xlators/performance/write-behind/src/write-behind.c +++ b/xlators/performance/write-behind/src/write-behind.c @@ -1277,13 +1277,6 @@ wb_setattr (call_frame_t *frame, xlator_t *this, loc_t *loc,          frame->local = local; -        if (!(valid & (GF_SET_ATTR_ATIME | GF_SET_ATTR_MTIME))) { -                STACK_WIND (frame, wb_setattr_cbk, FIRST_CHILD (this), -                            FIRST_CHILD (this)->fops->setattr, loc, stbuf, -                            valid); -                goto out; -        } -          if (loc->inode) {                  /*                    FIXME: fd_lookup extends life of fd till the execution @@ -1334,7 +1327,7 @@ unwind:          if (stub) {                  call_stub_destroy (stub);          } -out: +          return 0;  }  | 
