diff options
author | Mohammed Junaid <junaid@redhat.com> | 2013-03-06 14:04:51 +0530 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2013-03-06 21:08:36 -0800 |
commit | b7b5c51bbeb6401c65cc879f7aacb9c7ca1c85b1 (patch) | |
tree | dd8fc9e98d89a481067248ad395f3c957bec75a3 /xlators | |
parent | 16ce96c299c93e09b1c1ddceaa75399a7211a7d0 (diff) |
storage/posix: Remove a redundant lstat in posix_handle_hard.
Change-Id: I9129b71d5568eff3513c17e3607256783fdc42ec
BUG: 903396
Signed-off-by: Mohammed Junaid <junaid@redhat.com>
Reviewed-on: http://review.gluster.org/4641
Reviewed-by: Peter Portante <pportant@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Kaleb KEITHLEY <kkeithle@redhat.com>
Diffstat (limited to 'xlators')
-rw-r--r-- | xlators/storage/posix/src/posix-handle.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/xlators/storage/posix/src/posix-handle.c b/xlators/storage/posix/src/posix-handle.c index 33bf3db56a5..219a582c9f7 100644 --- a/xlators/storage/posix/src/posix-handle.c +++ b/xlators/storage/posix/src/posix-handle.c @@ -573,13 +573,6 @@ posix_handle_hard (xlator_t *this, const char *oldpath, uuid_t gfid, struct stat } } - ret = lstat (newpath, &newbuf); - if (ret) { - gf_log (this->name, GF_LOG_WARNING, - "lstat on %s failed (%s)", newpath, strerror (errno)); - return -1; - } - if (newbuf.st_ino != oldbuf->st_ino || newbuf.st_dev != oldbuf->st_dev) { gf_log (this->name, GF_LOG_WARNING, |