Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


Merge branch 'devel' of newskysaw.cs.northwestern.edu:/home/palacios/palacios into...
[palacios.git] / linux_module / palacios-vnet-brg.c
index fda1775..7a605c7 100644 (file)
@@ -1,8 +1,7 @@
 /* 
-  * Palacios VNET Host Bridge
-  * (c) Lei Xia  2010
-  */
+ * Palacios VNET Host Bridge
+ * (c) Lei Xia  2010
+ */ 
 
 #include <linux/spinlock.h>
 #include <linux/seq_file.h>
@@ -309,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);
 }
 
 
@@ -490,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;