Hi Jens, Today's linux-next merge of the block tree got a conflict in fs/f2fs/segment.c between commit a79ad49b87f4 ("f2fs: introduce a bio array for per-page write bios") from the f2fs tree and commit 4f024f3797c4 ("block: Abstract out bvec iterator") from the block tree. I fixed it up (see below) and can carry the fix as necessary (no action is required). -- Cheers, Stephen Rothwell sfr@canb.auug.org.au diff --cc fs/f2fs/segment.c index 1c84b7e15631,36e8afd8e1e4..000000000000 --- a/fs/f2fs/segment.c +++ b/fs/f2fs/segment.c @@@ -908,9 -681,9 +906,9 @@@ retry } bio_blocks = MAX_BIO_BLOCKS(max_hw_blocks(sbi)); - sbi->bio[type] = f2fs_bio_alloc(bdev, bio_blocks); - sbi->bio[type]->bi_iter.bi_sector = SECTOR_FROM_BLOCK(sbi, blk_addr); - sbi->bio[type]->bi_private = priv; + io->bio = f2fs_bio_alloc(bdev, bio_blocks); - io->bio->bi_sector = SECTOR_FROM_BLOCK(sbi, blk_addr); ++ io->bio->bi_iter.bi_sector = SECTOR_FROM_BLOCK(sbi, blk_addr); + io->bio->bi_private = priv; /* * The end_io will be assigned at the sumbission phase. * Until then, let bio_add_page() merge consecutive IOs as much