Date: Thu, 16 Feb 2023 10:54:22 GMT From: Kevin Bowling <kbowling@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 0460517df472 - stable/13 - Add ck.h userspace shims for CK_SLIST_ Message-ID: <202302161054.31GAsMuS069176@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by kbowling (ports committer): URL: https://cgit.FreeBSD.org/src/commit/?id=0460517df4728fec10777a7b798ac291a56397d5 commit 0460517df4728fec10777a7b798ac291a56397d5 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:53:56 +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_ */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202302161054.31GAsMuS069176>