aboutsummaryrefslogtreecommitdiffstats
path: root/net/netfilter/nfnetlink_queue.c
diff options
context:
space:
mode:
authorEric Leblond <eric@inl.fr>2006-11-28 20:35:33 -0500
committerDavid S. Miller <davem@sunset.davemloft.net>2006-12-03 00:31:29 -0500
commit829e17a1a602572ffa3beefe582dc103ee9fb9c7 (patch)
tree6de236849437c207088f1ef744e77fdfe35b2d8a /net/netfilter/nfnetlink_queue.c
parent7b621c1ea64a54f77b8a841b16dc4c9fee3ecf48 (diff)
[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 82e4454659b..a88a017da22 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,
947 ntohl(params->copy_range)); 947 ntohl(params->copy_range));
948 } 948 }
949 949
950 if (nfqa[NFQA_CFG_QUEUE_MAXLEN-1]) {
951 __be32 *queue_maxlen;
952 queue_maxlen = NFA_DATA(nfqa[NFQA_CFG_QUEUE_MAXLEN-1]);
953 spin_lock_bh(&queue->lock);
954 queue->queue_maxlen = ntohl(*queue_maxlen);
955 spin_unlock_bh(&queue->lock);
956 }
957
950out_put: 958out_put:
951 instance_put(queue); 959 instance_put(queue);
952 return ret; 960 return ret;