diff options
Diffstat (limited to 'fs/ecryptfs/crypto.c')
-rw-r--r-- | fs/ecryptfs/crypto.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ecryptfs/crypto.c b/fs/ecryptfs/crypto.c index b8d5c8091024..f48c4987a15c 100644 --- a/fs/ecryptfs/crypto.c +++ b/fs/ecryptfs/crypto.c | |||
@@ -1568,11 +1568,11 @@ out: | |||
1568 | } | 1568 | } |
1569 | 1569 | ||
1570 | int ecryptfs_read_and_validate_xattr_region(char *page_virt, | 1570 | int ecryptfs_read_and_validate_xattr_region(char *page_virt, |
1571 | struct dentry *ecryptfs_dentry) | 1571 | struct inode *inode) |
1572 | { | 1572 | { |
1573 | int rc; | 1573 | int rc; |
1574 | 1574 | ||
1575 | rc = ecryptfs_read_xattr_region(page_virt, ecryptfs_dentry->d_inode); | 1575 | rc = ecryptfs_read_xattr_region(page_virt, inode); |
1576 | if (rc) | 1576 | if (rc) |
1577 | goto out; | 1577 | goto out; |
1578 | if (!contains_ecryptfs_marker(page_virt + ECRYPTFS_FILE_SIZE_BYTES)) { | 1578 | if (!contains_ecryptfs_marker(page_virt + ECRYPTFS_FILE_SIZE_BYTES)) { |