]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/blame - pending-4.19/nouveau-fix-build-with-config_nouveau_legacy_ctx_support-disabled.patch
move existing queues out of the way for the moment...
[thirdparty/kernel/stable-queue.git] / pending-4.19 / nouveau-fix-build-with-config_nouveau_legacy_ctx_support-disabled.patch
CommitLineData
6fa1c118
GKH
1From 0d91b155a7f9c1f4a2b360bc2b79dc728aee8b48 Mon Sep 17 00:00:00 2001
2From: Thomas Backlund <tmb@mageia.org>
3Date: Sat, 15 Jun 2019 12:22:44 +0300
4Subject: nouveau: Fix build with CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT disabled
5
6From: Thomas Backlund <tmb@mageia.org>
7
8Not-entirely-upstream-sha1-but-equivalent: bed2dd8421
9("drm/ttm: Quick-test mmap offset in ttm_bo_mmap()")
10
11Setting CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT=n (added by commit: b30a43ac7132)
12causes the build to fail with:
13
14ERROR: "drm_legacy_mmap" [drivers/gpu/drm/nouveau/nouveau.ko] undefined!
15
16This does not happend upstream as the offending code got removed in:
17bed2dd8421 ("drm/ttm: Quick-test mmap offset in ttm_bo_mmap()")
18
19Fix that by adding check for CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT around
20the drm_legacy_mmap() call.
21
22Also, as Sven Joachim pointed out, we need to make the check in
23CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT=n case return -EINVAL as its done
24for basically all other gpu drivers, especially in upstream kernels
25drivers/gpu/drm/ttm/ttm_bo_vm.c as of the upstream commit bed2dd8421.
26
27NOTE. This is a minimal stable-only fix for trees where b30a43ac7132 is
28backported as the build error affects nouveau only.
29
30Fixes: b30a43ac7132 ("drm/nouveau: add kconfig option to turn off nouveau
31 legacy contexts. (v3)")
32Signed-off-by: Thomas Backlund <tmb@mageia.org>
33Cc: stable@vger.kernel.org
34Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
35Cc: Sven Joachim <svenjoac@gmx.de>
36Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
37---
38 drivers/gpu/drm/nouveau/nouveau_ttm.c | 4 ++++
39 1 file changed, 4 insertions(+)
40
41--- a/drivers/gpu/drm/nouveau/nouveau_ttm.c
42+++ b/drivers/gpu/drm/nouveau/nouveau_ttm.c
43@@ -169,7 +169,11 @@ nouveau_ttm_mmap(struct file *filp, stru
44 struct nouveau_drm *drm = nouveau_drm(file_priv->minor->dev);
45
46 if (unlikely(vma->vm_pgoff < DRM_FILE_PAGE_OFFSET))
47+#if defined(CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT)
48 return drm_legacy_mmap(filp, vma);
49+#else
50+ return -EINVAL;
51+#endif
52
53 return ttm_bo_mmap(filp, vma, &drm->ttm.bdev);
54 }