summaryrefslogtreecommitdiffstats
path: root/cli/src
diff options
context:
space:
mode:
Diffstat (limited to 'cli/src')
0 files changed, 0 insertions, 0 deletions
, path); return 0; } int32_t stat_prefetch_unlink_cbk (call_frame_t *frame, void *cookie, xlator_t *this, int32_t op_ret, int32_t op_errno) { STACK_UNWIND (frame, op_ret, op_errno); return 0; } int32_t stat_prefetch_unlink (call_frame_t *frame, struct xlator *this, const char *path) { stat_prefetch_cache_flush (this->private, 1); STACK_WIND (frame, stat_prefetch_unlink_cbk, FIRST_CHILD(this), FIRST_CHILD(this)->fops->unlink, path); return 0; } int32_t stat_prefetch_chmod_cbk (call_frame_t *frame, void *cookie, xlator_t *this, int32_t op_ret, int32_t op_errno, struct stat *buf) { STACK_UNWIND (frame, op_ret, op_errno, buf); return 0; } int32_t stat_prefetch_chmod (call_frame_t *frame, struct xlator *this, const char *path, mode_t mode) { stat_prefetch_cache_flush (this->private, 1); STACK_WIND (frame, stat_prefetch_chmod_cbk, FIRST_CHILD(this), FIRST_CHILD(this)->fops->chmod, path, mode); return 0; } int32_t stat_prefetch_chown_cbk (call_frame_t *frame, void *cookie, xlator_t *this, int32_t op_ret, int32_t op_errno, struct stat *buf) { STACK_UNWIND (frame, op_ret, op_errno, buf); return 0; } int32_t stat_prefetch_chown (call_frame_t *frame, struct xlator *this, const char *path, uid_t uid, gid_t gid) { stat_prefetch_cache_flush (this->private, 1); STACK_WIND (frame, stat_prefetch_chown_cbk, FIRST_CHILD(this), FIRST_CHILD(this)->fops->chown, path, uid, gid); return 0; } int32_t stat_prefetch_utimes_cbk (call_frame_t *frame, void *cookie,