Commit c4df3ccd authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] fix typo in coda

We want an "|" in there, not "||".
parent b6e27b19
......@@ -69,9 +69,9 @@ static void init_once(void * foo, kmem_cache_t * cachep, unsigned long flags)
int coda_init_inodecache(void)
{
coda_inode_cachep = kmem_cache_create("coda_inode_cache",
sizeof(struct coda_inode_info),
0, SLAB_HWCACHE_ALIGN||SLAB_RECLAIM_ACCOUNT,
init_once, NULL);
sizeof(struct coda_inode_info),
0, SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT,
init_once, NULL);
if (coda_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