bnx2: Adjust flow control water marks.
The current water marks are too high and can cause unnecessary flow control frames. Signed-off-by: Michael Chan <mchan@broadcom.com> Signed-off-by: Benjamin Li <benli@broadcom.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
e9f26c49ce
commit
5726026bff
@@ -1277,7 +1277,7 @@ bnx2_init_rx_context(struct bnx2 *bp, u32 cid)
|
||||
if (lo_water >= bp->rx_ring_size)
|
||||
lo_water = 0;
|
||||
|
||||
hi_water = bp->rx_ring_size / 4;
|
||||
hi_water = min_t(int, bp->rx_ring_size / 4, lo_water + 16);
|
||||
|
||||
if (hi_water <= lo_water)
|
||||
lo_water = 0;
|
||||
|
Reference in New Issue
Block a user