aboutsummaryrefslogtreecommitdiffstats
path: root/net/netfilter/nfnetlink_queue.c
diff options
context:
space:
mode:
authorEric Leblond <eric@inl.fr>2006-11-29 02:35:33 +0100
committerDavid S. Miller <davem@sunset.davemloft.net>2006-12-02 21:31:29 -0800
commit829e17a1a602572ffa3beefe582dc103ee9fb9c7 (patch)
tree6de236849437c207088f1ef744e77fdfe35b2d8a /net/netfilter/nfnetlink_queue.c
parent[NETFILTER]: ctnetlink: rework conntrack fields dumping logic on events (diff)
downloadlinux-dev-829e17a1a602572ffa3beefe582dc103ee9fb9c7.tar.xz
linux-dev-829e17a1a602572ffa3beefe582dc103ee9fb9c7.zip
[NETFILTER]: nfnetlink_queue: allow changing queue length through netlink
Signed-off-by: Eric Leblond <eric@inl.fr> Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'net/netfilter/nfnetlink_queue.c')
-rw-r--r--net/netfilter/nfnetlink_queue.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/net/netfilter/nfnetlink_queue.c b/net/netfilter/nfnetlink_queue.c
index 82e4454659bf..a88a017da22c 100644
--- a/net/netfilter/nfnetlink_queue.c
+++ b/net/netfilter/nfnetlink_queue.c
@@ -947,6 +947,14 @@ nfqnl_recv_config(struct sock *ctnl, struct sk_buff *skb,
ntohl(params->copy_range));
}
+ if (nfqa[NFQA_CFG_QUEUE_MAXLEN-1]) {
+ __be32 *queue_maxlen;
+ queue_maxlen = NFA_DATA(nfqa[NFQA_CFG_QUEUE_MAXLEN-1]);
+ spin_lock_bh(&queue->lock);
+ queue->queue_maxlen = ntohl(*queue_maxlen);
+ spin_unlock_bh(&queue->lock);
+ }
+
out_put:
instance_put(queue);
return ret;