diff options
author | Al Viro | 2011-12-08 21:37:57 -0500 |
---|---|---|
committer | Al Viro | 2012-01-06 23:16:55 -0500 |
commit | a6322de67b58a00e3a783ad9c87c2a11b2d67b47 (patch) | |
tree | 526d8cb03b5f357bab06907eecad4c1d444a4934 /include/linux | |
parent | d861c630e99febe5ce6055290085556c5b714b06 (diff) |
vfs: switch ->show_path() to struct dentry *
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index a8dff43d1b9d..13721b073407 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -1674,7 +1674,7 @@ struct super_operations { int (*show_options)(struct seq_file *, struct vfsmount *); int (*show_devname)(struct seq_file *, struct dentry *); - int (*show_path)(struct seq_file *, struct vfsmount *); + int (*show_path)(struct seq_file *, struct dentry *); int (*show_stats)(struct seq_file *, struct dentry *); #ifdef CONFIG_QUOTA ssize_t (*quota_read)(struct super_block *, int, char *, size_t, loff_t); |