From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julia Lawall Date: Sun, 04 Nov 2012 15:57:33 +0000 Subject: Re: [PATCH 0/8] drop if around WARN_ON Message-Id: List-Id: References: <1351974625-10282-1-git-send-email-Julia.Lawall@lip6.fr> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Sasha Levin Cc: linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org On Sun, 4 Nov 2012, Sasha Levin wrote: > Hi Julia, > > On Sat, Nov 3, 2012 at 4:30 PM, Julia Lawall wrote: >> These patches convert a conditional with a simple test expression and a >> then branch that only calls WARN_ON(1) to just a call to WARN_ON, which >> will test the condition. >> >> // >> @@ >> expression e; >> @@ >> >> ( >> if(<+...e(...)...+>) WARN_ON(1); >> | >> - if (e) WARN_ON(1); >> + WARN_ON(e); >> )// > > So this deals with WARN_ON(), are you considering doing the same for > the rest of it's friends? I tried WARN_ON_ONCE, but the pattern never occurred. Are there others that are worth trying? thanks, julia