Commit 001c96db authored by Eric Dumazet's avatar Eric Dumazet Committed by David S. Miller

net: align gnet_stats_basic_cpu struct

This structure is small (12 or 16 bytes depending on 64bit
or 32bit kernels), but we do not want it spanning two cache lines.
Signed-off-by: default avatarEric Dumazet <edumazet@google.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9a5ee462
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
struct gnet_stats_basic_cpu { struct gnet_stats_basic_cpu {
struct gnet_stats_basic_packed bstats; struct gnet_stats_basic_packed bstats;
struct u64_stats_sync syncp; struct u64_stats_sync syncp;
}; } __aligned(2 * sizeof(u64));
struct net_rate_estimator; struct net_rate_estimator;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment