-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 93870 b: refs/heads/master c: bb46fb4 h: refs/heads/master v: v3
- Loading branch information
Xiantao Zhang
authored and
Avi Kivity
committed
Apr 27, 2008
1 parent
ae29eac
commit 5d735c6
Showing
2 changed files
with
67 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: a4f500381ac91969fa4f8b0a4e39e76dbf00a913 | ||
refs/heads/master: bb46fb4af160ec7ae6e5102a79a3b2518eaee7af |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
/* | ||
* vmm.c: vmm module interface with kvm module | ||
* | ||
* Copyright (c) 2007, Intel Corporation. | ||
* | ||
* Xiantao Zhang (xiantao.zhang@intel.com) | ||
* | ||
* This program is free software; you can redistribute it and/or modify it | ||
* under the terms and conditions of the GNU General Public License, | ||
* version 2, as published by the Free Software Foundation. | ||
* | ||
* This program is distributed in the hope it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
* more details. | ||
* | ||
* You should have received a copy of the GNU General Public License along with | ||
* this program; if not, write to the Free Software Foundation, Inc., 59 Temple | ||
* Place - Suite 330, Boston, MA 02111-1307 USA. | ||
*/ | ||
|
||
|
||
#include<linux/module.h> | ||
#include<asm/fpswa.h> | ||
|
||
#include "vcpu.h" | ||
|
||
MODULE_AUTHOR("Intel"); | ||
MODULE_LICENSE("GPL"); | ||
|
||
extern char kvm_ia64_ivt; | ||
extern fpswa_interface_t *vmm_fpswa_interface; | ||
|
||
struct kvm_vmm_info vmm_info = { | ||
.module = THIS_MODULE, | ||
.vmm_entry = vmm_entry, | ||
.tramp_entry = vmm_trampoline, | ||
.vmm_ivt = (unsigned long)&kvm_ia64_ivt, | ||
}; | ||
|
||
static int __init kvm_vmm_init(void) | ||
{ | ||
|
||
vmm_fpswa_interface = fpswa_interface; | ||
|
||
/*Register vmm data to kvm side*/ | ||
return kvm_init(&vmm_info, 1024, THIS_MODULE); | ||
} | ||
|
||
static void __exit kvm_vmm_exit(void) | ||
{ | ||
kvm_exit(); | ||
return ; | ||
} | ||
|
||
void vmm_spin_lock(spinlock_t *lock) | ||
{ | ||
_vmm_raw_spin_lock(lock); | ||
} | ||
|
||
void vmm_spin_unlock(spinlock_t *lock) | ||
{ | ||
_vmm_raw_spin_unlock(lock); | ||
} | ||
module_init(kvm_vmm_init) | ||
module_exit(kvm_vmm_exit) |