mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-04-01 22:48:25 +00:00
MINOR: pattern: perform a single call to pat_delete_gen() under the expression
When we're removing an element under the expression lock, we don't need anymore to run over all ->delete() functions via the expressions, since we know that the single function does it fine now. Note that at this point, pattern->delete() is not used at all through out the code anymore.
This commit is contained in:
parent
f1c0892aa6
commit
e828d8f0e8
@ -1527,11 +1527,11 @@ int pat_ref_delete_by_id(struct pat_ref *ref, struct pat_ref_elt *refelt)
|
||||
bref->ref = elt->list.n;
|
||||
}
|
||||
|
||||
/* delete all entries from all expressions for this pattern */
|
||||
list_for_each_entry(expr, &ref->pat, list)
|
||||
HA_RWLOCK_WRLOCK(PATEXP_LOCK, &expr->lock);
|
||||
|
||||
list_for_each_entry(expr, &ref->pat, list)
|
||||
expr->pat_head->delete(expr->ref, elt);
|
||||
pat_delete_gen(ref, elt);
|
||||
|
||||
list_for_each_entry(expr, &ref->pat, list)
|
||||
HA_RWLOCK_WRUNLOCK(PATEXP_LOCK, &expr->lock);
|
||||
@ -1577,8 +1577,7 @@ int pat_ref_delete(struct pat_ref *ref, const char *key)
|
||||
list_for_each_entry(expr, &ref->pat, list)
|
||||
HA_RWLOCK_WRLOCK(PATEXP_LOCK, &expr->lock);
|
||||
|
||||
list_for_each_entry(expr, &ref->pat, list)
|
||||
expr->pat_head->delete(expr->ref, elt);
|
||||
pat_delete_gen(ref, elt);
|
||||
|
||||
list_for_each_entry(expr, &ref->pat, list)
|
||||
HA_RWLOCK_WRUNLOCK(PATEXP_LOCK, &expr->lock);
|
||||
|
Loading…
Reference in New Issue
Block a user