]> git.baikalelectronics.ru Git - kernel.git/commit
x86/asm: Annotate movdir64b()'s dst argument with __iomem
authorDave Jiang <dave.jiang@intel.com>
Thu, 7 Jan 2021 16:44:51 +0000 (09:44 -0700)
committerBorislav Petkov <bp@suse.de>
Fri, 8 Jan 2021 10:41:29 +0000 (11:41 +0100)
commit38bb7f6d8a01e94e3bd6fcbdc9b5e8b74b683be5
tree5d9c19569e7e4e0d841ba1c17ff872395b144d3d
parent7ef47eb101f0dca6dbe94b167f11a8b3cbd1be02
x86/asm: Annotate movdir64b()'s dst argument with __iomem

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. When future usages for the
MOVDIR64B instruction warrant a separate variant of a memory to memory
operation, the argument annotation can be revisited.

Also, from the comment in movdir64b() @__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:

  sparse warnings: (new ones prefixed by >>)
     drivers/dma/idxd/submit.c: note: in included file (through include/linux/io.h, include/linux/pci.h):
  >> arch/x86/include/asm/io.h:422:27: sparse: sparse: incorrect type in \
     argument 1 (different address spaces)
   @@     expected void *dst
   @@     got void [noderef] __iomem *dst @@
     arch/x86/include/asm/io.h:422:27: sparse:     expected void *dst
     arch/x86/include/asm/io.h:422:27: sparse:     got void [noderef] __iomem *dst

 [ bp: Massage commit message. ]

Fixes: 1ccfd2cb37e4 ("x86/asm: Carve out a generic movdir64b() helper for general usage")
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Dave Jiang <dave.jiang@intel.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Reviewed-by: Ben Widawsky <ben.widawsky@intel.com>
Reviewed-by: Dan Williams <dan.j.williams@intel.com>
Link: https://lkml.kernel.org/r/161003787823.4062451.6564503265464317197.stgit@djiang5-desk3.ch.intel.com
arch/x86/include/asm/special_insns.h