]> git.ipfire.org Git - thirdparty/bind9.git/commit
fix: dev: do not inline dns_zone_gethooktable
authorColin Vidal <colin@isc.org>
Thu, 11 Sep 2025 12:21:24 +0000 (14:21 +0200)
committerColin Vidal <colin@isc.org>
Thu, 11 Sep 2025 12:21:24 +0000 (14:21 +0200)
commite7156fe57ae383bfe4aceabfaf06a45598c92bd6
treeac0fcfe54482eec2d6273547e2b1b64ca4a8bd48
parent676d55376ad98799f34b065b569b8eacf3f93d59
parentd42d8891ac5f13da7f59e0237d2050798954fa18
fix: dev: do not inline dns_zone_gethooktable

Since !10959 `dns_zone_gethooktable()` is only called once per query,
and the suspicion (from perflab analysis) that this (simple, as just
returning a pointer) call was slowing things down (perhaps because of
code locality reasons?) doesn't matter anymore. So even if !10959
inlined it, it shouldn't matter anymore.

Merge branch 'colin/minimize-hooktable-lookup-followup' into 'main'

See merge request isc-projects/bind9!10962