From 834a87e8a2c93bfbf47eec9cfda1fb26f9c11caa Mon Sep 17 00:00:00 2001 From: Erez Zadok Date: Tue, 27 Dec 2016 19:49:24 -0500 Subject: [PATCH] Wrapfs: use new full_name_hash() prototype Signed-off-by: Erez Zadok --- fs/wrapfs/lookup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/wrapfs/lookup.c b/fs/wrapfs/lookup.c index eae79babf5fa..0ff09bb9c77b 100644 --- a/fs/wrapfs/lookup.c +++ b/fs/wrapfs/lookup.c @@ -258,7 +258,7 @@ static struct dentry *__wrapfs_lookup(struct dentry *dentry, /* instatiate a new negative dentry */ this.name = name; this.len = strlen(name); - this.hash = full_name_hash(this.name, this.len); + this.hash = full_name_hash(lower_dir_dentry, this.name, this.len); lower_dentry = d_lookup(lower_dir_dentry, &this); if (lower_dentry) goto setup_lower; -- 2.43.0