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.


bug fixes for extension framework, and porting of console to new interface
[palacios.git] / linux_module / palacios-vm.c
index 9cdaa6d..d3ae315 100644 (file)
@@ -115,9 +115,6 @@ static struct vm_ctrl * get_ctrl(struct v3_guest * guest, unsigned int cmd) {
 #include "palacios-stream.h"
 #endif
 
-#ifdef V3_CONFIG_CONSOLE
-#include "palacios-console.h"
-#endif
 
 #ifdef V3_CONFIG_EXT_INSPECTOR
 #include "palacios-inspector.h"
@@ -150,15 +147,6 @@ static long v3_vm_ioctl(struct file * filp,
            break;
        }
 
-       case V3_VM_CONSOLE_CONNECT: {
-#ifdef V3_CONFIG_CONSOLE
-           return connect_console(guest);
-#else
-           printk("Console support not available\n");
-           return -EFAULT;
-#endif
-           break;
-       }
 
        case V3_VM_STREAM_CONNECT: {
 #ifdef V3_CONFIG_STREAM
@@ -284,6 +272,8 @@ int start_palacios_vm(void * arg)  {
     }
 
     // init linux extensions
+    
+
 #ifdef V3_CONFIG_EXT_INSPECTOR
     inspect_vm(guest);
 #endif