diff options
Diffstat (limited to 'drivers/lguest/core.c')
-rw-r--r-- | drivers/lguest/core.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/lguest/core.c b/drivers/lguest/core.c index ce909ec57499..2cea0c80c992 100644 --- a/drivers/lguest/core.c +++ b/drivers/lguest/core.c | |||
@@ -1,5 +1,8 @@ | |||
1 | /* World's simplest hypervisor, to test paravirt_ops and show | 1 | /*P:400 This contains run_guest() which actually calls into the Host<->Guest |
2 | * unbelievers that virtualization is the future. Plus, it's fun! */ | 2 | * Switcher and analyzes the return, such as determining if the Guest wants the |
3 | * Host to do something. This file also contains useful helper routines, and a | ||
4 | * couple of non-obvious setup and teardown pieces which were implemented after | ||
5 | * days of debugging pain. :*/ | ||
3 | #include <linux/module.h> | 6 | #include <linux/module.h> |
4 | #include <linux/stringify.h> | 7 | #include <linux/stringify.h> |
5 | #include <linux/stddef.h> | 8 | #include <linux/stddef.h> |