Re: [Qemu-devel] [PATCH 1/3] vl: fix max_cpus check

2014-11-07 Thread Eduardo Habkost
On Fri, Nov 07, 2014 at 05:04:38PM +0100, Andrew Jones wrote: > We should confirm max_cpus, which is >= smp_cpus, is > <= the machine's true max_cpus, not just smp_cpus. > > Signed-off-by: Andrew Jones Reviewed-by: Eduardo Habkost I was sure I had fixed this before. But it looks like my patche

[Qemu-devel] [PATCH 1/3] vl: fix max_cpus check

2014-11-07 Thread Andrew Jones
We should confirm max_cpus, which is >= smp_cpus, is <= the machine's true max_cpus, not just smp_cpus. Signed-off-by: Andrew Jones --- vl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vl.c b/vl.c index f4a6e5e05bce2..9d9855092ab4a 100644 --- a/vl.c +++ b/vl.c @@ -390