VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   57 Tags
author: Arnd Bergmann <arnd@arndb.de> 2010-02-25 23:43:52 +0100 committer: Paul E. McKenney <paulmck@linux.vnet.ibm.com> 2010-08-19 17:18:03 -0700 commit: a1115570b31091f3e3ab9e6cf7ee8d320a42be84 parent: 374a8e0dc33c984fac284de7d57d77af3cfdbfb7
Commit Summary:
radix-tree: __rcu annotations
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/lib/radix-tree.c b/lib/radix-tree.c
index e907858498a6..899fb750946f 100644
--- a/lib/radix-tree.c
+++ b/lib/radix-tree.c
@@ -49,7 +49,7 @@ struct radix_tree_node {
 	unsigned int	height;		/* Height from the bottom */
 	unsigned int	count;
 	struct rcu_head	rcu_head;
-	void		*slots[RADIX_TREE_MAP_SIZE];
+	void __rcu	*slots[RADIX_TREE_MAP_SIZE];
 	unsigned long	tags[RADIX_TREE_MAX_TAGS][RADIX_TREE_TAG_LONGS];
 };