From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 38D6EC7EE29 for ; Thu, 8 Jun 2023 11:47:20 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236173AbjFHLrS (ORCPT ); Thu, 8 Jun 2023 07:47:18 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33424 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236568AbjFHLqt (ORCPT ); Thu, 8 Jun 2023 07:46:49 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 62F832D78 for ; Thu, 8 Jun 2023 04:46:19 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id F316164CCF for ; Thu, 8 Jun 2023 11:46:18 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id EEA8FC433D2; Thu, 8 Jun 2023 11:46:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1686224778; bh=+0dyr4lC27Y7mQZWAwyeDXZTOlrPw8hFLVixUSBYIdQ=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=hzd7Pq6Rxcm3HodDZIL5xtHYGJHt3PX4Vzwt9O1h4ec7cq+hkTdL9CrQCHtptvgz9 +W9EQtdfmshTN+m4MAl/WHRZ/QT+2iRAdPX208TLO2Sywfg2mWIqDlIiLMuH8gMImx 3mr1i1ydxPI0EkmAMSO/gjlHbYhTbZw6Meesinhy83qCADry6hsiiOVP+CIuy2g3X6 cb2FDOarlFB57ibZ0gHYim0/sWNyFYyyNko4PyfwRGoatBYviGSEHc41O+QqBnHg4q PL8oMF74tw8USh43AB5pDKdAahtV+jvE5dQmy7oV96/wava/afxafXzxouPKwugyP2 V95e2slZPoimg== Date: Thu, 8 Jun 2023 13:46:13 +0200 From: Simon Horman To: Jiapeng Chong Cc: davem@davemloft.net, edumazet@google.com, kuba@kernel.org, pabeni@redhat.com, ast@kernel.org, daniel@iogearbox.net, hawk@kernel.org, john.fastabend@gmail.com, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, bpf@vger.kernel.org, Abaci Robot Subject: Re: [PATCH] tools: ynl: Remove duplicate include Message-ID: References: <20230608093036.96539-1-jiapeng.chong@linux.alibaba.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230608093036.96539-1-jiapeng.chong@linux.alibaba.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Jun 08, 2023 at 05:30:36PM +0800, Jiapeng Chong wrote: > ./tools/net/ynl/generated/netdev-user.c: stdlib.h is included more than once. > > Reported-by: Abaci Robot > Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=5466 > Signed-off-by: Jiapeng Chong > --- > tools/net/ynl/generated/netdev-user.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/tools/net/ynl/generated/netdev-user.c b/tools/net/ynl/generated/netdev-user.c > index aea5c7cc8ead..1883a658180b 100644 > --- a/tools/net/ynl/generated/netdev-user.c > +++ b/tools/net/ynl/generated/netdev-user.c > @@ -8,7 +8,6 @@ > #include "ynl.h" > #include > > -#include > #include > #include > #include This duplicates: - [PATCH -next] tools: ynl: Remove duplicated include in handshake-user.c https://lore.kernel.org/all/20230608083148.5514-1-yang.lee@linux.alibaba.com/ So lets focus on that one. In all three very similar patches were sent in a short space of time. It's better not to do that. -- pw-bot: reject