From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 5181842DC8; Tue, 4 Jul 2023 01:40:04 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 43FC840F18; Tue, 4 Jul 2023 01:40:04 +0200 (CEST) Received: from mail-pj1-f51.google.com (mail-pj1-f51.google.com [209.85.216.51]) by mails.dpdk.org (Postfix) with ESMTP id 1D58A40F18 for ; Tue, 4 Jul 2023 01:40:03 +0200 (CEST) Received: by mail-pj1-f51.google.com with SMTP id 98e67ed59e1d1-263253063f9so3627665a91.1 for ; Mon, 03 Jul 2023 16:40:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20221208.gappssmtp.com; s=20221208; t=1688427602; x=1691019602; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:subject:cc:to:from:date:from:to:cc:subject:date :message-id:reply-to; bh=vNTz39whAnccimRK3MY0Dy5iSwV8kRnNJWxHV6RsKTY=; b=1EH5ECg2I/okb/h0xqLiiKPHgvyb2FyTnZ9FCMq3P+PYmOXatciMS43XjdGm5b4Zz9 02KxQ8lHtoqC7v/RoR6/YEpyN+LpYxtwoGBiXinihAONRULRD8y+OD3gMQY0R2eMcbZw wIRCHhKTvfPgF88zboCvleaTFfN1arLFEIOyv6X8HJjRDqN0QsBA1yMzWHXOn661T7Z4 gsZm5fkhgJmkU4HD0QVJzrtZXV/J5SnOY2XylRLWIfTTdj0Yw9OjpVPYTsliFqz/2mh/ tefhWmWYm/zUzyp/f0W4yilofOJ0GmGbzEVAfCCfbr20BIu44KrCLR25g8715NKehNMh rRRA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1688427602; x=1691019602; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:subject:cc:to:from:date:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=vNTz39whAnccimRK3MY0Dy5iSwV8kRnNJWxHV6RsKTY=; b=lKvl2vgfq6ZsWSqoyDl+5j2N0uNZlOg6v2Xmnm8UCriaGgZLFjG/wjfmrTicJa2Jsh 8KR4Q7MkS0TSgKOc/Xp/sv24sHn2pxYGnJGInQP8M2bszGMvMSrgmo7pOIQjcHYnCd5B wp4tqCWyZc7cOM1GsjF8EMiP2D7wUWfv2p/DBTln0liqxACV+khbT7R9TCGLwO0obJuU OJV+53VHPG80saB0BYYmBxoPDnh1qxFj0HdhDRA7cOZ7qm+CsNs8F88+y6En7odmVeCH Zg7/v0mfh4H+zd3FcQXkPGyMKu4cSeA+9/yM5sYuj2Gn2bgSpjZDWYXwnDahXJiWPwqB AeHA== X-Gm-Message-State: ABy/qLY0qXS1uCOFOJEJO4IYy7FksaPqA1IS1mrA5T0vzV/6mPoD1en3 oSrlfk65jhZ2FEbHjF+MJaFcGQ== X-Google-Smtp-Source: APBJJlGNHbiT3TaVm8/kYKSwT7REJo6ffnpBGl042Y4KJq0729ZimvXsxbHyPNtkWq+yLLO42vX0Hw== X-Received: by 2002:a17:90a:bc81:b0:261:38ca:3c48 with SMTP id x1-20020a17090abc8100b0026138ca3c48mr12130932pjr.11.1688427602297; Mon, 03 Jul 2023 16:40:02 -0700 (PDT) Received: from hermes.local (204-195-120-218.wavecable.com. [204.195.120.218]) by smtp.gmail.com with ESMTPSA id pj12-20020a17090b4f4c00b00262e76b2b76sm14001595pjb.37.2023.07.03.16.40.01 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 03 Jul 2023 16:40:02 -0700 (PDT) Date: Mon, 3 Jul 2023 16:40:00 -0700 From: Stephen Hemminger To: Thomas Monjalon Cc: dev@dpdk.org, stable@dpdk.org, Bruce Richardson , David Marchand Subject: Re: [PATCH] devtools: fix mailmap check for parentheses Message-ID: <20230703164000.661242bf@hermes.local> In-Reply-To: <20230626102403.2531582-1-thomas@monjalon.net> References: <20230626102403.2531582-1-thomas@monjalon.net> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On Mon, 26 Jun 2023 12:24:03 +0200 Thomas Monjalon wrote: > When checking names having parentheses, the grep matching was failing. > It is fixed by escaping the open parenthesis. > > Also, the mailmap path was relative to the root directory. > The path is made absolute. > > Fixes: e83d41f0694d ("mailmap: add list of contributors") > Fixes: 83812de4f2f3 ("devtools: move mailmap check after patch applied") > Cc: stable@dpdk.org > > Signed-off-by: Thomas Monjalon > --- Acked-by: Stephen Hemminger