DPDK usage discussions
 help / color / mirror / Atom feed
* rte_power_monitor_multi can not enter C0.2/C0.1 state (RTM transaction abort with 0)
@ 2023-02-27 13:52 Xiaoping Yan (NSB)
  0 siblings, 0 replies; only message in thread
From: Xiaoping Yan (NSB) @ 2023-02-27 13:52 UTC (permalink / raw)
  To: users

[-- Attachment #1: Type: text/plain, Size: 1456 bytes --]

Hi,

I'm trying power saving feature in my server with intel sapphire rapid CPU. With "tsx=on" kernel parameter, I have both rtm and waitpkg available in CPU flag.
I tried rte_power_monitor_multi API to monitor on multiple address, but it never enters C0.2/C0.1 state.
To find the reason I patched the code to return the transaction abort code as below:
        /* transaction abort, possible write to one of wait addresses */
        if (rc != RTE_XBEGIN_STARTED)
-               return 0;
+               return rc;
and it turn out that RTM transaction always aborted with 0 (a few times with 4 or 6 also, which I think maybe expected due to memory change of monitored addresses).
I found some explanation of the abort state here:
https://www.intel.com/content/www/us/en/develop/documentation/cpp-compiler-developer-guide-and-reference/top/compiler-reference/intrinsics/intrinsics-for-avx2/intrinsics-for-tsx/intrinsics-for-restrict-transactional-mem-ops/restricted-transactional-memory-overview.html
For abort code 0, it just say one example (CPUID used within transcation), but it seems CPUID is not used within rte_power_monitor_multi.
I also tried rte_power_pause and rte_power_monitor, both works as expected, CPU enters C0.2 state (checked by perf stat --e r20ec -C xx)

Now, I don't know why the RTM transaction aborted with 0 and don't know how to debug it.

Can anyone throw some light on this?

Thank you.

Br, Xiaoping


[-- Attachment #2: Type: text/html, Size: 5626 bytes --]

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-02-27 13:52 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-27 13:52 rte_power_monitor_multi can not enter C0.2/C0.1 state (RTM transaction abort with 0) Xiaoping Yan (NSB)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).