Displaying 2 results from an estimated 2 matches for "83eaebe75".
2018 May 16
3
[PATCH] lib: Increase default memory assigned to the appliance.
Alternate way to fix test-255-disks.sh running out of memory. See
previous discussion here:
https://www.redhat.com/archives/libguestfs/2018-May/msg00082.html
Rich.
2018 May 16
0
[PATCH] lib: Increase default memory assigned to the appliance.
...This causes a test failure in
tests/disks/test-255-disks.sh. This change gives the appliance enough
memory to complete the test.
---
lib/guestfs-internal.h | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/lib/guestfs-internal.h b/lib/guestfs-internal.h
index adeb9478a..83eaebe75 100644
--- a/lib/guestfs-internal.h
+++ b/lib/guestfs-internal.h
@@ -94,7 +94,7 @@
* creating device nodes.
*/
#ifdef __powerpc__
-# define DEFAULT_MEMSIZE 768
+# define DEFAULT_MEMSIZE 1024
# define MIN_MEMSIZE 256
#endif
@@ -104,16 +104,16 @@
* common on aarch64, treat this like the...