git: 82fd8caf6c37 - stable/12 - Add ck.h userspace shims for CK_SLIST_

From: Kevin Bowling <kbowling_at_FreeBSD.org>
Date: Thu, 16 Feb 2023 10:55:02 UTC
The branch stable/12 has been updated by kbowling (ports committer):

URL: https://cgit.FreeBSD.org/src/commit/?id=82fd8caf6c373b5057eb61a4aa037512193a63fd

commit 82fd8caf6c373b5057eb61a4aa037512193a63fd
Author:     Elliott Mitchell <ehem_freebsd_m5p.com>
AuthorDate: 2023-02-09 23:27:12 +0000
Commit:     Kevin Bowling <kbowling@FreeBSD.org>
CommitDate: 2023-02-16 10:54:52 +0000

    Add ck.h userspace shims for CK_SLIST_
    
    Differential Revision:  https://reviews.freebsd.org/D38471
    
    (cherry picked from commit cd3193f640e26991d94d87a45ee9b6a953c56fb5)
---
 sys/sys/ck.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sys/sys/ck.h b/sys/sys/ck.h
index b04fe67b476d..1dba51daf063 100644
--- a/sys/sys/ck.h
+++ b/sys/sys/ck.h
@@ -13,6 +13,8 @@
 #define CK_STAILQ_ENTRY STAILQ_ENTRY
 #define CK_LIST_HEAD LIST_HEAD
 #define CK_LIST_ENTRY LIST_ENTRY
+#define CK_SLIST_HEAD SLIST_HEAD
+#define CK_SLIST_ENTRY SLIST_ENTRY
 #endif
 
 #endif /* !_SYS_CK_H_ */