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 61C4642DC8 for ; Tue, 4 Jul 2023 01:40:05 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5BD0642BDA; Tue, 4 Jul 2023 01:40:05 +0200 (CEST) Received: from mail-pj1-f52.google.com (mail-pj1-f52.google.com [209.85.216.52]) by mails.dpdk.org (Postfix) with ESMTP id 1BF1E40E03 for ; Tue, 4 Jul 2023 01:40:03 +0200 (CEST) Received: by mail-pj1-f52.google.com with SMTP id 98e67ed59e1d1-262e3c597b9so3630207a91.0 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=PepMdylL6NNgzWIC35U1BzUJOfKvpB70++4r4eRKmqOgKnkl6SMr8f77JPzsuPPt++ jledd+pmI5Hz9v7sXCWWI7j5RvEzpAdLKn42rQQmWnUrKxxFYrEBueGhWwtvMdppO761 ZDT5WQ92wyDPLXBBILgEbS2rrI01BraAf7Ttw/2A1t/sBMaZC6oDt57nS/Ns95FjVlRv ngYfq6THUgK0DHDdcwYiQMGxFp9btqdgN3d2PzDfwg7oMnwxZfICwZ9N4RUvc/znk8B9 GfzNRYOyj4H+1QRgfu2D7OY8wbl3ROJoIJaJzx15uTpTAVhst6PgUb0xOBvelLTemEsD IU0w== X-Gm-Message-State: ABy/qLbHAmgssRGlpE5nQom8TgRwoLrFUMZc4iTcSkAbwZ/I4tCR80kt Yze/Ng9clctufu+xp7ftSaJ6ug== 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: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-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