summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorriastradh <riastradh@NetBSD.org>2021-12-19 10:39:28 +0000
committerriastradh <riastradh@NetBSD.org>2021-12-19 10:39:28 +0000
commit6dfd4d59f485437650f3d21358ba57b2cf2d3b44 (patch)
treea427e323ee7c26bf7f21b0fe5ccae193ed46b1a2 /sys
parent7ea89297d1f41d82a0100ec945cf68beb416f3d8 (diff)
Omit outdated comment.
Diffstat (limited to 'sys')
-rw-r--r--sys/external/bsd/common/include/linux/list.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/external/bsd/common/include/linux/list.h b/sys/external/bsd/common/include/linux/list.h
index 2580eba3d0d..4e57fc33edc 100644
--- a/sys/external/bsd/common/include/linux/list.h
+++ b/sys/external/bsd/common/include/linux/list.h
@@ -1,4 +1,4 @@
-/* $NetBSD: list.h,v 1.24 2021/12/19 01:58:55 riastradh Exp $ */
+/* $NetBSD: list.h,v 1.25 2021/12/19 10:39:28 riastradh Exp $ */
/*-
* Copyright (c) 2013 The NetBSD Foundation, Inc.
@@ -35,10 +35,6 @@
* - LIST_HEAD(x) means a declaration `struct list_head x =
* LIST_HEAD_INIT(x)' in Linux, but something else in NetBSD.
* Replace by the expansion.
- *
- * - The `_rcu' routines here are not actually pserialize(9)-safe.
- * They need dependent read memory barriers added. Please fix this
- * if you need to use them with pserialize(9).
*/
#ifndef _LINUX_LIST_H_