From: kernel test robot <lkp@intel.com>
To: Mark Brown <broonie@kernel.org>, Jens Axboe <axboe@kernel.dk>,
Keith Busch <kbusch@kernel.org>,
Christian Brauner <brauner@kernel.org>,
Fengnan Chang <changfengnan@bytedance.com>
Cc: oe-kbuild-all@lists.linux.dev, Christoph Hellwig <hch@lst.de>,
Hannes Reinecke <hare@kernel.org>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
Linux Next Mailing List <linux-next@vger.kernel.org>
Subject: Re: linux-next: build failure after merge of the block tree
Date: Fri, 14 Aug 2026 01:31:31 +0800 [thread overview]
Message-ID: <202608140117.H5jC1r7B-lkp@intel.com> (raw)
In-Reply-To: <anDHU9Wc-EGV1KYL@sirena.org.uk>
Hi Mark,
kernel test robot noticed the following build errors:
[auto build test ERROR on brauner-vfs/vfs.all]
[cannot apply to linus/master v7.2-rc7 next-20260812]
[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/Mark-Brown/linux-next-build-failure-after-merge-of-the-block-tree/20260813-203616
base: https://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs.git vfs.all
patch link: https://lore.kernel.org/r/anDHU9Wc-EGV1KYL%40sirena.org.uk
patch subject: linux-next: build failure after merge of the block tree
config: powerpc-allmodconfig (https://download.01.org/0day-ci/archive/20260814/202608140117.H5jC1r7B-lkp@intel.com/config)
compiler: powerpc64-linux-gcc (GCC) 16.1.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260814/202608140117.H5jC1r7B-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/202608140117.H5jC1r7B-lkp@intel.com/
All errors (new ones prefixed by >>):
fs/iomap/direct-io.c: In function '__iomap_dio_read_simple':
>> fs/iomap/direct-io.c:1036:15: error: too many arguments to function 'bio_iov_iter_get_pages'; expected 3, have 4
1036 | ret = bio_iov_iter_get_pages(bio, iter, bdev_dma_alignment(bio->bi_bdev),
| ^~~~~~~~~~~~~~~~~~~~~~
1037 | alignment - 1);
| ~~~~~~~~~~~~~
In file included from include/linux/bio-integrity.h:5,
from fs/iomap/direct-io.c:6:
include/linux/bio.h:479:5: note: declared here
479 | int bio_iov_iter_get_pages(struct bio *bio, struct iov_iter *iter,
| ^~~~~~~~~~~~~~~~~~~~~~
vim +/bio_iov_iter_get_pages +1036 fs/iomap/direct-io.c
990
991 ssize_t __iomap_dio_read_simple(struct kiocb *iocb, struct iov_iter *iter,
992 struct iomap_iter *iomi)
993 {
994 gfp_t gfp = (iomi->flags & IOMAP_NOWAIT) ? GFP_NOWAIT : GFP_KERNEL;
995 struct iomap_dio_simple *sr;
996 unsigned int alignment;
997 struct bio *bio;
998 ssize_t ret;
999
1000 if (iomi->iomap.type != IOMAP_MAPPED ||
1001 iomi->iomap.offset + iomi->iomap.length < iomi->pos + iomi->len ||
1002 (iomi->iomap.flags & IOMAP_F_INTEGRITY)) {
1003 ret = -ENOTBLK;
1004 goto out_dio_end;
1005 }
1006
1007 alignment = iomap_dio_alignment(iomi->inode, iomi->iomap.bdev, 0);
1008 if ((iomi->pos | iomi->len) & (alignment - 1)) {
1009 ret = -EINVAL;
1010 goto out_dio_end;
1011 }
1012
1013 if (unlikely(!iomi->inode->i_sb->s_dio_done_wq &&
1014 !is_sync_kiocb(iocb))) {
1015 ret = sb_init_dio_done_wq(iomi->inode->i_sb);
1016 if (ret < 0)
1017 goto out_dio_end;
1018 }
1019
1020 trace_iomap_dio_rw_begin(iocb, iter, 0, 0);
1021
1022 bio = bio_alloc_bioset(iomi->iomap.bdev,
1023 bio_iov_vecs_to_alloc(iter, BIO_MAX_VECS),
1024 REQ_OP_READ, gfp, &iomap_dio_simple_pool);
1025 if (!bio) {
1026 ret = -EAGAIN;
1027 goto out_dio_end;
1028 }
1029 sr = container_of(bio, struct iomap_dio_simple, bio);
1030 sr->iocb = iocb;
1031 sr->dio_flags = 0;
1032
1033 bio->bi_iter.bi_sector = iomap_sector(&iomi->iomap, iomi->pos);
1034 bio->bi_ioprio = iocb->ki_ioprio;
1035
> 1036 ret = bio_iov_iter_get_pages(bio, iter, bdev_dma_alignment(bio->bi_bdev),
1037 alignment - 1);
1038 if (unlikely(ret))
1039 goto out_bio_put;
1040
1041 if (bio->bi_iter.bi_size != iomi->len) {
1042 iov_iter_revert(iter, bio->bi_iter.bi_size);
1043 ret = -ENOTBLK;
1044 goto out_bio_release_pages;
1045 }
1046
1047 sr->size = bio->bi_iter.bi_size;
1048 if (user_backed_iter(iter)) {
1049 bio_set_pages_dirty(bio);
1050 sr->dio_flags |= IOMAP_DIO_USER_BACKED;
1051 }
1052
1053 if (iocb->ki_flags & IOCB_NOWAIT)
1054 bio->bi_opf |= REQ_NOWAIT;
1055
1056 if (is_sync_kiocb(iocb)) {
1057 submit_bio_wait(bio);
1058 return iomap_dio_simple_complete(sr);
1059 }
1060
1061 if ((iocb->ki_flags & IOCB_HIPRI)) {
1062 bio->bi_opf |= REQ_POLLED;
1063 WRITE_ONCE(iocb->private, bio);
1064 }
1065 bio->bi_end_io = iomap_dio_simple_end_io;
1066 submit_bio(bio);
1067 trace_iomap_dio_rw_queued(iomi->inode, iocb->ki_pos, iomi->len);
1068 return -EIOCBQUEUED;
1069
1070 out_bio_release_pages:
1071 bio_release_pages(bio, false);
1072 out_bio_put:
1073 bio_put(bio);
1074 out_dio_end:
1075 inode_dio_end(iomi->inode);
1076 return ret;
1077 }
1078 EXPORT_SYMBOL_GPL(__iomap_dio_read_simple);
1079
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2026-08-13 17:32 UTC|newest]
Thread overview: 338+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-03 16:52 linux-next: build failure after merge of the block tree Mark Brown
2026-08-04 1:50 ` Jens Axboe
2026-08-13 17:31 ` kernel test robot [this message]
-- strict thread matches above, loose matches on Subject: below --
2026-05-27 14:16 Mark Brown
2026-05-27 14:39 ` Jens Axboe
2026-05-27 14:55 ` Mark Brown
2026-05-27 15:00 ` Jens Axboe
2026-05-27 16:02 ` Mark Brown
2026-04-10 12:21 Mark Brown
2026-04-15 11:31 ` kernel test robot
2026-04-15 14:25 ` kernel test robot
2026-03-06 14:09 Mark Brown
2026-03-06 14:13 ` Jens Axboe
2026-03-06 14:28 ` Mark Brown
2026-03-06 15:42 ` Jens Axboe
2026-03-06 21:45 ` Jens Axboe
2026-01-28 13:47 Mark Brown
2026-01-23 17:42 Mark Brown
2026-01-23 18:00 ` Jens Axboe
2026-01-23 18:06 ` Jens Axboe
2026-01-24 11:46 ` Stephen Rothwell
2026-01-24 15:00 ` Jens Axboe
2026-01-23 19:34 ` Mark Brown
2026-01-19 18:02 Mark Brown
2026-01-19 18:05 ` Jens Axboe
2026-01-19 18:20 ` Mark Brown
2026-01-19 20:31 ` Jens Axboe
2026-01-20 9:28 ` Andreas Hindborg
2026-01-19 18:13 ` Mark Brown
2026-01-19 18:18 ` Tamir Duberstein
2026-01-19 18:53 ` Mark Brown
2026-01-19 18:59 ` Miguel Ojeda
2026-01-19 19:05 ` Mark Brown
2026-01-20 22:08 ` Miguel Ojeda
2026-01-21 14:56 ` Mark Brown
2026-01-21 18:55 ` Miguel Ojeda
2026-01-22 6:36 ` David Gow
2026-01-26 14:31 ` Miguel Ojeda
2026-01-22 12:13 ` Mark Brown
2026-01-22 18:25 ` Andreas Hindborg
2026-01-26 14:42 ` Miguel Ojeda
2026-01-26 14:44 ` Miguel Ojeda
2025-10-22 5:25 Stephen Rothwell
2025-10-22 17:17 ` Jens Axboe
2025-01-13 1:51 Stephen Rothwell
2025-01-13 2:13 ` Yu Kuai
2025-01-13 2:37 ` Stephen Rothwell
2025-01-13 6:03 ` Song Liu
2025-01-13 14:16 ` Jens Axboe
2025-01-10 1:44 Stephen Rothwell
2025-01-10 2:37 ` Luiz Capitulino
2025-01-21 7:39 ` Stephen Rothwell
2025-01-21 13:57 ` Luiz Capitulino
2025-01-21 14:40 ` Jens Axboe
2025-01-21 14:43 ` Luiz Capitulino
2024-12-20 2:10 Stephen Rothwell
2024-06-21 15:40 Mark Brown
2024-06-21 15:58 ` Jens Axboe
2024-06-21 17:02 ` John Garry
2024-06-21 17:57 ` Jens Axboe
2024-05-10 3:10 Stephen Rothwell
2024-05-10 7:22 ` Damien Le Moal
2024-05-13 23:53 ` Stephen Rothwell
2023-12-21 3:01 Stephen Rothwell
2023-12-21 3:11 ` Jens Axboe
2023-12-21 5:25 ` Christoph Hellwig
2023-06-01 0:50 Stephen Rothwell
2023-06-01 8:27 ` Johannes Thumshirn
2023-06-01 15:14 ` Jens Axboe
2023-03-24 1:57 Stephen Rothwell
2023-03-22 23:33 Stephen Rothwell
2023-03-22 23:59 ` Stephen Rothwell
2023-01-19 23:07 Stephen Rothwell
2023-01-06 0:19 Stephen Rothwell
2023-01-06 2:53 ` Martin K. Petersen
2022-11-16 1:35 Stephen Rothwell
2022-10-04 21:50 Stephen Rothwell
2022-10-04 22:14 ` Jens Axboe
2022-08-22 4:46 Stephen Rothwell
2022-08-22 13:55 ` Jens Axboe
2022-08-22 15:34 ` Bart Van Assche
2022-08-22 15:40 ` Jens Axboe
2022-08-22 16:06 ` Bart Van Assche
2022-08-22 16:07 ` Jens Axboe
2022-07-27 4:09 Stephen Rothwell
2022-07-21 3:11 Stephen Rothwell
2022-07-21 4:23 ` Christoph Hellwig
2022-07-21 16:51 ` Jens Axboe
2022-07-15 4:02 Stephen Rothwell
2022-07-15 4:10 ` Al Viro
2022-07-15 14:42 ` Jens Axboe
2022-07-15 17:33 ` Linus Torvalds
2022-07-17 3:43 ` Al Viro
2022-05-23 2:49 Stephen Rothwell
2022-05-23 2:52 ` Jens Axboe
2022-05-23 6:05 ` Coly Li
2022-05-23 12:31 ` Jens Axboe
2022-05-04 1:40 Stephen Rothwell
2022-05-04 11:25 ` Jens Axboe
2022-03-09 2:16 Stephen Rothwell
2022-03-09 2:33 ` Jens Axboe
2022-03-09 2:42 ` Jens Axboe
2021-08-10 10:31 Stephen Rothwell
2021-08-10 10:52 ` Stephen Rothwell
2021-08-10 12:58 ` Christoph Hellwig
2021-08-10 13:01 ` Jens Axboe
2021-08-10 13:22 ` Stephen Rothwell
2021-02-23 1:42 Stephen Rothwell
2021-02-23 2:32 ` Jens Axboe
2021-02-02 2:57 Stephen Rothwell
2021-02-02 3:16 ` Stephen Rothwell
2021-02-02 6:55 ` Christoph Hellwig
2021-02-14 22:24 ` Stephen Rothwell
2020-12-14 4:18 Stephen Rothwell
2020-12-07 3:09 Stephen Rothwell
2020-12-07 20:09 ` Florent Revest
2020-12-14 20:29 ` Stephen Rothwell
2020-12-02 4:01 Stephen Rothwell
2020-12-02 7:19 ` Christoph Hellwig
2020-12-14 20:09 ` Stephen Rothwell
2020-12-14 20:12 ` Jens Axboe
2020-12-14 21:36 ` David Sterba
2020-12-14 21:43 ` Stephen Rothwell
2020-12-14 21:54 ` David Sterba
2020-12-14 22:01 ` Stephen Rothwell
2020-09-23 4:34 Stephen Rothwell
2020-07-15 2:14 Stephen Rothwell
2020-07-15 9:24 ` Geert Uytterhoeven
2020-07-15 15:08 ` Jens Axboe
2020-07-15 15:17 ` Geert Uytterhoeven
2020-07-15 15:22 ` Geert Uytterhoeven
2020-07-15 15:25 ` Jens Axboe
2020-07-15 15:08 ` Jens Axboe
2020-06-02 3:25 Stephen Rothwell
2020-05-25 5:08 Stephen Rothwell
2020-05-25 19:03 ` Jens Axboe
2020-05-26 4:36 ` Stephen Rothwell
2020-05-26 13:53 ` Jens Axboe
2020-05-22 11:32 Stephen Rothwell
2020-05-22 14:46 ` Jens Axboe
2020-05-14 8:57 Stephen Rothwell
2020-05-14 14:06 ` Jens Axboe
2020-05-11 4:27 Stephen Rothwell
2020-05-11 15:06 ` Jens Axboe
2020-05-11 15:17 ` Christoph Hellwig
2020-05-11 15:28 ` Jens Axboe
2020-05-08 5:28 Stephen Rothwell
2020-05-08 15:48 ` Jens Axboe
2020-03-12 2:54 Stephen Rothwell
2020-03-12 10:12 ` Matteo Croce
2020-03-12 13:07 ` Jens Axboe
2020-03-12 13:57 ` Matteo Croce
2020-03-13 7:24 ` Gao Xiang
2020-02-04 0:25 Stephen Rothwell
2020-02-04 0:28 ` Jens Axboe
2020-02-03 0:04 Stephen Rothwell
2020-02-03 4:12 ` Jens Axboe
2020-01-06 1:30 Stephen Rothwell
2020-01-07 4:04 ` Jens Axboe
2020-01-12 18:32 ` Al Viro
2020-01-13 17:09 ` Jens Axboe
2020-01-13 17:26 ` Jens Axboe
2019-10-28 2:59 Stephen Rothwell
2019-10-28 3:25 ` Jens Axboe
2019-07-11 5:15 Stephen Rothwell
2019-07-11 20:17 ` Tejun Heo
2019-07-11 20:36 ` Jens Axboe
2019-07-11 5:04 Stephen Rothwell
2019-06-21 3:56 Stephen Rothwell
2019-06-21 8:18 ` Christoph Hellwig
2019-06-21 8:36 ` Stephen Rothwell
2019-05-06 5:07 Stephen Rothwell
2019-01-16 2:55 Stephen Rothwell
2019-01-16 2:48 Stephen Rothwell
2019-01-16 2:50 ` Ming Lei
2019-01-16 2:35 Stephen Rothwell
2019-01-16 2:48 ` Ming Lei
2018-07-31 3:07 Stephen Rothwell
2018-07-31 14:59 ` Jens Axboe
2018-07-26 4:56 Stephen Rothwell
2018-07-26 8:48 ` Christoph Hellwig
2018-07-26 8:45 ` Stephen Rothwell
2018-07-26 17:48 ` Jens Axboe
2018-07-26 17:56 ` Christoph Hellwig
2018-07-26 17:59 ` Steve Wise
2018-07-26 20:54 ` Bart Van Assche
2018-07-26 21:13 ` Jens Axboe
2018-07-26 12:32 ` Steve Wise
2018-07-26 22:16 ` Stephen Rothwell
2018-08-15 1:43 ` Stephen Rothwell
2017-08-24 3:32 Stephen Rothwell
2017-08-24 3:34 ` Stephen Rothwell
2017-08-24 8:44 ` Christoph Hellwig
2017-08-24 8:54 ` Stephen Rothwell
2017-06-28 8:04 Stephen Rothwell
2017-06-28 12:43 ` Jens Axboe
2017-06-28 14:01 ` Jens Axboe
2017-06-28 15:11 ` Jens Axboe
2017-06-28 21:33 ` Stephen Rothwell
2017-06-13 10:54 Stephen Rothwell
2017-06-15 14:50 ` Sebastian Ott
2017-06-19 9:00 ` Sebastian Ott
2017-06-20 1:45 ` Stephen Rothwell
2017-07-04 15:15 ` Guenter Roeck
2017-07-04 21:40 ` Stephen Rothwell
2017-06-13 4:10 Stephen Rothwell
2017-04-18 3:02 Stephen Rothwell
2017-05-02 1:07 ` Stephen Rothwell
2017-05-02 1:09 ` Jens Axboe
2017-05-02 1:37 ` Stephen Rothwell
2017-05-02 1:45 ` Jens Axboe
2017-01-30 1:43 Stephen Rothwell
2017-01-30 1:53 ` Jens Axboe
2017-01-30 3:07 ` Jens Axboe
2017-01-30 6:34 ` Christoph Hellwig
2016-12-01 2:55 Stephen Rothwell
2016-12-01 3:00 ` Jens Axboe
2016-12-01 3:02 ` Stephen Rothwell
2016-12-01 3:04 ` Jens Axboe
2016-11-08 3:21 Stephen Rothwell
2016-11-08 3:28 ` Jens Axboe
2016-09-19 6:18 Stephen Rothwell
2016-09-19 13:48 ` Christoph Hellwig
2016-09-19 14:22 ` Jens Axboe
2016-09-16 1:14 Stephen Rothwell
2016-09-16 4:13 ` Jens Axboe
2016-04-26 3:38 Stephen Rothwell
2016-04-26 13:30 ` Michal Marek
2016-04-26 13:56 ` Stephen Rothwell
[not found] ` <v3THaCMkCzylcv3TJavAje@videotron.ca>
2016-04-26 14:40 ` Nicolas Pitre
2016-04-26 14:41 ` Jens Axboe
2016-04-26 15:18 ` Stephen Rothwell
2016-04-26 20:48 ` Nicolas Pitre
2016-04-26 21:39 ` Stephen Rothwell
2016-04-27 9:02 ` Michal Marek
2016-04-27 13:46 ` Nicolas Pitre
2016-03-07 3:29 Stephen Rothwell
2015-12-02 16:19 Mark Brown
2015-12-02 16:45 ` Christoph Hellwig
2015-12-02 21:07 ` Jens Axboe
2015-12-02 21:14 ` Keith Busch
2015-12-02 21:27 ` Jens Axboe
2015-12-03 7:35 ` Christoph Hellwig
2015-12-03 8:39 ` Matias Bjørling
2015-12-03 9:06 ` Christoph Hellwig
2015-12-03 9:52 ` Matias Bjørling
2015-12-03 9:57 ` Christoph Hellwig
2015-12-03 10:09 ` Matias Bjørling
2015-12-03 10:21 ` Christoph Hellwig
2015-12-03 11:07 ` Matias Bjørling
2015-12-03 16:42 ` Christoph Hellwig
2015-12-04 12:16 ` Matias Bjørling
2015-10-06 1:43 Stephen Rothwell
2015-10-06 1:54 ` kbuild test robot
2015-10-06 7:20 ` Ming Lei
2015-07-30 4:17 Stephen Rothwell
2015-07-30 6:19 ` Christoph Hellwig
2015-07-30 12:24 ` Stephen Rothwell
2015-07-30 14:38 ` Drokin, Oleg
2015-02-09 4:25 Stephen Rothwell
2015-01-21 3:45 Stephen Rothwell
2014-11-17 3:44 Stephen Rothwell
2014-11-17 19:51 ` Jens Axboe
2014-11-11 2:12 Stephen Rothwell
2014-11-11 11:20 ` Fabian Frederick
2014-11-11 15:27 ` Jens Axboe
2014-11-14 16:19 ` Fabian Frederick
2013-11-26 2:30 Stephen Rothwell
2013-11-04 3:13 Stephen Rothwell
2013-11-04 3:23 ` Jens Axboe
2013-11-04 3:32 ` Jens Axboe
2013-11-04 3:39 ` Stephen Rothwell
2013-11-01 4:01 Stephen Rothwell
2013-02-06 3:06 Stephen Rothwell
2013-02-06 8:33 ` Jens Axboe
2012-10-10 1:14 Stephen Rothwell
2012-09-27 3:27 Stephen Rothwell
2012-09-27 7:37 ` Jens Axboe
2011-12-19 3:19 Stephen Rothwell
2011-12-19 9:37 ` Jens Axboe
2011-12-19 16:41 ` Tejun Heo
2011-12-19 9:45 ` Sedat Dilek
2011-12-19 9:48 ` Jens Axboe
2011-12-19 11:32 ` Stephen Rothwell
2011-12-16 1:50 Stephen Rothwell
2011-12-16 8:20 ` Jens Axboe
2011-09-17 11:18 Stephen Rothwell
2011-07-04 3:48 Stephen Rothwell
2011-06-01 1:01 Stephen Rothwell
2011-06-01 6:26 ` Jens Axboe
2011-06-01 13:43 ` Konrad Rzeszutek Wilk
2011-03-25 3:30 Stephen Rothwell
2011-03-25 4:08 ` Akinobu Mita
2011-03-25 5:25 ` Stephen Rothwell
2011-03-14 5:19 Stephen Rothwell
2011-03-16 23:32 ` Stephen Rothwell
2011-03-17 10:18 ` Jens Axboe
2011-03-17 10:36 ` David Woodhouse
2011-03-17 10:45 ` Jens Axboe
2011-03-21 23:33 ` Stephen Rothwell
2011-03-10 3:08 Stephen Rothwell
2011-03-10 7:15 ` Jens Axboe
2011-03-07 2:39 Stephen Rothwell
2011-01-07 0:05 Stephen Rothwell
2011-01-07 7:32 ` Jens Axboe
2011-01-07 10:52 ` Sedat Dilek
2011-01-07 12:17 ` Stephen Rothwell
2011-01-07 13:19 ` Sedat Dilek
2011-01-07 14:22 ` Stephen Rothwell
2011-01-07 15:08 ` Jens Axboe
2011-01-07 18:04 ` Sedat Dilek
2011-01-07 18:20 ` Sedat Dilek
2010-12-23 1:53 Stephen Rothwell
2010-12-23 22:36 ` Nicholas A. Bellinger
2010-10-11 3:18 Stephen Rothwell
2010-10-23 2:51 ` Stephen Rothwell
2010-09-17 1:37 Stephen Rothwell
2010-09-17 3:19 ` Christoph Hellwig
2010-08-09 1:28 Stephen Rothwell
2010-08-09 1:50 ` Jens Axboe
2010-08-05 1:47 Stephen Rothwell
2010-08-05 6:35 ` Jens Axboe
2010-08-03 3:12 Stephen Rothwell
2010-08-03 7:46 ` Jens Axboe
2010-08-03 8:26 ` Christoph Hellwig
2010-05-18 3:37 Stephen Rothwell
2010-05-18 8:56 ` Jens Axboe
2010-05-18 10:20 ` Stephen Rothwell
2010-05-18 10:50 ` Jens Axboe
2010-04-29 3:52 Stephen Rothwell
2010-04-29 7:31 ` Jens Axboe
2010-04-28 3:52 Stephen Rothwell
2010-04-28 5:34 ` Jens Axboe
2010-04-15 2:42 Stephen Rothwell
2010-04-15 5:23 ` Divyesh Shah
2010-04-15 6:16 ` Stephen Rothwell
2010-04-15 6:56 ` Jens Axboe
2010-02-23 2:26 Stephen Rothwell
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=202608140117.H5jC1r7B-lkp@intel.com \
--to=lkp@intel.com \
--cc=axboe@kernel.dk \
--cc=brauner@kernel.org \
--cc=broonie@kernel.org \
--cc=changfengnan@bytedance.com \
--cc=hare@kernel.org \
--cc=hch@lst.de \
--cc=kbusch@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-next@vger.kernel.org \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox