From 0f4611cc2642aa19a1fb845c443d10dd83f18ec0 Mon Sep 17 00:00:00 2001 From: David Hunt Date: Tue, 23 Nov 2021 15:57:49 +0000 Subject: [PATCH] examples/l3fwd-power: revert wakeup log Wakeup happens quite often (several hundred times a second) in l3fwd-power example app in PMD power management mode, so this message is appearing too often to be useful. This patch reverts that info message addition. Fixes: 931e3a994597 ("examples/l3fwd-power: add wakeup log") Signed-off-by: David Hunt Tested-by: Reshma Pattan Acked-by: Reshma Pattan --- examples/l3fwd-power/main.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/examples/l3fwd-power/main.c b/examples/l3fwd-power/main.c index 5c5825166d..b8b3be2b8a 100644 --- a/examples/l3fwd-power/main.c +++ b/examples/l3fwd-power/main.c @@ -1156,9 +1156,6 @@ main_telemetry_loop(__rte_unused void *dummy) ep_nep[nb_rx == 0]++; fp_nfp[nb_rx == MAX_PKT_BURST]++; poll_count++; - RTE_LOG(INFO, L3FWD_POWER, - "lcore %u has woken up on port %d queue %d\n", - rte_lcore_id(), portid, queueid); if (unlikely(nb_rx == 0)) continue; -- 2.20.1