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 75609C433EF for ; Thu, 23 Dec 2021 18:00:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1349646AbhLWSA0 (ORCPT ); Thu, 23 Dec 2021 13:00:26 -0500 Received: from relay7-d.mail.gandi.net ([217.70.183.200]:43755 "EHLO relay7-d.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1349590AbhLWSAZ (ORCPT ); Thu, 23 Dec 2021 13:00:25 -0500 Received: (Authenticated sender: repk@triplefau.lt) by relay7-d.mail.gandi.net (Postfix) with ESMTPSA id EE8DA20003; Thu, 23 Dec 2021 18:00:22 +0000 (UTC) Date: Thu, 23 Dec 2021 19:05:20 +0100 From: Remi Pommarel To: Jakub Kicinski Cc: netdev@vger.kernel.org, Roopa Prabhu , Nikolay Aleksandrov , Arnd Bergmann , "David S. Miller" , bridge@lists.linux-foundation.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH net 2/2] net: bridge: Get SIOCGIFBR/SIOCSIFBR ioctl working in compat mode Message-ID: References: <20211223153139.7661-1-repk@triplefau.lt> <20211223153139.7661-3-repk@triplefau.lt> <20211223085944.55b43857@kicinski-fedora-PC1C0HJN.hsd1.ca.comcast.net> <20211223095318.30d2b9ce@kicinski-fedora-PC1C0HJN.hsd1.ca.comcast.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20211223095318.30d2b9ce@kicinski-fedora-PC1C0HJN.hsd1.ca.comcast.net> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Dec 23, 2021 at 09:53:18AM -0800, Jakub Kicinski wrote: > On Thu, 23 Dec 2021 18:50:30 +0100 Remi Pommarel wrote: > > On Thu, Dec 23, 2021 at 08:59:44AM -0800, Jakub Kicinski wrote: > > > On Thu, 23 Dec 2021 16:31:39 +0100 Remi Pommarel wrote: > > > > In compat mode SIOC{G,S}IFBR ioctls were only supporting > > > > BRCTL_GET_VERSION returning an artificially version to spur userland > > > > tool to use SIOCDEVPRIVATE instead. But some userland tools ignore that > > > > and use SIOC{G,S}IFBR unconditionally as seen with busybox's brctl. > > > > > > > > Example of non working 32-bit brctl with CONFIG_COMPAT=y: > > > > $ brctl show > > > > brctl: SIOCGIFBR: Invalid argument > > > > > > > > Example of fixed 32-bit brctl with CONFIG_COMPAT=y: > > > > $ brctl show > > > > bridge name bridge id STP enabled interfaces > > > > br0 > > > > > > > > Signed-off-by: Remi Pommarel > > > > Co-developed-by: Arnd Bergmann > > > > Signed-off-by: Arnd Bergmann > > > > > > Since Arnd said this is not supposed to be backported I presume it > > > should go to net-next? > > > > Yes, out of curiosity, is it appropriate to mix "[PATCH net]" and > > "[PATCH net-next]" in the same serie ? > > It's not, mixing makes it quite hard to know what's needed where. > Also hard to automate things on our end. Let me pick out the first > patch, I'll be sending a PR to Linus shortly and then merge net into > net-next. At which point you'll be able to rebase on top of net-next > and resend just the second patch for net-next.. Ok sounds good to me thanks.