Lines Matching refs:linux_stat
304 linux_to_osf_statfs(struct kstatfs *linux_stat, struct osf_statfs __user *osf_stat, in linux_to_osf_statfs() argument
309 tmp_stat.f_type = linux_stat->f_type; in linux_to_osf_statfs()
311 tmp_stat.f_fsize = linux_stat->f_frsize; in linux_to_osf_statfs()
312 tmp_stat.f_bsize = linux_stat->f_bsize; in linux_to_osf_statfs()
313 tmp_stat.f_blocks = linux_stat->f_blocks; in linux_to_osf_statfs()
314 tmp_stat.f_bfree = linux_stat->f_bfree; in linux_to_osf_statfs()
315 tmp_stat.f_bavail = linux_stat->f_bavail; in linux_to_osf_statfs()
316 tmp_stat.f_files = linux_stat->f_files; in linux_to_osf_statfs()
317 tmp_stat.f_ffree = linux_stat->f_ffree; in linux_to_osf_statfs()
318 tmp_stat.f_fsid = linux_stat->f_fsid; in linux_to_osf_statfs()
325 linux_to_osf_statfs64(struct kstatfs *linux_stat, struct osf_statfs64 __user *osf_stat, in linux_to_osf_statfs64() argument
330 tmp_stat.f_type = linux_stat->f_type; in linux_to_osf_statfs64()
331 tmp_stat.f_fsize = linux_stat->f_frsize; in linux_to_osf_statfs64()
332 tmp_stat.f_bsize = linux_stat->f_bsize; in linux_to_osf_statfs64()
333 tmp_stat.f_blocks = linux_stat->f_blocks; in linux_to_osf_statfs64()
334 tmp_stat.f_bfree = linux_stat->f_bfree; in linux_to_osf_statfs64()
335 tmp_stat.f_bavail = linux_stat->f_bavail; in linux_to_osf_statfs64()
336 tmp_stat.f_files = linux_stat->f_files; in linux_to_osf_statfs64()
337 tmp_stat.f_ffree = linux_stat->f_ffree; in linux_to_osf_statfs64()
338 tmp_stat.f_fsid = linux_stat->f_fsid; in linux_to_osf_statfs64()
347 struct kstatfs linux_stat; in SYSCALL_DEFINE3() local
348 int error = user_statfs(pathname, &linux_stat); in SYSCALL_DEFINE3()
350 error = linux_to_osf_statfs(&linux_stat, buffer, bufsiz); in SYSCALL_DEFINE3()
393 struct kstatfs linux_stat; in SYSCALL_DEFINE3() local
394 int error = fd_statfs(fd, &linux_stat); in SYSCALL_DEFINE3()
396 error = linux_to_osf_statfs(&linux_stat, buffer, bufsiz); in SYSCALL_DEFINE3()
403 struct kstatfs linux_stat; in SYSCALL_DEFINE3() local
404 int error = user_statfs(pathname, &linux_stat); in SYSCALL_DEFINE3()
406 error = linux_to_osf_statfs64(&linux_stat, buffer, bufsiz); in SYSCALL_DEFINE3()
413 struct kstatfs linux_stat; in SYSCALL_DEFINE3() local
414 int error = fd_statfs(fd, &linux_stat); in SYSCALL_DEFINE3()
416 error = linux_to_osf_statfs64(&linux_stat, buffer, bufsiz); in SYSCALL_DEFINE3()