From mboxrd@z Thu Jan 1 00:00:00 1970 From: beth kon Subject: [PATCH] correct indexing in xc_cpu_to_node_t map Date: Fri, 17 Aug 2007 16:04:35 -0400 Message-ID: <46C5FF53.7060406@us.ibm.com> Reply-To: eak@us.ibm.com Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org Looks like there is a nit with initilizing the map array. It needs one more element than MAX_CPU_ID since indexing starts at 0. Signed-off-by: Beth Kon diff -r 256160ff19b7 tools/python/xen/lowlevel/xc/xc.c --- a/tools/python/xen/lowlevel/xc/xc.c Thu Aug 16 13:27:59 2007 +0100 +++ b/tools/python/xen/lowlevel/xc/xc.c Fri Aug 17 15:44:22 2007 -0400 @@ -685,7 +685,7 @@ static PyObject *pyxc_physinfo(XcObject char cpu_cap[128], *p=cpu_cap, *q=cpu_cap; int i, j, max_cpu_id; PyObject *ret_obj, *node_to_cpu_obj; - xc_cpu_to_node_t map[MAX_CPU_ID]; + xc_cpu_to_node_t map[MAX_CPU_ID + 1]; set_xen_guest_handle(info.cpu_to_node, map); info.max_cpu_id = MAX_CPU_ID; -- Elizabeth Kon (Beth) IBM Linux Technology Center Open Hypervisor Team email: eak@us.ibm.com