search for: 951ef09

Displaying 1 result from an estimated 1 matches for "951ef09".

Did you mean: 95109
2010 Nov 17
0
[PATCH] Btrfs: handle NFS lookups properly
...in everything acting the way its supposed to. Thanks, Signed-off-by: Josef Bacik <josef@redhat.com> --- fs/btrfs/export.c | 76 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 76 insertions(+), 0 deletions(-) diff --git a/fs/btrfs/export.c b/fs/btrfs/export.c index 951ef09..6f04444 100644 --- a/fs/btrfs/export.c +++ b/fs/btrfs/export.c @@ -232,9 +232,85 @@ fail: return ERR_PTR(ret); } +static int btrfs_get_name(struct dentry *parent, char *name, + struct dentry *child) +{ + struct inode *inode = child->d_inode; + struct inode *dir = parent->d_inode; +...