Re: [Intel-gfx] [PATCH] drm/i915/gem: stop using PAGE_KERNEL_IO

2021-10-21 Thread Daniel Vetter
On Wed, Oct 20, 2021 at 02:06:25AM -0700, Lucas De Marchi wrote: > PAGE_KERNEL_IO is only defined for x86 and is the same as PAGE_KERNEL. > Use the latter since that is also available on other archs, which should > help us getting i915 there. > > This is the same that was done done in commit 80c33

[PATCH] drm/i915/gem: stop using PAGE_KERNEL_IO

2021-10-20 Thread Lucas De Marchi
PAGE_KERNEL_IO is only defined for x86 and is the same as PAGE_KERNEL. Use the latter since that is also available on other archs, which should help us getting i915 there. This is the same that was done done in commit 80c33624e472 ("io-mapping: Fixup for different names of writecombine"). Later th