]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
sfc: Reverse the XOFF/XON pause frame control fifo thresholds
authorBen Hutchings <bhutchings@solarflare.com>
Mon, 1 Sep 2008 11:46:21 +0000 (12:46 +0100)
committerJeff Garzik <jgarzik@redhat.com>
Wed, 3 Sep 2008 13:53:43 +0000 (09:53 -0400)
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>
drivers/net/sfc/falcon.c

index f5753222133ea54a9f9afaa244d7d6a70a32267d..8ee63da25e6cc8d30d13a8685da7daba84389472 100644 (file)
@@ -2585,8 +2585,8 @@ int falcon_init_nic(struct efx_nic *efx)
                  rx_xoff_thresh_bytes : efx->type->rx_xoff_thresh);
        EFX_SET_OWORD_FIELD_VER(efx, temp, RX_XOFF_MAC_TH, thresh / 256);
        /* RX control FIFO thresholds [32 entries] */
-       EFX_SET_OWORD_FIELD_VER(efx, temp, RX_XON_TX_TH, 25);
-       EFX_SET_OWORD_FIELD_VER(efx, temp, RX_XOFF_TX_TH, 20);
+       EFX_SET_OWORD_FIELD_VER(efx, temp, RX_XON_TX_TH, 20);
+       EFX_SET_OWORD_FIELD_VER(efx, temp, RX_XOFF_TX_TH, 25);
        falcon_write(efx, &temp, RX_CFG_REG_KER);
 
        /* Set destination of both TX and RX Flush events */