Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c752b567 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "android: binder: use VM_ALLOC to get vm area"

parents 7dc206c4 ce8c25c4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -669,7 +669,7 @@ int binder_alloc_mmap_handler(struct binder_alloc *alloc,
		goto err_already_mapped;
	}

	area = get_vm_area(vma->vm_end - vma->vm_start, VM_IOREMAP);
	area = get_vm_area(vma->vm_end - vma->vm_start, VM_ALLOC);
	if (area == NULL) {
		ret = -ENOMEM;
		failure_string = "get_vm_area";