On Sun, 14 Dec 2003, Peter Horton wrote: > > > > Just document it as a bug in the user program if this causes problems. > > Don't blame the kernel - the kernel is only doing what the user asked it > > to do. > > I've seen code written for X86 use MAP_FIXED to create self wrapping > ring buffers. Surely it's better to fail the mmap() on other archs > rather than for the code to fail in unexpected ways? Yes and no. In _that_ case it would clearly be polite to just fail the mmap(). No question about that - it's always nice if the kernel can find problems early rather than late. However, there are other ways you can screw yourself in user space, and I'm not convinced it is always wrong to create a unaligned shared mapping. For example, I can see that being useful exactly because you want to write some CPU test in user space, for example. So I'm generally opposed to the kernel saying "you can't do that" if there isn't some really fundamental reason (security or stability) for it to be really a no-no. It's often better to give the user rope to hang himself: that rope might be used for interesting things too. > It's a bug either way ... either the test should be fixed up or it > should be removed from arch_get_unmapped_area() to save confusion. I agree that we might as well remove it, but it's not 2.6.x material. Linus