summaryrefslogtreecommitdiffstats
path: root/drivers/net
diff options
context:
space:
mode:
authorShannon Nelson <snelson@pensando.io>2020-01-30 10:07:06 -0800
committerJakub Kicinski <kuba@kernel.org>2020-01-31 08:43:05 -0800
commitb5ce31b5e11b768b7d685b2bab7db09ad5549493 (patch)
tree7cf473c5671a7e9fed676a39b14e92ad6f08fe31 /drivers/net
parent2318ca8aef3877da2b16b92edce47a497370a86e (diff)
downloadlinux-b5ce31b5e11b768b7d685b2bab7db09ad5549493.tar.gz
linux-b5ce31b5e11b768b7d685b2bab7db09ad5549493.tar.bz2
linux-b5ce31b5e11b768b7d685b2bab7db09ad5549493.zip
ionic: fix rxq comp packet type mask
Be sure to include all the packet type bits in the mask. Fixes: fbfb8031533c ("ionic: Add hardware init and device commands") Signed-off-by: Shannon Nelson <snelson@pensando.io> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'drivers/net')
-rw-r--r--drivers/net/ethernet/pensando/ionic/ionic_if.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/pensando/ionic/ionic_if.h b/drivers/net/ethernet/pensando/ionic/ionic_if.h
index f131adad96e3..ce07c2931a72 100644
--- a/drivers/net/ethernet/pensando/ionic/ionic_if.h
+++ b/drivers/net/ethernet/pensando/ionic/ionic_if.h
@@ -866,7 +866,7 @@ struct ionic_rxq_comp {
#define IONIC_RXQ_COMP_CSUM_F_VLAN 0x40
#define IONIC_RXQ_COMP_CSUM_F_CALC 0x80
u8 pkt_type_color;
-#define IONIC_RXQ_COMP_PKT_TYPE_MASK 0x0f
+#define IONIC_RXQ_COMP_PKT_TYPE_MASK 0x7f
};
enum ionic_pkt_type {