* [PATCH] Use VM_ flags in protection_map rather than magic value
@ 2007-11-06 22:11 Matt Helsley
2007-11-07 17:30 ` Hugh Dickins
0 siblings, 1 reply; 2+ messages in thread
From: Matt Helsley @ 2007-11-06 22:11 UTC (permalink / raw)
To: linux-mm; +Cc: Trivial
Replace the magic value with a mask of flags that produce the same
value. This is consistent with the other uses of protection_map[].
Signed-off-by: Matt Helsley <matthltc@us.ibm.com>
---
mm/mmap.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
Index: linux-2.6.23/mm/mmap.c
===================================================================
--- linux-2.6.23.orig/mm/mmap.c
+++ linux-2.6.23/mm/mmap.c
@@ -2245,11 +2245,12 @@ int install_special_mapping(struct mm_st
vma->vm_mm = mm;
vma->vm_start = addr;
vma->vm_end = addr + len;
vma->vm_flags = vm_flags | mm->def_flags;
- vma->vm_page_prot = protection_map[vma->vm_flags & 7];
+ vma->vm_page_prot = protection_map[vma->vm_flags &
+ (VM_READ|VM_WRITE|VM_EXEC)];
vma->vm_ops = &special_mapping_vmops;
vma->vm_private_data = pages;
if (unlikely(insert_vm_struct(mm, vma))) {
--
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/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] Use VM_ flags in protection_map rather than magic value
2007-11-06 22:11 [PATCH] Use VM_ flags in protection_map rather than magic value Matt Helsley
@ 2007-11-07 17:30 ` Hugh Dickins
0 siblings, 0 replies; 2+ messages in thread
From: Hugh Dickins @ 2007-11-07 17:30 UTC (permalink / raw)
To: Matt Helsley; +Cc: linux-mm, Trivial
On Tue, 6 Nov 2007, Matt Helsley wrote:
> Replace the magic value with a mask of flags that produce the same
> value. This is consistent with the other uses of protection_map[].
>
> Signed-off-by: Matt Helsley <matthltc@us.ibm.com>
Thanks, but this comes just a little too late: see 2.6.24-rc1 or -rc2.
Hugh
> ---
> mm/mmap.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> Index: linux-2.6.23/mm/mmap.c
> ===================================================================
> --- linux-2.6.23.orig/mm/mmap.c
> +++ linux-2.6.23/mm/mmap.c
> @@ -2245,11 +2245,12 @@ int install_special_mapping(struct mm_st
> vma->vm_mm = mm;
> vma->vm_start = addr;
> vma->vm_end = addr + len;
>
> vma->vm_flags = vm_flags | mm->def_flags;
> - vma->vm_page_prot = protection_map[vma->vm_flags & 7];
> + vma->vm_page_prot = protection_map[vma->vm_flags &
> + (VM_READ|VM_WRITE|VM_EXEC)];
>
> vma->vm_ops = &special_mapping_vmops;
> vma->vm_private_data = pages;
>
> if (unlikely(insert_vm_struct(mm, vma))) {
--
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/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-11-07 17:30 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-11-06 22:11 [PATCH] Use VM_ flags in protection_map rather than magic value Matt Helsley
2007-11-07 17:30 ` Hugh Dickins
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox