VisionFive2 Linux kernel

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

More than 9999 Commits   33 Branches   57 Tags
author: Christoph Lameter <clameter@sgi.com> 2007-10-16 23:25:51 -0700 committer: Linus Torvalds <torvalds@woody.linux-foundation.org> 2007-10-17 08:42:45 -0700 commit: 4ba9b9d0ba0a49d91fa6417c7510ee36f48cf957 parent: b811c202a0edadaac7242ab834fe7ba409978ae7
Commit Summary:
Slab API: remove useless ctor parameter and reorder parameters
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/lib/radix-tree.c b/lib/radix-tree.c
index 6b26f9d39800..53fd44d78716 100644
--- a/lib/radix-tree.c
+++ b/lib/radix-tree.c
@@ -1042,7 +1042,7 @@ int radix_tree_tagged(struct radix_tree_root *root, unsigned int tag)
 EXPORT_SYMBOL(radix_tree_tagged);
 
 static void
-radix_tree_node_ctor(void *node, struct kmem_cache *cachep, unsigned long flags)
+radix_tree_node_ctor(struct kmem_cache *cachep, void *node)
 {
 	memset(node, 0, sizeof(struct radix_tree_node));
 }