* [jgunthorpe:iommu_pt_all 46/62] include/linux/bitops.h:273:19: sparse: sparse: cast truncates bits from constant value (fffffffffffe0 becomes ffffffe0)
@ 2025-06-21 21:16 kernel test robot
0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2025-06-21 21:16 UTC (permalink / raw)
To: Jason Gunthorpe; +Cc: oe-kbuild-all
tree: https://github.com/jgunthorpe/linux iommu_pt_all
head: 95229c50e3ce2b6ecb8126b5f765996c1b73f4c1
commit: f9030d6456384b4e46476575a470ac246c37548a [46/62] iommupt: Add the 64 bit ARMv8 page table format
config: i386-randconfig-062-20250622 (https://download.01.org/0day-ci/archive/20250622/202506220540.BGJPBZio-lkp@intel.com/config)
compiler: clang version 20.1.2 (https://github.com/llvm/llvm-project 58df0ef89dd64126512e4ee27b4ac3fd8ddf6247)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250622/202506220540.BGJPBZio-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/202506220540.BGJPBZio-lkp@intel.com/
sparse warnings: (new ones prefixed by >>)
drivers/iommu/generic_pt/fmt/iommu_armv8_16k.c: note: in included file (through drivers/iommu/generic_pt/fmt/../pt_log2.h, drivers/iommu/generic_pt/fmt/../pt_defs.h, ...):
>> include/linux/bitops.h:273:19: sparse: sparse: cast truncates bits from constant value (fffffffffffe0 becomes ffffffe0)
include/linux/bitops.h:278:16: sparse: sparse: cast truncates bits from constant value (fffffffffffe0 becomes ffffffe0)
>> include/linux/bitops.h:273:19: sparse: sparse: cast truncates bits from constant value (fffffffffffe0 becomes ffffffe0)
include/linux/bitops.h:278:16: sparse: sparse: cast truncates bits from constant value (fffffffffffe0 becomes ffffffe0)
--
drivers/iommu/generic_pt/fmt/iommu_armv8_64k.c: note: in included file (through drivers/iommu/generic_pt/fmt/../pt_log2.h, drivers/iommu/generic_pt/fmt/../pt_defs.h, ...):
>> include/linux/bitops.h:273:19: sparse: sparse: cast truncates bits from constant value (fffffffffffe0 becomes ffffffe0)
include/linux/bitops.h:278:16: sparse: sparse: cast truncates bits from constant value (fffffffffffe0 becomes ffffffe0)
>> include/linux/bitops.h:273:19: sparse: sparse: cast truncates bits from constant value (fffffffffffe0 becomes ffffffe0)
include/linux/bitops.h:278:16: sparse: sparse: cast truncates bits from constant value (fffffffffffe0 becomes ffffffe0)
vim +273 include/linux/bitops.h
c320592f3f2a1e Wolfram Sang 2025-01-07 261
952043ac12a117 Steven Whitehouse 2009-04-23 262 /**
952043ac12a117 Steven Whitehouse 2009-04-23 263 * __ffs64 - find first set bit in a 64 bit word
952043ac12a117 Steven Whitehouse 2009-04-23 264 * @word: The 64 bit word
952043ac12a117 Steven Whitehouse 2009-04-23 265 *
4945cca232ce8b Geert Uytterhoeven 2021-02-25 266 * On 64 bit arches this is a synonym for __ffs
952043ac12a117 Steven Whitehouse 2009-04-23 267 * The result is not defined if no bits are set, so check that @word
952043ac12a117 Steven Whitehouse 2009-04-23 268 * is non-zero before calling this.
952043ac12a117 Steven Whitehouse 2009-04-23 269 */
9c313ccdfc079f Thorsten Blum 2024-04-21 270 static inline unsigned int __ffs64(u64 word)
952043ac12a117 Steven Whitehouse 2009-04-23 271 {
952043ac12a117 Steven Whitehouse 2009-04-23 272 #if BITS_PER_LONG == 32
952043ac12a117 Steven Whitehouse 2009-04-23 @273 if (((u32)word) == 0UL)
952043ac12a117 Steven Whitehouse 2009-04-23 274 return __ffs((u32)(word >> 32)) + 32;
952043ac12a117 Steven Whitehouse 2009-04-23 275 #elif BITS_PER_LONG != 64
952043ac12a117 Steven Whitehouse 2009-04-23 276 #error BITS_PER_LONG not 32 or 64
952043ac12a117 Steven Whitehouse 2009-04-23 277 #endif
952043ac12a117 Steven Whitehouse 2009-04-23 278 return __ffs((unsigned long)word);
952043ac12a117 Steven Whitehouse 2009-04-23 279 }
952043ac12a117 Steven Whitehouse 2009-04-23 280
:::::: The code at line 273 was first introduced by commit
:::::: 952043ac12a117d8e94bddd9088338d7ad20ca7d bitops: Add __ffs64 bitop
:::::: TO: Steven Whitehouse <swhiteho@redhat.com>
:::::: CC: Steven Whitehouse <swhiteho@redhat.com>
--
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:[~2025-06-21 21:16 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-21 21:16 [jgunthorpe:iommu_pt_all 46/62] include/linux/bitops.h:273:19: sparse: sparse: cast truncates bits from constant value (fffffffffffe0 becomes ffffffe0) 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.