Lines Matching refs:linux_stat

299 linux_to_osf_statfs(struct kstatfs *linux_stat, struct osf_statfs __user *osf_stat,  in linux_to_osf_statfs()  argument
304 tmp_stat.f_type = linux_stat->f_type; in linux_to_osf_statfs()
306 tmp_stat.f_fsize = linux_stat->f_frsize; in linux_to_osf_statfs()
307 tmp_stat.f_bsize = linux_stat->f_bsize; in linux_to_osf_statfs()
308 tmp_stat.f_blocks = linux_stat->f_blocks; in linux_to_osf_statfs()
309 tmp_stat.f_bfree = linux_stat->f_bfree; in linux_to_osf_statfs()
310 tmp_stat.f_bavail = linux_stat->f_bavail; in linux_to_osf_statfs()
311 tmp_stat.f_files = linux_stat->f_files; in linux_to_osf_statfs()
312 tmp_stat.f_ffree = linux_stat->f_ffree; in linux_to_osf_statfs()
313 tmp_stat.f_fsid = linux_stat->f_fsid; in linux_to_osf_statfs()
320 linux_to_osf_statfs64(struct kstatfs *linux_stat, struct osf_statfs64 __user *osf_stat, in linux_to_osf_statfs64() argument
325 tmp_stat.f_type = linux_stat->f_type; in linux_to_osf_statfs64()
326 tmp_stat.f_fsize = linux_stat->f_frsize; in linux_to_osf_statfs64()
327 tmp_stat.f_bsize = linux_stat->f_bsize; in linux_to_osf_statfs64()
328 tmp_stat.f_blocks = linux_stat->f_blocks; in linux_to_osf_statfs64()
329 tmp_stat.f_bfree = linux_stat->f_bfree; in linux_to_osf_statfs64()
330 tmp_stat.f_bavail = linux_stat->f_bavail; in linux_to_osf_statfs64()
331 tmp_stat.f_files = linux_stat->f_files; in linux_to_osf_statfs64()
332 tmp_stat.f_ffree = linux_stat->f_ffree; in linux_to_osf_statfs64()
333 tmp_stat.f_fsid = linux_stat->f_fsid; in linux_to_osf_statfs64()
342 struct kstatfs linux_stat; in SYSCALL_DEFINE3() local
343 int error = user_statfs(pathname, &linux_stat); in SYSCALL_DEFINE3()
345 error = linux_to_osf_statfs(&linux_stat, buffer, bufsiz); in SYSCALL_DEFINE3()
388 struct kstatfs linux_stat; in SYSCALL_DEFINE3() local
389 int error = fd_statfs(fd, &linux_stat); in SYSCALL_DEFINE3()
391 error = linux_to_osf_statfs(&linux_stat, buffer, bufsiz); in SYSCALL_DEFINE3()
398 struct kstatfs linux_stat; in SYSCALL_DEFINE3() local
399 int error = user_statfs(pathname, &linux_stat); in SYSCALL_DEFINE3()
401 error = linux_to_osf_statfs64(&linux_stat, buffer, bufsiz); in SYSCALL_DEFINE3()
408 struct kstatfs linux_stat; in SYSCALL_DEFINE3() local
409 int error = fd_statfs(fd, &linux_stat); in SYSCALL_DEFINE3()
411 error = linux_to_osf_statfs64(&linux_stat, buffer, bufsiz); in SYSCALL_DEFINE3()