aboutsummaryrefslogtreecommitdiffstats
path: root/net/bridge
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2007-04-25 20:54:47 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-04-26 01:25:14 -0400
commit0660e03f6b18f19b6bbafe7583265a51b90daf36 (patch)
tree82cc819ead5ab7858ba211ee8719a3e6d2bb984f /net/bridge
parentd0a92be05ed4aea7d35c2b257e3f9173565fe4eb (diff)
[SK_BUFF]: Introduce ipv6_hdr(), remove skb->nh.ipv6h
Now the skb->nh union has just one member, .raw, i.e. it is just like the skb->mac union, strange, no? I'm just leaving it like that till the transport layer is done with, when we'll rename skb->mac.raw to skb->mac_header (or ->mac_header_offset?), ditto for ->{h,nh}. Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bridge')
-rw-r--r--net/bridge/br_netfilter.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/bridge/br_netfilter.c b/net/bridge/br_netfilter.c
index 0ee74b1e4770..f2796c97b4a2 100644
--- a/net/bridge/br_netfilter.c
+++ b/net/bridge/br_netfilter.c
@@ -372,7 +372,7 @@ static struct net_device *setup_pre_routing(struct sk_buff *skb)
372/* We only check the length. A bridge shouldn't do any hop-by-hop stuff anyway */ 372/* We only check the length. A bridge shouldn't do any hop-by-hop stuff anyway */
373static int check_hbh_len(struct sk_buff *skb) 373static int check_hbh_len(struct sk_buff *skb)
374{ 374{
375 unsigned char *raw = (u8 *) (skb->nh.ipv6h + 1); 375 unsigned char *raw = (u8 *)(ipv6_hdr(skb) + 1);
376 u32 pkt_len; 376 u32 pkt_len;
377 const unsigned char *nh = skb_network_header(skb); 377 const unsigned char *nh = skb_network_header(skb);
378 int off = raw - nh; 378 int off = raw - nh;
@@ -400,7 +400,7 @@ static int check_hbh_len(struct sk_buff *skb)
400 goto bad; 400 goto bad;
401 pkt_len = ntohl(*(__be32 *) (nh + off + 2)); 401 pkt_len = ntohl(*(__be32 *) (nh + off + 2));
402 if (pkt_len <= IPV6_MAXPLEN || 402 if (pkt_len <= IPV6_MAXPLEN ||
403 skb->nh.ipv6h->payload_len) 403 ipv6_hdr(skb)->payload_len)
404 goto bad; 404 goto bad;
405 if (pkt_len > skb->len - sizeof(struct ipv6hdr)) 405 if (pkt_len > skb->len - sizeof(struct ipv6hdr))
406 goto bad; 406 goto bad;
@@ -441,7 +441,7 @@ static unsigned int br_nf_pre_routing_ipv6(unsigned int hook,
441 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr))) 441 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
442 goto inhdr_error; 442 goto inhdr_error;
443 443
444 hdr = skb->nh.ipv6h; 444 hdr = ipv6_hdr(skb);
445 445
446 if (hdr->version != 6) 446 if (hdr->version != 6)
447 goto inhdr_error; 447 goto inhdr_error;