aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/fs/ecryptfs/dentry.c
diff options
context:
space:
mode:
authorTyler Hicks <tyhicks@canonical.com>2013-01-17 11:36:10 -0800
committerTyler Hicks <tyhicks@canonical.com>2013-01-17 11:36:10 -0800
commitbbcb03e3ce8c76a4ecf0ea7d365f9f0e913fc329 (patch)
treea0a97379983c43130993bfa3f73f12c20814c246 /fs/ecryptfs/dentry.c
parenteCryptfs: initialize payload_len in keystore.c (diff)
downloadwireguard-linux-bbcb03e3ce8c76a4ecf0ea7d365f9f0e913fc329.tar.xz
wireguard-linux-bbcb03e3ce8c76a4ecf0ea7d365f9f0e913fc329.zip
eCryptfs: Fix -Wunused-but-set-variable warnings
These two variables are no longer used and can be removed. Fixes warnings when building with W=1. Signed-off-by: Tyler Hicks <tyhicks@canonical.com>
Diffstat (limited to 'fs/ecryptfs/dentry.c')
-rw-r--r--fs/ecryptfs/dentry.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/ecryptfs/dentry.c b/fs/ecryptfs/dentry.c
index 1b5d9af937df..bf12ba5dd223 100644
--- a/fs/ecryptfs/dentry.c
+++ b/fs/ecryptfs/dentry.c
@@ -45,14 +45,12 @@
static int ecryptfs_d_revalidate(struct dentry *dentry, unsigned int flags)
{
struct dentry *lower_dentry;
- struct vfsmount *lower_mnt;
int rc = 1;
if (flags & LOOKUP_RCU)
return -ECHILD;
lower_dentry = ecryptfs_dentry_to_lower(dentry);
- lower_mnt = ecryptfs_dentry_to_lower_mnt(dentry);
if (!lower_dentry->d_op || !lower_dentry->d_op->d_revalidate)
goto out;
rc = lower_dentry->d_op->d_revalidate(lower_dentry, flags);