Revert "e1000: Remove redundant EITR shift from igb"
Turns out this is necessary
This reverts commit 26439b5787.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user