Thomas Renninger
28f81a89a4
Features: * Some System z functionality went into 2.15 * Updated man pages * Added basic events for core_i7 to oprofile_map_events Fixes: * Disable Unable to verify address range warning when offset < page_size * Remove sscanf in library setup to avoid heap allocation before _morecore override * Revert heap exhaustion patch * hugectl no longer clips LD_LIBRARY_PATH variable * Fix clean on failure code to avoid closing stdout OBS-URL: https://build.opensuse.org/package/show/Base:System/libhugetlbfs?expand=0&rev=28
16 lines
513 B
Diff
16 lines
513 B
Diff
References: bnc#706891
|
|
|
|
Signed-off-by: Thomas Renninger <trenn@suse.de>
|
|
|
|
--- libhugetlbfs-2.12/tests/run_tests.py.org 2011-07-20 00:00:46.000000000 -0400
|
|
+++ libhugetlbfs-2.12/tests/run_tests.py 2011-07-20 00:01:55.000000000 -0400
|
|
@@ -234,7 +234,7 @@ def get_pagesizes():
|
|
"""
|
|
sizes = set()
|
|
out = ""
|
|
- (rc, out) = bash("../obj/hugeadm --page-sizes")
|
|
+ (rc, out) = bash("hugeadm --page-sizes")
|
|
if rc != 0 or out == "": return sizes
|
|
|
|
for size in out.split("\n"): sizes.add(int(size))
|