mirror of https://gitee.com/openkylin/libvirt.git
Reduce RAM in test node to avoid 32-bit wraparound
This commit is contained in:
parent
0c62b5f6d5
commit
a10b68be0a
|
@ -1,3 +1,9 @@
|
|||
Wed Nov 8 13:03:41 EDT 2006 Daniel Berrange <berrange@redhat.com>
|
||||
|
||||
* src/virshdata/nodeinfo-custom.txt, docs/testnode.xml: Reduce amount
|
||||
of RAM in test node to a sensible size to avoid integer wraparound on
|
||||
32-bit archs.
|
||||
|
||||
Wed Nov 8 13:00:56 EDT 2006 Daniel Berrange <berrange@redhat.com>
|
||||
|
||||
* src/test.c, src/test.h: Added implementation of the virDomainGetOSType
|
||||
|
|
|
@ -19,5 +19,5 @@
|
|||
<cores>4</cores>
|
||||
<threads>2</threads>
|
||||
</cpu>
|
||||
<memory>137438953472</memory>
|
||||
<memory>137438953</memory>
|
||||
</node>
|
||||
|
|
|
@ -5,5 +5,5 @@ CPU socket(s): 4
|
|||
Core(s) per socket: 4
|
||||
Thread(s) per core: 2
|
||||
NUMA cell(s): 4
|
||||
Memory size: 137438953472 kB
|
||||
Memory size: 137438953 kB
|
||||
|
||||
|
|
Loading…
Reference in New Issue