GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / net / sched / em_u32.c
blob953f1479f7da2d4af4015440fc708ffda9d81670
1 /*
2 * net/sched/em_u32.c U32 Ematch
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
9 * Authors: Thomas Graf <tgraf@suug.ch>
10 * Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
12 * Based on net/sched/cls_u32.c
15 #include <linux/module.h>
16 #include <linux/types.h>
17 #include <linux/kernel.h>
18 #include <linux/skbuff.h>
19 #include <net/pkt_cls.h>
21 static int em_u32_match(struct sk_buff *skb, struct tcf_ematch *em,
22 struct tcf_pkt_info *info)
24 struct tc_u32_key *key = (struct tc_u32_key *) em->data;
25 const unsigned char *ptr = skb_network_header(skb);
27 if (info) {
28 if (info->ptr)
29 ptr = info->ptr;
30 ptr += (info->nexthdr & key->offmask);
33 ptr += key->off;
35 if (!tcf_valid_offset(skb, ptr, sizeof(u32)))
36 return 0;
38 return !(((*(__be32*) ptr) ^ key->val) & key->mask);
41 static struct tcf_ematch_ops em_u32_ops = {
42 .kind = TCF_EM_U32,
43 .datalen = sizeof(struct tc_u32_key),
44 .match = em_u32_match,
45 .owner = THIS_MODULE,
46 .link = LIST_HEAD_INIT(em_u32_ops.link)
49 static int __init init_em_u32(void)
51 return tcf_em_register(&em_u32_ops);
54 static void __exit exit_em_u32(void)
56 tcf_em_unregister(&em_u32_ops);
59 MODULE_LICENSE("GPL");
61 module_init(init_em_u32);
62 module_exit(exit_em_u32);
64 MODULE_ALIAS_TCF_EMATCH(TCF_EM_U32);