Commit 56d70ccb authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] efs typo fix

It's using "||" instead of "|".  Makes slab go BUG.
parent afde3458
...@@ -58,7 +58,7 @@ static int init_inodecache(void) ...@@ -58,7 +58,7 @@ static int init_inodecache(void)
{ {
efs_inode_cachep = kmem_cache_create("efs_inode_cache", efs_inode_cachep = kmem_cache_create("efs_inode_cache",
sizeof(struct efs_inode_info), sizeof(struct efs_inode_info),
0, SLAB_HWCACHE_ALIGN||SLAB_RECLAIM_ACCOUNT, 0, SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT,
init_once, NULL); init_once, NULL);
if (efs_inode_cachep == NULL) if (efs_inode_cachep == NULL)
return -ENOMEM; return -ENOMEM;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment