aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/wg/support.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/wg/support.h')
-rw-r--r--sys/dev/wg/support.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/sys/dev/wg/support.h b/sys/dev/wg/support.h
new file mode 100644
index 000000000000..7934c5784a40
--- /dev/null
+++ b/sys/dev/wg/support.h
@@ -0,0 +1,21 @@
+/* SPDX-License-Identifier: ISC
+ *
+ * Copyright (C) 2021 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
+ * Copyright (c) 2021 Kyle Evans <kevans@FreeBSD.org>
+ *
+ * support.h contains code that is not _yet_ upstream in FreeBSD's main branch.
+ * It is different from compat.h, which is strictly for backports.
+ */
+
+#ifndef _WG_SUPPORT
+#define _WG_SUPPORT
+
+#ifndef ck_pr_store_bool
+#define ck_pr_store_bool(dst, val) ck_pr_store_8((uint8_t *)(dst), (uint8_t)(val))
+#endif
+
+#ifndef ck_pr_load_bool
+#define ck_pr_load_bool(src) ((bool)ck_pr_load_8((uint8_t *)(src)))
+#endif
+
+#endif