3.16.7-ckt4 -stable review patch.  If anyone has any objections, please let me 
know.

------------------

From: Jiri Slaby <jsl...@suse.cz>

commit fa0c5540739320258c3e3a45aaae9dae467b2504 upstream.

When resirefs is trying to mount a partition, it creates a commit
workqueue (sbi->commit_wq). But when mount fails later, the workqueue
is not freed.

Signed-off-by: Jiri Slaby <jsl...@suse.cz>
Reported-by: aux...@gmail.com
Reported-by: BenoƮt Monin <benoit.mo...@gmx.fr>
Cc: Jan Kara <j...@suse.cz>
Cc: reiserfs-de...@vger.kernel.org
Fixes: 797d9016ceca69879bb273218810fa0beef46aac
Signed-off-by: Jan Kara <j...@suse.cz>
Signed-off-by: Luis Henriques <luis.henriq...@canonical.com>
---
 fs/reiserfs/super.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/fs/reiserfs/super.c b/fs/reiserfs/super.c
index 5fd8f57e07fc..27575041bea3 100644
--- a/fs/reiserfs/super.c
+++ b/fs/reiserfs/super.c
@@ -2161,6 +2161,9 @@ error_unlocked:
                reiserfs_write_unlock(s);
        }
 
+       if (sbi->commit_wq)
+               destroy_workqueue(sbi->commit_wq);
+
        cancel_delayed_work_sync(&REISERFS_SB(s)->old_work);
 
        reiserfs_free_bitmap_cache(s);
-- 
2.1.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to