[Qemu-devel] [PATCH] Fixed help output for info command

2006-09-15 Thread Stefan Weil
This small patch adds missing initial values for the info command structure... Regards Stefan Index: monitor.c === RCS file: /sources/qemu/qemu/monitor.c,v retrieving revision 1.56 diff -u -b -B -u -r1.56 monitor.c --- monitor.c 5

[Qemu-devel] linux firmware kit reports 3 failures and 3 warning when executed in qemu

2006-09-15 Thread Gildas
Out of curiosity, I ran the linux firmware kit live cdrom, that tests linux interaction with the BIOS. The test results in 3 failures and 3 warning when executed in qemu using the command "qemu -cdrom firmwarekit.iso" [FAIL] Validate assigned PCI resources F Device :00:02.0 has incorrect res

[Qemu-devel] Re: Fastest TCP/IP Stack

2006-09-15 Thread Ottavio Caruso
> From: Joseph Miller <[EMAIL PROTECTED]> > What is the most efficient > method of -net ? Slightly OT, but if you only use specific ports, the built-in port redirection would probably be the fastest networking option. Ottavio Caruso -- Please follow up to mailing list! __

[Qemu-devel] [PATCH] avoid creating a circular list of cpus

2006-09-15 Thread Rafael EspĂ­ndola
The attached patch avoids creating a circular list of cpus in do_fork. Currently, cpu_init returns a pointer to the last element of the list. This element is then overwritten by memcpy, including the cpu_index and next_cpu fields. The patch simply restores these fields to the correct values. The