diff options
author | Shehjar Tikoo <shehjart@zresearch.com> | 2009-04-21 04:49:45 -0700 |
---|---|---|
committer | Anand V. Avati <avati@amp.gluster.com> | 2009-04-22 13:06:31 +0530 |
commit | a9b4360d889097e8ea25497eb669daebcaf1e381 (patch) | |
tree | 2fabe188626e8d056c003f03b4a2d7f361ed9238 /xlators/performance/io-threads | |
parent | d1eb9b13d2e50485e69301ade12afe5ea8636af8 (diff) |
io-threads: Add readdir fop
Signed-off-by: Anand V. Avati <avati@amp.gluster.com>
Diffstat (limited to 'xlators/performance/io-threads')
-rw-r--r-- | xlators/performance/io-threads/src/io-threads.c | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/xlators/performance/io-threads/src/io-threads.c b/xlators/performance/io-threads/src/io-threads.c index f0207f986..9655fc60d 100644 --- a/xlators/performance/io-threads/src/io-threads.c +++ b/xlators/performance/io-threads/src/io-threads.c @@ -1792,6 +1792,41 @@ iot_removexattr (call_frame_t *frame, xlator_t *this, loc_t *loc, return 0; } +int +iot_readdir_cbk (call_frame_t *frame, void *cookie, xlator_t *this, + int32_t op_ret, int32_t op_errno, + gf_dirent_t *entries) +{ + STACK_UNWIND (frame, op_ret, op_errno, entries); + return 0; +} + +int +iot_readdir_wrapper (call_frame_t *frame, xlator_t *this, fd_t *fd, + size_t size, off_t offset) +{ + STACK_WIND (frame, iot_readdir_cbk, FIRST_CHILD (this), + FIRST_CHILD (this)->fops->readdir, fd, size, offset); + return 0; +} + +int +iot_readdir (call_frame_t *frame, xlator_t *this, fd_t *fd, size_t size, + off_t offset) +{ + call_stub_t *stub = NULL; + + stub = fop_readdir_stub (frame, iot_readdir_wrapper, fd, size, offset); + if (!stub) { + gf_log (this->private, GF_LOG_ERROR,"cannot get readdir stub"); + STACK_UNWIND (frame, -1, ENOMEM, NULL); + return 0; + } + + iot_schedule_ordered ((iot_conf_t *)this->private, fd->inode, stub); + return 0; +} + /* Must be called with worker lock held */ void _iot_queue (iot_worker_t *worker, @@ -2322,6 +2357,7 @@ struct xlator_fops fops = { .fgetxattr = iot_fgetxattr, /* O */ .fsetxattr = iot_fsetxattr, /* O */ .removexattr = iot_removexattr, /* U */ + .readdir = iot_readdir, /* O */ }; struct xlator_mops mops = { |