diff options
| author | Amar Tumballi <amar@gluster.com> | 2010-09-14 07:40:11 +0000 | 
|---|---|---|
| committer | Vijay Bellur <vijay@dev.gluster.com> | 2010-09-14 08:16:01 -0700 | 
| commit | 8e068b0615859829ac1bb2351b78307b2b496cdc (patch) | |
| tree | 841bc095caf5ed8f81e3d371ce4366a6664e52e4 /xlators/debug/trace/src/trace.c | |
| parent | c55cc2d5362a607692beac96a34add2e79a9ad44 (diff) | |
remove 'gen' from iatt/protocol structures
Signed-off-by: Amar Tumballi <amar@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/trace/src/trace.c')
| -rw-r--r-- | xlators/debug/trace/src/trace.c | 16 | 
1 files changed, 8 insertions, 8 deletions
diff --git a/xlators/debug/trace/src/trace.c b/xlators/debug/trace/src/trace.c index 32a3869e6df..f5af77681a9 100644 --- a/xlators/debug/trace/src/trace.c +++ b/xlators/debug/trace/src/trace.c @@ -82,11 +82,11 @@ trace_stat_to_str (struct iatt *stbuf)                    localtime ((time_t *)&ia_time));          asprint_ret_value = gf_asprintf (&statstr, -                                      "ia_ino=%"PRIu64", ia_gen=%"PRIu64 +                                      "ia_ino=%"PRIu64                                        ", st_mode=%o, ia_nlink=%"GF_PRI_NLINK", "                                        "ia_uid=%d, ia_gid=%d, ia_size=%"PRId64", ia_blocks=%"PRId64                                        ", ia_atime=%s, ia_mtime=%s, ia_ctime=%s", -                                      stbuf->ia_ino, stbuf->ia_gen, +                                      stbuf->ia_ino,                                        st_mode_from_ia (stbuf->ia_prot, stbuf->ia_type),                                        stbuf->ia_nlink, stbuf->ia_uid,                                        stbuf->ia_gid, stbuf->ia_size, @@ -182,12 +182,12 @@ trace_stat_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                                    localtime ((time_t *)&ia_time));                          gf_log (this->name, GF_LOG_NORMAL, -                                "%"PRId64": (op_ret=%d, buf {ia_gen=%"PRIu64", " +                                "%"PRId64": (op_ret=%d, buf {"                                  "ia_ino=%"PRIu64", st_mode=%o, ia_nlink=%"GF_PRI_NLINK", "                                  "ia_uid=%d, ia_gid=%d, ia_rdev=%"PRIu64", ia_size=%"PRId64                                  ", ia_blksize=%"GF_PRI_BLKSIZE", ia_blocks=%"PRId64", "                                  "ia_atime=%s, ia_mtime=%s, ia_ctime=%s})", -                                frame->root->unique, op_ret, buf->ia_gen, buf->ia_ino, +                                frame->root->unique, op_ret, buf->ia_ino,                                  st_mode_from_ia (buf->ia_prot, buf->ia_type),                                  buf->ia_nlink, buf->ia_uid, buf->ia_gid,                                  buf->ia_rdev, buf->ia_size, buf->ia_blksize, @@ -229,12 +229,12 @@ trace_readv_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                                    localtime ((time_t *)&ia_time));                          gf_log (this->name, GF_LOG_NORMAL, -                                "%"PRId64": (op_ret=%d, op_errno=%d, *buf {ia_gen=%"PRIu64", " +                                "%"PRId64": (op_ret=%d, op_errno=%d, *buf {"                                  "ia_ino=%"PRIu64", st_mode=%o, ia_nlink=%"GF_PRI_NLINK", "                                  "ia_uid=%d, ia_gid=%d, ia_rdev=%"PRIu64", "                                  "ia_size=%"PRId64", ia_blksize=%"GF_PRI_BLKSIZE", "                                  "ia_blocks=%"PRId64", ia_atime=%s, ia_mtime=%s, ia_ctime=%s})", -                                frame->root->unique, op_ret, op_errno, buf->ia_gen, buf->ia_ino, +                                frame->root->unique, op_ret, op_errno, buf->ia_ino,                                  st_mode_from_ia (buf->ia_prot, buf->ia_type),                                  buf->ia_nlink, buf->ia_uid, buf->ia_gid,                                  buf->ia_rdev, buf->ia_size, buf->ia_blksize, buf->ia_blocks, @@ -1097,12 +1097,12 @@ trace_fstat_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                                    localtime ((time_t *)&ia_time));                          gf_log (this->name, GF_LOG_NORMAL, -                                "%"PRId64": (op_ret=%d, *buf {ia_gen=%"PRIu64", " +                                "%"PRId64": (op_ret=%d, *buf {"                                  "ia_ino=%"PRIu64", st_mode=%o, ia_nlink=%"GF_PRI_NLINK", "                                  "ia_uid=%d, ia_gid=%d, ia_rdev=%"PRIu64", ia_size=%"PRId64", "                                  "ia_blksize=%"GF_PRI_BLKSIZE", ia_blocks=%"PRId64", ia_atime=%s, "                                  "ia_mtime=%s, ia_ctime=%s})", -                                frame->root->unique, op_ret, buf->ia_gen, buf->ia_ino, +                                frame->root->unique, op_ret, buf->ia_ino,                                  st_mode_from_ia (buf->ia_prot, buf->ia_type),                                  buf->ia_nlink, buf->ia_uid, buf->ia_gid,                                  buf->ia_rdev, buf->ia_size, buf->ia_blksize,  | 
