diff options
author | Sage Weil <sage@newdream.net> | 2011-08-15 13:02:37 -0700 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2011-08-15 13:03:56 -0700 |
commit | 795858dbd253462a67e14272edeaae73c6074b17 (patch) | |
tree | a9fb8a08682e6387d7d6c745633a6b7e2aec2679 /fs/ceph | |
parent | 5185352c163a72cf969b2fbbfb89801b398896fd (diff) | |
download | linux-3.10-795858dbd253462a67e14272edeaae73c6074b17.tar.gz linux-3.10-795858dbd253462a67e14272edeaae73c6074b17.tar.bz2 linux-3.10-795858dbd253462a67e14272edeaae73c6074b17.zip |
ceph: fix encoding of ino only (not relative) paths
A 'path' consists of a starting ino and relative component. Encode even
when there is no relative component. This is primarily needed by the
NFS reexport code.
Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/ceph')
-rw-r--r-- | fs/ceph/mds_client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/mds_client.c b/fs/ceph/mds_client.c index fee028b5332..86c59e16ba7 100644 --- a/fs/ceph/mds_client.c +++ b/fs/ceph/mds_client.c @@ -1595,7 +1595,7 @@ static int set_request_path_attr(struct inode *rinode, struct dentry *rdentry, r = build_dentry_path(rdentry, ppath, pathlen, ino, freepath); dout(" dentry %p %llx/%.*s\n", rdentry, *ino, *pathlen, *ppath); - } else if (rpath) { + } else if (rpath || rino) { *ino = rino; *ppath = rpath; *pathlen = strlen(rpath); |