diff options
| -rw-r--r-- | libglusterfs/src/glusterfs.h | 1 | ||||
| -rw-r--r-- | xlators/storage/posix/src/posix.c | 19 | 
2 files changed, 20 insertions, 0 deletions
diff --git a/libglusterfs/src/glusterfs.h b/libglusterfs/src/glusterfs.h index f961fd593..076833d23 100644 --- a/libglusterfs/src/glusterfs.h +++ b/libglusterfs/src/glusterfs.h @@ -94,6 +94,7 @@  #define GLUSTERFS_ENTRYLK_COUNT "glusterfs.entrylk-count"  #define GLUSTERFS_POSIXLK_COUNT "glusterfs.posixlk-count"  #define QUOTA_SIZE_KEY "trusted.glusterfs.quota.size" +#define GFID_TO_PATH_KEY "glusterfs.gfid2path"  /* Index xlator related */  #define GF_XATTROP_INDEX_GFID "glusterfs.xattrop_index_gfid" diff --git a/xlators/storage/posix/src/posix.c b/xlators/storage/posix/src/posix.c index 5849626b0..deaf2e772 100644 --- a/xlators/storage/posix/src/posix.c +++ b/xlators/storage/posix/src/posix.c @@ -2393,6 +2393,7 @@ posix_getxattr (call_frame_t *frame, xlator_t *this,          dict_t * dict           = NULL;          char *   file_contents  = NULL;          int      ret            = -1; +        char *   path           = NULL;          DECLARE_OLD_FS_ID_VAR; @@ -2456,6 +2457,24 @@ posix_getxattr (call_frame_t *frame, xlator_t *this,                  goto done;          } +        if (loc->inode && name && +            (strcmp (name, GFID_TO_PATH_KEY) == 0)) { +                ret = inode_path (loc->inode, NULL, &path); +                if (ret < 0) { +                        gf_log (this->name, GF_LOG_WARNING, "%s: could not get " +                                "inode path", uuid_utoa (loc->inode->gfid)); +                        goto done; +                } + +                ret = dict_set_dynstr (dict, GFID_TO_PATH_KEY, path); +                if (ret < 0) { +                        gf_log (this->name, GF_LOG_WARNING, +                                "could not set value (%s) in dictionary", +                                host_buf); +                } +                goto done; +        } +          if (name) {                  strcpy (key, name);  | 
