From: Patrick McHardy <hidden> Date: 2005-01-10 19:38:12
BTW: This part in pkt_act.h looks kind of strange:
tcf_hash_check:
if (bind) {
p->bindcnt++;
p->refcnt++;
}
but tcf_hash_release:
if (bind) {
p->bindcnt--;
}
p->refcnt--;
Shouldn't refcnt be incremented unconditionally ?