diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2020-03-30 11:20:13 -0700 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2020-03-30 11:20:13 -0700 | 
| commit | 10f36b1e80a9f7afdaefe6f0b06dcdf89715eed7 (patch) | |
| tree | b47a3af19ab20a7cd6c1578db4afba1a85a8ec5b /drivers/s390 | |
| parent | 3a0eb192c01f43dca12628d8b5866d5b8ffb35f5 (diff) | |
| parent | 654a3667df364f778b9b5bcdfb32e545aceb6a51 (diff) | |
| download | linux-10f36b1e80a9f7afdaefe6f0b06dcdf89715eed7.tar.bz2 | |
Merge tag 'for-5.7/block-2020-03-29' of git://git.kernel.dk/linux-block
Pull block updates from Jens Axboe:
 - Online capacity resizing (Balbir)
 - Number of hardware queue change fixes (Bart)
 - null_blk fault injection addition (Bart)
 - Cleanup of queue allocation, unifying the node/no-node API
   (Christoph)
 - Cleanup of genhd, moving code to where it makes sense (Christoph)
 - Cleanup of the partition handling code (Christoph)
 - disk stat fixes/improvements (Konstantin)
 - BFQ improvements (Paolo)
 - Various fixes and improvements
* tag 'for-5.7/block-2020-03-29' of git://git.kernel.dk/linux-block: (72 commits)
  block: return NULL in blk_alloc_queue() on error
  block: move bio_map_* to blk-map.c
  Revert "blkdev: check for valid request queue before issuing flush"
  block: simplify queue allocation
  bcache: pass the make_request methods to blk_queue_make_request
  null_blk: use blk_mq_init_queue_data
  block: add a blk_mq_init_queue_data helper
  block: move the ->devnode callback to struct block_device_operations
  block: move the part_stat* helpers from genhd.h to a new header
  block: move block layer internals out of include/linux/genhd.h
  block: move guard_bio_eod to bio.c
  block: unexport get_gendisk
  block: unexport disk_map_sector_rcu
  block: unexport disk_get_part
  block: mark part_in_flight and part_in_flight_rw static
  block: mark block_depr static
  block: factor out requeue handling from dispatch code
  block/diskstats: replace time_in_queue with sum of request times
  block/diskstats: accumulate all per-cpu counters in one pass
  block/diskstats: more accurate approximation of io_ticks for slow disks
  ...
Diffstat (limited to 'drivers/s390')
| -rw-r--r-- | drivers/s390/block/dcssblk.c | 4 | ||||
| -rw-r--r-- | drivers/s390/block/xpram.c | 4 | 
2 files changed, 4 insertions, 4 deletions
| diff --git a/drivers/s390/block/dcssblk.c b/drivers/s390/block/dcssblk.c index 63502ca537eb..80d22290f268 100644 --- a/drivers/s390/block/dcssblk.c +++ b/drivers/s390/block/dcssblk.c @@ -636,10 +636,10 @@ dcssblk_add_store(struct device *dev, struct device_attribute *attr, const char  	}  	dev_info->gd->major = dcssblk_major;  	dev_info->gd->fops = &dcssblk_devops; -	dev_info->dcssblk_queue = blk_alloc_queue(GFP_KERNEL); +	dev_info->dcssblk_queue = +		blk_alloc_queue(dcssblk_make_request, NUMA_NO_NODE);  	dev_info->gd->queue = dev_info->dcssblk_queue;  	dev_info->gd->private_data = dev_info; -	blk_queue_make_request(dev_info->dcssblk_queue, dcssblk_make_request);  	blk_queue_logical_block_size(dev_info->dcssblk_queue, 4096);  	blk_queue_flag_set(QUEUE_FLAG_DAX, dev_info->dcssblk_queue); diff --git a/drivers/s390/block/xpram.c b/drivers/s390/block/xpram.c index 3df5d68d09f0..45a04daec89e 100644 --- a/drivers/s390/block/xpram.c +++ b/drivers/s390/block/xpram.c @@ -343,14 +343,14 @@ static int __init xpram_setup_blkdev(void)  		xpram_disks[i] = alloc_disk(1);  		if (!xpram_disks[i])  			goto out; -		xpram_queues[i] = blk_alloc_queue(GFP_KERNEL); +		xpram_queues[i] = blk_alloc_queue(xpram_make_request, +				NUMA_NO_NODE);  		if (!xpram_queues[i]) {  			put_disk(xpram_disks[i]);  			goto out;  		}  		blk_queue_flag_set(QUEUE_FLAG_NONROT, xpram_queues[i]);  		blk_queue_flag_clear(QUEUE_FLAG_ADD_RANDOM, xpram_queues[i]); -		blk_queue_make_request(xpram_queues[i], xpram_make_request);  		blk_queue_logical_block_size(xpram_queues[i], 4096);  	} |