summaryrefslogtreecommitdiffstats
path: root/fs/ocfs2/super.c
diff options
context:
space:
mode:
authorpiaojun2017-11-16 02:31:25 +0100
committerLinus Torvalds2017-11-16 03:21:01 +0100
commit23e0813a0807754b5be18688b7564c58e0eb2f2a (patch)
tree277ce77a05abb7134d418dbe8f5003171ffff172 /fs/ocfs2/super.c
parentocfs2: remove unused declaration ocfs2_publish_get_mount_state() (diff)
downloadkernel-qcow2-linux-23e0813a0807754b5be18688b7564c58e0eb2f2a.tar.gz
kernel-qcow2-linux-23e0813a0807754b5be18688b7564c58e0eb2f2a.tar.xz
kernel-qcow2-linux-23e0813a0807754b5be18688b7564c58e0eb2f2a.zip
ocfs2: no need flush workqueue before destroying it
destroy_workqueue() will do flushing work for us. Link: http://lkml.kernel.org/r/59E06476.3090502@huawei.com Signed-off-by: Jun Piao <piaojun@huawei.com> Reviewed-by: Joseph Qi <jiangqi903@gmail.com> Cc: Mark Fasheh <mfasheh@versity.com> Cc: Joel Becker <jlbec@evilplan.org> Cc: Junxiao Bi <junxiao.bi@oracle.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/ocfs2/super.c')
-rw-r--r--fs/ocfs2/super.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/ocfs2/super.c b/fs/ocfs2/super.c
index 80733496b22a..040bbb6a6e4b 100644
--- a/fs/ocfs2/super.c
+++ b/fs/ocfs2/super.c
@@ -2521,10 +2521,8 @@ static void ocfs2_delete_osb(struct ocfs2_super *osb)
/* This function assumes that the caller has the main osb resource */
/* ocfs2_initializer_super have already created this workqueue */
- if (osb->ocfs2_wq) {
- flush_workqueue(osb->ocfs2_wq);
+ if (osb->ocfs2_wq)
destroy_workqueue(osb->ocfs2_wq);
- }
ocfs2_free_slot_info(osb);