gianfar: Refactor config coalescing calls for all queues
The only place where gfar_configure_coalescing is called with an actual bitmask (other than 0xff) is in gfar_poll (on the hot path). So make gfar_configure_coalescing() static for the buffer processing path, and export gfar_configure_coalescing_all() for the remaining cases that require to set coalescing for all the queues at once (on the slow path). Signed-off-by: Claudiu Manoil <claudiu.manoil@freescale.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
5d9657d83a
commit
800c644bcd
@@ -341,7 +341,7 @@ static void gfar_init_mac(struct net_device *ndev)
|
||||
gfar_init_tx_rx_base(priv);
|
||||
|
||||
/* Configure the coalescing support */
|
||||
gfar_configure_coalescing(priv, 0xFF, 0xFF);
|
||||
gfar_configure_coalescing_all(priv);
|
||||
|
||||
/* set this when rx hw offload (TOE) functions are being used */
|
||||
priv->uses_rxfcb = 0;
|
||||
@@ -1816,7 +1816,7 @@ void gfar_start(struct net_device *dev)
|
||||
dev->trans_start = jiffies; /* prevent tx timeout */
|
||||
}
|
||||
|
||||
void gfar_configure_coalescing(struct gfar_private *priv,
|
||||
static void gfar_configure_coalescing(struct gfar_private *priv,
|
||||
unsigned long tx_mask, unsigned long rx_mask)
|
||||
{
|
||||
struct gfar __iomem *regs = priv->gfargrp[0].regs;
|
||||
@@ -1851,6 +1851,11 @@ void gfar_configure_coalescing(struct gfar_private *priv,
|
||||
}
|
||||
}
|
||||
|
||||
void gfar_configure_coalescing_all(struct gfar_private *priv)
|
||||
{
|
||||
gfar_configure_coalescing(priv, 0xFF, 0xFF);
|
||||
}
|
||||
|
||||
static int register_grp_irqs(struct gfar_priv_grp *grp)
|
||||
{
|
||||
struct gfar_private *priv = grp->priv;
|
||||
@@ -1940,7 +1945,7 @@ int startup_gfar(struct net_device *ndev)
|
||||
|
||||
phy_start(priv->phydev);
|
||||
|
||||
gfar_configure_coalescing(priv, 0xFF, 0xFF);
|
||||
gfar_configure_coalescing_all(priv);
|
||||
|
||||
return 0;
|
||||
|
||||
|
Reference in New Issue
Block a user