mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
mm: don't access vm_flags as 'int'
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>
This commit is contained in:
parent
4db70f73e5
commit
ca16d140af
12 changed files with 26 additions and 23 deletions
|
@ -2833,7 +2833,7 @@ void hugetlb_change_protection(struct vm_area_struct *vma,
|
|||
int hugetlb_reserve_pages(struct inode *inode,
|
||||
long from, long to,
|
||||
struct vm_area_struct *vma,
|
||||
int acctflag)
|
||||
vm_flags_t vm_flags)
|
||||
{
|
||||
long ret, chg;
|
||||
struct hstate *h = hstate_inode(inode);
|
||||
|
@ -2843,7 +2843,7 @@ int hugetlb_reserve_pages(struct inode *inode,
|
|||
* attempt will be made for VM_NORESERVE to allocate a page
|
||||
* and filesystem quota without using reserves
|
||||
*/
|
||||
if (acctflag & VM_NORESERVE)
|
||||
if (vm_flags & VM_NORESERVE)
|
||||
return 0;
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue