diff options
| author | Anand Avati <avati@gluster.com> | 2010-09-03 13:59:48 +0000 | 
|---|---|---|
| committer | Vijay Bellur <vijay@dev.gluster.com> | 2010-09-04 01:45:21 -0700 | 
| commit | 8b9a144414162413a399d59975fe3b7347907f4f (patch) | |
| tree | b37a01b2c146b47a772dd3a7f4ce3563577923fa /xlators/debug | |
| parent | d838e4496dec6b8889de47dd0ee31c4899ec7407 (diff) | |
gfid: changes in mkdir() prototype to have params dictionary with uuid in it
Signed-off-by: Anand V. Avati <avati@blackhole.gluster.com>
Signed-off-by: Anand V. Avati <avati@amp.gluster.com>
Signed-off-by: Vijay Bellur <vijay@dev.gluster.com>
BUG: 971 (dynamic volume management)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=971
Diffstat (limited to 'xlators/debug')
| -rw-r--r-- | xlators/debug/error-gen/src/error-gen.c | 4 | ||||
| -rw-r--r-- | xlators/debug/io-stats/src/io-stats.c | 4 | ||||
| -rw-r--r-- | xlators/debug/trace/src/trace.c | 5 | 
3 files changed, 7 insertions, 6 deletions
diff --git a/xlators/debug/error-gen/src/error-gen.c b/xlators/debug/error-gen/src/error-gen.c index 955b197ed63..e7ed8c6a850 100644 --- a/xlators/debug/error-gen/src/error-gen.c +++ b/xlators/debug/error-gen/src/error-gen.c @@ -730,7 +730,7 @@ error_gen_mkdir_cbk (call_frame_t *frame, void *cookie, xlator_t *this,  int  error_gen_mkdir (call_frame_t *frame, xlator_t *this, -		 loc_t *loc, mode_t mode) +		 loc_t *loc, mode_t mode, dict_t *params)  {  	int              op_errno = 0;          eg_t            *egp = NULL; @@ -752,7 +752,7 @@ error_gen_mkdir (call_frame_t *frame, xlator_t *this,  	STACK_WIND (frame, error_gen_mkdir_cbk,  		    FIRST_CHILD(this),  		    FIRST_CHILD(this)->fops->mkdir, -		    loc, mode); +		    loc, mode, params);  	return 0;  } diff --git a/xlators/debug/io-stats/src/io-stats.c b/xlators/debug/io-stats/src/io-stats.c index ce2bac51ad9..b283bd7b4bc 100644 --- a/xlators/debug/io-stats/src/io-stats.c +++ b/xlators/debug/io-stats/src/io-stats.c @@ -884,14 +884,14 @@ io_stats_mknod (call_frame_t *frame, xlator_t *this,  int  io_stats_mkdir (call_frame_t *frame, xlator_t *this, -                loc_t *loc, mode_t mode) +                loc_t *loc, mode_t mode, dict_t *params)  {          BUMP_FOP (MKDIR);          STACK_WIND (frame, io_stats_mkdir_cbk,                      FIRST_CHILD(this),                      FIRST_CHILD(this)->fops->mkdir, -                    loc, mode); +                    loc, mode, params);          return 0;  } diff --git a/xlators/debug/trace/src/trace.c b/xlators/debug/trace/src/trace.c index 339ebeaf57f..7b5164c8439 100644 --- a/xlators/debug/trace/src/trace.c +++ b/xlators/debug/trace/src/trace.c @@ -1349,7 +1349,8 @@ trace_mknod (call_frame_t *frame, xlator_t *this, loc_t *loc,  int -trace_mkdir (call_frame_t *frame, xlator_t *this, loc_t *loc, mode_t mode) +trace_mkdir (call_frame_t *frame, xlator_t *this, loc_t *loc, mode_t mode, +             dict_t *params)  {          if (trace_fop_names[GF_FOP_MKDIR].enabled) {                  gf_log (this->name, GF_LOG_NORMAL, @@ -1361,7 +1362,7 @@ trace_mkdir (call_frame_t *frame, xlator_t *this, loc_t *loc, mode_t mode)          STACK_WIND (frame, trace_mkdir_cbk,                      FIRST_CHILD(this),                      FIRST_CHILD(this)->fops->mkdir, -                    loc, mode); +                    loc, mode, params);          return 0;  }  | 
