Skip to content

Commit 04eda68

Browse files
committed
remove logging
1 parent 8d37032 commit 04eda68

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

drivers/hv/mshv_vtl_main.c

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -527,15 +527,11 @@ static void mshv_vtl_scan_proxy_interrupts(struct hv_per_cpu_context *per_cpu)
527527
proxy = (struct hv_x64_proxy_interrupt_message_payload *)msg->u.payload;
528528
run = mshv_vtl_this_run();
529529

530-
pr_info("%s: vtl %d\n", __func__, (int)(proxy->interrupt_vtl));
531-
532530
if (proxy->assert_multiple) {
533531
for (int i = 0; i < 8; i++) {
534532
const u32 masked_irr = ~READ_ONCE(run->proxy_irr_blocked[i]) &
535533
READ_ONCE(proxy->u.asserted_irr[i]);
536534

537-
pr_info("%s: irr %#x, i %d\n", __func__, masked_irr, (u32)i);
538-
539535
/*
540536
* nb atomic_t cast: See comment in
541537
* mshv_tdx_handle_simple_icr_write
@@ -546,8 +542,6 @@ static void mshv_vtl_scan_proxy_interrupts(struct hv_per_cpu_context *per_cpu)
546542
/* A malicious hypervisor might set a vector > 255. */
547543
vector = READ_ONCE(proxy->u.asserted_vector) & 0xff;
548544

549-
pr_info("%s: vector %d\n", __func__, (int)(vector));
550-
551545
const u32 bank = vector / 32;
552546
const u32 masked_irr = BIT(vector % 32) &
553547
~READ_ONCE(run->proxy_irr_blocked[bank]);

0 commit comments

Comments
 (0)