diff options
Diffstat (limited to 'xlators/storage/posix/src/posix-helpers.c')
| -rw-r--r-- | xlators/storage/posix/src/posix-helpers.c | 40 | 
1 files changed, 30 insertions, 10 deletions
diff --git a/xlators/storage/posix/src/posix-helpers.c b/xlators/storage/posix/src/posix-helpers.c index dc1c1750a6f..c8041b6386f 100644 --- a/xlators/storage/posix/src/posix-helpers.c +++ b/xlators/storage/posix/src/posix-helpers.c @@ -336,11 +336,21 @@ posix_istat (xlator_t *this, uuid_t gfid, const char *basename,          ret = lstat (real_path, &lstatbuf); -        if (ret == -1) { -                if (errno != ENOENT && errno != ELOOP) -                        gf_log (this->name, GF_LOG_WARNING, -                                "lstat failed on %s (%s)", -                                real_path, strerror (errno)); +        if (ret != 0) { +                if (ret == -1) { +                        if (errno != ENOENT && errno != ELOOP) +                                gf_log (this->name, GF_LOG_WARNING, +                                        "lstat failed on %s (%s)", +                                        real_path, strerror (errno)); +                } else { +                        // may be some backend filesystem issue +                        gf_log (this->name, GF_LOG_ERROR, "lstat failed on " +                                "%s and return value is %d instead of -1. " +                                "Please see dmesg output to check whether the " +                                "failure is due to backend filesystem issue", +                                real_path, ret); +                        ret = -1; +                }                  goto out;          } @@ -384,11 +394,21 @@ posix_pstat (xlator_t *this, uuid_t gfid, const char *path,          ret = lstat (path, &lstatbuf); -        if (ret == -1) { -                if (errno != ENOENT) -                        gf_log (this->name, GF_LOG_WARNING, -                                "lstat failed on %s (%s)", -                                path, strerror (errno)); +        if (ret != 0) { +                if (ret == -1) { +                        if (errno != ENOENT) +                                gf_log (this->name, GF_LOG_WARNING, +                                        "lstat failed on %s (%s)", +                                        path, strerror (errno)); +                } else { +                        // may be some backend filesytem issue +                        gf_log (this->name, GF_LOG_ERROR, "lstat failed on " +                                "%s and return value is %d instead of -1. " +                                "Please see dmesg output to check whether the " +                                "failure is due to backend filesystem issue", +                                path, ret); +                        ret = -1; +                }                  goto out;          }  | 
