Building the Linux kernel with Clang and LLVM
 help / color / mirror / Atom feed
* Re: [PATCH v3] eventfd: introduce configurable maximum value for eventfd
       [not found] <20250309055003.32194-1-wen.yang@linux.dev>
@ 2025-03-09 14:31 ` kernel test robot
  0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2025-03-09 14:31 UTC (permalink / raw)
  To: Wen Yang, Christian Brauner, Jan Kara, Alexander Viro
  Cc: llvm, oe-kbuild-all, Wen Yang, Jens Axboe, Dylan Yudaken,
	David Woodhouse, Paolo Bonzini, Dave Young, linux-fsdevel,
	linux-kernel

Hi Wen,

kernel test robot noticed the following build errors:

[auto build test ERROR on brauner-vfs/vfs.all]
[also build test ERROR on linus/master v6.14-rc5 next-20250307]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]

url:    https://github.com/intel-lab-lkp/linux/commits/Wen-Yang/eventfd-introduce-configurable-maximum-value-for-eventfd/20250309-135152
base:   https://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs.git vfs.all
patch link:    https://lore.kernel.org/r/20250309055003.32194-1-wen.yang%40linux.dev
patch subject: [PATCH v3] eventfd: introduce configurable maximum value for eventfd
config: i386-buildonly-randconfig-002-20250309 (https://download.01.org/0day-ci/archive/20250309/202503092210.z9CcRYoe-lkp@intel.com/config)
compiler: clang version 19.1.7 (https://github.com/llvm/llvm-project cd708029e0b2869e80abe31ddb175f7c35361f90)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250309/202503092210.z9CcRYoe-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/202503092210.z9CcRYoe-lkp@intel.com/

All errors (new ones prefixed by >>):

>> fs/eventfd.c:251:69: error: use of undeclared identifier 'ucnt'
     251 |         return (ctx->maximum > ctx->count) && (ctx->maximum - ctx->count > ucnt);
         |                                                                            ^
   1 error generated.


vim +/ucnt +251 fs/eventfd.c

   248	
   249	static inline bool eventfd_is_writable(const struct eventfd_ctx *ctx)
   250	{
 > 251		return (ctx->maximum > ctx->count) && (ctx->maximum - ctx->count > ucnt);
   252	}
   253	

-- 
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-03-09 14:32 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20250309055003.32194-1-wen.yang@linux.dev>
2025-03-09 14:31 ` [PATCH v3] eventfd: introduce configurable maximum value for eventfd kernel test robot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox