Patch "x86/asm: Add a missing __iomem annotation in enqcmds()" has been added to the 5.10-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

    x86/asm: Add a missing __iomem annotation in enqcmds()

to the 5.10-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:
     x86-asm-add-a-missing-__iomem-annotation-in-enqcmds.patch
and it can be found in the queue-5.10 subdirectory.

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



commit 04532bb66afa297df6e0eff0403a66d84842abb5
Author: Dave Jiang <dave.jiang@xxxxxxxxx>
Date:   Thu Jan 7 09:45:21 2021 -0700

    x86/asm: Add a missing __iomem annotation in enqcmds()
    
    [ Upstream commit 5c99720b28381bb400d4f546734c34ddaf608761 ]
    
    Add a missing __iomem annotation to address a sparse warning. The caller
    is expected to pass an __iomem annotated pointer to this function. The
    current usages send a 64-bytes command descriptor to an MMIO location
    (portal) on a device for consumption.
    
    Also, from the comment in movdir64b(), which also applies to enqcmds(),
    @__dst must be supplied as an lvalue because this tells the compiler
    what the object is (its size) the instruction accesses. I.e., not the
    pointers but what they point to, thus the deref'ing '*'."
    
    The actual sparse warning is:
    
      drivers/dma/idxd/submit.c: note: in included file (through arch/x86/include/asm/processor.h, \
            arch/x86/include/asm/timex.h, include/linux/timex.h, include/linux/time32.h, \
            include/linux/time.h, include/linux/stat.h, ...):
      ./arch/x86/include/asm/special_insns.h:289:41: warning: incorrect type in initializer (different address spaces)
      ./arch/x86/include/asm/special_insns.h:289:41:    expected struct <noident> *__dst
      ./arch/x86/include/asm/special_insns.h:289:41:    got void [noderef] __iomem *dst
    
     [ bp: Massage commit message. ]
    
    Fixes: 7f5933f81bd8 ("x86/asm: Add an enqcmds() wrapper for the ENQCMDS instruction")
    Reported-by: kernel test robot <lkp@xxxxxxxxx>
    Signed-off-by: Dave Jiang <dave.jiang@xxxxxxxxx>
    Signed-off-by: Borislav Petkov <bp@xxxxxxx>
    Reviewed-by: Ben Widawsky <ben.widawsky@xxxxxxxxx>
    Reviewed-by: Dan Williams <dan.j.williams@xxxxxxxxx>
    Link: https://lkml.kernel.org/r/161003789741.4062451.14362269365703761223.stgit@xxxxxxxxxxxxxxxxxxxxxxxxxx
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/arch/x86/include/asm/special_insns.h b/arch/x86/include/asm/special_insns.h
index cc177b4431ae..0cf19684dd20 100644
--- a/arch/x86/include/asm/special_insns.h
+++ b/arch/x86/include/asm/special_insns.h
@@ -286,7 +286,7 @@ static inline void movdir64b(void *dst, const void *src)
 static inline int enqcmds(void __iomem *dst, const void *src)
 {
 	const struct { char _[64]; } *__src = src;
-	struct { char _[64]; } *__dst = dst;
+	struct { char _[64]; } __iomem *__dst = dst;
 	int zf;
 
 	/*



[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