* [PATCH iproute2] man/tc-mirred: don't recommend modprobe
@ 2024-01-11 19:34 Stephen Hemminger
2024-01-12 12:44 ` Jiri Pirko
0 siblings, 1 reply; 5+ messages in thread
From: Stephen Hemminger @ 2024-01-11 19:34 UTC (permalink / raw)
To: netdev; +Cc: Stephen Hemminger
Use ip link add instead of explicit modprobe.
Kernel will do correct module loading if necessary.
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
---
man/man8/tc-mirred.8 | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/man/man8/tc-mirred.8 b/man/man8/tc-mirred.8
index 38833b452d92..2d9795b1b16f 100644
--- a/man/man8/tc-mirred.8
+++ b/man/man8/tc-mirred.8
@@ -84,8 +84,7 @@ interface, it is possible to send ingress traffic through an instance of
.RS
.EX
-# modprobe ifb
-# ip link set ifb0 up
+# ip link add dev ifb0 type ifb
# tc qdisc add dev ifb0 root sfq
# tc qdisc add dev eth0 handle ffff: ingress
# tc filter add dev eth0 parent ffff: u32 \\
--
2.43.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH iproute2] man/tc-mirred: don't recommend modprobe
2024-01-11 19:34 [PATCH iproute2] man/tc-mirred: don't recommend modprobe Stephen Hemminger
@ 2024-01-12 12:44 ` Jiri Pirko
2024-01-12 17:09 ` Stephen Hemminger
0 siblings, 1 reply; 5+ messages in thread
From: Jiri Pirko @ 2024-01-12 12:44 UTC (permalink / raw)
To: Stephen Hemminger; +Cc: netdev
Thu, Jan 11, 2024 at 08:34:44PM CET, stephen@networkplumber.org wrote:
>Use ip link add instead of explicit modprobe.
>Kernel will do correct module loading if necessary.
>
>Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
>---
> man/man8/tc-mirred.8 | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
>diff --git a/man/man8/tc-mirred.8 b/man/man8/tc-mirred.8
>index 38833b452d92..2d9795b1b16f 100644
>--- a/man/man8/tc-mirred.8
>+++ b/man/man8/tc-mirred.8
>@@ -84,8 +84,7 @@ interface, it is possible to send ingress traffic through an instance of
>
> .RS
> .EX
>-# modprobe ifb
>-# ip link set ifb0 up
>+# ip link add dev ifb0 type ifb
RTNETLINK answers: File exists
You can't add "ifb0" like this, it is created implicitly on module probe
time. Pick a different name.
> # tc qdisc add dev ifb0 root sfq
> # tc qdisc add dev eth0 handle ffff: ingress
> # tc filter add dev eth0 parent ffff: u32 \\
>--
>2.43.0
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH iproute2] man/tc-mirred: don't recommend modprobe
2024-01-12 12:44 ` Jiri Pirko
@ 2024-01-12 17:09 ` Stephen Hemminger
2024-01-12 18:21 ` Jiri Pirko
0 siblings, 1 reply; 5+ messages in thread
From: Stephen Hemminger @ 2024-01-12 17:09 UTC (permalink / raw)
To: Jiri Pirko; +Cc: netdev
On Fri, 12 Jan 2024 13:44:47 +0100
Jiri Pirko <jiri@resnulli.us> wrote:
> Thu, Jan 11, 2024 at 08:34:44PM CET, stephen@networkplumber.org wrote:
> >Use ip link add instead of explicit modprobe.
> >Kernel will do correct module loading if necessary.
> >
> >Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
> >---
> > man/man8/tc-mirred.8 | 3 +--
> > 1 file changed, 1 insertion(+), 2 deletions(-)
> >
> >diff --git a/man/man8/tc-mirred.8 b/man/man8/tc-mirred.8
> >index 38833b452d92..2d9795b1b16f 100644
> >--- a/man/man8/tc-mirred.8
> >+++ b/man/man8/tc-mirred.8
> >@@ -84,8 +84,7 @@ interface, it is possible to send ingress traffic through an instance of
> >
> > .RS
> > .EX
> >-# modprobe ifb
> >-# ip link set ifb0 up
> >+# ip link add dev ifb0 type ifb
>
> RTNETLINK answers: File exists
>
> You can't add "ifb0" like this, it is created implicitly on module probe
> time. Pick a different name.
Right.
Looks like ifb is behaving differently than other devices.
For example, doing modprobe of dummy creates no device.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH iproute2] man/tc-mirred: don't recommend modprobe
2024-01-12 17:09 ` Stephen Hemminger
@ 2024-01-12 18:21 ` Jiri Pirko
2024-01-12 18:42 ` Stephen Hemminger
0 siblings, 1 reply; 5+ messages in thread
From: Jiri Pirko @ 2024-01-12 18:21 UTC (permalink / raw)
To: Stephen Hemminger; +Cc: netdev
Fri, Jan 12, 2024 at 06:09:15PM CET, stephen@networkplumber.org wrote:
>On Fri, 12 Jan 2024 13:44:47 +0100
>Jiri Pirko <jiri@resnulli.us> wrote:
>
>> Thu, Jan 11, 2024 at 08:34:44PM CET, stephen@networkplumber.org wrote:
>> >Use ip link add instead of explicit modprobe.
>> >Kernel will do correct module loading if necessary.
>> >
>> >Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
>> >---
>> > man/man8/tc-mirred.8 | 3 +--
>> > 1 file changed, 1 insertion(+), 2 deletions(-)
>> >
>> >diff --git a/man/man8/tc-mirred.8 b/man/man8/tc-mirred.8
>> >index 38833b452d92..2d9795b1b16f 100644
>> >--- a/man/man8/tc-mirred.8
>> >+++ b/man/man8/tc-mirred.8
>> >@@ -84,8 +84,7 @@ interface, it is possible to send ingress traffic through an instance of
>> >
>> > .RS
>> > .EX
>> >-# modprobe ifb
>> >-# ip link set ifb0 up
>> >+# ip link add dev ifb0 type ifb
>>
>> RTNETLINK answers: File exists
>>
>> You can't add "ifb0" like this, it is created implicitly on module probe
>> time. Pick a different name.
>
>Right.
>Looks like ifb is behaving differently than other devices.
>For example, doing modprobe of dummy creates no device.
Older drivers did do this. Bonding modprobe also created bond0 in
the past. Now it does not. I guess ifb behaviour could be changed as
well.
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH iproute2] man/tc-mirred: don't recommend modprobe
2024-01-12 18:21 ` Jiri Pirko
@ 2024-01-12 18:42 ` Stephen Hemminger
0 siblings, 0 replies; 5+ messages in thread
From: Stephen Hemminger @ 2024-01-12 18:42 UTC (permalink / raw)
To: Jiri Pirko; +Cc: netdev
On Fri, 12 Jan 2024 19:21:34 +0100
Jiri Pirko <jiri@resnulli.us> wrote:
> >>
> >> You can't add "ifb0" like this, it is created implicitly on module probe
> >> time. Pick a different name.
> >
> >Right.
> >Looks like ifb is behaving differently than other devices.
> >For example, doing modprobe of dummy creates no device.
>
> Older drivers did do this. Bonding modprobe also created bond0 in
> the past. Now it does not. I guess ifb behaviour could be changed as
> well.
In most distros, for bond and dummy, there is this from systemd.conf
options bonding max_bonds=0
options dummy numdummies=0
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-01-12 18:42 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-11 19:34 [PATCH iproute2] man/tc-mirred: don't recommend modprobe Stephen Hemminger
2024-01-12 12:44 ` Jiri Pirko
2024-01-12 17:09 ` Stephen Hemminger
2024-01-12 18:21 ` Jiri Pirko
2024-01-12 18:42 ` Stephen Hemminger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).