diff options
Diffstat (limited to 'mm/mlock.c')
| -rw-r--r-- | mm/mlock.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/mm/mlock.c b/mm/mlock.c index 516b2c2ddd5..048260c4e02 100644 --- a/mm/mlock.c +++ b/mm/mlock.c @@ -307,13 +307,13 @@ void munlock_vma_pages_range(struct vm_area_struct *vma,   * For vmas that pass the filters, merge/split as appropriate.   */  static int mlock_fixup(struct vm_area_struct *vma, struct vm_area_struct **prev, -	unsigned long start, unsigned long end, unsigned int newflags) +	unsigned long start, unsigned long end, vm_flags_t newflags)  {  	struct mm_struct *mm = vma->vm_mm;  	pgoff_t pgoff;  	int nr_pages;  	int ret = 0; -	int lock = newflags & VM_LOCKED; +	int lock = !!(newflags & VM_LOCKED);  	if (newflags == vma->vm_flags || (vma->vm_flags & VM_SPECIAL) ||  	    is_vm_hugetlb_page(vma) || vma == get_gate_vma(current->mm)) @@ -385,7 +385,7 @@ static int do_mlock(unsigned long start, size_t len, int on)  		prev = vma;  	for (nstart = start ; ; ) { -		unsigned int newflags; +		vm_flags_t newflags;  		/* Here we know that  vma->vm_start <= nstart < vma->vm_end. */ @@ -524,7 +524,7 @@ static int do_mlockall(int flags)  		goto out;  	for (vma = current->mm->mmap; vma ; vma = prev->vm_next) { -		unsigned int newflags; +		vm_flags_t newflags;  		newflags = vma->vm_flags | VM_LOCKED;  		if (!(flags & MCL_CURRENT))  |