git: cd3193f640e2 - main - Add ck.h userspace shims for CK_SLIST_
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 09 Feb 2023 23:31:16 UTC
The branch main has been updated by kbowling (ports committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=cd3193f640e26991d94d87a45ee9b6a953c56fb5
commit cd3193f640e26991d94d87a45ee9b6a953c56fb5
Author: Elliott Mitchell <ehem_freebsd_m5p.com>
AuthorDate: 2023-02-09 23:27:12 +0000
Commit: Kevin Bowling <kbowling@FreeBSD.org>
CommitDate: 2023-02-09 23:30:17 +0000
Add ck.h userspace shims for CK_SLIST_
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D38471
---
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_ */