From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 8241D8BE2 for ; Tue, 9 May 2023 15:34:34 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id DC099C433D2; Tue, 9 May 2023 15:34:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1683646474; bh=tcsG/9yvVS7yUA7c8w07U/zowguK+rl0WQ5JKrgKA1c=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=dg5asSl54sAUzZyP7SAE/OHZjKAjvHCORCTCtt4w9qsz/vr3n5kPBDdcGnson4Knq M+tmNPKQp/k7C9sRCUp5kHwsyBHYs9aBk/QFQ2VlRNcdSgu5Yz0PnDnvNuTYaUH1Ye KkF3c5/BgZw1kig1MB1TKO23hQc8IvQleGAk6I+VgrdD67tJ6Z2Diu8Lie28y+fBwU OqRdlXmEG6iSpY/xpzqfxCcLEzwBJito7VgyHAtMys632isFB+KAZYRdcK13w6mf6e Z4ODiBDpEor14DAHgqw14xMsC4iOug6vb+fr4Yz3xKhwzJwCyLWhHp01KLOVtqh6I0 W4Z2o/OpFmKuA== Date: Tue, 9 May 2023 09:34:31 -0600 From: David Ahern To: Guillaume Nault Cc: David Miller , Jakub Kicinski , Paolo Abeni , Eric Dumazet , netdev@vger.kernel.org Subject: Re: [PATCH net-next 1/4] selftests: Add SO_DONTROUTE option to nettest. Message-ID: <20230509153431.GB26485@u2004-local> References: <1b3d54c39af185c514a16cbd779b52a9cf9ef2de.1683626501.git.gnault@redhat.com> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1b3d54c39af185c514a16cbd779b52a9cf9ef2de.1683626501.git.gnault@redhat.com> On Tue, May 09, 2023 at 02:02:36PM +0200, Guillaume Nault wrote: > Add -G option to nettest. It allows to set the SO_DONTROUTE option to > the created sockets. This will be used by the following patches to test > the SO_DONTROUTE behaviour with TCP and UDP. > > Signed-off-by: Guillaume Nault > --- > tools/testing/selftests/net/nettest.c | 32 +++++++++++++++++++++++++-- > 1 file changed, 30 insertions(+), 2 deletions(-) > Reviewed-by: David Ahern