Re: [Xen-devel] [PATCH] xc Python ext lib: Xen 4.6 Unable to start a 2T guest without OverflowError

2015-01-05 Thread Konrad Rzeszutek Wilk
On Tue, Dec 23, 2014 at 02:04:28PM -0500, Cathy Avery wrote: Starting a vm with memory over 2T resulted in an overflow error. memory = 2097152 defined as number of megabytes returns the error OverflowError: signed integer is greater than maximum The error is the result of the python

[Xen-devel] [PATCH] xc Python ext lib: Xen 4.6 Unable to start a 2T guest without OverflowError

2014-12-24 Thread Cathy Avery
Starting a vm with memory over 2T resulted in an overflow error. memory = 2097152 defined as number of megabytes returns the error OverflowError: signed integer is greater than maximum The error is the result of the python extension argument translator defining max_memkb as a signed int instead