diff options
author | Ben Hutchings <bhutchings@solarflare.com> | 2008-09-01 07:46:21 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2008-09-03 09:53:43 -0400 |
commit | c84a6f18a957204138330283461dba033cc9ed52 (patch) | |
tree | 10affa62b50ecbd8a8d09e2e081dd6cd81d94341 | |
parent | f90748f009966caa2d004d84ce4b585b5cffb3e8 (diff) |
sfc: Reverse the XOFF/XON pause frame control fifo thresholds
These were clearly bogus.
From: Steve Hodgson <shodgson@solarflare.com>
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
-rw-r--r-- | drivers/net/sfc/falcon.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/sfc/falcon.c b/drivers/net/sfc/falcon.c index f5753222133e..8ee63da25e6c 100644 --- a/drivers/net/sfc/falcon.c +++ b/drivers/net/sfc/falcon.c | |||
@@ -2585,8 +2585,8 @@ int falcon_init_nic(struct efx_nic *efx) | |||
2585 | rx_xoff_thresh_bytes : efx->type->rx_xoff_thresh); | 2585 | rx_xoff_thresh_bytes : efx->type->rx_xoff_thresh); |
2586 | EFX_SET_OWORD_FIELD_VER(efx, temp, RX_XOFF_MAC_TH, thresh / 256); | 2586 | EFX_SET_OWORD_FIELD_VER(efx, temp, RX_XOFF_MAC_TH, thresh / 256); |
2587 | /* RX control FIFO thresholds [32 entries] */ | 2587 | /* RX control FIFO thresholds [32 entries] */ |
2588 | EFX_SET_OWORD_FIELD_VER(efx, temp, RX_XON_TX_TH, 25); | 2588 | EFX_SET_OWORD_FIELD_VER(efx, temp, RX_XON_TX_TH, 20); |
2589 | EFX_SET_OWORD_FIELD_VER(efx, temp, RX_XOFF_TX_TH, 20); | 2589 | EFX_SET_OWORD_FIELD_VER(efx, temp, RX_XOFF_TX_TH, 25); |
2590 | falcon_write(efx, &temp, RX_CFG_REG_KER); | 2590 | falcon_write(efx, &temp, RX_CFG_REG_KER); |
2591 | 2591 | ||
2592 | /* Set destination of both TX and RX Flush events */ | 2592 | /* Set destination of both TX and RX Flush events */ |