ocfs2: Fixup orphan scan cleanup after failed mount
authorJeff Mahoney <jeffm@suse.com>
Tue, 7 Jul 2009 21:22:12 +0000 (17:22 -0400)
committerJoel Becker <joel.becker@oracle.com>
Wed, 8 Jul 2009 22:34:02 +0000 (15:34 -0700)
commit8b712cd58adfe6aeeb0be4ecc011dc35620719e7
tree98a0cdc0b210392fc0fd0feb464603224c2863b1
parent44b572809581d5a10dbe35aa6bf689f32b9c5ad6
ocfs2: Fixup orphan scan cleanup after failed mount

If the mount fails for any reason, ocfs2_dismount_volume calls
ocfs2_orphan_scan_stop. It requires that ocfs2_orphan_scan_init
be called to setup the mutex and work queues, but that doesn't
happen if the mount has failed and we oops accessing an uninitialized
work queue.

This patch splits the init and startup of the orphan scan, eliminating
the oops.

Signed-off-by: Jeff Mahoney <jeffm@suse.com>
Signed-off-by: Joel Becker <joel.becker@oracle.com>
fs/ocfs2/journal.c
fs/ocfs2/journal.h
fs/ocfs2/super.c