Re: [Qemu-devel] [PATCH] Handle cpu_model in copy_cpu()

2007-11-25 Thread Kirill A. Shutemov
On [Sun, 25.11.2007 15:04], Dan Kenigsberg wrote: > On Sat, Nov 24, 2007 at 11:30:28PM +0200, Kirill A. Shutemov wrote: > > copy_cpu() has been broken since cpu_model added to parameters list of > > cpu_init(). This patch fix copy_cpu() by storing cpu_model string in > > CPUState structure on cpu_i

Re: [Qemu-devel] [PATCH] Handle cpu_model in copy_cpu()

2007-11-25 Thread Dan Kenigsberg
On Sat, Nov 24, 2007 at 11:30:28PM +0200, Kirill A. Shutemov wrote: > copy_cpu() has been broken since cpu_model added to parameters list of > cpu_init(). This patch fix copy_cpu() by storing cpu_model string in > CPUState structure on cpu_init and use this string in copy_cpu(). Please excuse my l

[Qemu-devel] [PATCH] Handle cpu_model in copy_cpu()

2007-11-24 Thread Kirill A. Shutemov
copy_cpu() has been broken since cpu_model added to parameters list of cpu_init(). This patch fix copy_cpu() by storing cpu_model string in CPUState structure on cpu_init and use this string in copy_cpu(). --- cpu-defs.h |4 +++- exec.c |7 +-- target-ar