summaryrefslogtreecommitdiffstats
path: root/xlators/storage/posix/src/posix-helpers.c
diff options
context:
space:
mode:
authorZhou Zhengping <johnzzpcrystal@gmail.com>2016-07-16 21:43:58 -0400
committerJeff Darcy <jdarcy@redhat.com>2016-07-18 04:59:05 -0700
commit73b9ede7e115fab245b0f59d18e4d6cc4d297cec (patch)
tree88b9b003486c7b98241d93069e7fa773508b1284 /xlators/storage/posix/src/posix-helpers.c
parent939184c6709db1391d38c892e098c20519d746cc (diff)
core: add a basis function to reduce verbose code
Change-Id: Icebe1b865edb317685e93f3ef11d98fd9b2c2e9a BUG: 1357226 Signed-off-by: Zhou Zhengping <johnzzpcrystal@gmail.com> Reviewed-on: http://review.gluster.org/14936 Reviewed-by: Niels de Vos <ndevos@redhat.com> Smoke: Gluster Build System <jenkins@build.gluster.org> CentOS-regression: Gluster Build System <jenkins@build.gluster.org> NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
Diffstat (limited to 'xlators/storage/posix/src/posix-helpers.c')
-rw-r--r--xlators/storage/posix/src/posix-helpers.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/xlators/storage/posix/src/posix-helpers.c b/xlators/storage/posix/src/posix-helpers.c
index d6209521206..8ad674e063f 100644
--- a/xlators/storage/posix/src/posix-helpers.c
+++ b/xlators/storage/posix/src/posix-helpers.c
@@ -527,20 +527,12 @@ posix_fill_gfid_fd (xlator_t *this, int fd, struct iatt *iatt)
void
posix_fill_ino_from_gfid (xlator_t *this, struct iatt *buf)
{
- uint64_t temp_ino = 0;
- int j = 0;
- int i = 0;
-
/* consider least significant 8 bytes of value out of gfid */
if (gf_uuid_is_null (buf->ia_gfid)) {
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;
}