Messages in this thread |  | | | Date | Wed, 18 Sep 2002 09:29:41 -0700 | | From | Andrew Morton <> | | Subject | Re: [PATCH] recognize MAP_LOCKED in mmap() call |
| |
Hubertus Franke wrote: > > Andrew, at the current time an mmap() ignores a MAP_LOCKED passed to it. > The only way we can get VM_LOCKED associated with the newly created VMA > is to have previously called mlockall() on the process which sets the > mm->def_flags != VM_LOCKED or subsequently call mlock() on the > newly created VMA. > > The attached patch checks for MAP_LOCKED being passed and if so checks > the capabilities of the process. Limit checks were already in place.
Looks sane, thanks.
It appears that MAP_LOCKED is a Linux-special, so presumably it _used_ to work. I wonder when it broke?
You patch applies to 2.4 as well; it would be useful to give that a sanity test and send a copy to Marcelo.
(SuS really only anticipates that mmap needs to look at prior mlocks in force against the address range. It also says
Process memory locking does apply to shared memory regions,
and we don't do that either. I think we should; can't see why SuS requires this.) - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |