diff options
Diffstat (limited to 'net/802')
-rw-r--r-- | net/802/p8023.c | 2 | ||||
-rw-r--r-- | net/802/psnap.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/net/802/p8023.c b/net/802/p8023.c index d23e906456..53cf057092 100644 --- a/net/802/p8023.c +++ b/net/802/p8023.c | |||
@@ -59,3 +59,5 @@ void destroy_8023_client(struct datalink_proto *dl) | |||
59 | 59 | ||
60 | EXPORT_SYMBOL(destroy_8023_client); | 60 | EXPORT_SYMBOL(destroy_8023_client); |
61 | EXPORT_SYMBOL(make_8023_client); | 61 | EXPORT_SYMBOL(make_8023_client); |
62 | |||
63 | MODULE_LICENSE("GPL"); | ||
diff --git a/net/802/psnap.c b/net/802/psnap.c index 4d638944d9..34e42968b4 100644 --- a/net/802/psnap.c +++ b/net/802/psnap.c | |||
@@ -59,8 +59,10 @@ static int snap_rcv(struct sk_buff *skb, struct net_device *dev, | |||
59 | proto = find_snap_client(skb->h.raw); | 59 | proto = find_snap_client(skb->h.raw); |
60 | if (proto) { | 60 | if (proto) { |
61 | /* Pass the frame on. */ | 61 | /* Pass the frame on. */ |
62 | u8 *hdr = skb->data; | ||
62 | skb->h.raw += 5; | 63 | skb->h.raw += 5; |
63 | skb_pull(skb, 5); | 64 | skb_pull(skb, 5); |
65 | skb_postpull_rcsum(skb, hdr, 5); | ||
64 | rc = proto->rcvfunc(skb, dev, &snap_packet_type, orig_dev); | 66 | rc = proto->rcvfunc(skb, dev, &snap_packet_type, orig_dev); |
65 | } else { | 67 | } else { |
66 | skb->sk = NULL; | 68 | skb->sk = NULL; |