Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1002)

Unified Diff: base/sys_info_posix.cc

Issue 2168843002: Revert of Return correct disk free/available size when FS is mounted with size = 0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/sys_info_posix.cc
diff --git a/base/sys_info_posix.cc b/base/sys_info_posix.cc
index 960e961d824f569413332893aa64c72302f16a86..5d1c450139a575705c3c5046ed32c565e4b5e404 100644
--- a/base/sys_info_posix.cc
+++ b/base/sys_info_posix.cc
@@ -28,8 +28,6 @@
#include <sys/statvfs.h>
#endif
-namespace base {
-
namespace {
#if !defined(OS_OPENBSD)
@@ -56,7 +54,8 @@
return static_cast<int>(res);
}
-LazyInstance<internal::LazySysInfoValue<int, NumberOfProcessors>>::Leaky
+base::LazyInstance<
+ base::internal::LazySysInfoValue<int, NumberOfProcessors> >::Leaky
g_lazy_number_of_processors = LAZY_INSTANCE_INITIALIZER;
#endif
@@ -70,7 +69,8 @@
return limit.rlim_cur == RLIM_INFINITY ? 0 : limit.rlim_cur;
}
-LazyInstance<internal::LazySysInfoValue<int64_t, AmountOfVirtualMemory>>::Leaky
+base::LazyInstance<
+ base::internal::LazySysInfoValue<int64_t, AmountOfVirtualMemory>>::Leaky
g_lazy_virtual_memory = LAZY_INSTANCE_INITIALIZER;
bool GetDiskSpaceInfo(const base::FilePath& path,
@@ -80,34 +80,16 @@
if (HANDLE_EINTR(statvfs(path.value().c_str(), &stats)) != 0)
return false;
-#if defined(OS_LINUX)
- // On Linux, stats.f_blocks is 0 when memory based file system (like tmpfs,
- // ramfs, or hugetlbfs), is mounted without any size limit (i.e. size set to
- // 0).
- FileSystemType fs_type;
- const bool zero_size_means_unlimited = stats.f_blocks == 0 &&
- GetFileSystemType(path, &fs_type) &&
- fs_type == FILE_SYSTEM_MEMORY;
-#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;
- }
+ 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;
return true;
}
} // namespace
+
+namespace base {
#if !defined(OS_OPENBSD)
int SysInfo::NumberOfProcessors() {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698