1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* 3 * hvm.h: Hardware virtual machine assist interface definitions. 4 * 5 * Copyright (c) 2016 Citrix Systems Inc. 6 */ 7 8 #ifndef __ASM_X86_HVM_IOREQ_H__ 9 #define __ASM_X86_HVM_IOREQ_H__ 10 11 /* This correlation must not be altered */ 12 #define IOREQ_STATUS_HANDLED X86EMUL_OKAY 13 #define IOREQ_STATUS_UNHANDLED X86EMUL_UNHANDLEABLE 14 #define IOREQ_STATUS_RETRY X86EMUL_RETRY 15 16 #endif /* __ASM_X86_HVM_IOREQ_H__ */ 17 18 /* 19 * Local variables: 20 * mode: C 21 * c-file-style: "BSD" 22 * c-basic-offset: 4 23 * tab-width: 4 24 * indent-tabs-mode: nil 25 * End: 26 */ 27