X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=linux_module%2Fpalacios-vnet.c;h=014d1915d98272e9eb89a0c6d7e208c63f256bc8;hb=d0aa5bd27c22a33f04f47363910f9773fdeab7eb;hp=077eeda0b9777881b87d5531df0b4d88b078ace6;hpb=07223cf503e20ccd3f09754a614a1c107b018cd0;p=palacios.git diff --git a/linux_module/palacios-vnet.c b/linux_module/palacios-vnet.c index 077eeda..014d191 100644 --- a/linux_module/palacios-vnet.c +++ b/linux_module/palacios-vnet.c @@ -140,10 +140,10 @@ host_del_timer(void * vnet_timer){ static void * -host_allocate_pages(int num_pages, unsigned int alignment) +host_allocate_pages(int num_pages, unsigned int alignment, int node_id, int constraint) { // allocates pages preferentially on the caller's node - return palacios_allocate_pages(num_pages, alignment, -1); + return palacios_allocate_pages(num_pages, alignment, node_id, constraint); } @@ -155,7 +155,7 @@ static struct vnet_host_hooks vnet_host_hooks = { .timer_stop = host_stop_timer, .timer_reset = host_reset_timer, - .thread_start = palacios_start_kernel_thread, + .thread_start = palacios_create_and_start_kernel_thread, .thread_sleep = host_kthread_sleep, .thread_wakeup = host_kthread_wakeup, .thread_stop = host_kthread_stop,