DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] ixgbe: fix interrupt clear mask for eimc register
@ 2023-12-08 15:44 Simon Ellmann
  2023-12-14  2:24 ` Zhang, Qi Z
  0 siblings, 1 reply; 4+ messages in thread
From: Simon Ellmann @ 2023-12-08 15:44 UTC (permalink / raw)
  To: qiming.yang, wenjun1.wu; +Cc: dev, Simon Ellmann

32nd bit of the eimc register is reserved according to the datasheet

Signed-off-by: Simon Ellmann <simon.ellmann@tum.de>
---
 drivers/net/ixgbe/base/ixgbe_type.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ixgbe/base/ixgbe_type.h b/drivers/net/ixgbe/base/ixgbe_type.h
index 1094df5891..03b299cd10 100644
--- a/drivers/net/ixgbe/base/ixgbe_type.h
+++ b/drivers/net/ixgbe/base/ixgbe_type.h
@@ -2023,7 +2023,7 @@ enum {
 #define IXGBE_FTQF_QUEUE_ENABLE		0x80000000
 
 /* Interrupt clear mask */
-#define IXGBE_IRQ_CLEAR_MASK	0xFFFFFFFF
+#define IXGBE_IRQ_CLEAR_MASK	0x7FFFFFFF
 
 /* Interrupt Vector Allocation Registers */
 #define IXGBE_IVAR_REG_NUM		25
-- 
2.43.0


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-12-19  3:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-08 15:44 [PATCH] ixgbe: fix interrupt clear mask for eimc register Simon Ellmann
2023-12-14  2:24 ` Zhang, Qi Z
2023-12-14 11:02   ` Simon Ellmann
2023-12-19  3:32     ` Zhang, Qi Z

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).