diff options
author | neel <neel@FreeBSD.org> | 2012-08-04 02:38:05 +0000 |
---|---|---|
committer | neel <neel@FreeBSD.org> | 2012-08-04 02:38:05 +0000 |
commit | f07527ef6066c09742e5ca0ff4631f9c2c68e82d (patch) | |
tree | 35e20beca4bf64ac0ffe24c48af3742948cc5454 /lib | |
parent | 19e3bb399c65527fcc13a4ae345b71ee6c5fee84 (diff) | |
download | FreeBSD-src-f07527ef6066c09742e5ca0ff4631f9c2c68e82d.zip FreeBSD-src-f07527ef6066c09742e5ca0ff4631f9c2c68e82d.tar.gz |
API to map an apic id to the vcpu.
At the moment this is a simple mapping because the numerical values are
identical.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libvmmapi/vmmapi.c | 10 | ||||
-rw-r--r-- | lib/libvmmapi/vmmapi.h | 1 |
2 files changed, 11 insertions, 0 deletions
diff --git a/lib/libvmmapi/vmmapi.c b/lib/libvmmapi/vmmapi.c index 077a46b..d88b694 100644 --- a/lib/libvmmapi/vmmapi.c +++ b/lib/libvmmapi/vmmapi.c @@ -314,6 +314,16 @@ vm_build_tables(struct vmctx *ctxt, int ncpu, void *oemtbl, int oemtblsz) } int +vm_apicid2vcpu(struct vmctx *ctx, int apicid) +{ + /* + * The apic id associated with the 'vcpu' has the same numerical value + * as the 'vcpu' itself. + */ + return (apicid); +} + +int vm_lapic_irq(struct vmctx *ctx, int vcpu, int vector) { struct vm_lapic_irq vmirq; diff --git a/lib/libvmmapi/vmmapi.h b/lib/libvmmapi/vmmapi.h index 7b66421..a216319 100644 --- a/lib/libvmmapi/vmmapi.h +++ b/lib/libvmmapi/vmmapi.h @@ -60,6 +60,7 @@ int vm_run(struct vmctx *ctx, int vcpu, uint64_t rip, struct vm_exit *ret_vmexit); int vm_build_tables(struct vmctx *ctxt, int ncpus, void *oemtbl, int oemtblsz); +int vm_apicid2vcpu(struct vmctx *ctx, int apicid); int vm_inject_event(struct vmctx *ctx, int vcpu, enum vm_event_type type, int vector); int vm_inject_event2(struct vmctx *ctx, int vcpu, enum vm_event_type type, |