Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 292366
b: refs/heads/master
c: 76bf09f
h: refs/heads/master
v: v3
  • Loading branch information
Al Viro committed Mar 21, 2012
1 parent b0cd82e commit ac6de3a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2a152ad3a58508b06b9e0482e68117a79bbb27ce
refs/heads/master: 76bf09fcf76da1a2d777d9827d5a0a6a4cec0dcb
8 changes: 7 additions & 1 deletion trunk/fs/jfs/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -860,8 +860,14 @@ static int __init init_jfs_fs(void)
jfs_proc_init();
#endif

return register_filesystem(&jfs_fs_type);
rc = register_filesystem(&jfs_fs_type);
if (!rc)
return 0;

#ifdef PROC_FS_JFS
jfs_proc_clean();
#endif
kthread_stop(jfsSyncThread);
kill_committask:
for (i = 0; i < commit_threads; i++)
kthread_stop(jfsCommitThread[i]);
Expand Down

0 comments on commit ac6de3a

Please sign in to comment.