From: Paolo 'Blaisorblade' Giarrusso Date: Wed, 21 Sep 2005 16:55:39 +0000 (-0700) Subject: [PATCH] mm: add a note about partially hardcoded VM_* flags X-Git-Tag: v2.6.14-rc3~135 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7e2cff42cfac27c25202648c5c89f9171e5bc085;p=pandora-kernel.git [PATCH] mm: add a note about partially hardcoded VM_* flags Hugh made me note this line for permission checking in mprotect(): if ((newflags & ~(newflags >> 4)) & 0xf) { after figuring out what's that about, I decided it's nasty enough. Btw Hugh itself didn't like the 0xf. We can safely change it to VM_READ|VM_WRITE|VM_EXEC because we never change VM_SHARED, so no need to check that. Signed-off-by: Paolo 'Blaisorblade' Giarrusso Acked-by: Hugh Dickins Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- Reading git-diff-tree failed