Re: [PATCH v4][RESENT] add MAP_UNLOCKED mmap flag

From: Chris Wright
Date: Tue Jan 12 2010 - 18:22:23 EST


* Gleb Natapov (gleb@xxxxxxxxxx) wrote:
> v3->v4
> - return error if MAP_LOCKED | MAP_UNLOCKED is specified
...
> --- a/mm/mmap.c
> +++ b/mm/mmap.c
> @@ -962,6 +962,12 @@ unsigned long do_mmap_pgoff(struct file *file, unsigned long addr,
> if (!can_do_mlock())
> return -EPERM;
>
> + if (flags & MAP_UNLOCKED)
> + vm_flags &= ~VM_LOCKED;
> +
> + if (flags & MAP_UNLOCKED)
> + vm_flags &= ~VM_LOCKED;
> +
> /* mlock MCL_FUTURE? */
> if (vm_flags & VM_LOCKED) {
> unsigned long locked, lock_limit;

Looks like same patch applied twice rather than adding the
(MAP_LOCKED | MAP_UNLOCKED) check.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/