Lines Matching refs:tmp_stat
273 struct osf_statfs tmp_stat; in linux_to_osf_statfs() local
275 tmp_stat.f_type = linux_stat->f_type; in linux_to_osf_statfs()
276 tmp_stat.f_flags = 0; /* mount flags */ in linux_to_osf_statfs()
278 tmp_stat.f_fsize = linux_stat->f_bsize; in linux_to_osf_statfs()
279 tmp_stat.f_bsize = linux_stat->f_bsize; in linux_to_osf_statfs()
280 tmp_stat.f_blocks = linux_stat->f_blocks; in linux_to_osf_statfs()
281 tmp_stat.f_bfree = linux_stat->f_bfree; in linux_to_osf_statfs()
282 tmp_stat.f_bavail = linux_stat->f_bavail; in linux_to_osf_statfs()
283 tmp_stat.f_files = linux_stat->f_files; in linux_to_osf_statfs()
284 tmp_stat.f_ffree = linux_stat->f_ffree; in linux_to_osf_statfs()
285 tmp_stat.f_fsid = linux_stat->f_fsid; in linux_to_osf_statfs()
286 if (bufsiz > sizeof(tmp_stat)) in linux_to_osf_statfs()
287 bufsiz = sizeof(tmp_stat); in linux_to_osf_statfs()
288 return copy_to_user(osf_stat, &tmp_stat, bufsiz) ? -EFAULT : 0; in linux_to_osf_statfs()