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 B73EA1F76AA; Tue, 3 Dec 2024 15:50:23 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733241023; cv=none; b=II7U3tsHQJTkNRUKPe6gWrr0riaRGwm/+IjAGaMCHO6T2FUrSmfRwQNnLg0QP5nHpqoxoqIJpkqUYjvhDc5eLPj6JEwyx7MwUneMWnvPZtvk9QARuzYve9+wa4kmGNJ2ezQle2uMUUVZUCAAQ0uPKQdMb5PeukijS8cK8UEUCHw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733241023; c=relaxed/simple; bh=/9/s09qMUy58rvu1FysJhDlk7L+b18Ou+potjv5qoQs=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=MTjeXzVR+jQYchFRmEVq22TaLQ4+L6vfTjD/wYk7M1R3+UrGkmxCYDnIbkA0axZbwfz0mbXXPhS8oRFOnoOirROvfFl2vZXUmJ++oDQdQQkHu5pWa+1L0Gv2epvxbxcLVUb1VAS99Og4qoRpgrRUsY9naoBIdGFQsvS1PhREU9I= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=ak7Gu+8R; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="ak7Gu+8R" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 240FBC4CECF; Tue, 3 Dec 2024 15:50:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1733241023; bh=/9/s09qMUy58rvu1FysJhDlk7L+b18Ou+potjv5qoQs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ak7Gu+8RXZzT3zlR8wU3bPUTT3hqTWodMayEA+RiQ6k4n8M7nQjhmnRl8/aX5H4bX BR7V5yNqSxHgV69YMd+2HsDGIH1Gre+CdrL8ouUWeFtkev7ihJqTzTAYGbvHzNFyNc U0CJA4yAII9H4kPJYBPhu/ZQbVR44cSt8QRvQTMI= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Maurice Lambert , Jakub Kicinski , Sasha Levin Subject: [PATCH 6.12 301/826] netlink: typographical error in nlmsg_type constants definition Date: Tue, 3 Dec 2024 15:40:28 +0100 Message-ID: <20241203144755.506350941@linuxfoundation.org> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20241203144743.428732212@linuxfoundation.org> References: <20241203144743.428732212@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Maurice Lambert [ Upstream commit 84bfbfbbd32aee136afea4b6bf82581dce79c305 ] This commit fix a typographical error in netlink nlmsg_type constants definition in the include/uapi/linux/rtnetlink.h at line 177. The definition is RTM_NEWNVLAN RTM_NEWVLAN instead of RTM_NEWVLAN RTM_NEWVLAN. Signed-off-by: Maurice Lambert Fixes: 8dcea187088b ("net: bridge: vlan: add rtm definitions and dump support") Link: https://patch.msgid.link/20241103223950.230300-1-mauricelambert434@gmail.com Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- include/uapi/linux/rtnetlink.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/uapi/linux/rtnetlink.h b/include/uapi/linux/rtnetlink.h index 3b687d20c9ed3..db7254d52d935 100644 --- a/include/uapi/linux/rtnetlink.h +++ b/include/uapi/linux/rtnetlink.h @@ -174,7 +174,7 @@ enum { #define RTM_GETLINKPROP RTM_GETLINKPROP RTM_NEWVLAN = 112, -#define RTM_NEWNVLAN RTM_NEWVLAN +#define RTM_NEWVLAN RTM_NEWVLAN RTM_DELVLAN, #define RTM_DELVLAN RTM_DELVLAN RTM_GETVLAN, -- 2.43.0