Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757446Ab3CGMDN (ORCPT ); Thu, 7 Mar 2013 07:03:13 -0500 Received: from mail-ea0-f182.google.com ([209.85.215.182]:61663 "EHLO mail-ea0-f182.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751008Ab3CGMDK (ORCPT ); Thu, 7 Mar 2013 07:03:10 -0500 Message-ID: <513881FA.5090601@gmail.com> Date: Thu, 07 Mar 2013 13:03:06 +0100 From: Maarten Lankhorst User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: Mandeep Singh Baines CC: linux-kernel@vger.kernel.org, linux-nfs@vger.kernel.org, Tejun Heo , Jeff Layton , "Myklebust, Trond" , Oleg Nesterov , Ming Lei , "Rafael J. Wysocki" , Andrew Morton , Ingo Molnar Subject: Re: [PATCH] lockdep: make lock held while freezing check optional References: <20130305231110.GK15816@fieldses.org> <1362529819-19076-1-git-send-email-msb@chromium.org> In-Reply-To: <1362529819-19076-1-git-send-email-msb@chromium.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2568 Lines: 63 Op 06-03-13 01:30, Mandeep Singh Baines schreef: > This check is turning up a lot of code paths which need to be > fixed so while those paths are fixed, let's make this check > optional so that folks can still use lockdep. I think the config option should be inverted, and make it more clear that you're not just not reporting some real bugs by disabling a check that should be on by default. > CC: Tejun Heo > CC: Jeff Layton > CC: "Myklebust, Trond" > CC: Oleg Nesterov > CC: Ming Lei > CC: "Rafael J. Wysocki" > CC: Andrew Morton > CC: Ingo Molnar > --- > include/linux/freezer.h | 2 ++ > lib/Kconfig.debug | 12 ++++++++++++ > 2 files changed, 14 insertions(+) > > diff --git a/include/linux/freezer.h b/include/linux/freezer.h > index 043a5cf..03bdc54 100644 > --- a/include/linux/freezer.h > +++ b/include/linux/freezer.h > @@ -49,8 +49,10 @@ extern void thaw_kernel_threads(void); > > static inline bool try_to_freeze(void) > { > +#ifdef CONFIG_DEBUG_LOCK_HELD_FREEZING > if (!(current->flags & PF_NOFREEZE)) > debug_check_no_locks_held(); > +#endif > might_sleep(); > if (likely(!freezing(current))) > return false; > diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug > index 28be08c..bddda5f 100644 > --- a/lib/Kconfig.debug > +++ b/lib/Kconfig.debug > @@ -547,6 +547,18 @@ config DEBUG_MUTEXES > This feature allows mutex semantics violations to be detected and > reported. > > +config DEBUG_LOCK_HELD_FREEZING > + bool "Lock debugging: detect when locks are held during freeze" > + depends on DEBUG_KERNEL && TRACE_IRQFLAGS_SUPPORT && STACKTRACE_SUPPORT && LOCKDEP_SUPPORT > + select DEBUG_SPINLOCK > + select DEBUG_MUTEXES > + select LOCKDEP > + help > + This feature will check whether any lock is incorrectly held > + while freezing. If a task freezes with a lock held it will > + block any other task that is waiting on that lock from freezing. > + In the case of cgroup_freezer, this can cause a deadlock. > + > config DEBUG_LOCK_ALLOC > bool "Lock debugging: detect incorrect freeing of live locks" > depends on DEBUG_KERNEL && TRACE_IRQFLAGS_SUPPORT && STACKTRACE_SUPPORT && LOCKDEP_SUPPORT -- 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/