]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commit
ice: avoid undefined behavior
authorBruce Allan <bruce.w.allan@intel.com>
Sat, 16 May 2020 00:42:18 +0000 (17:42 -0700)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Thu, 28 May 2020 00:58:21 +0000 (17:58 -0700)
commit7e34786a74e14038faadabb24b0d7f4436961c6b
treed63c3f017681e6231cf183453499e23ff3b8e227
parentae15e0ba1b333f391ab0d678abb752cb6a7f2782
ice: avoid undefined behavior

When writing the driver's struct ice_tlan_ctx structure, do not write the
8-bit element int_q_state with the associated internal-to-hardware field
which is 122-bits, otherwise the helper function ice_write_byte() will use
undefined behavior when setting the mask used for that write.  This should
not cause any functional change and will avoid use of undefined behavior.
Also, update a comment to highlight this structure element is not written.

Signed-off-by: Bruce Allan <bruce.w.allan@intel.com>
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
Tested-by: Andrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/ice/ice_base.c
drivers/net/ethernet/intel/ice/ice_common.c
drivers/net/ethernet/intel/ice/ice_common.h
drivers/net/ethernet/intel/ice/ice_lan_tx_rx.h