Skip to content

Commit eeb8ac8

Browse files
committed
Revert "mm: rename call_mmap/mmap_prepare to vfs_mmap/mmap_prepare"
JIRA: https://issues.redhat.com/browse/RHEL-113577 Upstream Status: RHEL only This reverts commit 20ca475. This commit was backported automatically as part of the DRM backport. This tree still uses vfs_mmap() and mmap_prepare(). Use the previous function names. NOTE: This commit does not compile due to missing RHEL-specific fix-ups, which are split out into separate Git commits following this one. If git bisect selected this commit, run "git bisect skip" and try again. Repeat this until it selects a commit which compiles. Signed-off-by: José Expósito <jexposit@redhat.com>
1 parent c813457 commit eeb8ac8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ static int i915_gem_dmabuf_mmap(struct dma_buf *dma_buf, struct vm_area_struct *
105105
if (!obj->base.filp)
106106
return -ENODEV;
107107

108-
ret = vfs_mmap(obj->base.filp, vma);
108+
ret = call_mmap(obj->base.filp, vma);
109109
if (ret)
110110
return ret;
111111

0 commit comments

Comments
 (0)