VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   57 Tags
author: Al Viro <viro@zeniv.linux.org.uk> 2013-06-16 20:05:38 +0400 committer: Al Viro <viro@zeniv.linux.org.uk> 2013-06-29 12:57:25 +0400 commit: 0747fdb2bd59d9404ae2345cbddd7d837c5c4648 parent: cb5e05d1a6786dfd393cf4825d626817df01c2c3
Commit Summary:
ecryptfs: switch ecryptfs_decode_and_decrypt_filename() from dentry to sb
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/fs/ecryptfs/inode.c b/fs/ecryptfs/inode.c
index 5eab400e2590..a2f2bb2c256d 100644
--- a/fs/ecryptfs/inode.c
+++ b/fs/ecryptfs/inode.c
@@ -679,7 +679,7 @@ static int ecryptfs_readlink_lower(struct dentry *dentry, char **buf,
 	set_fs(old_fs);
 	if (rc < 0)
 		goto out;
-	rc = ecryptfs_decode_and_decrypt_filename(buf, bufsiz, dentry,
+	rc = ecryptfs_decode_and_decrypt_filename(buf, bufsiz, dentry->d_sb,
 						  lower_buf, rc);
 out:
 	kfree(lower_buf);