net: manual clean code which call skb_put_[data:zero]

Signed-off-by: yuan linyu <Linyu.Yuan@alcatel-sbell.com.cn>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
yuan linyu
2017-06-18 22:52:04 +08:00
committed by David S. Miller
parent ad941e693b
commit b952f4dff2
39 changed files with 93 additions and 135 deletions

View File

@@ -90,7 +90,6 @@ out_pkt:
static struct sk_buff *virtio_transport_build_skb(void *opaque)
{
struct virtio_vsock_pkt *pkt = opaque;
unsigned char *t_hdr, *payload;
struct af_vsockmon_hdr *hdr;
struct sk_buff *skb;
@@ -132,10 +131,10 @@ static struct sk_buff *virtio_transport_build_skb(void *opaque)
break;
}
t_hdr = skb_put_data(skb, &pkt->hdr, sizeof(pkt->hdr));
skb_put_data(skb, &pkt->hdr, sizeof(pkt->hdr));
if (pkt->len) {
payload = skb_put_data(skb, pkt->buf, pkt->len);
skb_put_data(skb, pkt->buf, pkt->len);
}
return skb;