Re: 2.6.25-mm1

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Arjan van de Ven
Date: Saturday, April 19, 2008 - 11:21 am

On Fri, 18 Apr 2008 20:29:25 -0700
Andrew Morton <akpm@linux-foundation.org> wrote:


it got added with a full changelog, then temporary removed and then added back ;(


calling ioremap() on something which COULD be ram is... REALLY nasty.
The kernel has to mark that page uncached, for all users and mappings of that memory.
A second hard case then is to find out when the last ioremap() user has
released that memory (since there's several cases where different parts of the same
4K page can be ioremapped) before it can map it cached again. The good news is that
until this olpc patch got in, there were no users of this capability....
Instead of outright forbidding it though we added a warn_on to find out if the
assumption of no users was correct... 
seems it caught some new code which is trying to do this here.

this code should probably be a lot more careful and check that
1) there is no actual kernel memory or something else at this region
   (what if there's some other device there? this code could blow up)
2) the machine won't tripple fault or otherwise throw tantrums if
   this hardcoded value is accessed (not automatic on x86!!)
3) it only runs if there's a really high degree of confidence that this really is
   an OLPC device.
or maybe
4) get this address from some other table or system provided resource




-- 
If you want to reach me at my work email, use arjan@linux.intel.com
For development, discussion and tips for power savings, 
visit http://www.lesswatts.org
--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
2.6.25-mm1, Andrew Morton, (Fri Apr 18, 1:47 am)
[PATCH] 2.6.25-mm1 - Build Failure with PWRficient onchip ..., Kamalesh Babulal, (Fri Apr 18, 4:26 am)
StackProtector Oopses - Re: 2.6.25-mm1, Reuben Farrelly, (Fri Apr 18, 6:02 am)
Re: StackProtector Oopses - Re: 2.6.25-mm1, Ingo Molnar, (Fri Apr 18, 6:36 am)
Re: StackProtector Oopses - Re: 2.6.25-mm1, Arjan van de Ven, (Fri Apr 18, 6:51 am)
Re: StackProtector Oopses - Re: 2.6.25-mm1, Reuben Farrelly, (Fri Apr 18, 7:41 am)
Re: StackProtector Oopses - Re: 2.6.25-mm1, Reuben Farrelly, (Fri Apr 18, 7:49 am)
Re: 2.6.25-mm1 (build error: driver core), Randy Dunlap, (Fri Apr 18, 9:40 am)
Re: 2.6.25-mm1 (build error: trace selftest), Randy Dunlap, (Fri Apr 18, 9:45 am)
Re: 2.6.25-mm1 (build error: driver core), Greg KH, (Fri Apr 18, 9:56 am)
Re: 2.6.25-mm1 (build error: driver core), Dan Williams, (Fri Apr 18, 11:38 am)
Re: 2.6.25-mm1, Valdis.Kletnieks, (Fri Apr 18, 1:14 pm)
2.6.25-mm1: orphaned files after build, Alexey Dobriyan, (Fri Apr 18, 4:09 pm)
Re: 2.6.25-mm1, Joseph Fannin, (Fri Apr 18, 7:13 pm)
Re: 2.6.25-mm1, Joseph Fannin, (Fri Apr 18, 7:25 pm)
Re: 2.6.25-mm1, Andrew Morton, (Fri Apr 18, 8:02 pm)
Re: 2.6.25-mm1, Andrew Morton, (Fri Apr 18, 8:08 pm)
Re: 2.6.25-mm1, Joseph Fannin, (Fri Apr 18, 8:10 pm)
Re: 2.6.25-mm1, Andrew Morton, (Fri Apr 18, 8:29 pm)
Re: 2.6.25-mm1, Dmitry Torokhov, (Fri Apr 18, 9:14 pm)
Re: 2.6.25-mm1, Andrew Morton, (Fri Apr 18, 9:29 pm)
Re: 2.6.25-mm1, Joseph Fannin, (Fri Apr 18, 11:33 pm)
Re: 2.6.25-mm1, Andres Salomon, (Sat Apr 19, 6:25 am)
Re: 2.6.25-mm1, Andrew Morton, (Sat Apr 19, 10:38 am)
[PATCH 1/2] OLPC: Add support for calling into Open Firmware, Andres Salomon, (Sat Apr 19, 10:39 am)
[PATCH 2/2] OLPC: drop pre-OpenFirmware workarounds, Andres Salomon, (Sat Apr 19, 10:39 am)
Re: 2.6.25-mm1, Andres Salomon, (Sat Apr 19, 10:50 am)
Re: 2.6.25-mm1, Arjan van de Ven, (Sat Apr 19, 11:21 am)
internal compiler error: SIGSEGV [Was: 2.6.25-mm1], Jiri Slaby, (Sun Apr 20, 4:29 am)
[Was: 2.6.25-mm1], Jiri Slaby, (Mon Apr 21, 1:31 am)
Re: [Was: 2.6.25-mm1], Al Viro, (Mon Apr 21, 2:06 am)
fault in __d_lookup [Was: 2.6.25-mm1], Jiri Slaby, (Mon Apr 21, 2:37 am)
Re: fault in __d_lookup [Was: 2.6.25-mm1], Al Viro, (Mon Apr 21, 2:45 am)
Re: fault in __d_lookup [Was: 2.6.25-mm1], Jiri Slaby, (Mon Apr 21, 2:59 am)
Re: 2.6.25-mm1, Takashi Iwai, (Mon Apr 21, 4:07 am)
Re: fault in __d_lookup [Was: 2.6.25-mm1], Rafael J. Wysocki, (Mon Apr 21, 6:42 am)
Re: 2.6.25-mm1, Takashi Iwai, (Mon Apr 21, 7:06 am)
Re: 2.6.25-mm1, Jordan Crouse, (Mon Apr 21, 7:56 am)
Re: OLPC: Add support for calling into Open Firmware, H. Peter Anvin, (Mon Apr 21, 7:58 am)
Re: 2.6.25-mm1, Andres Salomon, (Mon Apr 21, 8:05 am)
Re: OLPC: Add support for calling into Open Firmware, Jordan Crouse, (Mon Apr 21, 8:05 am)
Re: StackProtector Oopses - Re: 2.6.25-mm1, Ingo Molnar, (Mon Apr 21, 8:06 am)
Re: 2.6.25-mm1, Jordan Crouse, (Mon Apr 21, 8:12 am)
Re: fault in __d_lookup [Was: 2.6.25-mm1], Matthew Wilcox, (Mon Apr 21, 10:23 am)
Re: 2.6.25-mm1 (snd-pcsp causes driver conflict), Stas Sergeev, (Mon Apr 21, 10:44 am)
Re: 2.6.25-mm1 (snd-pcsp doesn't like DEBUG_PAGEALLOC), Stas Sergeev, (Mon Apr 21, 10:55 am)
Re: 2.6.25-mm1, Stas Sergeev, (Mon Apr 21, 12:45 pm)
Re: OLPC: only check for OFW signature on VSA-less Geodes, Jordan Crouse, (Mon Apr 21, 2:17 pm)
Re: StackProtector Oopses - Re: 2.6.25-mm1, Arjan van de Ven, (Mon Apr 21, 6:48 pm)
Re: StackProtector Oopses - Re: 2.6.25-mm1, Valdis.Kletnieks, (Mon Apr 21, 7:04 pm)
Re: StackProtector Oopses - Re: 2.6.25-mm1, Ingo Molnar, (Tue Apr 22, 1:34 am)
Re: 2.6.25-mm1 (snd-pcsp causes driver conflict), Takashi Iwai, (Tue Apr 22, 3:09 am)
Re: 2.6.25-mm1 (snd-pcsp doesn't like DEBUG_PAGEALLOC), Takashi Iwai, (Tue Apr 22, 3:13 am)
Re: 2.6.25-mm1 (snd-pcsp doesn't like DEBUG_PAGEALLOC), Dmitry Torokhov, (Tue Apr 22, 7:01 am)
Re: StackProtector Oopses - Re: 2.6.25-mm1, Arjan van de Ven, (Tue Apr 22, 7:29 am)
Re: 2.6.25-mm1 (snd-pcsp doesn't like DEBUG_PAGEALLOC), Stas Sergeev, (Tue Apr 22, 9:42 am)
Re: 2.6.25-mm1 (snd-pcsp causes driver conflict), Stas Sergeev, (Tue Apr 22, 10:54 am)
Re: 2.6.25-mm1 (snd-pcsp doesn't like DEBUG_PAGEALLOC), Stas Sergeev, (Tue Apr 22, 11:31 am)
Re: 2.6.25-mm1 (snd-pcsp doesn't like DEBUG_PAGEALLOC), Takashi Iwai, (Wed Apr 23, 1:49 am)
Re: 2.6.25-mm1 (snd-pcsp causes driver conflict), Takashi Iwai, (Wed Apr 23, 1:55 am)
Re: 2.6.25-mm1 (snd-pcsp causes driver conflict), Takashi Iwai, (Wed Apr 23, 7:14 am)
Re: 2.6.25-mm1 (snd-pcsp doesn't like DEBUG_PAGEALLOC), Takashi Iwai, (Wed Apr 23, 7:18 am)
Re: 2.6.25-mm1 (snd-pcsp doesn't like DEBUG_PAGEALLOC), Stas Sergeev, (Wed Apr 23, 1:02 pm)
Re: 2.6.25-mm1 (snd-pcsp doesn't like DEBUG_PAGEALLOC), Takashi Iwai, (Thu Apr 24, 2:40 am)
Re: 2.6.25-mm1 (snd-pcsp doesn't like DEBUG_PAGEALLOC), Stas Sergeev, (Thu Apr 24, 8:51 pm)
Re: 2.6.25-mm1 (snd-pcsp doesn't like DEBUG_PAGEALLOC), Takashi Iwai, (Thu Apr 24, 11:28 pm)
Re: 2.6.25-mm1 (snd-pcsp doesn't like DEBUG_PAGEALLOC), Stas Sergeev, (Fri Apr 25, 9:45 am)
Re: 2.6.25-mm1 (snd-pcsp doesn't like DEBUG_PAGEALLOC), Takashi Iwai, (Fri Apr 25, 9:51 am)
Re: 2.6.25-mm1 (snd-pcsp doesn't like DEBUG_PAGEALLOC), Stas Sergeev, (Fri Apr 25, 10:25 am)
Re: 2.6.25-mm1 (snd-pcsp doesn't like DEBUG_PAGEALLOC), Dmitry Torokhov, (Fri Apr 25, 11:09 am)
Re: 2.6.25-mm1 (snd-pcsp doesn't like DEBUG_PAGEALLOC), Stas Sergeev, (Fri Apr 25, 11:31 am)
Re: 2.6.25-mm1 (snd-pcsp doesn't like DEBUG_PAGEALLOC), Dmitry Torokhov, (Fri Apr 25, 11:37 am)
Re: 2.6.25-mm1 (snd-pcsp doesn't like DEBUG_PAGEALLOC), Takashi Iwai, (Fri May 2, 9:44 am)
Re: 2.6.25-mm1 (snd-pcsp doesn't like DEBUG_PAGEALLOC), Stas Sergeev, (Fri May 2, 9:57 am)
Re: 2.6.25-mm1 (snd-pcsp doesn't like DEBUG_PAGEALLOC), Takashi Iwai, (Tue May 6, 3:20 am)
Re: 2.6.25-mm1 (snd-pcsp doesn't like DEBUG_PAGEALLOC), Stas Sergeev, (Tue May 6, 9:51 am)