X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?p=palacios.git;a=blobdiff_plain;f=palacios%2Fsrc%2Fpalacios%2Fvmm_direct_paging.c;h=7c3e72fb2531f80cb7c0bcdb40cceed6d42936b9;hp=1175b2560c05c176e755212cd3ff49630a7d82a9;hb=de5c2110458436a9300aa0a171dbbe83e415ee4d;hpb=f5c4d198501cfa5563c399b536f7ea5a5f61a93e diff --git a/palacios/src/palacios/vmm_direct_paging.c b/palacios/src/palacios/vmm_direct_paging.c index 1175b25..7c3e72f 100644 --- a/palacios/src/palacios/vmm_direct_paging.c +++ b/palacios/src/palacios/vmm_direct_paging.c @@ -161,7 +161,10 @@ static addr_t create_generic_pt_page(struct guest_info *core) { void * page = 0; void *temp; - temp = V3_AllocPagesExtended(1, PAGE_SIZE_4KB, -1, 0, 0); // no constraints + temp = V3_AllocPagesExtended(1, PAGE_SIZE_4KB, + core->resource_control.pg_node_id, + core->resource_control.pg_filter_func, + core->resource_control.pg_filter_state); if (!temp) { PrintError(VM_NONE, VCORE_NONE,"Cannot allocate page\n");