]> Pileus Git - ~andy/linux/blobdiff - net/llc/llc_sap.c
[LLC]: Use skb_reset_mac_header in llc_alloc_frame
[~andy/linux] / net / llc / llc_sap.c
index 2615dc81aa36f018e6120cbaada3b685accc4db2..5fa31117e46b5dd9d27383b8323fb2d0fcd99f80 100644 (file)
@@ -36,11 +36,11 @@ struct sk_buff *llc_alloc_frame(struct sock *sk, struct net_device *dev)
        struct sk_buff *skb = alloc_skb(128, GFP_ATOMIC);
 
        if (skb) {
+               skb_reset_mac_header(skb);
                skb_reserve(skb, 50);
                skb->nh.raw   = skb->h.raw = skb->data;
                skb->protocol = htons(ETH_P_802_2);
                skb->dev      = dev;
-               skb->mac.raw  = skb->head;
                if (sk != NULL)
                        skb_set_owner_w(skb, sk);
        }