hv: Fixing build issue with PARTITION_MODE

Modified the vector MACRO that is failing build with PARTITION_MODE selected

Signed-off-by: Sainath Grandhi <sainath.grandhi@intel.com>
This commit is contained in:
Sainath Grandhi 2018-08-10 11:40:25 -07:00 committed by lijinxia
parent 7380c167ed
commit 112b4eaa42
1 changed files with 1 additions and 1 deletions

View File

@ -444,7 +444,7 @@ void partition_mode_dispatch_interrupt(struct intr_excp_ctx *ctx)
* HV services are handled by HV using dispatch_interrupt.
*/
vcpu = per_cpu(vcpu, get_cpu_id());
if (vr < VECTOR_FOR_PRI_START) {
if (vr < VECTOR_FIXED_START) {
send_lapic_eoi();
vlapic_intr_edge(vcpu, vr);
} else {