Skip to content

Commit

Permalink
nilfs2: fix style issue in nilfs_destroy_cachep
Browse files Browse the repository at this point in the history
This gets rid of unwanted space chars in front of conditional
sentences of nilfs_destroy_cachep().

Signed-off-by: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
  • Loading branch information
Ryusuke Konishi committed May 31, 2010
1 parent 67a3e12 commit 84cb099
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions fs/nilfs2/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -1130,13 +1130,13 @@ static void nilfs_segbuf_init_once(void *obj)

static void nilfs_destroy_cachep(void)
{
if (nilfs_inode_cachep)
if (nilfs_inode_cachep)
kmem_cache_destroy(nilfs_inode_cachep);
if (nilfs_transaction_cachep)
if (nilfs_transaction_cachep)
kmem_cache_destroy(nilfs_transaction_cachep);
if (nilfs_segbuf_cachep)
if (nilfs_segbuf_cachep)
kmem_cache_destroy(nilfs_segbuf_cachep);
if (nilfs_btree_path_cache)
if (nilfs_btree_path_cache)
kmem_cache_destroy(nilfs_btree_path_cache);
}

Expand Down

0 comments on commit 84cb099

Please sign in to comment.