Commit bef1bc95 authored by Al Viro's avatar Al Viro Committed by Linus Torvalds

skb->tail in ibm_newemac should be skb_tail_pointer()

... since that sucker is not 32bit-only and on 64bit skb->tail is an
offset, not a pointer.
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 52d4e661
...@@ -1534,7 +1534,7 @@ static inline int emac_rx_sg_append(struct emac_instance *dev, int slot) ...@@ -1534,7 +1534,7 @@ static inline int emac_rx_sg_append(struct emac_instance *dev, int slot)
dev_kfree_skb(dev->rx_sg_skb); dev_kfree_skb(dev->rx_sg_skb);
dev->rx_sg_skb = NULL; dev->rx_sg_skb = NULL;
} else { } else {
cacheable_memcpy(dev->rx_sg_skb->tail, cacheable_memcpy(skb_tail_pointer(dev->rx_sg_skb),
dev->rx_skb[slot]->data, len); dev->rx_skb[slot]->data, len);
skb_put(dev->rx_sg_skb, len); skb_put(dev->rx_sg_skb, len);
emac_recycle_rx_skb(dev, slot, len); emac_recycle_rx_skb(dev, slot, len);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment