diff options
| author | Al Viro <viro@zeniv.linux.org.uk> | 2011-12-08 21:32:45 -0500 | 
|---|---|---|
| committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-01-06 23:19:54 -0500 | 
| commit | 34c80b1d93e6e20ca9dea0baf583a5b5510d92d4 (patch) | |
| tree | 7dcbf0a4e09464247e6992c8f44fcc872867bd3a /fs/devpts | |
| parent | a6322de67b58a00e3a783ad9c87c2a11b2d67b47 (diff) | |
| download | linux-34c80b1d93e6e20ca9dea0baf583a5b5510d92d4.tar.bz2 | |
vfs: switch ->show_options() to struct dentry *
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/devpts')
| -rw-r--r-- | fs/devpts/inode.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/fs/devpts/inode.c b/fs/devpts/inode.c index d5d5297efe97..79673eb71151 100644 --- a/fs/devpts/inode.c +++ b/fs/devpts/inode.c @@ -246,9 +246,9 @@ static int devpts_remount(struct super_block *sb, int *flags, char *data)  	return err;  } -static int devpts_show_options(struct seq_file *seq, struct vfsmount *vfs) +static int devpts_show_options(struct seq_file *seq, struct dentry *root)  { -	struct pts_fs_info *fsi = DEVPTS_SB(vfs->mnt_sb); +	struct pts_fs_info *fsi = DEVPTS_SB(root->d_sb);  	struct pts_mount_opts *opts = &fsi->mount_opts;  	if (opts->setuid) |