Hi Jens, Today's linux-next merge of the block tree got a conflict in drivers/block/aoe/aoeblk.c between commit 7135a71b19be1faf48b7148d77844d03bc0717d6 ("aoe: allocate unused request_queue for sysfs") from Linus' tree and commit 5063fe01e7dc205ebca89877f8eb01d6a5b0ebd6 ("writeback: add name to backing_dev_info") from the block tree. I fixed it up (see below) and can carry the fix for a while. -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx diff --cc drivers/block/aoe/aoeblk.c index 1e15889,0efb8fc..0000000 --- a/drivers/block/aoe/aoeblk.c +++ b/drivers/block/aoe/aoeblk.c @@@ -264,12 -264,10 +264,13 @@@ aoeblk_gdalloc(void *vp goto err_disk; } - blk_queue_make_request(&d->blkq, aoeblk_make_request); - d->blkq.backing_dev_info.name = "aoe"; - if (bdi_init(&d->blkq.backing_dev_info)) + d->blkq = blk_alloc_queue(GFP_KERNEL); + if (!d->blkq) goto err_mempool; + blk_queue_make_request(d->blkq, aoeblk_make_request); ++ d->blkq->backing_dev_info.name = "aoe"; + if (bdi_init(&d->blkq->backing_dev_info)) + goto err_blkq; spin_lock_irqsave(&d->lock, flags); gd->major = AOE_MAJOR; gd->first_minor = d->sysminor * AOE_PARTITIONS; -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html