rfkill: document the rfkill struct locking (v2)
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / net / netfilter / xt_TRACE.c
blob30dab79a343888161bd0e6a6740d49bb57c97253
1 /* This is a module which is used to mark packets for tracing.
2 */
3 #include <linux/module.h>
4 #include <linux/skbuff.h>
6 #include <linux/netfilter/x_tables.h>
8 MODULE_DESCRIPTION("Xtables: packet flow tracing");
9 MODULE_LICENSE("GPL");
10 MODULE_ALIAS("ipt_TRACE");
11 MODULE_ALIAS("ip6t_TRACE");
13 static unsigned int
14 trace_tg(struct sk_buff *skb, const struct net_device *in,
15 const struct net_device *out, unsigned int hooknum,
16 const struct xt_target *target, const void *targinfo)
18 skb->nf_trace = 1;
19 return XT_CONTINUE;
22 static struct xt_target trace_tg_reg[] __read_mostly = {
24 .name = "TRACE",
25 .family = AF_INET,
26 .target = trace_tg,
27 .table = "raw",
28 .me = THIS_MODULE,
31 .name = "TRACE",
32 .family = AF_INET6,
33 .target = trace_tg,
34 .table = "raw",
35 .me = THIS_MODULE,
39 static int __init trace_tg_init(void)
41 return xt_register_targets(trace_tg_reg, ARRAY_SIZE(trace_tg_reg));
44 static void __exit trace_tg_exit(void)
46 xt_unregister_targets(trace_tg_reg, ARRAY_SIZE(trace_tg_reg));
49 module_init(trace_tg_init);
50 module_exit(trace_tg_exit);