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=-9.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable 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 AD9BFC4742C for ; Sat, 31 Oct 2020 11:50:06 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 72C19206A1 for ; Sat, 31 Oct 2020 11:50:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1604145006; bh=Shky6g4OVk/6gYK00B9yQQdG33qHJEk0/XWJz/WoXB8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=k3ehil6xRaW1pTPCyGnwyQqLHs2K59uRyEiKy5+GUNS4spQXnFYOa8x3foM9/hvmB EuyUFy2Y/gtxpsPdAHwMDk6qxAFz6pJuUG12Qrb3WUKQVyyS8kGTX1nQSsEplALcD2 LqjFRkZFWB4tKHlax9WVZFK8C+LhkkcXaoMYkaPs= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727729AbgJaLlr (ORCPT ); Sat, 31 Oct 2020 07:41:47 -0400 Received: from mail.kernel.org ([198.145.29.99]:40960 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727720AbgJaLlp (ORCPT ); Sat, 31 Oct 2020 07:41:45 -0400 Received: from localhost (83-86-74-64.cable.dynamic.v4.ziggo.nl [83.86.74.64]) (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 BEA8B20731; Sat, 31 Oct 2020 11:41:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1604144505; bh=Shky6g4OVk/6gYK00B9yQQdG33qHJEk0/XWJz/WoXB8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=iPzE+P/9HrIlHpX8OyZS5VUdaZD4UU7gJk5O6Fpvb62R3MagKe/lwVofYn7zpzSJ8 mSBABev4b0pA/Eqkt+XKQlW9ia/PSYHgDTFks9wmjhd3SeHzxgK+yHLrOxC/emK/+g 98DbnqU+53i8lai5gouUi6ty6HzbAmuSQLarrU0c= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Guillaume Nault , Jakub Kicinski Subject: [PATCH 5.8 43/70] net/sched: act_mpls: Add softdep on mpls_gso.ko Date: Sat, 31 Oct 2020 12:36:15 +0100 Message-Id: <20201031113501.559927528@linuxfoundation.org> X-Mailer: git-send-email 2.29.2 In-Reply-To: <20201031113459.481803250@linuxfoundation.org> References: <20201031113459.481803250@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Guillaume Nault TCA_MPLS_ACT_PUSH and TCA_MPLS_ACT_MAC_PUSH might be used on gso packets. Such packets will thus require mpls_gso.ko for segmentation. v2: Drop dependency on CONFIG_NET_MPLS_GSO in Kconfig (from Jakub and David). Fixes: 2a2ea50870ba ("net: sched: add mpls manipulation actions to TC") Signed-off-by: Guillaume Nault Link: https://lore.kernel.org/r/1f6cab15bbd15666795061c55563aaf6a386e90e.1603708007.git.gnault@redhat.com Signed-off-by: Jakub Kicinski Signed-off-by: Greg Kroah-Hartman --- net/sched/act_mpls.c | 1 + 1 file changed, 1 insertion(+) --- a/net/sched/act_mpls.c +++ b/net/sched/act_mpls.c @@ -408,6 +408,7 @@ static void __exit mpls_cleanup_module(v module_init(mpls_init_module); module_exit(mpls_cleanup_module); +MODULE_SOFTDEP("post: mpls_gso"); MODULE_AUTHOR("Netronome Systems "); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("MPLS manipulation actions");