diff --git a/indra/llcommon/llsys.cpp b/indra/llcommon/llsys.cpp
index e45f502206a50f7e0bab2e4e5c700b196bef665a..07fe259e475e57f746bcbdf233574319103ed89d 100755
--- a/indra/llcommon/llsys.cpp
+++ b/indra/llcommon/llsys.cpp
@@ -899,17 +899,17 @@ U32Kilobytes LLMemoryInfo::getPhysicalMemoryKB() const
 	size_t len = sizeof(phys);	
 	sysctl(mib, 2, &phys, &len, NULL, 0);
 	
-	return U32Bytes(llmin(phys, (U64)U32_MAX));
+	return U64Bytes(phys);
 
 #elif LL_LINUX
 	U64 phys = 0;
 	phys = (U64)(getpagesize()) * (U64)(get_phys_pages());
-	return U32Bytes(llmin(phys, (U64)U32_MAX));
+	return U64Bytes(phys);
 
 #elif LL_SOLARIS
 	U64 phys = 0;
 	phys = (U64)(getpagesize()) * (U64)(sysconf(_SC_PHYS_PAGES));
-	return U32Bytes(llmin(phys, (U64)U32_MAX));
+	return U64Bytes(phys);
 
 #else
 	return 0;