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.


Modified graphics console support in linux to use vmalloc to allocate framebufs
Peter Dinda [Thu, 19 May 2011 23:41:56 +0000 (18:41 -0500)]
linux_module/palacios-graphics-console.c

index 0b03b62..a84bb9b 100644 (file)
@@ -57,7 +57,7 @@ static v3_graphics_console_t g_open(void * priv_data,
     printk("palacios: allocating %u bytes for %u by %u by %u buffer\n",
           mem, desired_spec->width, desired_spec->height, desired_spec->bytes_per_pixel);
 
-    gc->data = kmalloc(mem,GFP_KERNEL);
+    gc->data = vmalloc(mem);
 
     if (!(gc->data)) { 
        printk("palacios: unable to allocate memory for frame buffer\n");