Re: [PATCH v6 2/2] examples/l3fwd-power: add PM QoS configuration

2024-07-08 Thread lihuisong (C)
在 2024/7/9 11:07, Stephen Hemminger 写道: On Tue, 9 Jul 2024 10:29:27 +0800 Huisong Li wrote: + RTE_LCORE_FOREACH(lcore_id) { + if (rte_lcore_is_enabled(lcore_id) == 0) + continue; Why do you need this check? RTE_LCORE_FOREACH calls rte_next_lcore wh

[PATCH v6 2/2] examples/l3fwd-power: add PM QoS configuration

2024-07-08 Thread Huisong Li
Add PM QoS configuration to declease the delay after sleep in case of entering deeper idle state. Signed-off-by: Huisong Li Acked-by: Morten Brørup --- examples/l3fwd-power/main.c | 28 1 file changed, 28 insertions(+) diff --git a/examples/l3fwd-power/main.c b/exa