Skip to content

Commit f19ff01

Browse files
lucydyangregkh
authored andcommitted
net: dec: de2104x: Increase receive ring size for Tulip
[ Upstream commit ee46041 ] Increase Rx ring size to address issue where hardware is reaching the receive work limit. Before: [ 102.223342] de2104x 0000:17:00.0 eth0: rx work limit reached [ 102.245695] de2104x 0000:17:00.0 eth0: rx work limit reached [ 102.251387] de2104x 0000:17:00.0 eth0: rx work limit reached [ 102.267444] de2104x 0000:17:00.0 eth0: rx work limit reached Signed-off-by: Lucy Yan <[email protected]> Reviewed-by: Moritz Fischer <[email protected]> Signed-off-by: David S. Miller <[email protected]> Signed-off-by: Sasha Levin <[email protected]>
1 parent e9af030 commit f19ff01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/ethernet/dec/tulip/de2104x.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ MODULE_PARM_DESC (rx_copybreak, "de2104x Breakpoint at which Rx packets are copi
9191
#define DSL CONFIG_DE2104X_DSL
9292
#endif
9393

94-
#define DE_RX_RING_SIZE 64
94+
#define DE_RX_RING_SIZE 128
9595
#define DE_TX_RING_SIZE 64
9696
#define DE_RING_BYTES \
9797
((sizeof(struct de_desc) * DE_RX_RING_SIZE) + \

0 commit comments

Comments
 (0)