[Qemu-devel] [PATCH 1/6] cpu: No need to zero-initialize numa_node

2015-03-05 Thread Eduardo Habkost
QOM objects are already zero-filled when instantiated, there's no need to explicitly set numa_node to 0. Signed-off-by: Eduardo Habkost --- exec.c | 1 - 1 file changed, 1 deletion(-) diff --git a/exec.c b/exec.c index c85321a..3a61e51 100644 --- a/exec.c +++ b/exec.c @@ -542,7 +542,6 @@ void c

Re: [Qemu-devel] [PATCH 1/6] cpu: No need to zero-initialize numa_node

2015-03-05 Thread Igor Mammedov
On Thu, 5 Mar 2015 12:38:45 -0300 Eduardo Habkost wrote: > QOM objects are already zero-filled when instantiated, there's no need > to explicitly set numa_node to 0. > > Signed-off-by: Eduardo Habkost Reviewed-by: Igor Mammedov > --- > exec.c | 1 - > 1 file changed, 1 deletion(-) > > diff