Re: [PATCH] netfilter: add locking for counters zeroing

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Jan Engelhardt wrote:
On Wednesday 2008-09-24 12:11, Patrick McHardy wrote:
On Wednesday 2008-09-24 12:01, Patrick McHardy wrote:
@@ -545,6 +545,7 @@ ctnetlink_dump_table(struct sk_buff *skb, struct
netlink_callback *cb)
  u_int8_t l3proto = nfmsg->nfgen_family;
rcu_read_lock();
+	spin_lock_bh(&nf_conntrack_lock);
We only need the spinlock. I'm not so happy about taking it
unconditionally even though we might not be zeroing the
counters. Moving it in the inner loop will greatly increase
the amount of locks/unlocks on the other hand.

How about moving the inner loop to a new function and adding
back the ctnetlink_dump_counterzero (or whatever it was called)
function? It would take the spinlock, while normal dumping
would only use rcu_read_lock().
Perhaps this might work?

+	if (cb->args[0] >= nf_conntrack_htable_size) {
+		nf_ct_put(cb->args[1]);
+		return skb->len;
+	}
I'm not sure what you're trying to fix here.

If the for() loop never runs because cb->args<nf_conntrack_htable_size is not
fulfilled, no counter changes, and no locking is needed, hence the early
return.
Thats a very rare condition and not something worth optimizing for.


Any patch that doesn't include a spin_lock
can't really fix the problem :)

Of course. You still have to add the spin_lock, preferably outside of the loop
so it does not get necessarily dropped/re-picked-up.

Yes, but even more preferrably is don't huring normal dumps for counter zeroing.
So I think we should split the operations.
--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Netfitler Users]     [LARTC]     [Bugtraq]     [Yosemite Forum]

  Powered by Linux