Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755276Ab3EDWzy (ORCPT ); Sat, 4 May 2013 18:55:54 -0400 Received: from atrey.karlin.mff.cuni.cz ([195.113.26.193]:49046 "EHLO atrey.karlin.mff.cuni.cz" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751087Ab3EDWzx (ORCPT ); Sat, 4 May 2013 18:55:53 -0400 Date: Sun, 5 May 2013 00:55:49 +0200 From: Pavel Machek To: Colin Cross Cc: lkml , Trond Myklebust , Len Brown , "Rafael J. Wysocki" , Peter Zijlstra , Ingo Molnar , "J. Bruce Fields" , "David S. Miller" , Andrew Morton , Mandeep Singh Baines , Paul Walmsley , Al Viro , "Eric W. Biederman" , Oleg Nesterov , linux-nfs@vger.kernel.org, Linux PM list , netdev@vger.kernel.org, Linus Torvalds , Tejun Heo , Ben Chan Subject: Re: [PATCH 1/2] freezer: add unsafe versions of freezable helpers Message-ID: <20130504225549.GA24276@amd.pavel.ucw.cz> References: <1367615050-3894-1-git-send-email-ccross@android.com> <20130504130033.GB13770@amd.pavel.ucw.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1992 Lines: 47 Hi! > >> NFS calls the freezable helpers with locks held, which is unsafe > >> and caused lockdep warnings when 6aa9707 "lockdep: check that no > >> locks held at freeze time" was applied (reverted in dbf520a). > >> Add new *_unsafe versions of the helpers that will not run the > >> lockdep test when 6aa9707 is reapplied, and call them from NFS. > >> > >> Signed-off-by: Colin Cross > > > > Looks mostly good. > > > >> @@ -152,6 +169,14 @@ static inline bool freezer_should_skip(struct task_struct *p) > >> freezer_count(); \ > >> }) > >> > >> +/* DO NOT ADD ANY NEW CALLERS OF THIS FUNCTION */ > >> +#define freezable_schedule_unsafe() \ > >> +({ \ > >> + freezer_do_not_count(); \ > >> + schedule(); \ > >> + freezer_count_unsafe(); \ > >> +}) > >> + > > > > Make it inline function? :-). Add short explanation why it is good > > idea? > > These are exact copies of the existing non-unsafe versions, except > they call freezer_count_unsafe() instead of freezer_count(). The next > version of my other patch stack that goes on top of this has a patch > to convert the macros in this file to static inline functions (at > least the ones that can be). I'd rather not mix it in with this patch > for ease of comparison with the existing calls. Ok. Acked-by: Pavel Machek -- (english) http://www.livejournal.com/~pavelmachek (cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html -- 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/