public inbox for oe-kbuild@lists.linux.dev
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: oe-kbuild@lists.linux.dev
Cc: lkp@intel.com
Subject: fs/ext4/orphan.c:744:29: warning: format '%llu' expects argument of type 'long long unsigned int', but argument 3 has type 'long unsigned int'
Date: Sun, 12 Apr 2026 08:29:41 +0200	[thread overview]
Message-ID: <202604120850.BhCcxSX6-lkp@intel.com> (raw)

:::::: 
:::::: Manual check reason: "low confidence bisect report"
:::::: 

BCC: lkp@intel.com
CC: oe-kbuild-all@lists.linux.dev
TO: Ye Bin <yebin10@huawei.com>
CC: 0day robot <lkp@intel.com>

tree:   https://github.com/intel-lab-lkp/linux/commits/Ye-Bin/ext4-register-orphan_list-procfs/20260412-043155
head:   40c8b08a765262ff0c3d84ac9ac0ec5110487e8c
commit: cf76577bfa266ccf03e5c8ab1775327709c32984 ext4: show inode orphan list detail information
date:   10 hours ago
:::::: branch date: 10 hours ago
:::::: commit date: 10 hours ago
config: i386-allnoconfig-bpf (https://download.01.org/0day-ci/archive/20260412/202604120850.BhCcxSX6-lkp@intel.com/config)
compiler: gcc-14 (Debian 14.2.0-19) 14.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260412/202604120850.BhCcxSX6-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/r/202604120850.BhCcxSX6-lkp@intel.com/

All warnings (new ones prefixed by >>):

   fs/ext4/orphan.c: In function 'ext4_orphan_seq_show':
>> fs/ext4/orphan.c:744:29: warning: format '%llu' expects argument of type 'long long unsigned int', but argument 3 has type 'long unsigned int' [-Wformat=]
     744 |         seq_printf(seq, "%llu\t%u\t%llu\t%llu\t%u\t",
         |                          ~~~^
         |                             |
         |                             long long unsigned int
         |                          %lu
     745 |                    inode->i_ino, inode->i_nlink,
         |                    ~~~~~~~~~~~~
         |                         |
         |                         long unsigned int


vim +744 fs/ext4/orphan.c

9dcd2ef939ebbc Ye Bin 2026-04-03  733  
9dcd2ef939ebbc Ye Bin 2026-04-03  734  static int ext4_orphan_seq_show(struct seq_file *seq, void *v)
9dcd2ef939ebbc Ye Bin 2026-04-03  735  {
cf76577bfa266c Ye Bin 2026-04-03  736  	struct inode *inode = v;
cf76577bfa266c Ye Bin 2026-04-03  737  	struct ext4_proc_orphan *s = seq->private;
cf76577bfa266c Ye Bin 2026-04-03  738  
cf76577bfa266c Ye Bin 2026-04-03  739  	if (s->print_title) {
cf76577bfa266c Ye Bin 2026-04-03  740  		seq_puts(seq, "INO\tNLINK\tSIZE\tBLOCKS\tPROJID\tPATH\n");
cf76577bfa266c Ye Bin 2026-04-03  741  		s->print_title = false;
cf76577bfa266c Ye Bin 2026-04-03  742  	}
cf76577bfa266c Ye Bin 2026-04-03  743  
cf76577bfa266c Ye Bin 2026-04-03 @744  	seq_printf(seq, "%llu\t%u\t%llu\t%llu\t%u\t",
cf76577bfa266c Ye Bin 2026-04-03  745  		   inode->i_ino, inode->i_nlink,
cf76577bfa266c Ye Bin 2026-04-03  746  		   i_size_read(inode), inode->i_blocks,
cf76577bfa266c Ye Bin 2026-04-03  747  		   __kprojid_val(EXT4_I(inode)->i_projid));
cf76577bfa266c Ye Bin 2026-04-03  748  
cf76577bfa266c Ye Bin 2026-04-03  749  	ext4_show_filename(seq, inode);
cf76577bfa266c Ye Bin 2026-04-03  750  
9dcd2ef939ebbc Ye Bin 2026-04-03  751  	return 0;
9dcd2ef939ebbc Ye Bin 2026-04-03  752  }
9dcd2ef939ebbc Ye Bin 2026-04-03  753  

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

                 reply	other threads:[~2026-04-12  6:30 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=202604120850.BhCcxSX6-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=oe-kbuild@lists.linux.dev \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox