aboutsummaryrefslogtreecommitdiff
path: root/sys/xen
diff options
context:
space:
mode:
authorAlan Robinson <alan.robinson@fujitsu.com>2024-10-25 07:27:39 +0000
committerRoger Pau Monné <royger@FreeBSD.org>2024-11-06 14:46:05 +0000
commit6ac22dc3d82395b88f1d8a404aa9985306f06656 (patch)
treebf26d9c50ba05bb0a960276cec6ae0b0293f7916 /sys/xen
parent4d692868a6730ebf72a1d1a619af89af6fc8d763 (diff)
x86/xen: Use intended values in HVM_CALLBACK_VECTOR
Replace the HVM_CB_GSI_GSI SHIFT and MASK with the existing but currently unused HVM_CB_VECTOR_VECTOR_SHIFT and MASK. The binary values are identical. Reviewed by: Elliott Mitchell <ehem+freebsd@m5p.com> Reviewed by: royger Pull request: https://github.com/freebsd/freebsd-src/pull/1490
Diffstat (limited to 'sys/xen')
-rw-r--r--sys/xen/hvm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/xen/hvm.h b/sys/xen/hvm.h
index 3ff3ee3c51e6..cc414b7b471d 100644
--- a/sys/xen/hvm.h
+++ b/sys/xen/hvm.h
@@ -87,7 +87,7 @@ enum {
};
#define HVM_CALLBACK_VECTOR(vector) \
(((uint64_t)HVM_CB_TYPE_VECTOR << HVM_CB_TYPE_SHIFT) \
- | (((vector) & HVM_CB_GSI_GSI_MASK) << HVM_CB_GSI_GSI_SHIFT))
+ | (((vector) & HVM_CB_VECTOR_VECTOR_MASK) << HVM_CB_VECTOR_VECTOR_SHIFT))
enum xen_hvm_init_type {
XEN_HVM_INIT_EARLY,