Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 263510
b: refs/heads/master
c: 22df133
h: refs/heads/master
v: v3
  • Loading branch information
Eric Dumazet authored and David S. Miller committed Aug 25, 2011
1 parent 29670fa commit 840ae11
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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: 4b275d7efa1c4412f0d572fcd7f78ed0919370b3
refs/heads/master: 22df13319d1fec30b8f9bcaadc295829647109bb
8 changes: 4 additions & 4 deletions trunk/net/bridge/br_multicast.c
Original file line number Diff line number Diff line change
Expand Up @@ -1456,7 +1456,7 @@ static int br_multicast_ipv6_rcv(struct net_bridge *br,
{
struct sk_buff *skb2;
const struct ipv6hdr *ip6h;
struct icmp6hdr *icmp6h;
u8 icmp6_type;
u8 nexthdr;
unsigned len;
int offset;
Expand Down Expand Up @@ -1502,9 +1502,9 @@ static int br_multicast_ipv6_rcv(struct net_bridge *br,
__skb_pull(skb2, offset);
skb_reset_transport_header(skb2);

icmp6h = icmp6_hdr(skb2);
icmp6_type = icmp6_hdr(skb2)->icmp6_type;

switch (icmp6h->icmp6_type) {
switch (icmp6_type) {
case ICMPV6_MGM_QUERY:
case ICMPV6_MGM_REPORT:
case ICMPV6_MGM_REDUCTION:
Expand Down Expand Up @@ -1544,7 +1544,7 @@ static int br_multicast_ipv6_rcv(struct net_bridge *br,

BR_INPUT_SKB_CB(skb)->igmp = 1;

switch (icmp6h->icmp6_type) {
switch (icmp6_type) {
case ICMPV6_MGM_REPORT:
{
struct mld_msg *mld;
Expand Down

0 comments on commit 840ae11

Please sign in to comment.