* netconsole breaks netpoll on bridge @ 2014-06-16 12:51 Stefan Priebe - Profihost AG 2014-06-16 18:05 ` Cong Wang 0 siblings, 1 reply; 11+ messages in thread From: Stefan Priebe - Profihost AG @ 2014-06-16 12:51 UTC (permalink / raw) To: stephen, David Miller; +Cc: bridge, Linux Netdev List, LKML Hi, i'm using a vanilla 3.10.43 kernel and netconsole on top of a bridge. netconsole is used with vmbr0 (bridge) which is on top of bond0. If i want to add another bridge to vmbr0 is fails as long as netconsole is in use. # brctl addif vmbr0 fwpr2004p0 can't add fwpr2004p0 to bridge vmbr0: Unknown error 524 Kernel output: netpoll: (null): fwpr2004p0 doesn't support polling, aborting If i do rmmod netconsole - everything is working fine again. Greets, Stefan ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: netconsole breaks netpoll on bridge 2014-06-16 12:51 netconsole breaks netpoll on bridge Stefan Priebe - Profihost AG @ 2014-06-16 18:05 ` Cong Wang 2014-06-16 18:41 ` Stefan Priebe - Profihost AG 2014-06-17 11:35 ` Neil Horman 0 siblings, 2 replies; 11+ messages in thread From: Cong Wang @ 2014-06-16 18:05 UTC (permalink / raw) To: Stefan Priebe - Profihost AG Cc: Stephen Hemminger, Linux Netdev List, bridge, David Miller, LKML On Mon, Jun 16, 2014 at 5:51 AM, Stefan Priebe - Profihost AG <s.priebe@profihost.ag> wrote: > Hi, > > i'm using a vanilla 3.10.43 kernel and netconsole on top of a bridge. > > netconsole is used with vmbr0 (bridge) which is on top of bond0. > > If i want to add another bridge to vmbr0 is fails as long as netconsole > is in use. > > # brctl addif vmbr0 fwpr2004p0 > can't add fwpr2004p0 to bridge vmbr0: Unknown error 524 > > Kernel output: > netpoll: (null): fwpr2004p0 doesn't support polling, aborting > > If i do rmmod netconsole - everything is working fine again. > This is expected, you can't add an interface which doesn't support netpoll to a bridge which is running netpoll. You should stop netpoll before adding it. ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: netconsole breaks netpoll on bridge 2014-06-16 18:05 ` Cong Wang @ 2014-06-16 18:41 ` Stefan Priebe - Profihost AG 2014-06-16 18:51 ` Cong Wang 2014-06-17 11:35 ` Neil Horman 1 sibling, 1 reply; 11+ messages in thread From: Stefan Priebe - Profihost AG @ 2014-06-16 18:41 UTC (permalink / raw) To: Cong Wang Cc: Stephen Hemminger, David Miller, bridge@lists.linux-foundation.org, Linux Netdev List, LKML > Am 16.06.2014 um 20:05 schrieb Cong Wang <cwang@twopensource.com>: > > On Mon, Jun 16, 2014 at 5:51 AM, Stefan Priebe - Profihost AG > <s.priebe@profihost.ag> wrote: >> Hi, >> >> i'm using a vanilla 3.10.43 kernel and netconsole on top of a bridge. >> >> netconsole is used with vmbr0 (bridge) which is on top of bond0. >> >> If i want to add another bridge to vmbr0 is fails as long as netconsole >> is in use. >> >> # brctl addif vmbr0 fwpr2004p0 >> can't add fwpr2004p0 to bridge vmbr0: Unknown error 524 >> >> Kernel output: >> netpoll: (null): fwpr2004p0 doesn't support polling, aborting >> >> If i do rmmod netconsole - everything is working fine again. > > This is expected, you can't add an interface which doesn't support > netpoll to a bridge which is running netpoll. Thanks, so i can't use netconsole at a bridge used for vms? > > You should stop netpoll before adding it. How to do that? What disadvantage does this have? Thanks! Stefan ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: netconsole breaks netpoll on bridge 2014-06-16 18:41 ` Stefan Priebe - Profihost AG @ 2014-06-16 18:51 ` Cong Wang 2014-06-16 19:05 ` Stefan Priebe - Profihost AG 0 siblings, 1 reply; 11+ messages in thread From: Cong Wang @ 2014-06-16 18:51 UTC (permalink / raw) To: Stefan Priebe - Profihost AG Cc: Stephen Hemminger, Linux Netdev List, bridge@lists.linux-foundation.org, David Miller, LKML On Mon, Jun 16, 2014 at 11:41 AM, Stefan Priebe - Profihost AG <s.priebe@profihost.ag> wrote: > >> Am 16.06.2014 um 20:05 schrieb Cong Wang <cwang@twopensource.com>: >> >> On Mon, Jun 16, 2014 at 5:51 AM, Stefan Priebe - Profihost AG >> <s.priebe@profihost.ag> wrote: >>> Hi, >>> >>> i'm using a vanilla 3.10.43 kernel and netconsole on top of a bridge. >>> >>> netconsole is used with vmbr0 (bridge) which is on top of bond0. >>> >>> If i want to add another bridge to vmbr0 is fails as long as netconsole >>> is in use. >>> >>> # brctl addif vmbr0 fwpr2004p0 >>> can't add fwpr2004p0 to bridge vmbr0: Unknown error 524 >>> >>> Kernel output: >>> netpoll: (null): fwpr2004p0 doesn't support polling, aborting >>> >>> If i do rmmod netconsole - everything is working fine again. >> >> This is expected, you can't add an interface which doesn't support >> netpoll to a bridge which is running netpoll. > > Thanks, so i can't use netconsole at a bridge used for vms? You can, but you need to make sure all the devices under this bridge support netpoll. Not considering mac learning, bridge just broadcasts all the packets to its ports, if one of them doesn't support netpoll, how could it work? > >> >> You should stop netpoll before adding it. > > How to do that? What disadvantage does this have? > If you are using a redhat distro, run `service netconsole stop`. Or you can disable it via configfs, check Documentation/networking/netconsole.txt. ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: netconsole breaks netpoll on bridge 2014-06-16 18:51 ` Cong Wang @ 2014-06-16 19:05 ` Stefan Priebe - Profihost AG 2014-06-16 19:12 ` Cong Wang 0 siblings, 1 reply; 11+ messages in thread From: Stefan Priebe - Profihost AG @ 2014-06-16 19:05 UTC (permalink / raw) To: Cong Wang Cc: Stephen Hemminger, David Miller, bridge@lists.linux-foundation.org, Linux Netdev List, LKML > Am 16.06.2014 um 20:51 schrieb Cong Wang <cwang@twopensource.com>: > > On Mon, Jun 16, 2014 at 11:41 AM, Stefan Priebe - Profihost AG > <s.priebe@profihost.ag> wrote: >> >>> Am 16.06.2014 um 20:05 schrieb Cong Wang <cwang@twopensource.com>: >>> >>> On Mon, Jun 16, 2014 at 5:51 AM, Stefan Priebe - Profihost AG >>> <s.priebe@profihost.ag> wrote: >>>> Hi, >>>> >>>> i'm using a vanilla 3.10.43 kernel and netconsole on top of a bridge. >>>> >>>> netconsole is used with vmbr0 (bridge) which is on top of bond0. >>>> >>>> If i want to add another bridge to vmbr0 is fails as long as netconsole >>>> is in use. >>>> >>>> # brctl addif vmbr0 fwpr2004p0 >>>> can't add fwpr2004p0 to bridge vmbr0: Unknown error 524 >>>> >>>> Kernel output: >>>> netpoll: (null): fwpr2004p0 doesn't support polling, aborting >>>> >>>> If i do rmmod netconsole - everything is working fine again. >>> >>> This is expected, you can't add an interface which doesn't support >>> netpoll to a bridge which is running netpoll. >> >> Thanks, so i can't use netconsole at a bridge used for vms? > > You can, but you need to make sure all the devices under > this bridge support netpoll. Not considering mac learning, > bridge just broadcasts all the packets to its ports, if one of them > doesn't support netpoll, how could it work? Ok i was trying to add a veth device so this is the problematic device. >>> You should stop netpoll before adding it. >> >> How to do that? What disadvantage does this have? > > If you are using a redhat distro, run `service netconsole stop`. > > Or you can disable it via configfs, check > Documentation/networking/netconsole.txt. Ok but this means disabling netconsole nothing I want. Stefan ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: netconsole breaks netpoll on bridge 2014-06-16 19:05 ` Stefan Priebe - Profihost AG @ 2014-06-16 19:12 ` Cong Wang 2014-06-16 19:19 ` Stefan Priebe - Profihost AG 0 siblings, 1 reply; 11+ messages in thread From: Cong Wang @ 2014-06-16 19:12 UTC (permalink / raw) To: Stefan Priebe - Profihost AG Cc: Stephen Hemminger, Linux Netdev List, bridge@lists.linux-foundation.org, David Miller, LKML On Mon, Jun 16, 2014 at 12:05 PM, Stefan Priebe - Profihost AG <s.priebe@profihost.ag> wrote: > >> Am 16.06.2014 um 20:51 schrieb Cong Wang <cwang@twopensource.com>: >> >> On Mon, Jun 16, 2014 at 11:41 AM, Stefan Priebe - Profihost AG >> <s.priebe@profihost.ag> wrote: >>> >>>> Am 16.06.2014 um 20:05 schrieb Cong Wang <cwang@twopensource.com>: >>>> >>>> On Mon, Jun 16, 2014 at 5:51 AM, Stefan Priebe - Profihost AG >>>> <s.priebe@profihost.ag> wrote: >>>>> Hi, >>>>> >>>>> i'm using a vanilla 3.10.43 kernel and netconsole on top of a bridge. >>>>> >>>>> netconsole is used with vmbr0 (bridge) which is on top of bond0. >>>>> >>>>> If i want to add another bridge to vmbr0 is fails as long as netconsole >>>>> is in use. >>>>> >>>>> # brctl addif vmbr0 fwpr2004p0 >>>>> can't add fwpr2004p0 to bridge vmbr0: Unknown error 524 >>>>> >>>>> Kernel output: >>>>> netpoll: (null): fwpr2004p0 doesn't support polling, aborting >>>>> >>>>> If i do rmmod netconsole - everything is working fine again. >>>> >>>> This is expected, you can't add an interface which doesn't support >>>> netpoll to a bridge which is running netpoll. >>> >>> Thanks, so i can't use netconsole at a bridge used for vms? >> >> You can, but you need to make sure all the devices under >> this bridge support netpoll. Not considering mac learning, >> bridge just broadcasts all the packets to its ports, if one of them >> doesn't support netpoll, how could it work? > > Ok i was trying to add a veth device so this is the problematic device. > We can just add netpoll support to veth device, it should not be hard. I will work on it once net-next is open. Thanks. ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: netconsole breaks netpoll on bridge 2014-06-16 19:12 ` Cong Wang @ 2014-06-16 19:19 ` Stefan Priebe - Profihost AG 2014-06-16 21:30 ` Francois Romieu 0 siblings, 1 reply; 11+ messages in thread From: Stefan Priebe - Profihost AG @ 2014-06-16 19:19 UTC (permalink / raw) To: Cong Wang Cc: Stephen Hemminger, David Miller, bridge@lists.linux-foundation.org, Linux Netdev List, LKML > Am 16.06.2014 um 21:12 schrieb Cong Wang <cwang@twopensource.com>: > > On Mon, Jun 16, 2014 at 12:05 PM, Stefan Priebe - Profihost AG > <s.priebe@profihost.ag> wrote: >> >>> Am 16.06.2014 um 20:51 schrieb Cong Wang <cwang@twopensource.com>: >>> >>> On Mon, Jun 16, 2014 at 11:41 AM, Stefan Priebe - Profihost AG >>> <s.priebe@profihost.ag> wrote: >>>> >>>>> Am 16.06.2014 um 20:05 schrieb Cong Wang <cwang@twopensource.com>: >>>>> >>>>> On Mon, Jun 16, 2014 at 5:51 AM, Stefan Priebe - Profihost AG >>>>> <s.priebe@profihost.ag> wrote: >>>>>> Hi, >>>>>> >>>>>> i'm using a vanilla 3.10.43 kernel and netconsole on top of a bridge. >>>>>> >>>>>> netconsole is used with vmbr0 (bridge) which is on top of bond0. >>>>>> >>>>>> If i want to add another bridge to vmbr0 is fails as long as netconsole >>>>>> is in use. >>>>>> >>>>>> # brctl addif vmbr0 fwpr2004p0 >>>>>> can't add fwpr2004p0 to bridge vmbr0: Unknown error 524 >>>>>> >>>>>> Kernel output: >>>>>> netpoll: (null): fwpr2004p0 doesn't support polling, aborting >>>>>> >>>>>> If i do rmmod netconsole - everything is working fine again. >>>>> >>>>> This is expected, you can't add an interface which doesn't support >>>>> netpoll to a bridge which is running netpoll. >>>> >>>> Thanks, so i can't use netconsole at a bridge used for vms? >>> >>> You can, but you need to make sure all the devices under >>> this bridge support netpoll. Not considering mac learning, >>> bridge just broadcasts all the packets to its ports, if one of them >>> doesn't support netpoll, how could it work? >> >> Ok i was trying to add a veth device so this is the problematic device. > > We can just add netpoll support to veth device, it should not be hard. > I will work on it once net-next is open. That sounds great! Is there anything I can do or some code I can port to veth? Greets, Stefan ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: netconsole breaks netpoll on bridge 2014-06-16 19:19 ` Stefan Priebe - Profihost AG @ 2014-06-16 21:30 ` Francois Romieu 2014-06-17 6:06 ` Stefan Priebe - Profihost AG 0 siblings, 1 reply; 11+ messages in thread From: Francois Romieu @ 2014-06-16 21:30 UTC (permalink / raw) To: Stefan Priebe - Profihost AG Cc: Cong Wang, Stephen Hemminger, David Miller, bridge@lists.linux-foundation.org, Linux Netdev List, LKML Stefan Priebe - Profihost AG <s.priebe@profihost.ag> : [...] > That sounds great! Is there anything I can do or some code I can port to veth? You may add an empty handler for .ndo_poll_controller in drivers/net/veth.c and give it a try on current kernel. It should not be too bad. -- Ueimor ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: netconsole breaks netpoll on bridge 2014-06-16 21:30 ` Francois Romieu @ 2014-06-17 6:06 ` Stefan Priebe - Profihost AG 2014-06-17 11:39 ` Neil Horman 0 siblings, 1 reply; 11+ messages in thread From: Stefan Priebe - Profihost AG @ 2014-06-17 6:06 UTC (permalink / raw) To: Francois Romieu Cc: Cong Wang, Stephen Hemminger, David Miller, bridge@lists.linux-foundation.org, Linux Netdev List, LKML Am 16.06.2014 23:30, schrieb Francois Romieu: > Stefan Priebe - Profihost AG <s.priebe@profihost.ag> : > [...] >> That sounds great! Is there anything I can do or some code I can port to veth? > > You may add an empty handler for .ndo_poll_controller in drivers/net/veth.c > and give it a try on current kernel. > > It should not be too bad. > Why is an empty poll controller enough to fix it? This sounds a bit crazy to me. Greets, Stefan ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: netconsole breaks netpoll on bridge 2014-06-17 6:06 ` Stefan Priebe - Profihost AG @ 2014-06-17 11:39 ` Neil Horman 0 siblings, 0 replies; 11+ messages in thread From: Neil Horman @ 2014-06-17 11:39 UTC (permalink / raw) To: Stefan Priebe - Profihost AG Cc: Francois Romieu, Cong Wang, Stephen Hemminger, David Miller, bridge@lists.linux-foundation.org, Linux Netdev List, LKML On Tue, Jun 17, 2014 at 08:06:58AM +0200, Stefan Priebe - Profihost AG wrote: > Am 16.06.2014 23:30, schrieb Francois Romieu: > > Stefan Priebe - Profihost AG <s.priebe@profihost.ag> : > > [...] > >> That sounds great! Is there anything I can do or some code I can port to veth? > > > > You may add an empty handler for .ndo_poll_controller in drivers/net/veth.c > > and give it a try on current kernel. > > > > It should not be too bad. > > > Why is an empty poll controller enough to fix it? This sounds a bit > crazy to me. > Because the presence of a non-null poll_controller method is how we determine if a device supports netpoll. Most devices require a ndo_poll_controller function to simulate an interrupt for receiving packets, but virtual devices really don't, so an empty function sufficies to get the device recognized as having netpoll support. See tun_poll_controller as an example Neil > > Greets, > Stefan > -- > To unsubscribe from this list: send the line "unsubscribe netdev" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: netconsole breaks netpoll on bridge 2014-06-16 18:05 ` Cong Wang 2014-06-16 18:41 ` Stefan Priebe - Profihost AG @ 2014-06-17 11:35 ` Neil Horman 1 sibling, 0 replies; 11+ messages in thread From: Neil Horman @ 2014-06-17 11:35 UTC (permalink / raw) To: Cong Wang Cc: Stefan Priebe - Profihost AG, Stephen Hemminger, David Miller, bridge, Linux Netdev List, LKML On Mon, Jun 16, 2014 at 11:05:57AM -0700, Cong Wang wrote: > On Mon, Jun 16, 2014 at 5:51 AM, Stefan Priebe - Profihost AG > <s.priebe@profihost.ag> wrote: > > Hi, > > > > i'm using a vanilla 3.10.43 kernel and netconsole on top of a bridge. > > > > netconsole is used with vmbr0 (bridge) which is on top of bond0. > > > > If i want to add another bridge to vmbr0 is fails as long as netconsole > > is in use. > > > > # brctl addif vmbr0 fwpr2004p0 > > can't add fwpr2004p0 to bridge vmbr0: Unknown error 524 > > > > Kernel output: > > netpoll: (null): fwpr2004p0 doesn't support polling, aborting > > > > If i do rmmod netconsole - everything is working fine again. > > > > This is expected, you can't add an interface which doesn't support > netpoll to a bridge which is running netpoll. > > You should stop netpoll before adding it. Or alternatively, update the driver for the fwpr2004p0 to support netpoll, and you'll be able to add it with netpoll running Neil > -- > To unsubscribe from this list: send the line "unsubscribe netdev" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2014-06-17 11:40 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2014-06-16 12:51 netconsole breaks netpoll on bridge Stefan Priebe - Profihost AG 2014-06-16 18:05 ` Cong Wang 2014-06-16 18:41 ` Stefan Priebe - Profihost AG 2014-06-16 18:51 ` Cong Wang 2014-06-16 19:05 ` Stefan Priebe - Profihost AG 2014-06-16 19:12 ` Cong Wang 2014-06-16 19:19 ` Stefan Priebe - Profihost AG 2014-06-16 21:30 ` Francois Romieu 2014-06-17 6:06 ` Stefan Priebe - Profihost AG 2014-06-17 11:39 ` Neil Horman 2014-06-17 11:35 ` Neil Horman
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).