File tree Expand file tree Collapse file tree
external/mpl/bind/dist/lib/dns Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- /* $NetBSD: qp.c,v 1.3 2025/01/27 02:16:05 christos Exp $ */
1+ /* $NetBSD: qp.c,v 1.4 2025/01/27 15:40:36 christos Exp $ */
22
33/*
44 * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
@@ -68,7 +68,7 @@ static atomic_uint_fast64_t compact_time;
6868static atomic_uint_fast64_t recycle_time ;
6969static atomic_uint_fast64_t rollback_time ;
7070#define ISC_QP_ADD (v , a ) atomic_fetch_add_relaxed(&(v), (a))
71- #define ISC_QP_GET (v ) atomic_load_relaxed(v )
71+ #define ISC_QP_GET (v ) atomic_load_relaxed(&(v) )
7272#else
7373static uint64_t compact_time ;
7474static uint64_t recycle_time ;
Original file line number Diff line number Diff line change 1- /* $NetBSD: zone.c,v 1.22 2025/01/27 02:16:05 christos Exp $ */
1+ /* $NetBSD: zone.c,v 1.23 2025/01/27 15:40:36 christos Exp $ */
22
33/*
44 * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
@@ -533,7 +533,7 @@ struct dns_zone {
533533#ifdef _LP64
534534#define ISC_ZONE_GET(z, f) atomic_load_relaxed(&(z)->f)
535535#define ISC_ZONE_SET(z, f, o) atomic_fetch_or(&(z)->f, (o))
536- #define DNS_ZONE_CLR (z, f, o) atomic_fetch_and(&(z)->f, ~(o))
536+ #define ISC_ZONE_CLR (z, f, o) atomic_fetch_and(&(z)->f, ~(o))
537537#else
538538#define ISC_ZONE_GET(z, f) \
539539 ({ \
You can’t perform that action at this time.
0 commit comments