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> 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/qnx4/inode.c b/fs/qnx4/inode.c
index 5a41db2a218d..5b943eb11d76 100644
--- a/fs/qnx4/inode.c
+++ b/fs/qnx4/inode.c
@@ -520,7 +520,7 @@ static kmem_cache_t *qnx4_inode_cachep;
 static struct inode *qnx4_alloc_inode(struct super_block *sb)
 {
 	struct qnx4_inode_info *ei;
-	ei = kmem_cache_alloc(qnx4_inode_cachep, SLAB_KERNEL);
+	ei = kmem_cache_alloc(qnx4_inode_cachep, GFP_KERNEL);
 	if (!ei)
 		return NULL;
 	return &ei->vfs_inode;