ipv6: helper function to get tclass
authorJiri Benc <jbenc@redhat.com>
Thu, 9 Feb 2012 09:34:41 +0000 (09:34 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 13 Feb 2012 05:45:38 +0000 (00:45 -0500)
Implement helper inline function to get traffic class from IPv6 header.

Signed-off-by: Jiri Benc <jbenc@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/ipv6.h
net/ipv6/datagram.c

index 743a16a41040347dcabf9069cfa810fcea903eaf..4847a64d3c0a68eca0de840e10a60af33b02a1fd 100644 (file)
@@ -233,6 +233,11 @@ static inline struct ipv6hdr *ipipv6_hdr(const struct sk_buff *skb)
        return (struct ipv6hdr *)skb_transport_header(skb);
 }
 
+static inline __u8 ipv6_tclass(const struct ipv6hdr *iph)
+{
+       return (ntohl(*(__be32 *)iph) >> 20) & 0xff;
+}
+
 /* 
    This structure contains results of exthdrs parsing
    as offsets from skb->nh.
index 251e7cd75e89787f5346037a278bfd7e5b8c8ced..76832c8dc89dae671905728c391ea827dabc613f 100644 (file)
@@ -485,7 +485,7 @@ int datagram_recv_ctl(struct sock *sk, struct msghdr *msg, struct sk_buff *skb)
        }
 
        if (np->rxopt.bits.rxtclass) {
-               int tclass = (ntohl(*(__be32 *)ipv6_hdr(skb)) >> 20) & 0xff;
+               int tclass = ipv6_tclass(ipv6_hdr(skb));
                put_cmsg(msg, SOL_IPV6, IPV6_TCLASS, sizeof(tclass), &tclass);
        }