diff options
Diffstat (limited to 'xlators/features')
-rw-r--r-- | xlators/features/gfid-access/src/gfid-access.c | 9 | ||||
-rw-r--r-- | xlators/features/snapview-server/src/snapview-server-helpers.c | 10 |
2 files changed, 3 insertions, 16 deletions
diff --git a/xlators/features/gfid-access/src/gfid-access.c b/xlators/features/gfid-access/src/gfid-access.c index a2b1a2c6793..7d75b09bae0 100644 --- a/xlators/features/gfid-access/src/gfid-access.c +++ b/xlators/features/gfid-access/src/gfid-access.c @@ -655,10 +655,7 @@ ga_virtual_lookup_cbk (call_frame_t *frame, void *cookie, xlator_t *this, int32_t op_ret, int32_t op_errno, inode_t *inode, struct iatt *buf, dict_t *xdata, struct iatt *postparent) { - int j = 0; - int i = 0; int ret = 0; - uint64_t temp_ino = 0; inode_t *cbk_inode = NULL; inode_t *true_inode = NULL; uuid_t random_gfid = {0,}; @@ -727,11 +724,7 @@ ga_virtual_lookup_cbk (call_frame_t *frame, void *cookie, xlator_t *this, gf_uuid_copy (buf->ia_gfid, random_gfid); - for (i = 15; i > (15 - 8); i--) { - temp_ino += (uint64_t)(buf->ia_gfid[i]) << j; - j += 8; - } - buf->ia_ino = temp_ino; + buf->ia_ino = gfid_to_ino (buf->ia_gfid); unwind: /* Lookup on non-existing gfid returns ESTALE. diff --git a/xlators/features/snapview-server/src/snapview-server-helpers.c b/xlators/features/snapview-server/src/snapview-server-helpers.c index dd2e891a849..5bf41c2317b 100644 --- a/xlators/features/snapview-server/src/snapview-server-helpers.c +++ b/xlators/features/snapview-server/src/snapview-server-helpers.c @@ -347,9 +347,6 @@ svs_uuid_generate (uuid_t gfid, char *snapname, uuid_t origin_gfid) void svs_fill_ino_from_gfid (struct iatt *buf) { - uint64_t temp_ino = 0; - int j = 0; - int i = 0; xlator_t *this = NULL; this = THIS; @@ -362,11 +359,8 @@ svs_fill_ino_from_gfid (struct iatt *buf) buf->ia_ino = -1; goto out; } - for (i = 15; i > (15 - 8); i--) { - temp_ino += (uint64_t)(buf->ia_gfid[i]) << j; - j += 8; - } - buf->ia_ino = temp_ino; + + buf->ia_ino = gfid_to_ino (buf->ia_gfid); out: return; } |