Revert "e1000: Remove redundant EITR shift from igb"

Turns out this is necessary

This reverts commit 26439b5787.
This commit is contained in:
Kevin Bowling
2024-09-28 01:47:00 -07:00
parent 38c63b5283
commit 911b3c3aa6
+2 -1
View File
@@ -251,7 +251,8 @@
#define IGB_ITR_DIVIDEND 1000000
#define IGB_ITR_SHIFT 2
#define IGB_QVECTOR_MASK 0x7FFC
#define IGB_INTS_TO_EITR(i) ((IGB_ITR_DIVIDEND/i) & IGB_QVECTOR_MASK)
#define IGB_INTS_TO_EITR(i) (((IGB_ITR_DIVIDEND/i) & IGB_QVECTOR_MASK) << \
IGB_ITR_SHIFT)
#define IGB_LINK_ITR 2000
#define I210_LINK_DELAY 1000