aboutsummaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorGravatar Antoine Tenart <antoine.tenart@free-electrons.com> 2017-12-08 10:24:20 +0100
committerGravatar David S. Miller <davem@davemloft.net> 2017-12-08 14:35:15 -0500
commit8a7b741e76cd31b6000636f0391e67ba6793ad1c (patch)
tree68bdcb589f71f66bba26976c30ab141e3126b076 /drivers
parentMerge branch 'tcp-RACK-loss-recovery-bug-fixes' (diff)
downloadlinux-8a7b741e76cd31b6000636f0391e67ba6793ad1c.tar.gz
linux-8a7b741e76cd31b6000636f0391e67ba6793ad1c.tar.bz2
linux-8a7b741e76cd31b6000636f0391e67ba6793ad1c.zip
net: mvpp2: fix the RSS table entry offset
The macro used to access or set an RSS table entry was using an offset of 8, while it should use an offset of 0. This lead to wrongly configure the RSS table, not accessing the right entries. Fixes: 1d7d15d79fb4 ("net: mvpp2: initialize the RSS tables") Signed-off-by: Antoine Tenart <antoine.tenart@free-electrons.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/ethernet/marvell/mvpp2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/marvell/mvpp2.c b/drivers/net/ethernet/marvell/mvpp2.c
index fed2b2f909fc..634b2f41cc9e 100644
--- a/drivers/net/ethernet/marvell/mvpp2.c
+++ b/drivers/net/ethernet/marvell/mvpp2.c
@@ -85,7 +85,7 @@
/* RSS Registers */
#define MVPP22_RSS_INDEX 0x1500
-#define MVPP22_RSS_INDEX_TABLE_ENTRY(idx) ((idx) << 8)
+#define MVPP22_RSS_INDEX_TABLE_ENTRY(idx) (idx)
#define MVPP22_RSS_INDEX_TABLE(idx) ((idx) << 8)
#define MVPP22_RSS_INDEX_QUEUE(idx) ((idx) << 16)
#define MVPP22_RSS_TABLE_ENTRY 0x1508