Module Name: src
Committed By: riastradh
Date: Sun Dec 19 10:39:28 UTC 2021
Modified Files:
src/sys/external/bsd/common/include/linux: list.h
Log Message:
Omit outdated comment.
To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 src/sys/external/bsd/common/include/linux/list.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/external/bsd/common/include/linux/list.h
diff -u src/sys/external/bsd/common/include/linux/list.h:1.24 src/sys/external/bsd/common/include/linux/list.h:1.25
--- src/sys/external/bsd/common/include/linux/list.h:1.24 Sun Dec 19 01:58:55 2021
+++ src/sys/external/bsd/common/include/linux/list.h Sun Dec 19 10:39:28 2021
@@ -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_