Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 88316
b: refs/heads/master
c: b45e918
h: refs/heads/master
v: v3
  • Loading branch information
David S. Miller committed Apr 14, 2008
1 parent 30e1c19 commit 39360ac
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2ed9926e16094ad143b96b09c64cba8bcba05ee1
refs/heads/master: b45e9189c058bfa495073951ff461ee0eea968be
6 changes: 4 additions & 2 deletions trunk/net/ipv6/raw.c
Original file line number Diff line number Diff line change
Expand Up @@ -372,8 +372,10 @@ void raw6_icmp_error(struct sk_buff *skb, int nexthdr,
read_lock(&raw_v6_hashinfo.lock);
sk = sk_head(&raw_v6_hashinfo.ht[hash]);
if (sk != NULL) {
saddr = &ipv6_hdr(skb)->saddr;
daddr = &ipv6_hdr(skb)->daddr;
struct ipv6hdr *hdr = (struct ipv6hdr *) skb->data;

saddr = &hdr->saddr;
daddr = &hdr->daddr;
net = skb->dev->nd_net;

while ((sk = __raw_v6_lookup(net, sk, nexthdr, saddr, daddr,
Expand Down

0 comments on commit 39360ac

Please sign in to comment.