From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f53.google.com (mail-wm0-f53.google.com [74.125.82.53]) by dpdk.org (Postfix) with ESMTP id 7D85B6CD3 for ; Wed, 6 Jul 2016 14:36:07 +0200 (CEST) Received: by mail-wm0-f53.google.com with SMTP id z126so110020462wme.0 for ; Wed, 06 Jul 2016 05:36:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=6rDLnvMAltZpEaAhH151bDsZYVRZXXV/5XURfBznoUE=; b=PIl2wP4RSRJHh9+sGik0SQuGKDr28E+eEZOVBYBULBmOJ3Kq25JtCvRHAbEv4Va5lI AKDLFlvhMfsi0vnxbcuiQ495fcYewFDGKL+R0VI8VEYzo3ro7zVHI33RcKqHfejAKSFM YIUxFsXK3+Cw0jiYhh6COzJ1D5y1c6k3Tq9X9ENOsXNHmNqGVSRSFiMgWFsSU69KFpNU zQTYKmwEP+1623bK/xc1318oNCqyV2UAmsR4NIKtf4N03hu8vIIHsxF0it1M5pSzM9lB cKhTL6KA2PhFK6POnz+BPJcqcM2QwanVBY2SNIqekciB0fftZ0YDsclobR5799YlHjfo 5qlA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=6rDLnvMAltZpEaAhH151bDsZYVRZXXV/5XURfBznoUE=; b=MlIeyBeyQbLuhI0CkHzZJpC5sTmyCTHhZP6ABagwaIxvfmJA8Y0EPGCRkrZD2B6vv9 pCj+Bc0P082+S7YqiHBALVVz+Voupjr7q7br1cSF4O8Q8eMlJ1CsoCZoIbx/4/UzwlIH nt2lXl7sD020F80I1vmHR6pUm7tZCLF4gZB3GzCP1aQeVhYoGZ5GZoBN4H+iEdSX4omN u6XghywATvLgI7BkkPzCzQAISbYOJwocK6k1kAHsBERaz/pRPWkwIL9R6BY8p/nKaSxI 9t6F6KcugVX9JK9IsNqB1cJnqxgZDCbXfPxiP4EceCtfQtySh0qJIIaZxaqFYqmeiULt nTUg== X-Gm-Message-State: ALyK8tKmY3WbRNkQw5bEH+CiVdb3Y81KTZpTyam9JKIaNeTVM5azkYHsC3Cm4AhQ7z3hH8lK X-Received: by 10.28.181.146 with SMTP id e140mr20495883wmf.38.1467808567234; Wed, 06 Jul 2016 05:36:07 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id r130sm6606805wmf.20.2016.07.06.05.36.06 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 06 Jul 2016 05:36:06 -0700 (PDT) From: Thomas Monjalon To: Bruce Richardson Cc: dev@dpdk.org, Nelio Laranjeiro Date: Wed, 06 Jul 2016 14:36:05 +0200 Message-ID: <7726346.NchXjSRV1Y@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <20160706110922.GB29480@bricha3-MOBL3> References: <1467801530-20800-1-git-send-email-thomas.monjalon@6wind.com> <1467801530-20800-4-git-send-email-thomas.monjalon@6wind.com> <20160706110922.GB29480@bricha3-MOBL3> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH 3/3] scripts: check headline of drivers commits X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 12:36:07 -0000 2016-07-06 12:09, Bruce Richardson: > On Wed, Jul 06, 2016 at 12:38:50PM +0200, Thomas Monjalon wrote: > > From: Nelio Laranjeiro > > +# check headline prefix when touching only drivers/, e.g. net/ > > +bad=$(for commit in $commits ; do > > + headline=$(git log --format='%s' -1 $commit) > > + files=$(git diff-tree --no-commit-id --name-only -r $commit) > > + [ -z "$(echo "$files" | grep -v '^drivers/')" ] || continue > > Given the preference for including documentation in with the code changes, > we should perhaps exclude any doc changes when making this check. Yes we can exclude doc/ and config/. Thanks