Lines Matching refs:stfs
5307 struct kstatfs stfs; in smb2_get_info_filesystem() local
5320 rc = vfs_statfs(&path, &stfs); in smb2_get_info_filesystem()
5365 info->MaxPathNameComponentLength = cpu_to_le32(stfs.f_namelen); in smb2_get_info_filesystem()
5405 info->TotalAllocationUnits = cpu_to_le64(stfs.f_blocks); in smb2_get_info_filesystem()
5406 info->FreeAllocationUnits = cpu_to_le64(stfs.f_bfree); in smb2_get_info_filesystem()
5408 info->BytesPerSector = cpu_to_le32(stfs.f_bsize); in smb2_get_info_filesystem()
5417 info->TotalAllocationUnits = cpu_to_le64(stfs.f_blocks); in smb2_get_info_filesystem()
5419 cpu_to_le64(stfs.f_bavail); in smb2_get_info_filesystem()
5421 cpu_to_le64(stfs.f_bfree); in smb2_get_info_filesystem()
5423 info->BytesPerSector = cpu_to_le32(stfs.f_bsize); in smb2_get_info_filesystem()
5496 info->OptimalTransferSize = cpu_to_le32(stfs.f_bsize); in smb2_get_info_filesystem()
5497 info->BlockSize = cpu_to_le32(stfs.f_bsize); in smb2_get_info_filesystem()
5498 info->TotalBlocks = cpu_to_le64(stfs.f_blocks); in smb2_get_info_filesystem()
5499 info->BlocksAvail = cpu_to_le64(stfs.f_bfree); in smb2_get_info_filesystem()
5500 info->UserBlocksAvail = cpu_to_le64(stfs.f_bavail); in smb2_get_info_filesystem()
5501 info->TotalFileNodes = cpu_to_le64(stfs.f_files); in smb2_get_info_filesystem()
5502 info->FreeFileNodes = cpu_to_le64(stfs.f_ffree); in smb2_get_info_filesystem()