Displaying 1 result from an estimated 1 matches for "memchunk_obj".
2006 Sep 29
4
[PATCH 4/6] xen: export NUMA topology in physinfo hcall
....c	Mon Sep 11 13:45:23 2006 -0500
+++ b/tools/python/xen/lowlevel/xc/xc.c	Sat Sep 16 08:17:13 2006 -0500
@@ -474,8 +474,21 @@ static PyObject *pyxc_physinfo(XcObject 
 {
     xc_physinfo_t info;
     char cpu_cap[128], *p=cpu_cap, *q=cpu_cap;
-    int i;
-    
+    int i,j;
+    PyObject *ret_obj, *memchunk_obj, *node_to_cpu_obj;
+    xc_memory_chunk_t *chunks;
+    xc_node_to_cpu_t  *map;
+
+    /* make space for mem chunks */
+    chunks =  (xc_memory_chunk_t *)malloc( sizeof(xc_memory_chunk_t) * 
+                                     PUBLIC_MAXCHUNKS );
+    set_xen_guest_handle(info.memory_chunks, chu...