diff options
Diffstat (limited to 'fs/proc/inode.c')
| -rw-r--r-- | fs/proc/inode.c | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/fs/proc/inode.c b/fs/proc/inode.c index 27c762f3487..84fd3235a59 100644 --- a/fs/proc/inode.c +++ b/fs/proc/inode.c @@ -106,6 +106,14 @@ void __init proc_init_inodecache(void)  static int proc_show_options(struct seq_file *seq, struct dentry *root)  { +	struct super_block *sb = root->d_sb; +	struct pid_namespace *pid = sb->s_fs_info; + +	if (pid->pid_gid) +		seq_printf(seq, ",gid=%lu", (unsigned long)pid->pid_gid); +	if (pid->hide_pid != 0) +		seq_printf(seq, ",hidepid=%u", pid->hide_pid); +  	return 0;  }  |