Skip to content

Commit

Permalink
dpaa_eth: rename current skb A050385 erratum workaround
Browse files Browse the repository at this point in the history
Explicitly point that the current workaround addresses skbs. This change is
in preparation for adding a workaround for XDP scenarios.

Acked-by: Madalin Bucur <madalin.bucur@oss.nxp.com>
Signed-off-by: Camelia Groza <camelia.groza@nxp.com>
Reviewed-by: Maciej Fijalkowski <maciej.fijalkowski@intel.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
  • Loading branch information
Camelia Groza authored and Jakub Kicinski committed Dec 1, 2020
1 parent a1e031f commit d7af044
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/net/ethernet/freescale/dpaa/dpaa_eth.c
Original file line number Diff line number Diff line change
Expand Up @@ -2105,7 +2105,7 @@ static inline int dpaa_xmit(struct dpaa_priv *priv,
}

#ifdef CONFIG_DPAA_ERRATUM_A050385
static int dpaa_a050385_wa(struct net_device *net_dev, struct sk_buff **s)
static int dpaa_a050385_wa_skb(struct net_device *net_dev, struct sk_buff **s)
{
struct dpaa_priv *priv = netdev_priv(net_dev);
struct sk_buff *new_skb, *skb = *s;
Expand Down Expand Up @@ -2221,7 +2221,7 @@ dpaa_start_xmit(struct sk_buff *skb, struct net_device *net_dev)

#ifdef CONFIG_DPAA_ERRATUM_A050385
if (unlikely(fman_has_errata_a050385())) {
if (dpaa_a050385_wa(net_dev, &skb))
if (dpaa_a050385_wa_skb(net_dev, &skb))
goto enomem;
nonlinear = skb_is_nonlinear(skb);
}
Expand Down

0 comments on commit d7af044

Please sign in to comment.