diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2019-04-04 12:23:05 -0400 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@gmail.com> | 2019-04-04 12:23:05 -0400 |
commit | 205c9579902e609f41e67c420b87b80b7eee9b40 (patch) | |
tree | 3468303ac77a22082c151351a9f3df55378cca3c | |
parent | b74794289d8340f275b793aa1d152fd6e4dee691 (diff) |
fixup! Propagate gfp_t when allocating pte entries from __vmalloc
-rw-r--r-- | drivers/staging/media/ipu3/ipu3-dmamap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/media/ipu3/ipu3-dmamap.c b/drivers/staging/media/ipu3/ipu3-dmamap.c index 93a393d4e15e..57ac374620cd 100644 --- a/drivers/staging/media/ipu3/ipu3-dmamap.c +++ b/drivers/staging/media/ipu3/ipu3-dmamap.c @@ -136,7 +136,7 @@ void *ipu3_dmamap_alloc(struct imgu_device *imgu, struct ipu3_css_map *map, map->vma->pages = pages; /* And map it in KVA */ - if (map_vm_area(map->vma, PAGE_KERNEL, pages)) + if (map_vm_area(map->vma, GFP_KERNEL, PAGE_KERNEL, pages)) goto out_vunmap; map->size = size; |