All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 net] net/sched: act_mpls: Add softdep on mpls_gso.ko
@ 2020-10-26 10:29 Guillaume Nault
  2020-10-27 17:28 ` Cong Wang
  2020-10-28  0:19 ` Jakub Kicinski
  0 siblings, 2 replies; 7+ messages in thread
From: Guillaume Nault @ 2020-10-26 10:29 UTC (permalink / raw)
  To: David Miller, Jakub Kicinski; +Cc: netdev, Alexander Ovechkin, David Ahern

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 <gnault@redhat.com>
---
 net/sched/act_mpls.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net/sched/act_mpls.c b/net/sched/act_mpls.c
index f40bf9771cb9..5c7456e5b5cf 100644
--- a/net/sched/act_mpls.c
+++ b/net/sched/act_mpls.c
@@ -426,6 +426,7 @@ static void __exit mpls_cleanup_module(void)
 module_init(mpls_init_module);
 module_exit(mpls_cleanup_module);
 
+MODULE_SOFTDEP("post: mpls_gso");
 MODULE_AUTHOR("Netronome Systems <oss-drivers@netronome.com>");
 MODULE_LICENSE("GPL");
 MODULE_DESCRIPTION("MPLS manipulation actions");
-- 
2.21.3


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH v2 net] net/sched: act_mpls: Add softdep on mpls_gso.ko
  2020-10-26 10:29 [PATCH v2 net] net/sched: act_mpls: Add softdep on mpls_gso.ko Guillaume Nault
@ 2020-10-27 17:28 ` Cong Wang
  2020-10-27 21:39   ` Guillaume Nault
  2020-10-28  0:19 ` Jakub Kicinski
  1 sibling, 1 reply; 7+ messages in thread
From: Cong Wang @ 2020-10-27 17:28 UTC (permalink / raw)
  To: Guillaume Nault
  Cc: David Miller, Jakub Kicinski, Linux Kernel Network Developers,
	Alexander Ovechkin, David Ahern

On Mon, Oct 26, 2020 at 4:23 AM Guillaume Nault <gnault@redhat.com> wrote:
>
> 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.

Any reason not to call request_module() at run time?

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH v2 net] net/sched: act_mpls: Add softdep on mpls_gso.ko
  2020-10-27 17:28 ` Cong Wang
@ 2020-10-27 21:39   ` Guillaume Nault
  2020-10-27 21:51     ` David Ahern
  2020-10-28 19:35     ` Cong Wang
  0 siblings, 2 replies; 7+ messages in thread
From: Guillaume Nault @ 2020-10-27 21:39 UTC (permalink / raw)
  To: Cong Wang
  Cc: David Miller, Jakub Kicinski, Linux Kernel Network Developers,
	Alexander Ovechkin, David Ahern

On Tue, Oct 27, 2020 at 10:28:29AM -0700, Cong Wang wrote:
> On Mon, Oct 26, 2020 at 4:23 AM Guillaume Nault <gnault@redhat.com> wrote:
> >
> > 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.
> 
> Any reason not to call request_module() at run time?

So that mpls_gso would be loaded only when initialising the
TCA_MPLS_ACT_PUSH or TCA_MPLS_ACT_MAC_PUSH modes?

That could be done, but the dependency on mpls_gso wouldn't be visible
anymore with modinfo. I don't really mind, I just felt that such
information could be important for the end user.


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH v2 net] net/sched: act_mpls: Add softdep on mpls_gso.ko
  2020-10-27 21:39   ` Guillaume Nault
@ 2020-10-27 21:51     ` David Ahern
  2020-10-28 19:35     ` Cong Wang
  1 sibling, 0 replies; 7+ messages in thread
From: David Ahern @ 2020-10-27 21:51 UTC (permalink / raw)
  To: Guillaume Nault, Cong Wang
  Cc: David Miller, Jakub Kicinski, Linux Kernel Network Developers,
	Alexander Ovechkin

On 10/27/20 3:39 PM, Guillaume Nault wrote:
> On Tue, Oct 27, 2020 at 10:28:29AM -0700, Cong Wang wrote:
>> On Mon, Oct 26, 2020 at 4:23 AM Guillaume Nault <gnault@redhat.com> wrote:
>>>
>>> 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.
>>
>> Any reason not to call request_module() at run time?
> 
> So that mpls_gso would be loaded only when initialising the
> TCA_MPLS_ACT_PUSH or TCA_MPLS_ACT_MAC_PUSH modes?
> 
> That could be done, but the dependency on mpls_gso wouldn't be visible
> anymore with modinfo. I don't really mind, I just felt that such
> information could be important for the end user.
> 

I think the explicit dependency via modinfo is better.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH v2 net] net/sched: act_mpls: Add softdep on mpls_gso.ko
  2020-10-26 10:29 [PATCH v2 net] net/sched: act_mpls: Add softdep on mpls_gso.ko Guillaume Nault
  2020-10-27 17:28 ` Cong Wang
@ 2020-10-28  0:19 ` Jakub Kicinski
  1 sibling, 0 replies; 7+ messages in thread
From: Jakub Kicinski @ 2020-10-28  0:19 UTC (permalink / raw)
  To: Guillaume Nault; +Cc: David Miller, netdev, Alexander Ovechkin, David Ahern

On Mon, 26 Oct 2020 11:29:45 +0100 Guillaume Nault wrote:
> 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 <gnault@redhat.com>

Applied, thanks!

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH v2 net] net/sched: act_mpls: Add softdep on mpls_gso.ko
  2020-10-27 21:39   ` Guillaume Nault
  2020-10-27 21:51     ` David Ahern
@ 2020-10-28 19:35     ` Cong Wang
  2020-10-28 21:45       ` Guillaume Nault
  1 sibling, 1 reply; 7+ messages in thread
From: Cong Wang @ 2020-10-28 19:35 UTC (permalink / raw)
  To: Guillaume Nault
  Cc: David Miller, Jakub Kicinski, Linux Kernel Network Developers,
	Alexander Ovechkin, David Ahern

On Tue, Oct 27, 2020 at 2:39 PM Guillaume Nault <gnault@redhat.com> wrote:
>
> On Tue, Oct 27, 2020 at 10:28:29AM -0700, Cong Wang wrote:
> > On Mon, Oct 26, 2020 at 4:23 AM Guillaume Nault <gnault@redhat.com> wrote:
> > >
> > > 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.
> >
> > Any reason not to call request_module() at run time?
>
> So that mpls_gso would be loaded only when initialising the
> TCA_MPLS_ACT_PUSH or TCA_MPLS_ACT_MAC_PUSH modes?

Yes, exactly.

>
> That could be done, but the dependency on mpls_gso wouldn't be visible
> anymore with modinfo. I don't really mind, I just felt that such
> information could be important for the end user.

I think the dependency is determined at run time based on
TCA_MPLS_ACT_*, so it should be reflected at run time, rather than at
compile time.

If loading mpls_gso even when not needed is not a big deal, I am fine
with your patch too.

Thanks.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH v2 net] net/sched: act_mpls: Add softdep on mpls_gso.ko
  2020-10-28 19:35     ` Cong Wang
@ 2020-10-28 21:45       ` Guillaume Nault
  0 siblings, 0 replies; 7+ messages in thread
From: Guillaume Nault @ 2020-10-28 21:45 UTC (permalink / raw)
  To: Cong Wang
  Cc: David Miller, Jakub Kicinski, Linux Kernel Network Developers,
	Alexander Ovechkin, David Ahern

On Wed, Oct 28, 2020 at 12:35:17PM -0700, Cong Wang wrote:
> On Tue, Oct 27, 2020 at 2:39 PM Guillaume Nault <gnault@redhat.com> wrote:
> >
> > On Tue, Oct 27, 2020 at 10:28:29AM -0700, Cong Wang wrote:
> > > On Mon, Oct 26, 2020 at 4:23 AM Guillaume Nault <gnault@redhat.com> wrote:
> > > >
> > > > 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.
> > >
> > > Any reason not to call request_module() at run time?
> >
> > So that mpls_gso would be loaded only when initialising the
> > TCA_MPLS_ACT_PUSH or TCA_MPLS_ACT_MAC_PUSH modes?
> 
> Yes, exactly.
> 
> >
> > That could be done, but the dependency on mpls_gso wouldn't be visible
> > anymore with modinfo. I don't really mind, I just felt that such
> > information could be important for the end user.
> 
> I think the dependency is determined at run time based on
> TCA_MPLS_ACT_*, so it should be reflected at run time, rather than at
> compile time.
> 
> If loading mpls_gso even when not needed is not a big deal, I am fine
> with your patch too.

Loading mpls_gso looks harmless. It just registers GSO handlers for
ETH_P_MPLS_UC and for ETH_P_MPLS_MC with a low priority.

Since we're not adding a build dependency on mpls_gso for act_mpls, I
have a slight preference for having the soft dependency being reported
by modinfo. This gives a chance to the user to figure out that mpls_gso
can be necessary.

> Thanks.
> 


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2020-10-28 22:28 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-26 10:29 [PATCH v2 net] net/sched: act_mpls: Add softdep on mpls_gso.ko Guillaume Nault
2020-10-27 17:28 ` Cong Wang
2020-10-27 21:39   ` Guillaume Nault
2020-10-27 21:51     ` David Ahern
2020-10-28 19:35     ` Cong Wang
2020-10-28 21:45       ` Guillaume Nault
2020-10-28  0:19 ` Jakub Kicinski

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.