Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1423143AbbFEPC0 (ORCPT ); Fri, 5 Jun 2015 11:02:26 -0400 Received: from cantor2.suse.de ([195.135.220.15]:58443 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1422737AbbFEPCN (ORCPT ); Fri, 5 Jun 2015 11:02:13 -0400 From: Petr Mladek To: Andrew Morton , Oleg Nesterov , Tejun Heo , Ingo Molnar , Peter Zijlstra Cc: Richard Weinberger , Steven Rostedt , David Woodhouse , linux-mtd@lists.infradead.org, Trond Myklebust , Anna Schumaker , linux-nfs@vger.kernel.org, Chris Mason , "Paul E. McKenney" , Thomas Gleixner , Linus Torvalds , Jiri Kosina , Borislav Petkov , Michal Hocko , live-patching@vger.kernel.org, linux-api@vger.kernel.org, linux-kernel@vger.kernel.org, Petr Mladek Subject: [RFC PATCH 18/18] jffs2: Use the new API for a sleep with a timeout Date: Fri, 5 Jun 2015 17:01:17 +0200 Message-Id: <1433516477-5153-19-git-send-email-pmladek@suse.cz> X-Mailer: git-send-email 1.8.5.6 In-Reply-To: <1433516477-5153-1-git-send-email-pmladek@suse.cz> References: <1433516477-5153-1-git-send-email-pmladek@suse.cz> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2352 Lines: 67 It allows to maintain the checks for freezing, parking, and signal handling on a single place. Note that the sleep with the timeout is used here to slow down the progress a bit. It does not matter if we do it before or after calling jffs2_garbage_collect_pass(). Signed-off-by: Petr Mladek --- fs/jffs2/background.c | 29 +++++++++++------------------ 1 file changed, 11 insertions(+), 18 deletions(-) diff --git a/fs/jffs2/background.c b/fs/jffs2/background.c index 50c16048ba2d..2d38d40e0ad1 100644 --- a/fs/jffs2/background.c +++ b/fs/jffs2/background.c @@ -62,6 +62,16 @@ static void jffs2_garbage_collect_thread_func(void *_c) } spin_unlock(&c->erase_completion_lock); + /* We don't want SIGHUP to interrupt us. STOP and KILL are OK though. */ + sigprocmask(SIG_BLOCK, &hupmask, NULL); + + jffs2_dbg(1, "%s(): pass\n", __func__); + if (jffs2_garbage_collect_pass(c) == -ENOSPC) { + pr_notice("No space for garbage collection. Aborting GC thread\n"); + kthread_stop_current(); + } + sigprocmask(SIG_UNBLOCK, &hupmask, NULL); + /* Problem - immediately after bootup, the GCD spends a lot * of time in places like jffs2_kill_fragtree(); so much so * that userspace processes (like gdm and X) are starved @@ -73,24 +83,7 @@ static void jffs2_garbage_collect_thread_func(void *_c) * inode in with read_inode() is much preferable to having * the GC thread get there first. */ - schedule_timeout_interruptible(msecs_to_jiffies(50)); - - if (kthread_should_stop()) { - jffs2_dbg(1, "%s(): kthread_stop() called\n", __func__); - return; - } - - try_to_freeze(); - - /* We don't want SIGHUP to interrupt us. STOP and KILL are OK though. */ - sigprocmask(SIG_BLOCK, &hupmask, NULL); - - jffs2_dbg(1, "%s(): pass\n", __func__); - if (jffs2_garbage_collect_pass(c) == -ENOSPC) { - pr_notice("No space for garbage collection. Aborting GC thread\n"); - kthread_stop_current(); - } - sigprocmask(SIG_UNBLOCK, &hupmask, NULL); + set_kthread_iterant_int_sleep_timeout(msecs_to_jiffies(50)); } static void jffs2_garbage_collect_thread_destroy(void *_c) -- 1.8.5.6 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/