diff options
-rw-r--r-- | sys/compat/linux/linux_stats.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/compat/linux/linux_stats.c b/sys/compat/linux/linux_stats.c index cf783aa..7ddb192 100644 --- a/sys/compat/linux/linux_stats.c +++ b/sys/compat/linux/linux_stats.c @@ -227,8 +227,7 @@ bsd_to_linux_ftype(const char *fstypename) } static void -bsd_to_linux_statfs(struct thread *td, struct statfs *bsd_statfs, - struct l_statfs *linux_statfs) +bsd_to_linux_statfs(struct statfs *bsd_statfs, struct l_statfs *linux_statfs) { linux_statfs->f_type = bsd_to_linux_ftype(bsd_statfs->f_fstypename); @@ -261,7 +260,7 @@ linux_statfs(struct thread *td, struct linux_statfs_args *args) LFREEPATH(path); if (error) return (error); - bsd_to_linux_statfs(td, &bsd_statfs, &linux_statfs); + bsd_to_linux_statfs(&bsd_statfs, &linux_statfs); return copyout(&linux_statfs, args->buf, sizeof(linux_statfs)); } @@ -279,7 +278,7 @@ linux_fstatfs(struct thread *td, struct linux_fstatfs_args *args) error = kern_fstatfs(td, args->fd, &bsd_statfs); if (error) return error; - bsd_to_linux_statfs(td, &bsd_statfs, &linux_statfs); + bsd_to_linux_statfs(&bsd_statfs, &linux_statfs); return copyout(&linux_statfs, args->buf, sizeof(linux_statfs)); } |