[PATCH] hdlc: Simplify code in 'pvc_xmit()'

Subsystems: generic hdlc (wan) drivers, networking drivers, the rest

STALE2540d

2 messages, 2 authors, 2019-09-25 · open the first message on its own page

[PATCH] hdlc: Simplify code in 'pvc_xmit()'

From: Christophe JAILLET <hidden>
Date: 2019-09-21 06:17:50

Use __skb_pad instead of rewriting it, this saves some LoC.

Signed-off-by: Christophe JAILLET <redacted>
---
Compile tested only.
---
 drivers/net/wan/hdlc_fr.c | 14 +++++---------
 1 file changed, 5 insertions(+), 9 deletions(-)
diff --git a/drivers/net/wan/hdlc_fr.c b/drivers/net/wan/hdlc_fr.c
index 9acad651ea1f..30f20b667c8b 100644
--- a/drivers/net/wan/hdlc_fr.c
+++ b/drivers/net/wan/hdlc_fr.c
@@ -414,16 +414,12 @@ static netdev_tx_t pvc_xmit(struct sk_buff *skb, struct net_device *dev)
 		if (dev->type == ARPHRD_ETHER) {
 			int pad = ETH_ZLEN - skb->len;
 			if (pad > 0) { /* Pad the frame with zeros */
-				int len = skb->len;
-				if (skb_tailroom(skb) < pad)
-					if (pskb_expand_head(skb, 0, pad,
-							     GFP_ATOMIC)) {
-						dev->stats.tx_dropped++;
-						dev_kfree_skb(skb);
-						return NETDEV_TX_OK;
-					}
+				if (__skb_pad(skb, pad, false) < 0) {
+					dev->stats.tx_dropped++;
+					dev_kfree_skb(skb);
+					return NETDEV_TX_OK;
+				}
 				skb_put(skb, pad);
-				memset(skb->data + len, 0, pad);
 			}
 			skb->protocol = cpu_to_be16(ETH_P_802_3);
 		}
-- 
2.20.1

Re: [PATCH] hdlc: Simplify code in 'pvc_xmit()'

From: David Miller <davem@davemloft.net>
Date: 2019-09-25 11:43:19

From: Christophe JAILLET <redacted>
Date: Sat, 21 Sep 2019 08:17:38 +0200
Use __skb_pad instead of rewriting it, this saves some LoC.

Signed-off-by: Christophe JAILLET <redacted>
---
Compile tested only.
Please test this code and resubmit for net-next, thank you.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help