Displaying 2 results from an estimated 2 matches for "config_vmmhost".
Did you mean:
config_vhost
2007 Jun 26
2
RFC: multiple address spaces for one process
...linux/sched.h
===================================================================
--- linux-2.6.orig/include/linux/sched.h 2007-06-13 20:30:15.000000000 -0400
+++ linux-2.6/include/linux/sched.h 2007-06-25 16:14:35.000000000 -0400
@@ -864,6 +864,10 @@
struct mm_struct *mm, *active_mm;
+#ifdef CONFIG_VMMHOST
+ /* array of N_MM pointers to struct mm_structs that can be switched between */
+ struct mm_struct **mm_avail;
+#endif
/* task state */
struct linux_binfmt *binfmt;
int exit_state;
@@ -1712,6 +1716,19 @@
}
#endif
+#ifdef CONFIG_VMMHOST
+extern void __exit_as(struct task_struct *);
+stat...
2007 Jun 26
2
RFC: multiple address spaces for one process
...linux/sched.h
===================================================================
--- linux-2.6.orig/include/linux/sched.h 2007-06-13 20:30:15.000000000 -0400
+++ linux-2.6/include/linux/sched.h 2007-06-25 16:14:35.000000000 -0400
@@ -864,6 +864,10 @@
struct mm_struct *mm, *active_mm;
+#ifdef CONFIG_VMMHOST
+ /* array of N_MM pointers to struct mm_structs that can be switched between */
+ struct mm_struct **mm_avail;
+#endif
/* task state */
struct linux_binfmt *binfmt;
int exit_state;
@@ -1712,6 +1716,19 @@
}
#endif
+#ifdef CONFIG_VMMHOST
+extern void __exit_as(struct task_struct *);
+stat...