Searched defs:epause (Results 1 - 9 of 9) sorted by path

/drivers/net/ethernet/atheros/atlx/
H A Datl1.c3582 struct ethtool_pauseparam *epause)
3589 epause->autoneg = AUTONEG_ENABLE;
3591 epause->autoneg = AUTONEG_DISABLE;
3593 epause->rx_pause = 1;
3594 epause->tx_pause = 1;
3598 struct ethtool_pauseparam *epause)
3605 epause->autoneg = AUTONEG_ENABLE;
3607 epause->autoneg = AUTONEG_DISABLE;
3610 epause->rx_pause = 1;
3611 epause
3581 atl1_get_pauseparam(struct net_device *netdev, struct ethtool_pauseparam *epause) argument
3597 atl1_set_pauseparam(struct net_device *netdev, struct ethtool_pauseparam *epause) argument
[all...]
/drivers/net/ethernet/broadcom/
H A Db44.c1997 struct ethtool_pauseparam *epause)
2001 epause->autoneg =
2003 epause->rx_pause =
2005 epause->tx_pause =
2010 struct ethtool_pauseparam *epause)
2015 if (epause->autoneg)
2019 if (epause->rx_pause)
2023 if (epause->tx_pause)
1996 b44_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause) argument
2009 b44_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause) argument
H A Dbnx2.c7376 bnx2_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause) argument
7380 epause->autoneg = ((bp->autoneg & AUTONEG_FLOW_CTRL) != 0);
7381 epause->rx_pause = ((bp->flow_ctrl & FLOW_CTRL_RX) != 0);
7382 epause->tx_pause = ((bp->flow_ctrl & FLOW_CTRL_TX) != 0);
7386 bnx2_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause) argument
7391 if (epause->rx_pause)
7393 if (epause->tx_pause)
7396 if (epause->autoneg) {
H A Dtg3.c12393 static void tg3_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause) argument
12397 epause->autoneg = !!tg3_flag(tp, PAUSE_AUTONEG);
12400 epause->rx_pause = 1;
12402 epause->rx_pause = 0;
12405 epause->tx_pause = 1;
12407 epause->tx_pause = 0;
12410 static int tg3_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause) argument
12426 (epause->rx_pause != epause->tx_pause)))
12430 if (epause
[all...]
/drivers/net/ethernet/broadcom/bnx2x/
H A Dbnx2x_ethtool.c1868 struct ethtool_pauseparam *epause)
1874 epause->autoneg = (bp->link_params.req_flow_ctrl[cfg_idx] ==
1877 if (!epause->autoneg)
1882 epause->rx_pause = ((cfg_reg & BNX2X_FLOW_CTRL_RX) ==
1884 epause->tx_pause = ((cfg_reg & BNX2X_FLOW_CTRL_TX) ==
1889 epause->cmd, epause->autoneg, epause->rx_pause, epause->tx_pause);
1893 struct ethtool_pauseparam *epause)
1867 bnx2x_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause) argument
1892 bnx2x_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause) argument
[all...]
/drivers/net/ethernet/chelsio/cxgb/
H A Dcxgb2.c667 struct ethtool_pauseparam *epause)
672 epause->autoneg = (p->link_config.requested_fc & PAUSE_AUTONEG) != 0;
673 epause->rx_pause = (p->link_config.fc & PAUSE_RX) != 0;
674 epause->tx_pause = (p->link_config.fc & PAUSE_TX) != 0;
678 struct ethtool_pauseparam *epause)
684 if (epause->autoneg == AUTONEG_DISABLE)
691 if (epause->rx_pause)
693 if (epause->tx_pause)
666 get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause) argument
677 set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause) argument
/drivers/net/ethernet/chelsio/cxgb3/
H A Dcxgb3_main.c1904 struct ethtool_pauseparam *epause)
1908 epause->autoneg = (p->link_config.requested_fc & PAUSE_AUTONEG) != 0;
1909 epause->rx_pause = (p->link_config.fc & PAUSE_RX) != 0;
1910 epause->tx_pause = (p->link_config.fc & PAUSE_TX) != 0;
1914 struct ethtool_pauseparam *epause)
1919 if (epause->autoneg == AUTONEG_DISABLE)
1926 if (epause->rx_pause)
1928 if (epause->tx_pause)
1903 get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause) argument
1913 set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause) argument
/drivers/net/ethernet/chelsio/cxgb4/
H A Dcxgb4_main.c2584 struct ethtool_pauseparam *epause)
2588 epause->autoneg = (p->link_cfg.requested_fc & PAUSE_AUTONEG) != 0;
2589 epause->rx_pause = (p->link_cfg.fc & PAUSE_RX) != 0;
2590 epause->tx_pause = (p->link_cfg.fc & PAUSE_TX) != 0;
2594 struct ethtool_pauseparam *epause)
2599 if (epause->autoneg == AUTONEG_DISABLE)
2606 if (epause->rx_pause)
2608 if (epause->tx_pause)
2583 get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause) argument
2593 set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause) argument
/drivers/net/ethernet/freescale/
H A Dgianfar_ethtool.c519 struct ethtool_pauseparam *epause)
523 epause->autoneg = !!priv->pause_aneg_en;
524 epause->rx_pause = !!priv->rx_pause_en;
525 epause->tx_pause = !!priv->tx_pause_en;
529 struct ethtool_pauseparam *epause)
541 (epause->rx_pause != epause->tx_pause)))
545 if (epause->rx_pause) {
548 if (epause->tx_pause) {
554 } else if (epause
518 gfar_gpauseparam(struct net_device *dev, struct ethtool_pauseparam *epause) argument
528 gfar_spauseparam(struct net_device *dev, struct ethtool_pauseparam *epause) argument
[all...]

Completed in 253 milliseconds