]> git.ipfire.org Git - thirdparty/bind9.git/commit
chg: dev: Convert slabtop and slabheader to use the cds list
authorOndřej Surý <ondrej@isc.org>
Tue, 23 Sep 2025 22:06:35 +0000 (00:06 +0200)
committerOndřej Surý <ondrej@isc.org>
Tue, 23 Sep 2025 22:06:35 +0000 (00:06 +0200)
commit7443ff330cc7bb97b91656fa2d21ad13b3c2b27e
tree1ac99161eabfa81ff50ecf619efed4d9c16ce811
parent2924f59cb3ec3a2c7a7b8dd9f6bbd106eb91a68a
parent28fff0045d7ae885aca6d77c237dc7c8887d1c3b
chg: dev: Convert slabtop and slabheader to use the cds list

This is the first MR in series that aims to reduce the node locking
by replacing the single-linked list of slabtop(s) and slabheader(s)
with CDS linked list.  This commit doesn't do anything else beyond
replacing .next and .down links with the cds_list_head.  The RCU
semantics will be added later.

Merge branch 'ondrej/use-rcu-list-for-slabtop' into 'main'

See merge request isc-projects/bind9!10944