net/sfc: specify correct scale table size on Rx start
authorIvan Malov <ivan.malov@oktetlabs.ru>
Mon, 28 Aug 2017 12:53:46 +0000 (13:53 +0100)
committerFerruh Yigit <ferruh.yigit@intel.com>
Fri, 6 Oct 2017 00:49:47 +0000 (02:49 +0200)
commitefbd16eadea870e01cf4518f425e3f7bdeb8a338
tree21977e22d1fc69e66fa57ed9398fa1140bff40c7
parent70259cbbe3951db7e4d93e0991860c9082ec3828
net/sfc: specify correct scale table size on Rx start

efx_rx_scale_tbl_set() takes the number of entries in the scale table
to be set, not the size of the table in bytes; currently this bug does
not make any damage since the size argument is used to wrap the loop
on the input table when filling in an MCDI request in case if the table
size in the MCDI request is larger then one provided by the user,
and MCDI scale table size is the same as the size of the table provided
by the driver; this patch brings a fix for the bug

Fixes: 4ec1fc3ba881 ("net/sfc: add basic stubs for RSS support on driver attach")
Cc: stable@dpdk.org
Signed-off-by: Ivan Malov <ivan.malov@oktetlabs.ru>
Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
drivers/net/sfc/sfc_rx.c