Received: by 2002:a25:7ec1:0:0:0:0:0 with SMTP id z184csp3000918ybc; Thu, 14 Nov 2019 02:26:14 -0800 (PST) X-Google-Smtp-Source: APXvYqyCGbCQJQAae4kV0Pw6HpU2920vdOsZ1IY7LZPp/SfJBfnn7du31KHWrruNRw7lXbhe/Wfx X-Received: by 2002:aa7:c1d4:: with SMTP id d20mr249254edp.273.1573727173971; Thu, 14 Nov 2019 02:26:13 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1573727173; cv=none; d=google.com; s=arc-20160816; b=wxsbSa04Bq5WwXPzXamFi0IcwDAZnEz4sVK1cero3WTm1vHhXgGRpcbihEKK1JNfeo Da0PLdk/7pSFKgI3Td3YLeHIMmOjGZ0Nvvw+IQKfe+KtK5HkmxGHI6Pt7irjuNRD++D1 JTNolqkd81wRdyphxu35C/tlu1/Al7K1ZQia5jFnHMMnJnKqUQTjG27yY2PCW9nOEiS9 0EsBO1Bf1MbQOXgZK7C9j4l8UKq696PDio9Oz1tHwfoGO9bP5Y6VgFoNDbZmVEAtyupx 4hfTVguUgq3svWfkf9UK/U+txLtO4XkDH0It92BDsmiv4Lq0mxI6MS+C3j7YR6EVuFjF MHRg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-transfer-encoding:content-disposition:mime-version :references:message-id:subject:cc:to:from:date; bh=nxvDXFSTkfHz7sjzduUKTOYkjYLgR9ki0/76pI74Gtc=; b=rEzOX6uzw/pgoVm8MpO+UnrfCTgZihtn9spEP1xKDIvmrDV30yg2A/4nWU62i5VAgG eT0afyOAWZJnFhuaul3OjtVQ5i+xbOFoxtxxcg5nphrOwkLF4Cpdo6XNZAfzvkBf/Num QOs4lElTQSrUdOP8yVbzb10dOaILCrXs4TepVIzqDIxc3SS4kwm6ibiLk8eqdUl7t2Oz TMPZ1JeNq+GKkKYq5Gi+MbPgcM2RNgmBU+PgLA2bDLyZ3fgNK3WHDVLmzT6A1kqEkNsl QhNIIqUPl5svBjhH1xohlJMl2J1TKjHbHNp3FD46WveiuyuhV9eVDCxps3HI0pMVsItF rL2A== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id p20si3029808ejj.394.2019.11.14.02.25.49; Thu, 14 Nov 2019 02:26:13 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726979AbfKNKYn (ORCPT + 99 others); Thu, 14 Nov 2019 05:24:43 -0500 Received: from mx2.suse.de ([195.135.220.15]:33524 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726139AbfKNKYn (ORCPT ); Thu, 14 Nov 2019 05:24:43 -0500 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 9B2A0AC9F; Thu, 14 Nov 2019 10:24:41 +0000 (UTC) Date: Thu, 14 Nov 2019 11:24:40 +0100 From: Petr Mladek To: Uwe =?iso-8859-1?Q?Kleine-K=F6nig?= Cc: Andy Whitcroft , Joe Perches , Rasmus Villemoes , Andy Shevchenko , linux-kernel@vger.kernel.org, kernel@pengutronix.de Subject: Re: [PATCH] checkpatch: don't warn about new vsprintf pointer extension '%pe' Message-ID: <20191114102440.msyuahilbagaz7aw@pathway.suse.cz> References: <20191114100416.23928-1-u.kleine-koenig@pengutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20191114100416.23928-1-u.kleine-koenig@pengutronix.de> User-Agent: NeoMutt/20170912 (1.9.0) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu 2019-11-14 11:04:16, Uwe Kleine-K?nig wrote: > This extension was introduced in commit 57f5677e535b ("printf: add > support for printing symbolic error names"). Great catch! > Signed-off-by: Uwe Kleine-K?nig > --- > scripts/checkpatch.pl | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl > index 6fcc66afb088..31cd9b767c1e 100755 > --- a/scripts/checkpatch.pl > +++ b/scripts/checkpatch.pl > @@ -6022,7 +6022,7 @@ sub process { > while ($fmt =~ /(\%[\*\d\.]*p(\w))/g) { > $specifier = $1; > $extension = $2; > - if ($extension !~ /[SsBKRraEhMmIiUDdgVCbGNOxt]/) { > + if ($extension !~ /[SsBKRraeEhMmIiUDdgVCbGNOxt]/) { I am going to push it into printk.git. I will just change the ordering "eE" -> "Ee". So that it follows the existing convention. Best Regards, Petr