Chromium Code Reviews| Index: base/sys_info_posix.cc |
| diff --git a/base/sys_info_posix.cc b/base/sys_info_posix.cc |
| index 5d1c450139a575705c3c5046ed32c565e4b5e404..e14ae0f51d58b5907e26d042f8106fd51393d7cc 100644 |
| --- a/base/sys_info_posix.cc |
| +++ b/base/sys_info_posix.cc |
| @@ -28,6 +28,11 @@ |
| #include <sys/statvfs.h> |
| #endif |
| +#if defined(OS_LINUX) |
| +#include <sys/vfs.h> |
| +#include <linux/magic.h> |
|
Lei Zhang
2016/08/02 19:35:41
alphabetical order
|
| +#endif |
| + |
| namespace { |
| #if !defined(OS_OPENBSD) |
| @@ -73,6 +78,18 @@ base::LazyInstance< |
| base::internal::LazySysInfoValue<int64_t, AmountOfVirtualMemory>>::Leaky |
| g_lazy_virtual_memory = LAZY_INSTANCE_INITIALIZER; |
| +#if defined(OS_LINUX) |
| +bool IsStatsZeroIfUnlimited(const base::FilePath& path) { |
| + struct statfs stats; |
| + |
| + if (HANDLE_EINTR(statfs(path.value().c_str(), &stats)) != 0) |
| + return false; |
| + |
| + return stats.f_type == TMPFS_MAGIC || stats.f_type == HUGETLBFS_MAGIC || |
| + stats.f_type == RAMFS_MAGIC; |
| +} |
| +#endif |
| + |
| bool GetDiskSpaceInfo(const base::FilePath& path, |
| int64_t* available_bytes, |
| int64_t* total_bytes) { |
| @@ -80,10 +97,25 @@ bool GetDiskSpaceInfo(const base::FilePath& path, |
| if (HANDLE_EINTR(statvfs(path.value().c_str(), &stats)) != 0) |
| return false; |
| - if (available_bytes) |
| - *available_bytes = static_cast<int64_t>(stats.f_bavail) * stats.f_frsize; |
| - if (total_bytes) |
| - *total_bytes = static_cast<int64_t>(stats.f_blocks) * stats.f_frsize; |
| +#if defined(OS_LINUX) |
| + const bool zero_size_means_unlimited = |
| + stats.f_blocks == 0 && IsStatsZeroIfUnlimited(path); |
| +#else |
| + const bool zero_size_means_unlimited = false; |
| +#endif |
| + |
| + if (available_bytes) { |
| + *available_bytes = |
| + zero_size_means_unlimited |
| + ? std::numeric_limits<int64_t>::max() |
| + : static_cast<int64_t>(stats.f_bavail) * stats.f_frsize; |
| + } |
| + |
| + if (total_bytes) { |
| + *total_bytes = zero_size_means_unlimited |
| + ? std::numeric_limits<int64_t>::max() |
| + : static_cast<int64_t>(stats.f_blocks) * stats.f_frsize; |
| + } |
| return true; |
| } |