Skip to content

Commit

Permalink
gianfar: reallocate skb when headroom is not enough for fcb
Browse files Browse the repository at this point in the history
Gianfar uses a hardware header FCB for offloading.  However when used
with bridging or IP forwarding, TX skb might not have enough headroom
for the FCB.  Reallocate skb for such cases.

Signed-off-by: Li Yang <leoli@freescale.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Li Yang authored and davem330 committed Mar 26, 2009
1 parent 8ca5198 commit 93c1285
Showing 1 changed file with 21 additions and 10 deletions.
31 changes: 21 additions & 10 deletions drivers/net/gianfar.c
Original file line number Diff line number Diff line change
Expand Up @@ -1239,10 +1239,19 @@ static int gfar_enet_open(struct net_device *dev)
return err;
}

static inline struct txfcb *gfar_add_fcb(struct sk_buff *skb)
static inline struct txfcb *gfar_add_fcb(struct sk_buff **skbp)
{
struct txfcb *fcb = (struct txfcb *)skb_push (skb, GMAC_FCB_LEN);

struct txfcb *fcb;
struct sk_buff *skb = *skbp;

if (unlikely(skb_headroom(skb) < GMAC_FCB_LEN)) {
struct sk_buff *old_skb = skb;
skb = skb_realloc_headroom(old_skb, GMAC_FCB_LEN);
if (!skb)
return NULL;
dev_kfree_skb_any(old_skb);
}
fcb = (struct txfcb *)skb_push(skb, GMAC_FCB_LEN);
cacheable_memzero(fcb, GMAC_FCB_LEN);

return fcb;
Expand Down Expand Up @@ -1363,18 +1372,20 @@ static int gfar_start_xmit(struct sk_buff *skb, struct net_device *dev)

/* Set up checksumming */
if (CHECKSUM_PARTIAL == skb->ip_summed) {
fcb = gfar_add_fcb(skb);
lstatus |= BD_LFLAG(TXBD_TOE);
gfar_tx_checksum(skb, fcb);
fcb = gfar_add_fcb(&skb);
if (likely(fcb != NULL)) {
lstatus |= BD_LFLAG(TXBD_TOE);
gfar_tx_checksum(skb, fcb);
}
}

if (priv->vlgrp && vlan_tx_tag_present(skb)) {
if (unlikely(NULL == fcb)) {
fcb = gfar_add_fcb(skb);
if (unlikely(NULL == fcb))
fcb = gfar_add_fcb(&skb);
if (likely(fcb != NULL)) {
lstatus |= BD_LFLAG(TXBD_TOE);
gfar_tx_vlan(skb, fcb);
}

gfar_tx_vlan(skb, fcb);
}

/* setup the TxBD length and buffer pointer for the first BD */
Expand Down

0 comments on commit 93c1285

Please sign in to comment.