Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 749154aa authored by Ansis Atteka's avatar Ansis Atteka Committed by David S. Miller
Browse files

ip: use ip_hdr() in __ip_make_skb() to retrieve IP header



skb->data already points to IP header, but for the sake of
consistency we can also use ip_hdr() to retrieve it.

Signed-off-by: default avatarAnsis Atteka <aatteka@nicira.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 279f438e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1316,7 +1316,7 @@ struct sk_buff *__ip_make_skb(struct sock *sk,
	else
		ttl = ip_select_ttl(inet, &rt->dst);

	iph = (struct iphdr *)skb->data;
	iph = ip_hdr(skb);
	iph->version = 4;
	iph->ihl = 5;
	iph->tos = inet->tos;