[PATCH] random: get rid of sparse warning
[linux-2.6/mini2440.git] / net / sched / act_simple.c
blobe5f2e1f431e2a36d92ed5c8c4263b8fcefbd44fd
1 /*
2 * net/sched/simp.c Simple example of an action
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: Jamal Hadi Salim (2005)
13 #include <linux/config.h>
14 #include <linux/module.h>
15 #include <linux/init.h>
16 #include <linux/kernel.h>
17 #include <linux/netdevice.h>
18 #include <linux/skbuff.h>
19 #include <linux/rtnetlink.h>
20 #include <net/pkt_sched.h>
22 #define TCA_ACT_SIMP 22
24 /* XXX: Hide all these common elements under some macro
25 * probably
27 #include <linux/tc_act/tc_defact.h>
28 #include <net/tc_act/tc_defact.h>
30 /* use generic hash table with 8 buckets */
31 #define MY_TAB_SIZE 8
32 #define MY_TAB_MASK (MY_TAB_SIZE - 1)
33 static u32 idx_gen;
34 static struct tcf_defact *tcf_simp_ht[MY_TAB_SIZE];
35 static DEFINE_RWLOCK(simp_lock);
37 /* override the defaults */
38 #define tcf_st tcf_defact
39 #define tc_st tc_defact
40 #define tcf_t_lock simp_lock
41 #define tcf_ht tcf_simp_ht
43 #define CONFIG_NET_ACT_INIT 1
44 #include <net/pkt_act.h>
45 #include <net/act_generic.h>
47 static int tcf_simp(struct sk_buff *skb, struct tc_action *a, struct tcf_result *res)
49 struct tcf_defact *p = PRIV(a, defact);
51 spin_lock(&p->lock);
52 p->tm.lastuse = jiffies;
53 p->bstats.bytes += skb->len;
54 p->bstats.packets++;
56 /* print policy string followed by _ then packet count
57 * Example if this was the 3rd packet and the string was "hello"
58 * then it would look like "hello_3" (without quotes)
59 **/
60 printk("simple: %s_%d\n", (char *)p->defdata, p->bstats.packets);
61 spin_unlock(&p->lock);
62 return p->action;
65 static struct tc_action_ops act_simp_ops = {
66 .kind = "simple",
67 .type = TCA_ACT_SIMP,
68 .capab = TCA_CAP_NONE,
69 .owner = THIS_MODULE,
70 .act = tcf_simp,
71 tca_use_default_ops
74 MODULE_AUTHOR("Jamal Hadi Salim(2005)");
75 MODULE_DESCRIPTION("Simple example action");
76 MODULE_LICENSE("GPL");
78 static int __init simp_init_module(void)
80 int ret = tcf_register_action(&act_simp_ops);
81 if (!ret)
82 printk("Simple TC action Loaded\n");
83 return ret;
86 static void __exit simp_cleanup_module(void)
88 tcf_unregister_action(&act_simp_ops);
91 module_init(simp_init_module);
92 module_exit(simp_cleanup_module);