From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1760169Ab1F1SZR (ORCPT ); Tue, 28 Jun 2011 14:25:17 -0400 Received: from mail-pz0-f51.google.com ([209.85.210.51]:55784 "EHLO mail-pz0-f51.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1760333Ab1F1SZF convert rfc822-to-8bit (ORCPT ); Tue, 28 Jun 2011 14:25:05 -0400 MIME-Version: 1.0 In-Reply-To: References: <1309244992-2305-1-git-send-email-jim.cromie@gmail.com> <1309244992-2305-9-git-send-email-jim.cromie@gmail.com> <20110628145404.GD2472@redhat.com> From: Jim Cromie Date: Tue, 28 Jun 2011 12:24:34 -0600 Message-ID: Subject: Re: [PATCH 08/11] dynamic_debug: return int from ddebug_change To: Bart Van Assche Cc: Jason Baron , linux-kernel@vger.kernel.org, gnb@fmeh.org, gregkh@suse.de Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8BIT Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Jun 28, 2011 at 11:48 AM, Bart Van Assche wrote: > On Tue, Jun 28, 2011 at 4:54 PM, Jason Baron wrote: >> On Tue, Jun 28, 2011 at 12:24:56PM +0200, Bart Van Assche wrote: >> > On Tue, Jun 28, 2011 at 9:09 AM, Jim Cromie wrote: >> > > @@ -425,6 +424,7 @@ static int ddebug_exec_query(char *query_string) >> > >  #define MAXWORDS 9 >> > >        int nwords; >> > >        char *words[MAXWORDS]; >> > > +       int nfound; >> > > >> > >        nwords = ddebug_tokenize(query_string, words, MAXWORDS); >> > >        if (nwords <= 0) >> > > @@ -435,7 +435,8 @@ static int ddebug_exec_query(char *query_string) >> > >                return -EINVAL; >> > > >> > >        /* actually go and implement the change */ >> > > -       ddebug_change(&query, flags, mask); >> > > +       nfound = ddebug_change(&query, flags, mask); >> > > + >> > >        return 0; >> > >> > Do these changes actually do anything, or did I miss something ? >> >> its used in a subsequent patch to decide whether or not to call >> add_to_pending. > > As far as I can see your comment applies to the function > ddebug_change() while my comment applies to the function > ddebug_exec_query(). If you have a close look at the above changes you > will see that these do nothing more than adding a dead assignment. > > Bart. > its dead in 8/11, but used in 9/11 nfound = ddebug_change(&query, flags, mask); + pr_info("nfound %d on %s\n", nfound, show_ddebug_query(&query)); + if (!nfound) + ddebug_add_to_pending(&query, flags, mask); + return 0; I can merge 8 & 9 if it matters, but ISTM that the important part is that the patchset is bisectable. - Things compile at each patch (with a couple warnings, including unescape, which I fat-fingered and will fix) $ for i in `seq 1 10`; do (cd - && git checkout HEAD~1 && git status); make; done - and functionality doesnt regress AFAIK - I may have botched something while rebasing bits and pieces.