Re: [Qemu-devel] [PATCH] qtest: Handle addresses and values for {in, out}[bwl] as unsigned

2013-04-22 Thread Anthony Liguori
Applied. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH] qtest: Handle addresses and values for {in, out}[bwl] as unsigned

2013-04-21 Thread Blue Swirl
On Sun, Apr 21, 2013 at 1:30 PM, Peter Maydell wrote: > Handle the addresses and values for {in,out}[bwl] as unsigned (ie > with strtoul), as per the protocol specification comment. This fixes > a test failure in test_i440fx_defaults on 32-bit hosts where the test > tries to write 0x8000 and q

[Qemu-devel] [PATCH] qtest: Handle addresses and values for {in, out}[bwl] as unsigned

2013-04-21 Thread Peter Maydell
Handle the addresses and values for {in,out}[bwl] as unsigned (ie with strtoul), as per the protocol specification comment. This fixes a test failure in test_i440fx_defaults on 32-bit hosts where the test tries to write 0x8000 and qtest was instead writing 0x7fff. Signed-off-by: Peter Mayd