Patch "media: ivtv: fix build for UML" has been added to the 5.14-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    media: ivtv: fix build for UML

to the 5.14-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     media-ivtv-fix-build-for-uml.patch
and it can be found in the queue-5.14 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 738e58c36bce3b00f1b4b6f1486e1ee41a5a9688
Author: Randy Dunlap <rdunlap@xxxxxxxxxxxxx>
Date:   Sun Oct 10 20:38:36 2021 +0100

    media: ivtv: fix build for UML
    
    [ Upstream commit 6cb67bea945bdf0ad40e633cd2d9fbeb0855675b ]
    
    Prevent the use of page table macros and types from 2 conflicting
    places. This fixes multiple build errors and warnings, e.g.:
    
    ../arch/x86/include/asm/pgtable_64_types.h:21:34: error: conflicting types for ‘pte_t’
     typedef struct { pteval_t pte; } pte_t;
                                      ^~~~~
    In file included from ../include/linux/mm_types_task.h:16:0,
                     from ../include/linux/mm_types.h:5,
                     from ../include/linux/buildid.h:5,
                     from ../include/linux/module.h:14,
                     from ../drivers/media/pci/ivtv/ivtv-driver.h:40,
                     from ../drivers/media/pci/ivtv/ivtvfb.c:29:
    ../arch/um/include/asm/page.h:57:39: note: previous declaration of ‘pte_t’ was here
     typedef struct { unsigned long pte; } pte_t;
    
    ../arch/x86/include/asm/pgtable_types.h:284:43: error: expected ‘)’ before ‘prot’
     static inline pgprot_t pgprot_nx(pgprot_t prot)
                                               ^
    ../include/linux/pgtable.h:914:26: note: in definition of macro ‘pgprot_nx’
     #define pgprot_nx(prot) (prot)
                              ^~~~
    In file included from ../arch/x86/include/asm/memtype.h:6:0,
                     from ../drivers/media/pci/ivtv/ivtvfb.c:40:
    ../arch/x86/include/asm/pgtable_types.h:288:0: warning: "pgprot_nx" redefined
     #define pgprot_nx pgprot_nx
    
    ../arch/x86/include/asm/page_types.h:11:0: warning: "PAGE_SIZE" redefined
     #define PAGE_SIZE  (_AC(1,UL) << PAGE_SHIFT)
    
    In file included from ../include/linux/mm_types_task.h:16:0,
                     from ../include/linux/mm_types.h:5,
                     from ../include/linux/buildid.h:5,
                     from ../include/linux/module.h:14,
                     from ../drivers/media/pci/ivtv/ivtv-driver.h:40,
                     from ../drivers/media/pci/ivtv/ivtvfb.c:29:
    ../arch/um/include/asm/page.h:14:0: note: this is the location of the previous definition
     #define PAGE_SIZE (_AC(1, UL) << PAGE_SHIFT)
    
    Fixes: 68f5d3f3b654 ("um: add PCI over virtio emulation driver")
    Signed-off-by: Randy Dunlap <rdunlap@xxxxxxxxxxxxx>
    Cc: Johannes Berg <johannes@xxxxxxxxxxxxxxxx>
    Cc: Andy Walls <awalls@xxxxxxxxxxxxxxxx>
    Cc: linux-um@xxxxxxxxxxxxxxxxxxx
    Cc: Richard Weinberger <richard@xxxxxx>
    Signed-off-by: Hans Verkuil <hverkuil-cisco@xxxxxxxxx>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/media/pci/ivtv/ivtvfb.c b/drivers/media/pci/ivtv/ivtvfb.c
index e2d56dca5be40..5ad03b2a50bdb 100644
--- a/drivers/media/pci/ivtv/ivtvfb.c
+++ b/drivers/media/pci/ivtv/ivtvfb.c
@@ -36,7 +36,7 @@
 #include <linux/fb.h>
 #include <linux/ivtvfb.h>
 
-#ifdef CONFIG_X86_64
+#if defined(CONFIG_X86_64) && !defined(CONFIG_UML)
 #include <asm/memtype.h>
 #endif
 
@@ -1157,7 +1157,7 @@ static int ivtvfb_init_card(struct ivtv *itv)
 {
 	int rc;
 
-#ifdef CONFIG_X86_64
+#if defined(CONFIG_X86_64) && !defined(CONFIG_UML)
 	if (pat_enabled()) {
 		if (ivtvfb_force_pat) {
 			pr_info("PAT is enabled. Write-combined framebuffer caching will be disabled.\n");



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux