We've moved persistent information to struct pid. So there's no need for these anymore. Signed-off-by: Christian Brauner <brauner@xxxxxxxxxx> --- fs/pidfs.c | 5 ----- 1 file changed, 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; } -- 2.47.2