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
......@@ -57,9 +57,9 @@ static void init_once(void * foo, kmem_cache_t * cachep, unsigned long flags)
static int init_inodecache(void)
{
efs_inode_cachep = kmem_cache_create("efs_inode_cache",
sizeof(struct efs_inode_info),
0, SLAB_HWCACHE_ALIGN||SLAB_RECLAIM_ACCOUNT,
init_once, NULL);
sizeof(struct efs_inode_info),
0, SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT,
init_once, NULL);
if (efs_inode_cachep == NULL)
return -ENOMEM;
return 0;
......
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