[PATCH v1 0/4] power: refactor power management library

2024-07-20 Thread Sivaprasad Tummala
This patchset refactors the power management library, addressing both core and uncore power management. The primary changes involve the creation of dedicated directories for each driver within 'drivers/power/core/*' and 'drivers/power/uncore/*'. This refactor significantly improves code organizati

[PATCH v1 1/4] power: refactor core power management library

2024-07-20 Thread Sivaprasad Tummala
This patch introduces a comprehensive refactor to the core power management library. The primary focus is on improving modularity and organization by relocating specific driver implementations from the 'lib/power' directory to dedicated directories within 'drivers/power/core/*'. The adjustment of m

[PATCH v1 2/4] power: refactor uncore power management library

2024-07-20 Thread Sivaprasad Tummala
This patch refactors the power management library, addressing uncore power management. The primary changes involve the creation of dedicated directories for each driver within 'drivers/power/uncore/*'. The adjustment of meson.build files enables the selective activation of individual drivers. This

[PATCH v1 4/4] power/amd_uncore: uncore power management support for AMD EPYC processors

2024-07-20 Thread Sivaprasad Tummala
This patch introduces driver support for power management of uncore components in AMD EPYC processors. Signed-off-by: Sivaprasad Tummala --- drivers/power/amd_uncore/amd_uncore.c | 321 ++ drivers/power/amd_uncore/amd_uncore.h | 226 ++ drivers/power/amd_u

[PATCH v1 3/4] test/power: removed function pointer validations

2024-07-20 Thread Sivaprasad Tummala
After refactoring the power library, power management operations are now consistently supported regardless of the operating environment, making function pointer checks unnecessary and thus removed from applications. Signed-off-by: Sivaprasad Tummala --- app/test/test_power.c | 95 ---

[PATCH v1 0/4] power: refactor power management library

2024-07-20 Thread Sivaprasad Tummala
This patchset refactors the power management library, addressing both core and uncore power management. The primary changes involve the creation of dedicated directories for each driver within 'drivers/power/core/*' and 'drivers/power/uncore/*'. This refactor significantly improves code organizati

Re: IPv6 APIs rework

2024-07-20 Thread Robin Jarry
Cutting down the quoting a bit. I understand the arguments against having an unaligned packed struct. But it is precisely what we have in the current code base. All IPv6 addresses are uint8_t[16] arrays. And nobody ever complained about it. Since this rework is already massive, could we proce

Re: IPv6 APIs rework

2024-07-20 Thread Robin Jarry
Stephen Hemminger, Jul 20, 2024 at 22:26: There is no need for packing or alignment in in6_addr or current DPDK, what would be the benefit? Compilers generate worse code if a structure is marked packed. The only benefit is to maintain current behaviour. At first, I had not packed nor aligned

[PATCH] power: fix number of uncore freqs

2024-07-20 Thread Stephen Hemminger
The number of uncore frequencies was defined in three places, and two of them were too small leading to test failures. All places should be using RTE_MAX_UNCORE_FREQS. Bugzilla ID: 1499 Fixes: 60b8a661a957 ("power: add Intel uncore frequency control") Signed-off-by: Stephen Hemminger --- app/tes