VisionFive2 Linux kernel

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

More than 9999 Commits   32 Branches   54 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/fs/adfs/super.c b/fs/adfs/super.c
index 1c9fd3029496..b36695ae5c2e 100644
--- a/fs/adfs/super.c
+++ b/fs/adfs/super.c
@@ -228,7 +228,7 @@ static void adfs_destroy_inode(struct inode *inode)
 	kmem_cache_free(adfs_inode_cachep, ADFS_I(inode));
 }
 
-static void init_once(void * foo, struct kmem_cache * cachep, unsigned long flags)
+static void init_once(struct kmem_cache *cachep, void *foo)
 {
 	struct adfs_inode_info *ei = (struct adfs_inode_info *) foo;