Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1423201AbbFEPEe (ORCPT ); Fri, 5 Jun 2015 11:04:34 -0400 Received: from cantor2.suse.de ([195.135.220.15]:58327 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1422712AbbFEPCI (ORCPT ); Fri, 5 Jun 2015 11:02:08 -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 14/18] ring_buffer: Allow to cleanly freeze the ring buffer benchmark kthreads Date: Fri, 5 Jun 2015 17:01:13 +0200 Message-Id: <1433516477-5153-15-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: 3040 Lines: 102 One target of the switch to the kthread iterant API is to make most kthreads cleanly freezable. This patch adds try_to_freeze() where appropriate and enables freezing. Signed-off-by: Petr Mladek --- kernel/trace/ring_buffer_benchmark.c | 34 ++++++++++++++-------------------- 1 file changed, 14 insertions(+), 20 deletions(-) diff --git a/kernel/trace/ring_buffer_benchmark.c b/kernel/trace/ring_buffer_benchmark.c index 164f3762cc82..2d276b892aea 100644 --- a/kernel/trace/ring_buffer_benchmark.c +++ b/kernel/trace/ring_buffer_benchmark.c @@ -6,6 +6,7 @@ #include #include #include +#include #include #include #include @@ -207,6 +208,7 @@ static void ring_buffer_consumer(void) break; schedule(); + try_to_freeze(); } reader_finish = 0; complete(&read_done); @@ -252,19 +254,21 @@ static void ring_buffer_producer(void) if (consumer && !(cnt % wakeup_interval)) wake_up_process(consumer); + if (cnt % wakeup_interval) { #ifndef CONFIG_PREEMPT - /* - * If we are a non preempt kernel, the 10 second run will - * stop everything while it runs. Instead, we will call - * cond_resched and also add any time that was lost by a - * rescedule. - * - * Do a cond resched at the same frequency we would wake up - * the reader. - */ - if (cnt % wakeup_interval) + /* + * If we are a non preempt kernel, the 10 second run + * will stop everything while it runs. Instead, we will + * call cond_resched and also add any time that was + * lost by a rescedule. + * + * Do a cond resched at the same frequency we would + * wake up the reader. + */ cond_resched(); #endif + try_to_freeze(); + } } while (ktime_before(end_time, timeout) && !kill_test); trace_printk("End ring buffer hammer\n"); @@ -356,12 +360,6 @@ static void ring_buffer_producer(void) } } -static void ring_buffer_consumer_thread_init(void *arg) -{ - /* it does not matter where we freeze */ - current->flags |= PF_NOFREEZE; -} - static void ring_buffer_consumer_thread_func(void *arg) { if (kill_test) @@ -375,9 +373,6 @@ static void ring_buffer_consumer_thread_func(void *arg) static void ring_buffer_producer_thread_init(void *arg) { init_completion(&read_start); - - /* it does not matter where we freeze */ - current->flags |= PF_NOFREEZE; } static void ring_buffer_producer_thread_func(void *arg) @@ -413,7 +408,6 @@ static int __init ring_buffer_benchmark_init(void) return -ENOMEM; consumer_kti.type = KTI_INT_SLEEP; - consumer_kti.func = ring_buffer_consumer_thread_init; consumer_kti.func = ring_buffer_consumer_thread_func; if (!disable_reader) { -- 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/