mm: don't access vm_flags as 'int'
authorKOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Thu, 26 May 2011 10:16:19 +0000 (19:16 +0900)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 26 May 2011 16:20:31 +0000 (09:20 -0700)
The type of vma->vm_flags is 'unsigned long'. Neither 'int' nor
'unsigned int'. This patch fixes such misuse.

Signed-off-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
[ Changed to use a typedef - we'll extend it to cover more cases
  later, since there has been discussion about making it a 64-bit
  type..                      - Linus ]
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

No differences found