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)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 24 Aug 2018 11:07:08 +0000 (13:07 +0200)
commitc8ba74daecc47af30293c06c9df1b944909684af
treeadab9b4f939c16a087b8d5d72a814b71451e433a
parentda9135048ed7ff854fda1e7cb5df5aa2273bb624
ixgbe: Off by one in ixgbe_ipsec_tx()

[ Upstream commit c411104115e6821f26fc8f6de8b235ddf98de688 ]

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>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/net/ethernet/intel/ixgbe/ixgbe_ipsec.c