diff options
author | Zhou Zhengping <johnzzpcrystal@gmail.com> | 2016-07-16 21:43:58 -0400 |
---|---|---|
committer | Jeff Darcy <jdarcy@redhat.com> | 2016-07-18 04:59:05 -0700 |
commit | 73b9ede7e115fab245b0f59d18e4d6cc4d297cec (patch) | |
tree | 88b9b003486c7b98241d93069e7fa773508b1284 /xlators/meta | |
parent | 939184c6709db1391d38c892e098c20519d746cc (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/meta')
-rw-r--r-- | xlators/meta/src/meta-helpers.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/xlators/meta/src/meta-helpers.c b/xlators/meta/src/meta-helpers.c index d01fcb3c679..e681af59bf7 100644 --- a/xlators/meta/src/meta-helpers.c +++ b/xlators/meta/src/meta-helpers.c @@ -185,21 +185,6 @@ meta_direct_io_mode (dict_t *xdata, call_frame_t *frame) } -static uint64_t -gfid_to_ino (uuid_t gfid) -{ - uint64_t ino = 0; - int i = 0, j = 0; - - for (i = 15; i > (15 - 8); i--) { - ino += (uint64_t)(gfid[i]) << j; - j += 8; - } - - return ino; -} - - static void meta_uuid_copy (uuid_t dst, uuid_t src) { |