All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Kanchan Joshi <joshi.k@samsung.com>
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [RFC PATCH 2/5] fs: add the interface to query user write streams
Date: Wed, 30 Jul 2025 12:28:48 +0800	[thread overview]
Message-ID: <202507301220.RYskgxEV-lkp@intel.com> (raw)
In-Reply-To: <20250729145135.12463-3-joshi.k@samsung.com>

Hi Kanchan,

[This is a private test report for your RFC patch.]
kernel test robot noticed the following build errors:

[auto build test ERROR on 66639db858112bf6b0f76677f7517643d586e575]

url:    https://github.com/intel-lab-lkp/linux/commits/Kanchan-Joshi/fs-add-a-new-user_write_streams-callback/20250729-225440
base:   66639db858112bf6b0f76677f7517643d586e575
patch link:    https://lore.kernel.org/r/20250729145135.12463-3-joshi.k%40samsung.com
patch subject: [RFC PATCH 2/5] fs: add the interface to query user write streams
config: x86_64-buildonly-randconfig-001-20250730 (https://download.01.org/0day-ci/archive/20250730/202507301220.RYskgxEV-lkp@intel.com/config)
compiler: gcc-12 (Debian 12.2.0-14+deb12u1) 12.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250730/202507301220.RYskgxEV-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/202507301220.RYskgxEV-lkp@intel.com/

All errors (new ones prefixed by >>):

   ld: fs/fcntl.o: in function `vfs_user_write_streams':
>> fs/fcntl.c:403: undefined reference to `I_BDEV'


vim +403 fs/fcntl.c

   397	
   398	static u8 vfs_user_write_streams(struct inode *inode)
   399	{
   400		struct super_block *sb;
   401	
   402		if (S_ISBLK(inode->i_mode))
 > 403			return bdev_max_write_streams(I_BDEV(inode));
   404	
   405		sb = inode->i_sb;
   406		/* If available, use per-mount/fs policy */
   407		if (sb->s_op && sb->s_op->user_write_streams)
   408			return sb->s_op->user_write_streams(sb);
   409		/* otherwise, fallback to queue limit */
   410		if (sb->s_bdev)
   411			return bdev_max_write_streams(sb->s_bdev);
   412		return 0;
   413	}
   414	

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

  reply	other threads:[~2025-07-30  4:29 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20250729145331epcas5p4821f0ddedbbe425b733bf8330878cb3d@epcas5p4.samsung.com>
2025-07-29 14:51 ` [RFC PATCH 0/5] FDP file I/O Kanchan Joshi
2025-07-29 14:51   ` [RFC PATCH 1/5] fs: add a new user_write_streams() callback Kanchan Joshi
2025-08-12  8:21     ` Christoph Hellwig
2025-07-29 14:51   ` [RFC PATCH 2/5] fs: add the interface to query user write streams Kanchan Joshi
2025-07-30  4:28     ` kernel test robot [this message]
2025-08-12  8:22     ` Christoph Hellwig
2025-10-16  9:57       ` Kanchan Joshi
2025-10-22  8:01         ` Christoph Hellwig
2025-07-29 14:51   ` [RFC PATCH 3/5] fs: add a write stream field to the inode Kanchan Joshi
2025-08-12  8:23     ` Christoph Hellwig
2025-07-29 14:51   ` [RFC PATCH 4/5] fs: propagate write stream Kanchan Joshi
2025-08-12  8:24     ` Christoph Hellwig
2025-10-16  9:47       ` Kanchan Joshi
2025-10-22  8:02         ` Christoph Hellwig
2025-07-29 14:51   ` [RFC PATCH 5/5] fs: add set and query " Kanchan Joshi

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=202507301220.RYskgxEV-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=joshi.k@samsung.com \
    --cc=oe-kbuild-all@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 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.