* Re: flatmem broken for nommu? [Was: Re: does non-continuous RAM means I need to select the sparse memory model?] [not found] ` <20111201105718.GJ26618@pengutronix.de> @ 2011-12-01 15:39 ` Uwe Kleine-König 2011-12-01 16:10 ` Stefan Hellermann 0 siblings, 1 reply; 3+ messages in thread From: Uwe Kleine-König @ 2011-12-01 15:39 UTC (permalink / raw) To: linux-mm, Yinghai Lu, Stefan Hellermann, akpm; +Cc: linux-arm-kernel Hello, On Thu, Dec 01, 2011 at 11:57:18AM +0100, Uwe Kleine-Konig wrote: > On Tue, Nov 29, 2011 at 10:39:10PM -0200, Fabio Estevam wrote: > > 2011/11/29 Uwe Kleine-Konig <u.kleine-koenig@pengutronix.de>: > > > Hello, > > > > > > I'm currently working on a new arch port and my current machine has RAM > > > at 0x10000000 and 0x80000000. So there is a big hole between the two > > > banks. When selecting the sparse memory model it works, but when > > > selecting flat the machine runs into a BUG in mark_bootmem() called by > > > free_unused_memmap() to free the space between the two banks. > > > > My understanding is that you have to select ARCH_HAS_HOLES_MEMORYMODEL. > I think that is not necessary. > > > > Is that expected (meaning I cannot use the flat model)? I currently > > > don't have another machine handy that has >1 memory back to test that. > > > > In case you have access to a MX35PDK you can try on this board as it does have > > the memory hole. > No I havn't, but I just used a 128MB machine and changed that in the > .fixup callback to 64MB + 32MB with a 32MB hole in between and it works > fine without ARCH_HAS_HOLES_MEMORYMODEL. > > I debugged the problem a bit further and one symptom is that > > struct page *mem_map > > is NULL for me. That looks wrong. I guess this is just broken for nommu. > I will dig into that later today. The problem is that the memory for mem_map is allocated using: map = alloc_bootmem_node_nopanic(pgdat, size); without any error checking. The _nopanic was introduced by commit 8f389a99 (mm: use alloc_bootmem_node_nopanic() on really needed path) I don't understand the commit's log and don't really see why it should be allowed to not panic if the allocation failes here but use a NULL pointer instead. I put the people involved in 8f389a99 on Cc, maybe someone can comment? Apart from that it seems I cannot use flatmem as is on my machine. It has only 128kiB@0x10000000 + 1MiB@0x80000000 and needs 14MiB to hold the table of "struct page"s. :-( Best regards Uwe -- Pengutronix e.K. | Uwe Kleine-Konig | Industrial Linux Solutions | http://www.pengutronix.de/ | -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/ Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: flatmem broken for nommu? [Was: Re: does non-continuous RAM means I need to select the sparse memory model?] 2011-12-01 15:39 ` flatmem broken for nommu? [Was: Re: does non-continuous RAM means I need to select the sparse memory model?] Uwe Kleine-König @ 2011-12-01 16:10 ` Stefan Hellermann 2011-12-01 20:18 ` Uwe Kleine-König 0 siblings, 1 reply; 3+ messages in thread From: Stefan Hellermann @ 2011-12-01 16:10 UTC (permalink / raw) To: Uwe Kleine-König; +Cc: linux-mm, Yinghai Lu, akpm, linux-arm-kernel Am 01.12.2011 16:39, schrieb Uwe Kleine-Konig: > Hello, > > On Thu, Dec 01, 2011 at 11:57:18AM +0100, Uwe Kleine-Konig wrote: >> On Tue, Nov 29, 2011 at 10:39:10PM -0200, Fabio Estevam wrote: >>> 2011/11/29 Uwe Kleine-Konig <u.kleine-koenig@pengutronix.de>: >>>> Hello, >>>> >>>> I'm currently working on a new arch port and my current machine has RAM >>>> at 0x10000000 and 0x80000000. So there is a big hole between the two >>>> banks. When selecting the sparse memory model it works, but when >>>> selecting flat the machine runs into a BUG in mark_bootmem() called by >>>> free_unused_memmap() to free the space between the two banks. >>> >>> My understanding is that you have to select ARCH_HAS_HOLES_MEMORYMODEL. >> I think that is not necessary. >> >>>> Is that expected (meaning I cannot use the flat model)? I currently >>>> don't have another machine handy that has >1 memory back to test that. >>> >>> In case you have access to a MX35PDK you can try on this board as it does have >>> the memory hole. >> No I havn't, but I just used a 128MB machine and changed that in the >> .fixup callback to 64MB + 32MB with a 32MB hole in between and it works >> fine without ARCH_HAS_HOLES_MEMORYMODEL. >> >> I debugged the problem a bit further and one symptom is that >> >> struct page *mem_map >> >> is NULL for me. That looks wrong. I guess this is just broken for nommu. >> I will dig into that later today. > The problem is that the memory for mem_map is allocated using: > > map = alloc_bootmem_node_nopanic(pgdat, size); > > without any error checking. The _nopanic was introduced by commit > > 8f389a99 (mm: use alloc_bootmem_node_nopanic() on really needed path) > > I don't understand the commit's log and don't really see why it should > be allowed to not panic if the allocation failes here but use a NULL > pointer instead. > I put the people involved in 8f389a99 on Cc, maybe someone can comment? > > Apart from that it seems I cannot use flatmem as is on my machine. It > has only 128kiB@0x10000000 + 1MiB@0x80000000 and needs 14MiB to hold the > table of "struct page"s. :-( > > Best regards > Uwe > The commit was made after an bug report from me. I have an old x86 tablet pc with only 8Mb Ram. This machine fails early on bootup without this commit. I found an archived message of the bug report here: http://comments.gmane.org/gmane.linux.kernel/1135909 Regards, Stefan -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/ Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: flatmem broken for nommu? [Was: Re: does non-continuous RAM means I need to select the sparse memory model?] 2011-12-01 16:10 ` Stefan Hellermann @ 2011-12-01 20:18 ` Uwe Kleine-König 0 siblings, 0 replies; 3+ messages in thread From: Uwe Kleine-König @ 2011-12-01 20:18 UTC (permalink / raw) To: Stefan Hellermann; +Cc: linux-mm, Yinghai Lu, akpm, linux-arm-kernel Hello Stefan, On Thu, Dec 01, 2011 at 05:10:23PM +0100, Stefan Hellermann wrote: > Am 01.12.2011 16:39, schrieb Uwe Kleine-Konig: > > The problem is that the memory for mem_map is allocated using: > > > > map = alloc_bootmem_node_nopanic(pgdat, size); > > > > without any error checking. The _nopanic was introduced by commit > > > > 8f389a99 (mm: use alloc_bootmem_node_nopanic() on really needed path) > > > > I don't understand the commit's log and don't really see why it should > > be allowed to not panic if the allocation failes here but use a NULL > > pointer instead. > > I put the people involved in 8f389a99 on Cc, maybe someone can comment? > > > > Apart from that it seems I cannot use flatmem as is on my machine. It > > has only 128kiB@0x10000000 + 1MiB@0x80000000 and needs 14MiB to hold the > > table of "struct page"s. :-( > > > > Best regards > > Uwe > > > The commit was made after an bug report from me. I have an old x86 > tablet pc with only 8Mb Ram. This machine fails early on bootup without > this commit. I found an archived message of the bug report here: > http://comments.gmane.org/gmane.linux.kernel/1135909 I saw that, too, but still I think that at least the last hunk in this patch is wrong. (I didn't check the others.) For me the allocation for mem_map failed and instead of handling the error somehow (be it a panic or not) just using NULL isn't nice. Best regards Uwe -- Pengutronix e.K. | Uwe Kleine-Konig | Industrial Linux Solutions | http://www.pengutronix.de/ | -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/ Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-12-01 20:18 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20111129203010.GA26618@pengutronix.de>
[not found] ` <CAOMZO5DX_ZvCOu+pqZpJ7Ni2B=qmSFCZTHnuzKt==OsBsJZH=Q@mail.gmail.com>
[not found] ` <20111201105718.GJ26618@pengutronix.de>
2011-12-01 15:39 ` flatmem broken for nommu? [Was: Re: does non-continuous RAM means I need to select the sparse memory model?] Uwe Kleine-König
2011-12-01 16:10 ` Stefan Hellermann
2011-12-01 20:18 ` Uwe Kleine-König
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).