]> err.no Git - linux-2.6/commitdiff
[NETFILTER]: nf_queue: make queue_handler const
authorPatrick McHardy <kaber@trash.net>
Wed, 5 Dec 2007 09:23:57 +0000 (01:23 -0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 28 Jan 2008 22:56:09 +0000 (14:56 -0800)
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/netfilter.h
net/ipv4/netfilter/ip_queue.c
net/ipv6/netfilter/ip6_queue.c
net/netfilter/nf_queue.c
net/netfilter/nfnetlink_queue.c

index 9bfc7d4f58682d15ab0fec6c283d4e39f662bc60..c2c3fafa5fd0071ac828ca961f06df12210a7320 100644 (file)
@@ -281,11 +281,11 @@ struct nf_queue_handler {
        void *data;
        char *name;
 };
-extern int nf_register_queue_handler(int pf, 
-                                     struct nf_queue_handler *qh);
+extern int nf_register_queue_handler(int pf,
+                                    const struct nf_queue_handler *qh);
 extern int nf_unregister_queue_handler(int pf,
-                                      struct nf_queue_handler *qh);
-extern void nf_unregister_queue_handlers(struct nf_queue_handler *qh);
+                                      const struct nf_queue_handler *qh);
+extern void nf_unregister_queue_handlers(const struct nf_queue_handler *qh);
 extern void nf_reinject(struct sk_buff *skb,
                        struct nf_info *info,
                        unsigned int verdict);
index 14d64a383db1a7223ed321e5dedfbc1942af1095..062ff196f2c5789700f699808db00f337b92d8d7 100644 (file)
@@ -645,7 +645,7 @@ static const struct file_operations ip_queue_proc_fops = {
        .owner          = THIS_MODULE,
 };
 
-static struct nf_queue_handler nfqh = {
+static const struct nf_queue_handler nfqh = {
        .name   = "ip_queue",
        .outfn  = &ipq_enqueue_packet,
 };
index e273605eef855469794849f9cdfd800d659e87e7..d6e971bd9fe110ce3fe80cc59a94458fea0e6443 100644 (file)
@@ -634,7 +634,7 @@ static const struct file_operations ip6_queue_proc_fops = {
        .owner          = THIS_MODULE,
 };
 
-static struct nf_queue_handler nfqh = {
+static const struct nf_queue_handler nfqh = {
        .name   = "ip6_queue",
        .outfn  = &ipq_enqueue_packet,
 };
index 0bea88c30e519b94965728877c2438eabf35554b..dd18126a1a6d2cff38c2a2a3014dcff6c5baac6a 100644 (file)
  * long term mutex.  The handler must provide an an outfn() to accept packets
  * for queueing and must reinject all packets it receives, no matter what.
  */
-static struct nf_queue_handler *queue_handler[NPROTO];
+static const struct nf_queue_handler *queue_handler[NPROTO];
 
 static DEFINE_MUTEX(queue_handler_mutex);
 
 /* return EBUSY when somebody else is registered, return EEXIST if the
  * same handler is registered, return 0 in case of success. */
-int nf_register_queue_handler(int pf, struct nf_queue_handler *qh)
+int nf_register_queue_handler(int pf, const struct nf_queue_handler *qh)
 {
        int ret;
 
@@ -44,7 +44,7 @@ int nf_register_queue_handler(int pf, struct nf_queue_handler *qh)
 EXPORT_SYMBOL(nf_register_queue_handler);
 
 /* The caller must flush their queue before this */
-int nf_unregister_queue_handler(int pf, struct nf_queue_handler *qh)
+int nf_unregister_queue_handler(int pf, const struct nf_queue_handler *qh)
 {
        if (pf >= NPROTO)
                return -EINVAL;
@@ -64,7 +64,7 @@ int nf_unregister_queue_handler(int pf, struct nf_queue_handler *qh)
 }
 EXPORT_SYMBOL(nf_unregister_queue_handler);
 
-void nf_unregister_queue_handlers(struct nf_queue_handler *qh)
+void nf_unregister_queue_handlers(const struct nf_queue_handler *qh)
 {
        int pf;
 
@@ -98,7 +98,7 @@ static int __nf_queue(struct sk_buff *skb,
        struct net_device *physoutdev = NULL;
 #endif
        struct nf_afinfo *afinfo;
-       struct nf_queue_handler *qh;
+       const struct nf_queue_handler *qh;
 
        /* QUEUE == DROP if noone is waiting, to be safe. */
        rcu_read_lock();
@@ -313,7 +313,7 @@ static int seq_show(struct seq_file *s, void *v)
 {
        int ret;
        loff_t *pos = v;
-       struct nf_queue_handler *qh;
+       const struct nf_queue_handler *qh;
 
        rcu_read_lock();
        qh = rcu_dereference(queue_handler[*pos]);
index 3ceeffcf6f9de65cd5386d0a7e9d73d11cdacdc6..b75091c8ae5ebdd057423729712161b4b2ab2d4b 100644 (file)
@@ -849,7 +849,7 @@ static const struct nla_policy nfqa_cfg_policy[NFQA_CFG_MAX+1] = {
        [NFQA_CFG_PARAMS]       = { .len = sizeof(struct nfqnl_msg_config_params) },
 };
 
-static struct nf_queue_handler nfqh = {
+static const struct nf_queue_handler nfqh = {
        .name   = "nf_queue",
        .outfn  = &nfqnl_enqueue_packet,
 };