aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ecryptfs
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2021-01-29 18:03:26 -0500
committerAl Viro <viro@zeniv.linux.org.uk>2021-03-20 17:46:44 -0400
commit9d786beb6fe5cf8fcc1ce5336a89401eaa444fb6 (patch)
treef2e3df533064b1dd7705f8507eb501ef5e7b14e5 /fs/ecryptfs
parentecryptfs: get rid of unused accessors (diff)
downloadlinux-dev-9d786beb6fe5cf8fcc1ce5336a89401eaa444fb6.tar.xz
linux-dev-9d786beb6fe5cf8fcc1ce5336a89401eaa444fb6.zip
ecryptfs: ecryptfs_dentry_info->crypt_stat is never used
... and never had anything non-NULL stored into it. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/ecryptfs')
-rw-r--r--fs/ecryptfs/ecryptfs_kernel.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/fs/ecryptfs/ecryptfs_kernel.h b/fs/ecryptfs/ecryptfs_kernel.h
index 463b2d99b554..495fb4514d09 100644
--- a/fs/ecryptfs/ecryptfs_kernel.h
+++ b/fs/ecryptfs/ecryptfs_kernel.h
@@ -262,10 +262,7 @@ struct ecryptfs_inode_info {
* vfsmount too. */
struct ecryptfs_dentry_info {
struct path lower_path;
- union {
- struct ecryptfs_crypt_stat *crypt_stat;
- struct rcu_head rcu;
- };
+ struct rcu_head rcu;
};
/**