* Re: ixp4xx eth broken in 3.7.0/3.8-rc5? [not found] <20744.9777.937924.822371@pilspetsen.it.uu.se> @ 2013-01-30 0:11 ` Mikael Pettersson 2013-01-30 0:32 ` Xi Wang 2013-01-31 21:54 ` Krzysztof Halasa 0 siblings, 2 replies; 6+ messages in thread From: Mikael Pettersson @ 2013-01-30 0:11 UTC (permalink / raw) To: Mikael Pettersson Cc: netdev, Imre Kaloz, Xi Wang, linux-arm-kernel, Krzysztof Halasa Mikael Pettersson writes: > When I try to update my ixp4xx machine to a 3.8-rc5 kernel it boots > Ok but the network (CONFIG_IXP4XX_ETH=y) fails to come up, with the > following in the kernel log: > > net eth0: coherent DMA mask is unset > > With a 3.7.0 kernel the situation is similar, except that the "net > eth0: coherent DMA mask is unset" message repeats itself endlessly > and I can't even get in on the serial console. > > With the 3.6.0 kernel everything works perfectly. A git bisect identified the following as the culprit: > From 1a4901177574083c35fafc24c4d151c2a7c7647c Mon Sep 17 00:00:00 2001 > From: Xi Wang <xi.wang@gmail.com> > Date: Sat, 17 Nov 2012 20:25:09 +0000 > Subject: [PATCH] ixp4xx_eth: avoid calling dma_pool_create() with NULL dev > > Use &port->netdev->dev instead of NULL since dma_pool_create() doesn't > allow NULL dev. > > Signed-off-by: Xi Wang <xi.wang@gmail.com> > Cc: Andrew Morton <akpm@linux-foundation.org> > Signed-off-by: David S. Miller <davem@davemloft.net> > --- > drivers/net/ethernet/xscale/ixp4xx_eth.c | 8 +++++--- > 1 files changed, 5 insertions(+), 3 deletions(-) Reverting this unbreaks ixp4xx_eth on my ixp4xx machine with kernels 3.7.0 and 3.8-rc5. (Added cc: author and netdev.) /Mikael ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: ixp4xx eth broken in 3.7.0/3.8-rc5? 2013-01-30 0:11 ` ixp4xx eth broken in 3.7.0/3.8-rc5? Mikael Pettersson @ 2013-01-30 0:32 ` Xi Wang 2013-01-30 1:34 ` Ben Hutchings 2013-01-31 21:54 ` Krzysztof Halasa 1 sibling, 1 reply; 6+ messages in thread From: Xi Wang @ 2013-01-30 0:32 UTC (permalink / raw) To: Mikael Pettersson; +Cc: linux-arm-kernel, Imre Kaloz, Krzysztof Halasa, netdev On 1/29/13 7:11 PM, Mikael Pettersson wrote: > A git bisect identified the following as the culprit: > > > From 1a4901177574083c35fafc24c4d151c2a7c7647c Mon Sep 17 00:00:00 2001 > > From: Xi Wang <xi.wang@gmail.com> > > Date: Sat, 17 Nov 2012 20:25:09 +0000 > > Subject: [PATCH] ixp4xx_eth: avoid calling dma_pool_create() with NULL dev > > > > Use &port->netdev->dev instead of NULL since dma_pool_create() doesn't > > allow NULL dev. > > > > Signed-off-by: Xi Wang <xi.wang@gmail.com> > > Cc: Andrew Morton <akpm@linux-foundation.org> > > Signed-off-by: David S. Miller <davem@davemloft.net> > > --- > > drivers/net/ethernet/xscale/ixp4xx_eth.c | 8 +++++--- > > 1 files changed, 5 insertions(+), 3 deletions(-) > > Reverting this unbreaks ixp4xx_eth on my ixp4xx machine with kernels > 3.7.0 and 3.8-rc5. Thanks. The problem was that in init_queues(), the dma_pool_create() call requires a non-null dev. dma_pool = dma_pool_create(DRV_NAME, ??, ...); What do you think would work here? ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: ixp4xx eth broken in 3.7.0/3.8-rc5? 2013-01-30 0:32 ` Xi Wang @ 2013-01-30 1:34 ` Ben Hutchings 2013-01-30 10:11 ` Mikael Pettersson 0 siblings, 1 reply; 6+ messages in thread From: Ben Hutchings @ 2013-01-30 1:34 UTC (permalink / raw) To: Xi Wang Cc: Mikael Pettersson, linux-arm-kernel, Imre Kaloz, Krzysztof Halasa, netdev On Tue, 2013-01-29 at 19:32 -0500, Xi Wang wrote: > On 1/29/13 7:11 PM, Mikael Pettersson wrote: > > A git bisect identified the following as the culprit: > > > > > From 1a4901177574083c35fafc24c4d151c2a7c7647c Mon Sep 17 00:00:00 2001 > > > From: Xi Wang <xi.wang@gmail.com> > > > Date: Sat, 17 Nov 2012 20:25:09 +0000 > > > Subject: [PATCH] ixp4xx_eth: avoid calling dma_pool_create() with NULL dev > > > > > > Use &port->netdev->dev instead of NULL since dma_pool_create() doesn't > > > allow NULL dev. > > > > > > Signed-off-by: Xi Wang <xi.wang@gmail.com> > > > Cc: Andrew Morton <akpm@linux-foundation.org> > > > Signed-off-by: David S. Miller <davem@davemloft.net> > > > --- > > > drivers/net/ethernet/xscale/ixp4xx_eth.c | 8 +++++--- > > > 1 files changed, 5 insertions(+), 3 deletions(-) > > > > Reverting this unbreaks ixp4xx_eth on my ixp4xx machine with kernels > > 3.7.0 and 3.8-rc5. > > Thanks. The problem was that in init_queues(), the dma_pool_create() > call requires a non-null dev. > > dma_pool = dma_pool_create(DRV_NAME, ??, ...); > > What do you think would work here? For DMA purposes I would expect the right device to be the parent bus device, i.e. port->netdev->dev.parent. The driver might also need to set its DMA masks. Ben. -- Ben Hutchings, Staff Engineer, Solarflare Not speaking for my employer; that's the marketing department's job. They asked us to note that Solarflare product names are trademarked. ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: ixp4xx eth broken in 3.7.0/3.8-rc5? 2013-01-30 1:34 ` Ben Hutchings @ 2013-01-30 10:11 ` Mikael Pettersson 2013-01-30 20:50 ` Mikael Pettersson 0 siblings, 1 reply; 6+ messages in thread From: Mikael Pettersson @ 2013-01-30 10:11 UTC (permalink / raw) To: Ben Hutchings Cc: Xi Wang, Mikael Pettersson, linux-arm-kernel, Imre Kaloz, Krzysztof Halasa, netdev Ben Hutchings writes: > On Tue, 2013-01-29 at 19:32 -0500, Xi Wang wrote: > > On 1/29/13 7:11 PM, Mikael Pettersson wrote: > > > A git bisect identified the following as the culprit: > > > > > > > From 1a4901177574083c35fafc24c4d151c2a7c7647c Mon Sep 17 00:00:00 2001 > > > > From: Xi Wang <xi.wang@gmail.com> > > > > Date: Sat, 17 Nov 2012 20:25:09 +0000 > > > > Subject: [PATCH] ixp4xx_eth: avoid calling dma_pool_create() with NULL dev > > > > > > > > Use &port->netdev->dev instead of NULL since dma_pool_create() doesn't > > > > allow NULL dev. > > > > > > > > Signed-off-by: Xi Wang <xi.wang@gmail.com> > > > > Cc: Andrew Morton <akpm@linux-foundation.org> > > > > Signed-off-by: David S. Miller <davem@davemloft.net> > > > > --- > > > > drivers/net/ethernet/xscale/ixp4xx_eth.c | 8 +++++--- > > > > 1 files changed, 5 insertions(+), 3 deletions(-) > > > > > > Reverting this unbreaks ixp4xx_eth on my ixp4xx machine with kernels > > > 3.7.0 and 3.8-rc5. > > > > Thanks. The problem was that in init_queues(), the dma_pool_create() > > call requires a non-null dev. > > > > dma_pool = dma_pool_create(DRV_NAME, ??, ...); I had a look around in the 3.8-rc5 kernel source. mm/dmapool.c:dma_pool_create() needs a non-NULL dev in the CONFIG_NUMA case, because it calls dev_to_node(dev) which dereferences dev if CONFIG_NUMA. But in the non-CONFIG_NUMA case there is no dereference of dev, and in fact there is an explicit check for dev being NULL or not towards the end of dma_pool_create(). So that explains why ixp4xx works without the change: it's not NUMA. A quick grep found three calls to dma_pool_create() with a NULL dev parameter, two in drivers/usb/gadget/amd5536udc.c and one in arch/arm/mach-s3c64xx/dma.c. These would all be broken with CONFIG_NUMA but Ok otherwise. > > > > What do you think would work here? > > For DMA purposes I would expect the right device to be the parent bus > device, i.e. port->netdev->dev.parent. The driver might also need to > set its DMA masks. At least on ixp4xx the DMA masks are normally set by the platform PCI init code (it has a 64MB PCI DMA window limitation). I can give the port->netdev->dev.parent variant a try later this evening. /Mikael ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: ixp4xx eth broken in 3.7.0/3.8-rc5? 2013-01-30 10:11 ` Mikael Pettersson @ 2013-01-30 20:50 ` Mikael Pettersson 0 siblings, 0 replies; 6+ messages in thread From: Mikael Pettersson @ 2013-01-30 20:50 UTC (permalink / raw) To: Mikael Pettersson Cc: Ben Hutchings, Xi Wang, linux-arm-kernel, Imre Kaloz, Krzysztof Halasa, netdev Mikael Pettersson writes: > Ben Hutchings writes: > > On Tue, 2013-01-29 at 19:32 -0500, Xi Wang wrote: > > > On 1/29/13 7:11 PM, Mikael Pettersson wrote: > > > > A git bisect identified the following as the culprit: > > > > > > > > > From 1a4901177574083c35fafc24c4d151c2a7c7647c Mon Sep 17 00:00:00 2001 > > > > > From: Xi Wang <xi.wang@gmail.com> > > > > > Date: Sat, 17 Nov 2012 20:25:09 +0000 > > > > > Subject: [PATCH] ixp4xx_eth: avoid calling dma_pool_create() with NULL dev > > > > > > > > > > Use &port->netdev->dev instead of NULL since dma_pool_create() doesn't > > > > > allow NULL dev. > > > > > > > > > > Signed-off-by: Xi Wang <xi.wang@gmail.com> > > > > > Cc: Andrew Morton <akpm@linux-foundation.org> > > > > > Signed-off-by: David S. Miller <davem@davemloft.net> > > > > > --- > > > > > drivers/net/ethernet/xscale/ixp4xx_eth.c | 8 +++++--- > > > > > 1 files changed, 5 insertions(+), 3 deletions(-) > > > > > > > > Reverting this unbreaks ixp4xx_eth on my ixp4xx machine with kernels > > > > 3.7.0 and 3.8-rc5. > > > > > > Thanks. The problem was that in init_queues(), the dma_pool_create() > > > call requires a non-null dev. > > > > > > dma_pool = dma_pool_create(DRV_NAME, ??, ...); > > I had a look around in the 3.8-rc5 kernel source. > > mm/dmapool.c:dma_pool_create() needs a non-NULL dev in the CONFIG_NUMA case, > because it calls dev_to_node(dev) which dereferences dev if CONFIG_NUMA. > But in the non-CONFIG_NUMA case there is no dereference of dev, and in fact > there is an explicit check for dev being NULL or not towards the end of > dma_pool_create(). So that explains why ixp4xx works without the change: > it's not NUMA. > > A quick grep found three calls to dma_pool_create() with a NULL dev parameter, > two in drivers/usb/gadget/amd5536udc.c and one in arch/arm/mach-s3c64xx/dma.c. > These would all be broken with CONFIG_NUMA but Ok otherwise. > > > > > > > What do you think would work here? > > > > For DMA purposes I would expect the right device to be the parent bus > > device, i.e. port->netdev->dev.parent. The driver might also need to > > set its DMA masks. > > At least on ixp4xx the DMA masks are normally set by the platform PCI init > code (it has a 64MB PCI DMA window limitation). > > I can give the port->netdev->dev.parent variant a try later this evening. No joy, s/&port->netdev->dev/port->netdev->dev.parent/ in init_queues' call to dma_pool_create made no difference, it still fails. /Mikael ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: ixp4xx eth broken in 3.7.0/3.8-rc5? 2013-01-30 0:11 ` ixp4xx eth broken in 3.7.0/3.8-rc5? Mikael Pettersson 2013-01-30 0:32 ` Xi Wang @ 2013-01-31 21:54 ` Krzysztof Halasa 1 sibling, 0 replies; 6+ messages in thread From: Krzysztof Halasa @ 2013-01-31 21:54 UTC (permalink / raw) To: Mikael Pettersson; +Cc: netdev, Imre Kaloz, Xi Wang, linux-arm-kernel Mikael Pettersson <mikpe@it.uu.se> writes: > > When I try to update my ixp4xx machine to a 3.8-rc5 kernel it boots > > Ok but the network (CONFIG_IXP4XX_ETH=y) fails to come up, with the > > following in the kernel log: > > > > net eth0: coherent DMA mask is unset > > A git bisect identified the following as the culprit: > > > From 1a4901177574083c35fafc24c4d151c2a7c7647c Mon Sep 17 00:00:00 2001 > > From: Xi Wang <xi.wang@gmail.com> > > Date: Sat, 17 Nov 2012 20:25:09 +0000 > > Subject: [PATCH] ixp4xx_eth: avoid calling dma_pool_create() with NULL dev > > > > Use &port->netdev->dev instead of NULL since dma_pool_create() doesn't > > allow NULL dev. IIRC NULL dev in dma_pool_create() meant the usual IXP4xx mask (64MB) was used. Perhaps devices don't get a mask by default anymore. I will look at this in few days. -- Krzysztof Halasa ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2013-01-31 21:54 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20744.9777.937924.822371@pilspetsen.it.uu.se>
2013-01-30 0:11 ` ixp4xx eth broken in 3.7.0/3.8-rc5? Mikael Pettersson
2013-01-30 0:32 ` Xi Wang
2013-01-30 1:34 ` Ben Hutchings
2013-01-30 10:11 ` Mikael Pettersson
2013-01-30 20:50 ` Mikael Pettersson
2013-01-31 21:54 ` Krzysztof Halasa
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox