diff options
author | Marcelo Tosatti <mtosatti@redhat.com> | 2008-02-22 12:21:36 -0500 |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2008-04-27 05:00:25 -0400 |
commit | 0cf1bfd2737f41e59f974a61eab11af206d2042a (patch) | |
tree | 4edd67efa000f4cb94ef834daa21ac07c2016989 /arch/x86/kernel/kvm.c | |
parent | a28e4f5a621289fe0d9c8a461b0c256f9e17f3bc (diff) |
x86: KVM guest: add basic paravirt support
Add basic KVM paravirt support. Avoid vm-exits on IO delays.
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'arch/x86/kernel/kvm.c')
-rw-r--r-- | arch/x86/kernel/kvm.c | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/arch/x86/kernel/kvm.c b/arch/x86/kernel/kvm.c new file mode 100644 index 000000000000..a8e36da60120 --- /dev/null +++ b/arch/x86/kernel/kvm.c | |||
@@ -0,0 +1,52 @@ | |||
1 | /* | ||
2 | * KVM paravirt_ops implementation | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License as published by | ||
6 | * the Free Software Foundation; either version 2 of the License, or | ||
7 | * (at your option) any later version. | ||
8 | * | ||
9 | * This program is distributed in the hope that it will be useful, | ||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | * GNU General Public License for more details. | ||
13 | * | ||
14 | * You should have received a copy of the GNU General Public License | ||
15 | * along with this program; if not, write to the Free Software | ||
16 | * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
17 | * | ||
18 | * Copyright (C) 2007, Red Hat, Inc., Ingo Molnar <mingo@redhat.com> | ||
19 | * Copyright IBM Corporation, 2007 | ||
20 | * Authors: Anthony Liguori <aliguori@us.ibm.com> | ||
21 | */ | ||
22 | |||
23 | #include <linux/module.h> | ||
24 | #include <linux/kernel.h> | ||
25 | #include <linux/kvm_para.h> | ||
26 | #include <linux/cpu.h> | ||
27 | #include <linux/mm.h> | ||
28 | |||
29 | /* | ||
30 | * No need for any "IO delay" on KVM | ||
31 | */ | ||
32 | static void kvm_io_delay(void) | ||
33 | { | ||
34 | } | ||
35 | |||
36 | static void paravirt_ops_setup(void) | ||
37 | { | ||
38 | pv_info.name = "KVM"; | ||
39 | pv_info.paravirt_enabled = 1; | ||
40 | |||
41 | if (kvm_para_has_feature(KVM_FEATURE_NOP_IO_DELAY)) | ||
42 | pv_cpu_ops.io_delay = kvm_io_delay; | ||
43 | |||
44 | } | ||
45 | |||
46 | void __init kvm_guest_init(void) | ||
47 | { | ||
48 | if (!kvm_para_available()) | ||
49 | return; | ||
50 | |||
51 | paravirt_ops_setup(); | ||
52 | } | ||