* [freescale-fslc:6.6-1.0.x-imx 3832/11730] drivers/vfio/fsl-mc/vfio_fsl_mc.c:375:22: error: assigning to 'pgprot_t' from incompatible type 'int'
@ 2024-05-01 16:02 kernel test robot
0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2024-05-01 16:02 UTC (permalink / raw)
To: Otavio Salvador; +Cc: oe-kbuild-all
tree: https://github.com/Freescale/linux-fslc 6.6-1.0.x-imx
head: 776652a165f5bbf30c68a5f6213d75b02e8df11c
commit: 156e54bbc99018164252576ccb464eaf23a84266 [3832/11730] vfio/fsl-mc: Map the VFIO region according to the flags received from the mc firmware
config: powerpc-allyesconfig (https://download.01.org/0day-ci/archive/20240501/202405012345.et2KoX0m-lkp@intel.com/config)
compiler: clang version 19.0.0git (https://github.com/llvm/llvm-project 5ef5eb66fb428aaf61fb51b709f065c069c11242)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240501/202405012345.et2KoX0m-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202405012345.et2KoX0m-lkp@intel.com/
All errors (new ones prefixed by >>):
In file included from drivers/vfio/fsl-mc/vfio_fsl_mc.c:8:
In file included from include/linux/iommu.h:10:
In file included from include/linux/scatterlist.h:8:
In file included from include/linux/mm.h:2168:
include/linux/vmstat.h:508:43: warning: arithmetic between different enumeration types ('enum zone_stat_item' and 'enum numa_stat_item') [-Wenum-enum-conversion]
508 | return vmstat_text[NR_VM_ZONE_STAT_ITEMS +
| ~~~~~~~~~~~~~~~~~~~~~ ^
509 | item];
| ~~~~
include/linux/vmstat.h:515:43: warning: arithmetic between different enumeration types ('enum zone_stat_item' and 'enum numa_stat_item') [-Wenum-enum-conversion]
515 | return vmstat_text[NR_VM_ZONE_STAT_ITEMS +
| ~~~~~~~~~~~~~~~~~~~~~ ^
516 | NR_VM_NUMA_EVENT_ITEMS +
| ~~~~~~~~~~~~~~~~~~~~~~
include/linux/vmstat.h:522:36: warning: arithmetic between different enumeration types ('enum node_stat_item' and 'enum lru_list') [-Wenum-enum-conversion]
522 | return node_stat_name(NR_LRU_BASE + lru) + 3; // skip "nr_"
| ~~~~~~~~~~~ ^ ~~~
include/linux/vmstat.h:527:43: warning: arithmetic between different enumeration types ('enum zone_stat_item' and 'enum numa_stat_item') [-Wenum-enum-conversion]
527 | return vmstat_text[NR_VM_ZONE_STAT_ITEMS +
| ~~~~~~~~~~~~~~~~~~~~~ ^
528 | NR_VM_NUMA_EVENT_ITEMS +
| ~~~~~~~~~~~~~~~~~~~~~~
include/linux/vmstat.h:536:43: warning: arithmetic between different enumeration types ('enum zone_stat_item' and 'enum numa_stat_item') [-Wenum-enum-conversion]
536 | return vmstat_text[NR_VM_ZONE_STAT_ITEMS +
| ~~~~~~~~~~~~~~~~~~~~~ ^
537 | NR_VM_NUMA_EVENT_ITEMS +
| ~~~~~~~~~~~~~~~~~~~~~~
drivers/vfio/fsl-mc/vfio_fsl_mc.c:375:24: error: call to undeclared function 'pgprot_cached_ns'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
375 | vma->vm_page_prot = pgprot_cached_ns(vma->vm_page_prot);
| ^
drivers/vfio/fsl-mc/vfio_fsl_mc.c:375:24: note: did you mean 'pgprot_cached'?
arch/powerpc/include/asm/book3s/64/pgtable.h:809:24: note: 'pgprot_cached' declared here
809 | static inline pgprot_t pgprot_cached(pgprot_t prot)
| ^
arch/powerpc/include/asm/book3s/64/pgtable.h:808:23: note: expanded from macro 'pgprot_cached'
808 | #define pgprot_cached pgprot_cached
| ^
>> drivers/vfio/fsl-mc/vfio_fsl_mc.c:375:22: error: assigning to 'pgprot_t' from incompatible type 'int'
375 | vma->vm_page_prot = pgprot_cached_ns(vma->vm_page_prot);
| ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5 warnings and 2 errors generated.
vim +375 drivers/vfio/fsl-mc/vfio_fsl_mc.c
359
360 static int vfio_fsl_mc_mmap_mmio(struct vfio_fsl_mc_region region,
361 struct vm_area_struct *vma)
362 {
363 u64 size = vma->vm_end - vma->vm_start;
364 u64 pgoff, base;
365
366 pgoff = vma->vm_pgoff &
367 ((1U << (VFIO_FSL_MC_OFFSET_SHIFT - PAGE_SHIFT)) - 1);
368 base = pgoff << PAGE_SHIFT;
369
370 if (region.size < PAGE_SIZE || base + size > region.size)
371 return -EINVAL;
372
373 if (region.type & FSL_MC_REGION_CACHEABLE) {
374 if (!(region.type & FSL_MC_REGION_SHAREABLE))
> 375 vma->vm_page_prot = pgprot_cached_ns(vma->vm_page_prot);
376 } else
377 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
378
379 vma->vm_pgoff = (region.addr >> PAGE_SHIFT) + pgoff;
380
381 return remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
382 size, vma->vm_page_prot);
383 }
384
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2024-05-01 16:04 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-01 16:02 [freescale-fslc:6.6-1.0.x-imx 3832/11730] drivers/vfio/fsl-mc/vfio_fsl_mc.c:375:22: error: assigning to 'pgprot_t' from incompatible type 'int' kernel test robot
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.