diff options
Diffstat (limited to 'xlators/cluster/stripe/src/stripe.c')
-rw-r--r-- | xlators/cluster/stripe/src/stripe.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/xlators/cluster/stripe/src/stripe.c b/xlators/cluster/stripe/src/stripe.c index 78479129620..f6c3ea4e612 100644 --- a/xlators/cluster/stripe/src/stripe.c +++ b/xlators/cluster/stripe/src/stripe.c @@ -4276,6 +4276,17 @@ err: } int32_t +stripe_seek (call_frame_t *frame, xlator_t *this, fd_t *fd, off_t offset, + gf_seek_what_t what, dict_t *xdata) +{ + /* TBD */ + gf_log (this->name, GF_LOG_INFO, "seek called on %s.", + uuid_utoa (fd->inode->gfid)); + STRIPE_STACK_UNWIND (seek, frame, -1, ENOTSUP, 0, NULL); + return 0; +} + +int32_t stripe_release (xlator_t *this, fd_t *fd) { return 0; @@ -5729,6 +5740,7 @@ struct xlator_fops fops = { .fallocate = stripe_fallocate, .discard = stripe_discard, .zerofill = stripe_zerofill, + .seek = stripe_seek, }; struct xlator_cbks cbks = { |