make vfs_ustat() static
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
73ecf5cf14
commit
53fd88ab61
2 changed files with 1 additions and 2 deletions
|
@ -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;
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue