Lines Matching defs:shfl_volinfo
287 struct shfl_volinfo shfl_volinfo;
293 buf_len = sizeof(shfl_volinfo);
295 &buf_len, &shfl_volinfo);
300 stat->f_bsize = shfl_volinfo.bytes_per_allocation_unit;
302 do_div(shfl_volinfo.total_allocation_bytes,
303 shfl_volinfo.bytes_per_allocation_unit);
304 stat->f_blocks = shfl_volinfo.total_allocation_bytes;
306 do_div(shfl_volinfo.available_allocation_bytes,
307 shfl_volinfo.bytes_per_allocation_unit);
308 stat->f_bfree = shfl_volinfo.available_allocation_bytes;
309 stat->f_bavail = shfl_volinfo.available_allocation_bytes;