From 101ab60627b0f4dbeb5cbcc71962694671d7fb44 Mon Sep 17 00:00:00 2001 From: Sainath Grandhi Date: Wed, 15 Aug 2018 15:07:15 -0700 Subject: [PATCH] hv: Build fix for Partition mode struct io_request gets rid of "processed" element. Modified io exit handler for partition mode to accomodate the change. Signed-off-by: Sainath Grandhi --- hypervisor/arch/x86/io.c | 1 - 1 file changed, 1 deletion(-) diff --git a/hypervisor/arch/x86/io.c b/hypervisor/arch/x86/io.c index 2f026cea5..2659496c5 100644 --- a/hypervisor/arch/x86/io.c +++ b/hypervisor/arch/x86/io.c @@ -111,7 +111,6 @@ static void io_instr_dest_handler(struct io_request *io_req) if (pio_req->direction == REQUEST_READ) { pio_req->value = 0xFFFFFFFFU; } - io_req->processed = REQ_STATE_COMPLETE; } #endif