Re: [PATCH v2 4/5] power: reduce memory footprint of per-lcore state

2024-12-18 Thread Burakov, Anatoly
On 12/17/2024 9:59 AM, David Marchand wrote: Now that the per-lcore state was moved into a lcore variable, there is no reason to align a per-lcore state on a cache line to avoid false sharing. Remove this alignment and save a few bytes. Fixes: 130643319579 ("power: keep per-lcore state in lcore

[PATCH v2 4/5] power: reduce memory footprint of per-lcore state

2024-12-17 Thread David Marchand
Now that the per-lcore state was moved into a lcore variable, there is no reason to align a per-lcore state on a cache line to avoid false sharing. Remove this alignment and save a few bytes. Fixes: 130643319579 ("power: keep per-lcore state in lcore variable") Signed-off-by: David Marchand ---