aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2017-10-14 23:00:54 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2017-10-14 23:00:54 -0400
commit53fd88ab61948f711147204c1c5017c7301979e9 (patch)
treec2a73ac0810c8b99539e05ba8f60224042c46082
parentdo_handle_open() should be static (diff)
downloadlinux-dev-53fd88ab61948f711147204c1c5017c7301979e9.tar.xz
linux-dev-53fd88ab61948f711147204c1c5017c7301979e9.zip
make vfs_ustat() static
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
-rw-r--r--fs/statfs.c2
-rw-r--r--include/linux/fs.h1
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);