[NETFILTER]: nfnetlink_log: flush queue early
If queue is filled to its threshold, then flush it right away instead of waiting for timer or next packet. Signed-off-by: Michal Miroslaw <mirq-linux@rere.qmqm.pl> Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Родитель
e35670614d
Коммит
d63b043d95
|
@ -644,9 +644,8 @@ nfulnl_log_packet(unsigned int pf,
|
||||||
goto unlock_and_release;
|
goto unlock_and_release;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (inst->qlen >= qthreshold ||
|
if (inst->skb &&
|
||||||
(inst->skb && size >
|
size > skb_tailroom(inst->skb) - sizeof(struct nfgenmsg)) {
|
||||||
skb_tailroom(inst->skb) - sizeof(struct nfgenmsg))) {
|
|
||||||
/* either the queue len is too high or we don't have
|
/* either the queue len is too high or we don't have
|
||||||
* enough room in the skb left. flush to userspace. */
|
* enough room in the skb left. flush to userspace. */
|
||||||
UDEBUG("flushing old skb\n");
|
UDEBUG("flushing old skb\n");
|
||||||
|
@ -666,9 +665,11 @@ nfulnl_log_packet(unsigned int pf,
|
||||||
__build_packet_message(inst, skb, data_len, pf,
|
__build_packet_message(inst, skb, data_len, pf,
|
||||||
hooknum, in, out, li, prefix, plen);
|
hooknum, in, out, li, prefix, plen);
|
||||||
|
|
||||||
|
if (inst->qlen >= qthreshold)
|
||||||
|
__nfulnl_flush(inst);
|
||||||
/* timer_pending always called within inst->lock, so there
|
/* timer_pending always called within inst->lock, so there
|
||||||
* is no chance of a race here */
|
* is no chance of a race here */
|
||||||
if (!timer_pending(&inst->timer)) {
|
else if (!timer_pending(&inst->timer)) {
|
||||||
instance_get(inst);
|
instance_get(inst);
|
||||||
inst->timer.expires = jiffies + (inst->flushtimeout*HZ/100);
|
inst->timer.expires = jiffies + (inst->flushtimeout*HZ/100);
|
||||||
add_timer(&inst->timer);
|
add_timer(&inst->timer);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче