]> err.no Git - linux-2.6/blobdiff - net/netfilter/xt_length.c
Merge branch 'locks' of git://linux-nfs.org/~bfields/linux
[linux-2.6] / net / netfilter / xt_length.c
index 57bcfacde5941ede1b2a30fcaec8398a898d035e..3dad173d9735706608d47b01edf6006a2589c621 100644 (file)
@@ -47,13 +47,13 @@ match6(const struct sk_buff *skb,
        bool *hotdrop)
 {
        const struct xt_length_info *info = matchinfo;
-       const u_int16_t pktlen = (ntohs(ipv6_hdr(skb)->payload_len) +
-                                 sizeof(struct ipv6hdr));
+       const u_int16_t pktlen = ntohs(ipv6_hdr(skb)->payload_len) +
+                                sizeof(struct ipv6hdr);
 
        return (pktlen >= info->min && pktlen <= info->max) ^ info->invert;
 }
 
-static struct xt_match xt_length_match[] = {
+static struct xt_match xt_length_match[] __read_mostly = {
        {
                .name           = "length",
                .family         = AF_INET,