X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=linux_module%2Fpalacios-vnet-brg.c;h=7a605c7d16d3ac46c35d9ba9efe266494b3fc542;hb=281d544b5352321631fb51c394e1ae0a9680b752;hp=e87d422bbd2009c608ec3afe2a19d20cf04f32b7;hpb=537212e255e59b086004e0eb156a31d248dd7508;p=palacios.git diff --git a/linux_module/palacios-vnet-brg.c b/linux_module/palacios-vnet-brg.c index e87d422..7a605c7 100644 --- a/linux_module/palacios-vnet-brg.c +++ b/linux_module/palacios-vnet-brg.c @@ -1,7 +1,8 @@ /* - Palacios VNET Host Bridge - (c) Lei Xia, 2010 - */ + * Palacios VNET Host Bridge + * (c) Lei Xia 2010 + */ + #include #include #include @@ -307,7 +308,7 @@ send_to_palacios(unsigned char * buf, vnet_brg_s.stats.pkt_to_vmm ++; - return v3_vnet_send_pkt(&pkt, NULL, 1); + return v3_vnet_send_pkt(&pkt, NULL); } @@ -488,7 +489,7 @@ int vnet_bridge_init(void) { return -1; } - vnet_brg_s.serv_thread = kthread_run(_rx_server, NULL, "vnet-server"); + vnet_brg_s.serv_thread = kthread_run(_rx_server, NULL, "vnet_brgd"); bridge_ops.input = bridge_send_pkt; bridge_ops.poll = NULL;