diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2017-10-14 23:00:54 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2017-10-14 23:00:54 -0400 |
commit | 53fd88ab61948f711147204c1c5017c7301979e9 (patch) | |
tree | c2a73ac0810c8b99539e05ba8f60224042c46082 | |
parent | 73ecf5cf141a0c61775c10fdf3a6fc106f326f8c (diff) | |
download | linux-stable-53fd88ab61948f711147204c1c5017c7301979e9.tar.gz linux-stable-53fd88ab61948f711147204c1c5017c7301979e9.tar.bz2 linux-stable-53fd88ab61948f711147204c1c5017c7301979e9.zip |
make vfs_ustat() static
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
-rw-r--r-- | fs/statfs.c | 2 | ||||
-rw-r--r-- | include/linux/fs.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/fs/statfs.c b/fs/statfs.c index fab9b6a3c116..6327edf79e0f 100644 --- a/fs/statfs.c +++ b/fs/statfs.c @@ -216,7 +216,7 @@ SYSCALL_DEFINE3(fstatfs64, unsigned int, fd, size_t, sz, struct statfs64 __user return error; } -int vfs_ustat(dev_t dev, struct kstatfs *sbuf) +static int vfs_ustat(dev_t dev, struct kstatfs *sbuf) { struct super_block *s = user_get_super(dev); int err; diff --git a/include/linux/fs.h b/include/linux/fs.h index 339e73742e73..89323e03e648 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -2169,7 +2169,6 @@ extern int iterate_mounts(int (*)(struct vfsmount *, void *), void *, extern int vfs_statfs(const struct path *, struct kstatfs *); extern int user_statfs(const char __user *, struct kstatfs *); extern int fd_statfs(int, struct kstatfs *); -extern int vfs_ustat(dev_t, struct kstatfs *); extern int freeze_super(struct super_block *super); extern int thaw_super(struct super_block *super); extern bool our_mnt(struct vfsmount *mnt); |