Hi Jens, Today's linux-next merge of the block tree got a conflict in drivers/md/raid10.c between commit fd01b88c75a7 ("md: remove typedefs: mddev_t -> struct mddev") from Linus' tree and commit 5a7bbad27a41 ("block: remove support for bio remapping from ->make_request") from the block tree. I fixed it up (see below) and can carry the fix as necessary. -- Cheers, Stephen Rothwell sfr@canb.auug.org.au diff --cc drivers/md/raid10.c index c025a82,ea5fc0b..0000000 --- a/drivers/md/raid10.c +++ b/drivers/md/raid10.c @@@ -842,11 -830,11 +842,11 @@@ static void unfreeze_array(struct r10co spin_unlock_irq(&conf->resync_lock); } - static int make_request(struct mddev *mddev, struct bio * bio) -static void make_request(mddev_t *mddev, struct bio * bio) ++static void make_request(struct mddev *mddev, struct bio * bio) { - conf_t *conf = mddev->private; - mirror_info_t *mirror; - r10bio_t *r10_bio; + struct r10conf *conf = mddev->private; + struct mirror_info *mirror; + struct r10bio *r10_bio; struct bio *read_bio; int i; int chunk_sects = conf->chunk_mask + 1; @@@ -1176,12 -1156,11 +1174,11 @@@ retry_write if (do_sync || !mddev->bitmap || !plugged) md_wakeup_thread(mddev->thread); - return 0; } -static void status(struct seq_file *seq, mddev_t *mddev) +static void status(struct seq_file *seq, struct mddev *mddev) { - conf_t *conf = mddev->private; + struct r10conf *conf = mddev->private; int i; if (conf->near_copies < conf->raid_disks)