]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
ice: initialize ring_stats->syncp
authorJacob Keller <jacob.e.keller@intel.com>
Thu, 20 Nov 2025 20:20:41 +0000 (12:20 -0800)
committerTony Nguyen <anthony.l.nguyen@intel.com>
Tue, 13 Jan 2026 19:18:05 +0000 (11:18 -0800)
commit8439016c3b8b5ab687c2420317b1691585106611
tree6b1bcb1468b16981a261fc55cff4c3ef915062f5
parentffe4ccd359d006eba559cb1a3c6113144b7fb38c
ice: initialize ring_stats->syncp

The u64_stats_sync structure is empty on 64-bit systems. However, on 32-bit
systems it contains a seqcount_t which needs to be initialized. While the
memory is zero-initialized, a lack of u64_stats_init means that lockdep
won't get initialized properly. Fix this by adding u64_stats_init() calls
to the rings just after allocation.

Fixes: 2b245cb29421 ("ice: Implement transmit and NAPI support")
Reviewed-by: Aleksandr Loktionov <aleksandr.loktionov@intel.com>
Signed-off-by: Jacob Keller <jacob.e.keller@intel.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Tested-by: Rinitha S <sx.rinitha@intel.com> (A Contingent worker at Intel)
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
drivers/net/ethernet/intel/ice/ice_lib.c