From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas@monjalon.net>
Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com
 [66.111.4.25]) by dpdk.org (Postfix) with ESMTP id 402D1F94;
 Fri, 22 Sep 2017 15:41:19 +0200 (CEST)
Received: from compute1.internal (compute1.nyi.internal [10.202.2.41])
 by mailout.nyi.internal (Postfix) with ESMTP id 5C76921796;
 Fri, 22 Sep 2017 09:41:19 -0400 (EDT)
Received: from frontend2 ([10.202.2.161])
 by compute1.internal (MEProxy); Fri, 22 Sep 2017 09:41:19 -0400
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h=
 cc:content-transfer-encoding:content-type:date:from:in-reply-to
 :message-id:mime-version:references:subject:to:x-me-sender
 :x-me-sender:x-sasl-enc:x-sasl-enc; s=mesmtp; bh=szlSGvL0/3ZL4ge
 mYq+/hVxI/VnOUtuyCWqTntPFo8U=; b=fZdcj1Cgy8GheQsYWjC0dLL7aZ7nvi7
 pTY4GzLsFC38G+i1J4qxhT6VC8cDoFMTPhk0UCT7apaH61GVgBbeY4r2/7N7eoDY
 vzehRrJ/e+LdV1kDDExZmfBWgiaH9aedMS3XO9ryPhySSbumJmKmJ3EoeFWpAoEK
 qPx5Q+l3F5WI=
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=
 messagingengine.com; h=cc:content-transfer-encoding:content-type
 :date:from:in-reply-to:message-id:mime-version:references
 :subject:to:x-me-sender:x-me-sender:x-sasl-enc:x-sasl-enc; s=
 fm1; bh=szlSGvL0/3ZL4gemYq+/hVxI/VnOUtuyCWqTntPFo8U=; b=OALhfEQO
 9AQrI9TLWqsEmdQfWNeWgW26GLxbfuGuoN+AIXuK5VHSH+PJsuvC3sXbOph+aRNH
 1eKmV8Ivrel5+DHARbT1zQD8YZ5oNsTw2dgtKcXETl+edgbJVZMGrrr8uY8hXGbb
 kPNf/ug9vvwQJuKdtKHqHHI0zF7mAe1YwaCI9uJzQlkUEC6IgE1ugEqxHP9CqlG9
 Y5mzpfYFC7mW5o/q0ezOL8KxZYjT/WxOHV+pHTR0mCm68JIoQi+Me54xTtZM1WNs
 8pp/9sg3gzgmVlV601Rgp1xD8PEQCZTAWV8kfv7Gzlmunkr6ev/ChMhdmD2y7isS
 0f2tcQUwE+9dvQ==
X-ME-Sender: <xms:_xLFWWciL8YcyGvmVoK_IdjEFrjbmM6SNZ3Yx4niM-8RWWu0jol5iA>
X-Sasl-enc: ++5uiCQ+C1zv1jmrnXd97DlW7JEQ0OGob7gosFvF6HNL 1506087679
Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184])
 by mail.messagingengine.com (Postfix) with ESMTPA id 1197A24515;
 Fri, 22 Sep 2017 09:41:19 -0400 (EDT)
From: Thomas Monjalon <thomas@monjalon.net>
To: dev@dpdk.org
Cc: =?ISO-8859-1?Q?N=E9lio?= Laranjeiro <nelio.laranjeiro@6wind.com>,
 stable@dpdk.org
Date: Fri, 22 Sep 2017 15:41:18 +0200
Message-ID: <3397882.MPWtsoVqme@xps>
In-Reply-To: <20170915092456.GF2160@autoinstall.dev.6wind.com>
References: <20170904220532.10175-1-thomas@monjalon.net>
 <20170915092456.GF2160@autoinstall.dev.6wind.com>
MIME-Version: 1.0
Content-Transfer-Encoding: quoted-printable
Content-Type: text/plain; charset="iso-8859-1"
Subject: Re: [dpdk-dev] [dpdk-stable] [PATCH] devtools: fix version search
	with git < 2.7.0
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Fri, 22 Sep 2017 13:41:20 -0000

15/09/2017 11:24, N=E9lio Laranjeiro:
> On Tue, Sep 05, 2017 at 12:05:32AM +0200, Thomas Monjalon wrote:
> > The script git-log-fixes.sh (used in check-git-log.sh) looks
> > for git tags to find the version where a bug is introduced.
> >=20
> > In DPDK 17.08, the script has been fixed to ignore tags from
> > non current branch.
> > It was using the option --merged which was introduced in git 2.7.0.
> >=20
> > As git 2.7.0 is not so old, a fallback is provided for some years.
> >=20
> > The fallback is replacing the tag --merged option by a branch filter.
> > If the tag is found in the branch, the branch name is replaced
> > by the tag.
> >=20
> > This script could be improved to allow using another reference branch,
> > instead of hard coding HEAD branch (the current one).
> >=20
> > Fixes: 26857dabb3c9 ("devtools: ignore non merged tags for backport")
> > Cc: stable@dpdk.org
> >=20
> > Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
> Tested-by: Nelio Laranjeiro <nelio.laranjeiro@6wind.com>
>=20
> Solves the issue.

Applied