Received: by 2002:a25:1506:0:0:0:0:0 with SMTP id 6csp4289564ybv; Sun, 16 Feb 2020 18:39:24 -0800 (PST) X-Google-Smtp-Source: APXvYqx4rwl8trxJuD7sGytNyhxQYaA0ba3fuhk7iEK+irL6I6XHb2O5RuUqZyOINn1rpA34TBlV X-Received: by 2002:a9d:7593:: with SMTP id s19mr10123353otk.219.1581907163992; Sun, 16 Feb 2020 18:39:23 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1581907163; cv=none; d=google.com; s=arc-20160816; b=g1Uvh/sLvg8DlYyvWO7HaftWf4HmjPs0BgcyacMIsIsXSmRVwDnc0BjFInVt6Ky51D 5EeeoW+AU3MsaQ+BtQ0UKndlhWQJJUOmPBEEUQ+tqKMnc7D+ZGq9veV9EVmEY9+jRiaQ VKOAj5P3i1PENfjjc0+Q9PW88wMioZtOO4i6TvB4wHIkncMPHhU+wMkqy4aC7c2ghBOU 9BQ8hcitxL72FktIUMtMLp8jwT1SbpfphNg+kL7uF65To84+ljsP6jP6UouAXcrvug2o XQwnmZTKIlbCa4Lb4w4+ozJsrU4CoiNSM886Mc6awHXV5EjmXbWGrZkJDbP20d3RPSZf qEZw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:from:subject:cc:to:message-id:date; bh=CBA3i5zhDWLmvWFz5faChmJlzxQ0/oso8fiTz+X+2fc=; b=SjG5Bi1SF0SvcZVaOdJx/p1IoYkP8fYhPCTI/q10yFkY+nknRnpDJ5diCt8zwRni0J gwsuCN8DFkKYcNazc4AO6qbl7v5NwLaAJj5zS9HucuzKzcWwEk3NXGGHYGC9QkjqCUzN CKXE2qYstvaK9r1TCfz4WxjXVHrJPhuv8exJogiKZqaMOM4GDYKQEiFS2a7WbZlmgNWm Vw9Vv210eoVPDLFkupnL8YsvlPUC/Art/tUdb53shM8PnTwAN7TshQvZFDMrwqxyLYhi hlx03UsAFfAnYmTM7a3Acfrf6zJhkhKlC/m5AeZGfeXVZLvWRsnhP1JTiMNF8h7RzOt8 GAAg== 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 p5si6715630oto.116.2020.02.16.18.39.11; Sun, 16 Feb 2020 18:39:23 -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 S1726591AbgBQCjD (ORCPT + 99 others); Sun, 16 Feb 2020 21:39:03 -0500 Received: from shards.monkeyblade.net ([23.128.96.9]:47874 "EHLO shards.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726183AbgBQCjD (ORCPT ); Sun, 16 Feb 2020 21:39:03 -0500 Received: from localhost (unknown [IPv6:2601:601:9f00:477::3d5]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) (Authenticated sender: davem-davemloft) by shards.monkeyblade.net (Postfix) with ESMTPSA id 67EAD15383A77; Sun, 16 Feb 2020 18:39:02 -0800 (PST) Date: Sun, 16 Feb 2020 18:39:01 -0800 (PST) Message-Id: <20200216.183901.2213122541309483812.davem@davemloft.net> To: jethro@fortanix.com Cc: kuba@kernel.org, jiri@mellanox.com, liuhangbin@gmail.com, natechancellor@gmail.com, tglx@linutronix.de, johannes.berg@intel.com, netdev@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] net: fib_rules: Correctly set table field when table number exceeds 8 bits From: David Miller In-Reply-To: References: X-Mailer: Mew version 6.8 on Emacs 26.1 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.5.12 (shards.monkeyblade.net [149.20.54.216]); Sun, 16 Feb 2020 18:39:02 -0800 (PST) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Jethro Beekman Date: Wed, 12 Feb 2020 16:43:41 +0100 > In 709772e6e06564ed94ba740de70185ac3d792773, RT_TABLE_COMPAT was added to > allow legacy software to deal with routing table numbers >= 256, but the > same change to FIB rule queries was overlooked. > > Signed-off-by: Jethro Beekman Applied and queued up for -stable.