VisionFive2 Linux kernel

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

More than 9999 Commits   33 Branches   55 Tags
author: Christoph Lameter <clameter@sgi.com> 2006-12-06 20:33:17 -0800 committer: Linus Torvalds <torvalds@woody.osdl.org> 2006-12-07 08:39:24 -0800 commit: e94b1766097d53e6f3ccfb36c8baa562ffeda3fc parent: 54e6ecb23951b195d02433a741c7f7cb0b796c78
Commit Summary:
[PATCH] slab: remove SLAB_KERNEL
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/fs/efs/super.c b/fs/efs/super.c
index b3f50651eb6b..69b15a996cfc 100644
--- a/fs/efs/super.c
+++ b/fs/efs/super.c
@@ -57,7 +57,7 @@ static kmem_cache_t * efs_inode_cachep;
 static struct inode *efs_alloc_inode(struct super_block *sb)
 {
 	struct efs_inode_info *ei;
-	ei = (struct efs_inode_info *)kmem_cache_alloc(efs_inode_cachep, SLAB_KERNEL);
+	ei = (struct efs_inode_info *)kmem_cache_alloc(efs_inode_cachep, GFP_KERNEL);
 	if (!ei)
 		return NULL;
 	return &ei->vfs_inode;