ixgbe: Off by one in ixgbe_ipsec_tx()
authorDan Carpenter <dan.carpenter@oracle.com>
Wed, 4 Jul 2018 09:53:37 +0000 (12:53 +0300)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Thu, 12 Jul 2018 15:03:09 +0000 (08:03 -0700)
commitc411104115e6821f26fc8f6de8b235ddf98de688
tree422a5e32a12a5a4e722cff735bdcee8b3b7e2d05
parentd14c780c11fbc10f66c43e7b64eefe87ca442bd3
ixgbe: Off by one in ixgbe_ipsec_tx()

The ipsec->tx_tbl[] has IXGBE_IPSEC_MAX_SA_COUNT elements so the > needs
to be changed to >= so we don't read one element beyond the end of the
array.

Fixes: 592594704761 ("ixgbe: process the Tx ipsec offload")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Shannon Nelson <shannon.nelson@oracle.com>
Tested-by: Andrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/ixgbe/ixgbe_ipsec.c