[Bug 241489] netmap + if_vlan panics related to 'Widen NET_EPOCH coverage' work (r353292)

2019-10-30 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=241489 Aleksandr Fedorov changed: What|Removed |Added Resolution|--- |FIXED Status|In Pr

[Bug 240818] igb drivers: vlanhwfilter feature generate link UP/DOWN for each new vlan created

2019-10-30 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=240818 Kurt Jaeger changed: What|Removed |Added CC||p...@freebsd.org --- Comment #4 from

Re: How to disable tryforward ?

2019-10-30 Thread k simon
Hi, Olivier, This patch should fix ECMP forwarding as a workaround. I’ve added the “fastforwarding” sysctl knob back and set it’s default value to “1”. Value “0” would disable tryforward(). Maybe the right way is replaced fib4_lookup_nh_basic() with fib4_lookup_nh_ext() in ip_fastfwd.c, but I

[Bug 236724] igb(4): Interfaces fail to switch active to inactive state

2019-10-30 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=236724 Marius Strobl changed: What|Removed |Added Resolution|--- |FIXED Status|Open

[Bug 235524] igb(4): Ethernet interface loses active link state

2019-10-30 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=235524 Marius Strobl changed: What|Removed |Added Assignee|mar...@freebsd.org |n...@freebsd.org --- Comment #5 fr

Re: How to disable tryforward ?

2019-10-30 Thread Olivier Cochard-Labbé
On Wed, Oct 30, 2019 at 9:44 AM k simon wrote: > Hi, Andrey, > OK, I’ve got it. Radix_mpath.h file is not included in input.c. > Maybe someone can fix and commit it. Thanks for your reply! > > But does including this header file enough to fix ECMP forwarding ? ___

[Bug 241489] netmap + if_vlan panics related to 'Widen NET_EPOCH coverage' work (r353292)

2019-10-30 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=241489 --- Comment #10 from Vincenzo Maffione --- Can we close this? -- You are receiving this mail because: You are on the CC list for the bug. ___ freebsd-net@freebsd.org mailing list https://lists.f

[Bug 235524] igb(4): Ethernet interface loses active link state

2019-10-30 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=235524 --- Comment #4 from Denis Ahrens --- it happened again. but I still think is has to do with the handling of the interface state. -- You are receiving this mail because: You are on the CC list for the bug. _

Re: How to disable tryforward ?

2019-10-30 Thread k simon
"opt_bootp.h" #include "opt_ipstealth.h" #include "opt_ipsec.h" +#include "opt_mpath.h" #include "opt_route.h" #include "opt_rss.h" @@ -64,6 +65,9 @@ #include #include #include +#ifdef RADIX_MPATH +#include +#endif #include #inc