jbd/jbd2 NULL noise
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
@@ -173,13 +173,13 @@ int __init journal_init_revoke_caches(void)
|
||||
0,
|
||||
SLAB_HWCACHE_ALIGN|SLAB_TEMPORARY,
|
||||
NULL);
|
||||
if (revoke_record_cache == 0)
|
||||
if (!revoke_record_cache)
|
||||
return -ENOMEM;
|
||||
|
||||
revoke_table_cache = kmem_cache_create("revoke_table",
|
||||
sizeof(struct jbd_revoke_table_s),
|
||||
0, SLAB_TEMPORARY, NULL);
|
||||
if (revoke_table_cache == 0) {
|
||||
if (!revoke_table_cache) {
|
||||
kmem_cache_destroy(revoke_record_cache);
|
||||
revoke_record_cache = NULL;
|
||||
return -ENOMEM;
|
||||
|
Reference in New Issue
Block a user