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
...@@ -70,7 +70,7 @@ int coda_init_inodecache(void) ...@@ -70,7 +70,7 @@ int coda_init_inodecache(void)
{ {
coda_inode_cachep = kmem_cache_create("coda_inode_cache", coda_inode_cachep = kmem_cache_create("coda_inode_cache",
sizeof(struct coda_inode_info), sizeof(struct coda_inode_info),
0, SLAB_HWCACHE_ALIGN||SLAB_RECLAIM_ACCOUNT, 0, SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT,
init_once, NULL); init_once, NULL);
if (coda_inode_cachep == NULL) if (coda_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