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.


Typo fix
Peter Dinda [Fri, 3 Aug 2012 18:04:17 +0000 (13:04 -0500)]
linux_module/palacios-vnet-brg.c

index 00f0996..3764a52 100644 (file)
@@ -296,7 +296,7 @@ send_to_palacios(unsigned char * buf,
                 int len,
                 int link_id){
     struct v3_vnet_pkt pkt;
-    memset(pkt,0,sizeof(struct v3_vnet_pkt));
+    memset(&pkt,0,sizeof(struct v3_vnet_pkt));
     pkt.size = len;
     pkt.dst_type = LINK_NOSET;
     pkt.src_type = LINK_EDGE;