diff options
Diffstat (limited to 'xlators/storage/posix/src')
| -rw-r--r-- | xlators/storage/posix/src/posix-helpers.c | 10 | 
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;  }  | 
