--- old/src/os/bsd/vm/os_bsd.cpp 2013-03-15 21:54:25.555485181 +0100 +++ new/src/os/bsd/vm/os_bsd.cpp 2013-03-15 21:54:25.443485186 +0100 @@ -166,20 +166,6 @@ return Bsd::physical_memory(); } -julong os::allocatable_physical_memory(julong size) { -#ifdef _LP64 - return size; -#else - julong result = MIN2(size, (julong)3800*M); - if (!is_allocatable(result)) { - // See comments under solaris for alignment considerations - julong reasonable_size = (julong)2*G - 2 * os::vm_page_size(); - result = MIN2(size, reasonable_size); - } - return result; -#endif // _LP64 -} - //////////////////////////////////////////////////////////////////////////////// // environment support