diff options
-rw-r--r-- | fs/pidfs.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/fs/pidfs.c b/fs/pidfs.c index 6a907457b1fe..72aac4f7b7d5 100644 --- a/fs/pidfs.c +++ b/fs/pidfs.c @@ -46,8 +46,6 @@ struct pidfs_attr { }; struct pidfs_inode { - struct pidfs_exit_info __pei; - struct pidfs_exit_info *exit_info; struct inode vfs_inode; }; @@ -696,9 +694,6 @@ static struct inode *pidfs_alloc_inode(struct super_block *sb) if (!pi) return NULL; - memset(&pi->__pei, 0, sizeof(pi->__pei)); - pi->exit_info = NULL; - return &pi->vfs_inode; } |