projects
/
profile
/
ivi
/
kernel-adaptation-intel-automotive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
67a3e12
)
nilfs2: fix style issue in nilfs_destroy_cachep
author
Ryusuke Konishi
<konishi.ryusuke@lab.ntt.co.jp>
Sat, 22 May 2010 03:49:32 +0000
(12:49 +0900)
committer
Ryusuke Konishi
<konishi.ryusuke@lab.ntt.co.jp>
Mon, 31 May 2010 11:50:29 +0000
(20:50 +0900)
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>
fs/nilfs2/super.c
patch
|
blob
|
history
diff --git
a/fs/nilfs2/super.c
b/fs/nilfs2/super.c
index
03b34b7
..
414ef68
100644
(file)
--- a/
fs/nilfs2/super.c
+++ b/
fs/nilfs2/super.c
@@
-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);
}