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 X-Spam-Level: X-Spam-Status: No, score=-6.0 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id BB690C64E7A for ; Wed, 25 Nov 2020 17:51:35 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 7381F21734 for ; Wed, 25 Nov 2020 17:51:35 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=kernel.org header.i=@kernel.org header.b="crZuaiWQ" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731571AbgKYRvd (ORCPT ); Wed, 25 Nov 2020 12:51:33 -0500 Received: from mail.kernel.org ([198.145.29.99]:45004 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730567AbgKYRvc (ORCPT ); Wed, 25 Nov 2020 12:51:32 -0500 Received: from kicinski-fedora-pc1c0hjn.dhcp.thefacebook.com (unknown [163.114.132.4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id CD69A206F9; Wed, 25 Nov 2020 17:51:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1606326692; bh=mthZmD8HjrQknEeM5Ewr3wLwDRO+8gQKHpg2mQr75Q0=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=crZuaiWQnihoqm7QjRfkfE03Mg9YMF0JsWIYf3kXHPdgWlvonFqRKQ08zeBr079Kl Mn+Pth5ty/ouFebQs1bFb/ioagLDzfiF+FAZAuUgBGfHvK/jVkn0ujXZmA54Ex/zNP 9WB1UzaRy2K0TfDYwEoX2+IgRO8P7JvBgUfUqATQ= Date: Wed, 25 Nov 2020 09:51:29 -0800 From: Jakub Kicinski To: David Ahern Cc: Andrea Mayer , "David S. Miller" , David Ahern , Alexey Kuznetsov , Hideaki YOSHIFUJI , Shuah Khan , Shrijeet Mukherjee , Alexei Starovoitov , Daniel Borkmann , Andrii Nakryiko , Martin KaFai Lau , Song Liu , Yonghong Song , John Fastabend , KP Singh , netdev@vger.kernel.org, linux-kernel@vger.kernel.org, linux-kselftest@vger.kernel.org, Nathan Chancellor , Stefano Salsano , Paolo Lungaroni , Ahmed Abdelsalam Subject: Re: [net-next v3 0/8] seg6: add support for SRv6 End.DT4/DT6 behavior Message-ID: <20201125095129.47a111ff@kicinski-fedora-pc1c0hjn.dhcp.thefacebook.com> In-Reply-To: <7804cb54-6be0-5c3d-0adc-84799cf4a844@gmail.com> References: <20201123182857.4640-1-andrea.mayer@uniroma2.it> <20201124154904.0699f4c1@kicinski-fedora-pc1c0hjn.dhcp.thefacebook.com> <3dd23494-d6ae-1c09-acb3-c6c2b2ef93d8@gmail.com> <20201124175803.1e09e19e@kicinski-fedora-pc1c0hjn.dhcp.thefacebook.com> <08201db4-d523-3b0e-fcb6-dfb666f2e013@gmail.com> <20201125084710.01f0e6a6@kicinski-fedora-pc1c0hjn.dhcp.thefacebook.com> <7804cb54-6be0-5c3d-0adc-84799cf4a844@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 25 Nov 2020 10:37:20 -0700 David Ahern wrote: > On 11/25/20 9:47 AM, Jakub Kicinski wrote: > > On Tue, 24 Nov 2020 21:37:18 -0700 David Ahern wrote: > >> On 11/24/20 6:58 PM, Jakub Kicinski wrote: > >>> But it's generally not a huge issue for applying the patch. I just like > >>> to see the build bot result, to make sure we're not adding W=1 C=1 > >>> warnings. > >> > >> ah, the build bot part is new. got it. > > > > BTW I was wondering for the longest time how to structure things so > > that build bot can also build iproute2 in case we want to run tests > > attached to the series and the tests depend on iproute2 changes... > > > > But let's cross that bridge when we get there. > > Why not cross it now? You handled the switch over to new a patchworks > with a build bot, so we can take advantage of automation. > > Seems like the bot needs to detect 'net', 'net-next', 'bpf' and > 'bpf-next' as they are all different trees for the kernel patches. > iproute2 is just another tree, so it should be able to put those in a > different bucket for automated builds - even if it means a 'set' crosses > trees. Actually part of the reason is that we use up 32 vCPUs just to do build testing. I don't think we can afford to individually selftest every series. And if we only run the tests ~nightly we can grab all outstanding patches for iproute2 from the ML and we should be good. At least that's my current thinking. I probably won't have time to implement any of this until Dave is back 100% and then some, anyway ;)