Skip to content

Commit f69cfd8

Browse files
committed
x86/hyperv: print out reserved vectors in hexadecimal
Signed-off-by: Wei Liu <wei.liu@kernel.org>
1 parent 6de23f8 commit f69cfd8

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

arch/x86/kernel/cpu/mshyperv.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -496,8 +496,9 @@ static void hv_reserve_irq_vectors(void)
496496
test_and_set_bit(HYPERV_DBG_FASTFAIL_VECTOR, system_vectors))
497497
BUG();
498498

499-
pr_info("Hyper-V: reserve vectors: %d %d %d\n", HYPERV_DBG_ASSERT_VECTOR,
500-
HYPERV_DBG_SERVICE_VECTOR, HYPERV_DBG_FASTFAIL_VECTOR);
499+
pr_info("Hyper-V: reserve vectors: 0x%x 0x%x 0x%x\n",
500+
HYPERV_DBG_ASSERT_VECTOR, HYPERV_DBG_SERVICE_VECTOR,
501+
HYPERV_DBG_FASTFAIL_VECTOR);
501502
}
502503

503504
static void __init ms_hyperv_init_platform(void)

0 commit comments

Comments
 (0)