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.


add proc log interface for VNET to get VNET statistic information
[palacios-OLD.git] / linux_module / palacios-dev.c
index a135be9..e3f83b6 100644 (file)
 #include "palacios-stream.h"
 #include "palacios-file.h"
 #include "palacios-serial.h"
+#include "palacios-socket.h"
+#include "palacios-vnet.h"
+#include "palacios-packet.h"
+
+#ifdef CONFIG_DEBUG_FS
+#include "palacios-debugfs.h"
+#endif
 
 MODULE_LICENSE("GPL");
 
@@ -165,6 +172,37 @@ static long v3_dev_ioctl(struct file * filp,
 
            break;
        }
+
+       case V3_START_NETWORK: {
+            struct v3_network net;
+            memset(&net, 0, sizeof(struct v3_network));
+   
+            if(copy_from_user(&net, argp, sizeof(struct v3_network))){
+                printk("copy from user error getting network service requests ... \n");
+                return -EFAULT;
+            }
+        #ifdef CONFIG_PALACIOS_SOCKET
+            if(net.socket == 1){
+                palacios_socket_init();
+               printk("Started Palacios Socket\n");
+            }
+        #endif
+        #ifdef CONFIG_PALACIOS_PACKET
+            if(net.packet == 1){
+                palacios_init_packet(NULL);
+               printk("Started Palacios Direct Network Bridge\n");
+            }
+        #endif
+        #ifdef CONFIG_PALACIOS_VNET
+            if(net.vnet == 1){
+                palacios_init_vnet();
+               printk("Started Palacios VNET Service\n");
+            }
+        #endif
+            break;
+        }
        default: 
            printk("\tUnhandled\n");
            return -EINVAL;
@@ -237,6 +275,11 @@ static int __init v3_init(void) {
     palacios_file_init();
     palacios_init_console();
 
+
+#ifdef CONFIG_DEBUG_FS
+    palacios_init_debugfs();
+#endif
+
     return 0;
 
  failure1:
@@ -277,6 +320,11 @@ static void __exit v3_exit(void) {
     class_destroy(v3_class);
 
 
+
+#ifdef CONFIG_DEBUG_FS
+    palacios_deinit_debugfs();
+#endif
+
     palacios_file_deinit();
     palacios_deinit_stream();