Christoph Hellwig | 3dcf60b | 2019-04-30 14:42:43 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Functions related to setting various queue properties from drivers |
| 4 | */ |
| 5 | #include <linux/kernel.h> |
| 6 | #include <linux/module.h> |
| 7 | #include <linux/init.h> |
| 8 | #include <linux/bio.h> |
| 9 | #include <linux/blkdev.h> |
Matthew Wilcox (Oracle) | 4ee60ec | 2021-05-06 18:02:27 -0700 | [diff] [blame] | 10 | #include <linux/pagemap.h> |
Christoph Hellwig | edb0872 | 2021-08-09 16:17:43 +0200 | [diff] [blame] | 11 | #include <linux/backing-dev-defs.h> |
Martin K. Petersen | 70dd5bf | 2009-07-31 11:49:12 -0400 | [diff] [blame] | 12 | #include <linux/gcd.h> |
Martin K. Petersen | 2cda272 | 2010-03-15 12:46:51 +0100 | [diff] [blame] | 13 | #include <linux/lcm.h> |
Randy Dunlap | ad5ebd2 | 2009-11-11 13:47:45 +0100 | [diff] [blame] | 14 | #include <linux/jiffies.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 15 | #include <linux/gfp.h> |
Yoshihiro Shimoda | 45147fb | 2019-08-28 21:35:42 +0900 | [diff] [blame] | 16 | #include <linux/dma-mapping.h> |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 17 | |
| 18 | #include "blk.h" |
Jens Axboe | 87760e5 | 2016-11-09 12:38:14 -0700 | [diff] [blame] | 19 | #include "blk-wbt.h" |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 20 | |
Jens Axboe | 242f9dc | 2008-09-14 05:55:09 -0700 | [diff] [blame] | 21 | void blk_queue_rq_timeout(struct request_queue *q, unsigned int timeout) |
| 22 | { |
| 23 | q->rq_timeout = timeout; |
| 24 | } |
| 25 | EXPORT_SYMBOL_GPL(blk_queue_rq_timeout); |
| 26 | |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 27 | /** |
Martin K. Petersen | e475bba | 2009-06-16 08:23:52 +0200 | [diff] [blame] | 28 | * blk_set_default_limits - reset limits to default values |
Randy Dunlap | f740f5ca | 2009-06-19 09:18:32 +0200 | [diff] [blame] | 29 | * @lim: the queue_limits structure to reset |
Martin K. Petersen | e475bba | 2009-06-16 08:23:52 +0200 | [diff] [blame] | 30 | * |
| 31 | * Description: |
Martin K. Petersen | b1bd055 | 2012-01-11 16:27:11 +0100 | [diff] [blame] | 32 | * Returns a queue_limit struct to its default state. |
Martin K. Petersen | e475bba | 2009-06-16 08:23:52 +0200 | [diff] [blame] | 33 | */ |
| 34 | void blk_set_default_limits(struct queue_limits *lim) |
| 35 | { |
Martin K. Petersen | 8a78362 | 2010-02-26 00:20:39 -0500 | [diff] [blame] | 36 | lim->max_segments = BLK_MAX_SEGMENTS; |
Christoph Hellwig | 1e73973 | 2017-02-08 14:46:49 +0100 | [diff] [blame] | 37 | lim->max_discard_segments = 1; |
Martin K. Petersen | 13f05c8 | 2010-09-10 20:50:10 +0200 | [diff] [blame] | 38 | lim->max_integrity_segments = 0; |
Martin K. Petersen | e475bba | 2009-06-16 08:23:52 +0200 | [diff] [blame] | 39 | lim->seg_boundary_mask = BLK_SEG_BOUNDARY_MASK; |
Keith Busch | 03100aa | 2015-08-19 14:24:05 -0700 | [diff] [blame] | 40 | lim->virt_boundary_mask = 0; |
Martin K. Petersen | eb28d31 | 2010-02-26 00:20:37 -0500 | [diff] [blame] | 41 | lim->max_segment_size = BLK_MAX_SEGMENT_SIZE; |
Keith Busch | 5f009d3 | 2016-02-10 16:52:47 -0700 | [diff] [blame] | 42 | lim->max_sectors = lim->max_hw_sectors = BLK_SAFE_MAX_SECTORS; |
| 43 | lim->max_dev_sectors = 0; |
Jens Axboe | 762380a | 2014-06-05 13:38:39 -0600 | [diff] [blame] | 44 | lim->chunk_sectors = 0; |
Martin K. Petersen | 4363ac7 | 2012-09-18 12:19:27 -0400 | [diff] [blame] | 45 | lim->max_write_same_sectors = 0; |
Chaitanya Kulkarni | a6f0788 | 2016-11-30 12:28:59 -0800 | [diff] [blame] | 46 | lim->max_write_zeroes_sectors = 0; |
Keith Busch | 0512a75 | 2020-05-12 17:55:47 +0900 | [diff] [blame] | 47 | lim->max_zone_append_sectors = 0; |
Martin K. Petersen | 86b3728 | 2009-11-10 11:50:21 +0100 | [diff] [blame] | 48 | lim->max_discard_sectors = 0; |
Jens Axboe | 0034af0 | 2015-07-16 09:14:26 -0600 | [diff] [blame] | 49 | lim->max_hw_discard_sectors = 0; |
Martin K. Petersen | 86b3728 | 2009-11-10 11:50:21 +0100 | [diff] [blame] | 50 | lim->discard_granularity = 0; |
| 51 | lim->discard_alignment = 0; |
| 52 | lim->discard_misaligned = 0; |
Martin K. Petersen | e475bba | 2009-06-16 08:23:52 +0200 | [diff] [blame] | 53 | lim->logical_block_size = lim->physical_block_size = lim->io_min = 512; |
Christoph Hellwig | 9bb33f2 | 2021-03-31 09:30:00 +0200 | [diff] [blame] | 54 | lim->bounce = BLK_BOUNCE_NONE; |
Martin K. Petersen | e475bba | 2009-06-16 08:23:52 +0200 | [diff] [blame] | 55 | lim->alignment_offset = 0; |
| 56 | lim->io_opt = 0; |
| 57 | lim->misaligned = 0; |
Damien Le Moal | 797476b | 2016-10-18 15:40:29 +0900 | [diff] [blame] | 58 | lim->zoned = BLK_ZONED_NONE; |
Damien Le Moal | a805a4f | 2021-01-28 13:47:30 +0900 | [diff] [blame] | 59 | lim->zone_write_granularity = 0; |
Martin K. Petersen | e475bba | 2009-06-16 08:23:52 +0200 | [diff] [blame] | 60 | } |
| 61 | EXPORT_SYMBOL(blk_set_default_limits); |
| 62 | |
| 63 | /** |
Martin K. Petersen | b1bd055 | 2012-01-11 16:27:11 +0100 | [diff] [blame] | 64 | * blk_set_stacking_limits - set default limits for stacking devices |
| 65 | * @lim: the queue_limits structure to reset |
| 66 | * |
| 67 | * Description: |
| 68 | * Returns a queue_limit struct to its default state. Should be used |
| 69 | * by stacking drivers like DM that have no internal limits. |
| 70 | */ |
| 71 | void blk_set_stacking_limits(struct queue_limits *lim) |
| 72 | { |
| 73 | blk_set_default_limits(lim); |
| 74 | |
| 75 | /* Inherit limits from component devices */ |
Martin K. Petersen | b1bd055 | 2012-01-11 16:27:11 +0100 | [diff] [blame] | 76 | lim->max_segments = USHRT_MAX; |
Mike Snitzer | 42c9cdf | 2018-07-20 14:57:38 -0400 | [diff] [blame] | 77 | lim->max_discard_segments = USHRT_MAX; |
Martin K. Petersen | b1bd055 | 2012-01-11 16:27:11 +0100 | [diff] [blame] | 78 | lim->max_hw_sectors = UINT_MAX; |
Mike Snitzer | d82ae52 | 2013-10-18 09:44:49 -0600 | [diff] [blame] | 79 | lim->max_segment_size = UINT_MAX; |
Mike Snitzer | fe86cdc | 2012-08-01 10:44:28 +0200 | [diff] [blame] | 80 | lim->max_sectors = UINT_MAX; |
Martin K. Petersen | ca369d5 | 2015-11-13 16:46:48 -0500 | [diff] [blame] | 81 | lim->max_dev_sectors = UINT_MAX; |
Martin K. Petersen | 4363ac7 | 2012-09-18 12:19:27 -0400 | [diff] [blame] | 82 | lim->max_write_same_sectors = UINT_MAX; |
Chaitanya Kulkarni | a6f0788 | 2016-11-30 12:28:59 -0800 | [diff] [blame] | 83 | lim->max_write_zeroes_sectors = UINT_MAX; |
Keith Busch | 0512a75 | 2020-05-12 17:55:47 +0900 | [diff] [blame] | 84 | lim->max_zone_append_sectors = UINT_MAX; |
Martin K. Petersen | b1bd055 | 2012-01-11 16:27:11 +0100 | [diff] [blame] | 85 | } |
| 86 | EXPORT_SYMBOL(blk_set_stacking_limits); |
| 87 | |
| 88 | /** |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 89 | * blk_queue_bounce_limit - set bounce buffer limit for queue |
Tejun Heo | cd0aca2 | 2009-04-15 22:10:25 +0900 | [diff] [blame] | 90 | * @q: the request queue for the device |
Christoph Hellwig | 9bb33f2 | 2021-03-31 09:30:00 +0200 | [diff] [blame] | 91 | * @bounce: bounce limit to enforce |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 92 | * |
| 93 | * Description: |
Christoph Hellwig | 9bb33f2 | 2021-03-31 09:30:00 +0200 | [diff] [blame] | 94 | * Force bouncing for ISA DMA ranges or highmem. |
| 95 | * |
| 96 | * DEPRECATED, don't use in new code. |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 97 | **/ |
Christoph Hellwig | 9bb33f2 | 2021-03-31 09:30:00 +0200 | [diff] [blame] | 98 | void blk_queue_bounce_limit(struct request_queue *q, enum blk_bounce bounce) |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 99 | { |
Christoph Hellwig | 9bb33f2 | 2021-03-31 09:30:00 +0200 | [diff] [blame] | 100 | q->limits.bounce = bounce; |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 101 | } |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 102 | EXPORT_SYMBOL(blk_queue_bounce_limit); |
| 103 | |
| 104 | /** |
Martin K. Petersen | ca369d5 | 2015-11-13 16:46:48 -0500 | [diff] [blame] | 105 | * blk_queue_max_hw_sectors - set max sectors for a request for this queue |
| 106 | * @q: the request queue for the device |
Martin K. Petersen | 2800aac | 2010-02-26 00:20:35 -0500 | [diff] [blame] | 107 | * @max_hw_sectors: max hardware sectors in the usual 512b unit |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 108 | * |
| 109 | * Description: |
Martin K. Petersen | 2800aac | 2010-02-26 00:20:35 -0500 | [diff] [blame] | 110 | * Enables a low level driver to set a hard upper limit, |
| 111 | * max_hw_sectors, on the size of requests. max_hw_sectors is set by |
Martin K. Petersen | 4f258a4 | 2015-06-23 12:13:59 -0400 | [diff] [blame] | 112 | * the device driver based upon the capabilities of the I/O |
| 113 | * controller. |
Martin K. Petersen | 2800aac | 2010-02-26 00:20:35 -0500 | [diff] [blame] | 114 | * |
Martin K. Petersen | ca369d5 | 2015-11-13 16:46:48 -0500 | [diff] [blame] | 115 | * max_dev_sectors is a hard limit imposed by the storage device for |
| 116 | * READ/WRITE requests. It is set by the disk driver. |
| 117 | * |
Martin K. Petersen | 2800aac | 2010-02-26 00:20:35 -0500 | [diff] [blame] | 118 | * max_sectors is a soft limit imposed by the block layer for |
| 119 | * filesystem type requests. This value can be overridden on a |
| 120 | * per-device basis in /sys/block/<device>/queue/max_sectors_kb. |
| 121 | * The soft limit can not exceed max_hw_sectors. |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 122 | **/ |
Martin K. Petersen | ca369d5 | 2015-11-13 16:46:48 -0500 | [diff] [blame] | 123 | void blk_queue_max_hw_sectors(struct request_queue *q, unsigned int max_hw_sectors) |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 124 | { |
Martin K. Petersen | ca369d5 | 2015-11-13 16:46:48 -0500 | [diff] [blame] | 125 | struct queue_limits *limits = &q->limits; |
| 126 | unsigned int max_sectors; |
| 127 | |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 128 | if ((max_hw_sectors << 9) < PAGE_SIZE) { |
| 129 | max_hw_sectors = 1 << (PAGE_SHIFT - 9); |
Harvey Harrison | 24c03d4 | 2008-05-01 04:35:17 -0700 | [diff] [blame] | 130 | printk(KERN_INFO "%s: set to minimum %d\n", |
Martin K. Petersen | 2800aac | 2010-02-26 00:20:35 -0500 | [diff] [blame] | 131 | __func__, max_hw_sectors); |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 132 | } |
| 133 | |
Damien Le Moal | 817046e | 2020-11-20 10:55:13 +0900 | [diff] [blame] | 134 | max_hw_sectors = round_down(max_hw_sectors, |
| 135 | limits->logical_block_size >> SECTOR_SHIFT); |
Jeff Moyer | 30e2bc0 | 2015-08-13 14:57:56 -0400 | [diff] [blame] | 136 | limits->max_hw_sectors = max_hw_sectors; |
Damien Le Moal | 817046e | 2020-11-20 10:55:13 +0900 | [diff] [blame] | 137 | |
Martin K. Petersen | ca369d5 | 2015-11-13 16:46:48 -0500 | [diff] [blame] | 138 | max_sectors = min_not_zero(max_hw_sectors, limits->max_dev_sectors); |
| 139 | max_sectors = min_t(unsigned int, max_sectors, BLK_DEF_MAX_SECTORS); |
Damien Le Moal | 817046e | 2020-11-20 10:55:13 +0900 | [diff] [blame] | 140 | max_sectors = round_down(max_sectors, |
| 141 | limits->logical_block_size >> SECTOR_SHIFT); |
Martin K. Petersen | ca369d5 | 2015-11-13 16:46:48 -0500 | [diff] [blame] | 142 | limits->max_sectors = max_sectors; |
Damien Le Moal | 817046e | 2020-11-20 10:55:13 +0900 | [diff] [blame] | 143 | |
Christoph Hellwig | d152c68 | 2021-08-16 15:46:24 +0200 | [diff] [blame] | 144 | if (!q->disk) |
Christoph Hellwig | edb0872 | 2021-08-09 16:17:43 +0200 | [diff] [blame] | 145 | return; |
Christoph Hellwig | d152c68 | 2021-08-16 15:46:24 +0200 | [diff] [blame] | 146 | q->disk->bdi->io_pages = max_sectors >> (PAGE_SHIFT - 9); |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 147 | } |
Martin K. Petersen | 086fa5f | 2010-02-26 00:20:38 -0500 | [diff] [blame] | 148 | EXPORT_SYMBOL(blk_queue_max_hw_sectors); |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 149 | |
| 150 | /** |
Jens Axboe | 762380a | 2014-06-05 13:38:39 -0600 | [diff] [blame] | 151 | * blk_queue_chunk_sectors - set size of the chunk for this queue |
| 152 | * @q: the request queue for the device |
| 153 | * @chunk_sectors: chunk sectors in the usual 512b unit |
| 154 | * |
| 155 | * Description: |
| 156 | * If a driver doesn't want IOs to cross a given chunk size, it can set |
Mike Snitzer | 07d098e | 2020-09-21 22:32:49 -0400 | [diff] [blame] | 157 | * this limit and prevent merging across chunks. Note that the block layer |
| 158 | * must accept a page worth of data at any offset. So if the crossing of |
| 159 | * chunks is a hard limitation in the driver, it must still be prepared |
| 160 | * to split single page bios. |
Jens Axboe | 762380a | 2014-06-05 13:38:39 -0600 | [diff] [blame] | 161 | **/ |
| 162 | void blk_queue_chunk_sectors(struct request_queue *q, unsigned int chunk_sectors) |
| 163 | { |
Jens Axboe | 762380a | 2014-06-05 13:38:39 -0600 | [diff] [blame] | 164 | q->limits.chunk_sectors = chunk_sectors; |
| 165 | } |
| 166 | EXPORT_SYMBOL(blk_queue_chunk_sectors); |
| 167 | |
| 168 | /** |
Christoph Hellwig | 67efc92 | 2009-09-30 13:54:20 +0200 | [diff] [blame] | 169 | * blk_queue_max_discard_sectors - set max sectors for a single discard |
| 170 | * @q: the request queue for the device |
Randy Dunlap | c7ebf06 | 2009-10-12 08:20:47 +0200 | [diff] [blame] | 171 | * @max_discard_sectors: maximum number of sectors to discard |
Christoph Hellwig | 67efc92 | 2009-09-30 13:54:20 +0200 | [diff] [blame] | 172 | **/ |
| 173 | void blk_queue_max_discard_sectors(struct request_queue *q, |
| 174 | unsigned int max_discard_sectors) |
| 175 | { |
Jens Axboe | 0034af0 | 2015-07-16 09:14:26 -0600 | [diff] [blame] | 176 | q->limits.max_hw_discard_sectors = max_discard_sectors; |
Christoph Hellwig | 67efc92 | 2009-09-30 13:54:20 +0200 | [diff] [blame] | 177 | q->limits.max_discard_sectors = max_discard_sectors; |
| 178 | } |
| 179 | EXPORT_SYMBOL(blk_queue_max_discard_sectors); |
| 180 | |
| 181 | /** |
Martin K. Petersen | 4363ac7 | 2012-09-18 12:19:27 -0400 | [diff] [blame] | 182 | * blk_queue_max_write_same_sectors - set max sectors for a single write same |
| 183 | * @q: the request queue for the device |
| 184 | * @max_write_same_sectors: maximum number of sectors to write per command |
| 185 | **/ |
| 186 | void blk_queue_max_write_same_sectors(struct request_queue *q, |
| 187 | unsigned int max_write_same_sectors) |
| 188 | { |
| 189 | q->limits.max_write_same_sectors = max_write_same_sectors; |
| 190 | } |
| 191 | EXPORT_SYMBOL(blk_queue_max_write_same_sectors); |
| 192 | |
| 193 | /** |
Chaitanya Kulkarni | a6f0788 | 2016-11-30 12:28:59 -0800 | [diff] [blame] | 194 | * blk_queue_max_write_zeroes_sectors - set max sectors for a single |
| 195 | * write zeroes |
| 196 | * @q: the request queue for the device |
| 197 | * @max_write_zeroes_sectors: maximum number of sectors to write per command |
| 198 | **/ |
| 199 | void blk_queue_max_write_zeroes_sectors(struct request_queue *q, |
| 200 | unsigned int max_write_zeroes_sectors) |
| 201 | { |
| 202 | q->limits.max_write_zeroes_sectors = max_write_zeroes_sectors; |
| 203 | } |
| 204 | EXPORT_SYMBOL(blk_queue_max_write_zeroes_sectors); |
| 205 | |
| 206 | /** |
Keith Busch | 0512a75 | 2020-05-12 17:55:47 +0900 | [diff] [blame] | 207 | * blk_queue_max_zone_append_sectors - set max sectors for a single zone append |
| 208 | * @q: the request queue for the device |
| 209 | * @max_zone_append_sectors: maximum number of sectors to write per command |
| 210 | **/ |
| 211 | void blk_queue_max_zone_append_sectors(struct request_queue *q, |
| 212 | unsigned int max_zone_append_sectors) |
| 213 | { |
| 214 | unsigned int max_sectors; |
| 215 | |
| 216 | if (WARN_ON(!blk_queue_is_zoned(q))) |
| 217 | return; |
| 218 | |
| 219 | max_sectors = min(q->limits.max_hw_sectors, max_zone_append_sectors); |
| 220 | max_sectors = min(q->limits.chunk_sectors, max_sectors); |
| 221 | |
| 222 | /* |
| 223 | * Signal eventual driver bugs resulting in the max_zone_append sectors limit |
| 224 | * being 0 due to a 0 argument, the chunk_sectors limit (zone size) not set, |
| 225 | * or the max_hw_sectors limit not set. |
| 226 | */ |
| 227 | WARN_ON(!max_sectors); |
| 228 | |
| 229 | q->limits.max_zone_append_sectors = max_sectors; |
| 230 | } |
| 231 | EXPORT_SYMBOL_GPL(blk_queue_max_zone_append_sectors); |
| 232 | |
| 233 | /** |
Martin K. Petersen | 8a78362 | 2010-02-26 00:20:39 -0500 | [diff] [blame] | 234 | * blk_queue_max_segments - set max hw segments for a request for this queue |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 235 | * @q: the request queue for the device |
| 236 | * @max_segments: max number of segments |
| 237 | * |
| 238 | * Description: |
| 239 | * Enables a low level driver to set an upper limit on the number of |
Martin K. Petersen | 8a78362 | 2010-02-26 00:20:39 -0500 | [diff] [blame] | 240 | * hw data segments in a request. |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 241 | **/ |
Martin K. Petersen | 8a78362 | 2010-02-26 00:20:39 -0500 | [diff] [blame] | 242 | void blk_queue_max_segments(struct request_queue *q, unsigned short max_segments) |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 243 | { |
| 244 | if (!max_segments) { |
| 245 | max_segments = 1; |
Harvey Harrison | 24c03d4 | 2008-05-01 04:35:17 -0700 | [diff] [blame] | 246 | printk(KERN_INFO "%s: set to minimum %d\n", |
| 247 | __func__, max_segments); |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 248 | } |
| 249 | |
Martin K. Petersen | 8a78362 | 2010-02-26 00:20:39 -0500 | [diff] [blame] | 250 | q->limits.max_segments = max_segments; |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 251 | } |
Martin K. Petersen | 8a78362 | 2010-02-26 00:20:39 -0500 | [diff] [blame] | 252 | EXPORT_SYMBOL(blk_queue_max_segments); |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 253 | |
| 254 | /** |
Christoph Hellwig | 1e73973 | 2017-02-08 14:46:49 +0100 | [diff] [blame] | 255 | * blk_queue_max_discard_segments - set max segments for discard requests |
| 256 | * @q: the request queue for the device |
| 257 | * @max_segments: max number of segments |
| 258 | * |
| 259 | * Description: |
| 260 | * Enables a low level driver to set an upper limit on the number of |
| 261 | * segments in a discard request. |
| 262 | **/ |
| 263 | void blk_queue_max_discard_segments(struct request_queue *q, |
| 264 | unsigned short max_segments) |
| 265 | { |
| 266 | q->limits.max_discard_segments = max_segments; |
| 267 | } |
| 268 | EXPORT_SYMBOL_GPL(blk_queue_max_discard_segments); |
| 269 | |
| 270 | /** |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 271 | * blk_queue_max_segment_size - set max segment size for blk_rq_map_sg |
| 272 | * @q: the request queue for the device |
| 273 | * @max_size: max size of segment in bytes |
| 274 | * |
| 275 | * Description: |
| 276 | * Enables a low level driver to set an upper limit on the size of a |
| 277 | * coalesced segment |
| 278 | **/ |
| 279 | void blk_queue_max_segment_size(struct request_queue *q, unsigned int max_size) |
| 280 | { |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 281 | if (max_size < PAGE_SIZE) { |
| 282 | max_size = PAGE_SIZE; |
Harvey Harrison | 24c03d4 | 2008-05-01 04:35:17 -0700 | [diff] [blame] | 283 | printk(KERN_INFO "%s: set to minimum %d\n", |
| 284 | __func__, max_size); |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 285 | } |
| 286 | |
Christoph Hellwig | 09324d3 | 2019-05-21 09:01:41 +0200 | [diff] [blame] | 287 | /* see blk_queue_virt_boundary() for the explanation */ |
| 288 | WARN_ON_ONCE(q->limits.virt_boundary_mask); |
| 289 | |
Martin K. Petersen | 025146e | 2009-05-22 17:17:51 -0400 | [diff] [blame] | 290 | q->limits.max_segment_size = max_size; |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 291 | } |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 292 | EXPORT_SYMBOL(blk_queue_max_segment_size); |
| 293 | |
| 294 | /** |
Martin K. Petersen | e1defc4 | 2009-05-22 17:17:49 -0400 | [diff] [blame] | 295 | * blk_queue_logical_block_size - set logical block size for the queue |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 296 | * @q: the request queue for the device |
Martin K. Petersen | e1defc4 | 2009-05-22 17:17:49 -0400 | [diff] [blame] | 297 | * @size: the logical block size, in bytes |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 298 | * |
| 299 | * Description: |
Martin K. Petersen | e1defc4 | 2009-05-22 17:17:49 -0400 | [diff] [blame] | 300 | * This should be set to the lowest possible block size that the |
| 301 | * storage device can address. The default of 512 covers most |
| 302 | * hardware. |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 303 | **/ |
Mikulas Patocka | ad6bf88 | 2020-01-15 08:35:25 -0500 | [diff] [blame] | 304 | void blk_queue_logical_block_size(struct request_queue *q, unsigned int size) |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 305 | { |
Damien Le Moal | 817046e | 2020-11-20 10:55:13 +0900 | [diff] [blame] | 306 | struct queue_limits *limits = &q->limits; |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 307 | |
Damien Le Moal | 817046e | 2020-11-20 10:55:13 +0900 | [diff] [blame] | 308 | limits->logical_block_size = size; |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 309 | |
Damien Le Moal | 817046e | 2020-11-20 10:55:13 +0900 | [diff] [blame] | 310 | if (limits->physical_block_size < size) |
| 311 | limits->physical_block_size = size; |
| 312 | |
| 313 | if (limits->io_min < limits->physical_block_size) |
| 314 | limits->io_min = limits->physical_block_size; |
| 315 | |
| 316 | limits->max_hw_sectors = |
| 317 | round_down(limits->max_hw_sectors, size >> SECTOR_SHIFT); |
| 318 | limits->max_sectors = |
| 319 | round_down(limits->max_sectors, size >> SECTOR_SHIFT); |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 320 | } |
Martin K. Petersen | e1defc4 | 2009-05-22 17:17:49 -0400 | [diff] [blame] | 321 | EXPORT_SYMBOL(blk_queue_logical_block_size); |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 322 | |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 323 | /** |
| 324 | * blk_queue_physical_block_size - set physical block size for the queue |
| 325 | * @q: the request queue for the device |
| 326 | * @size: the physical block size, in bytes |
| 327 | * |
| 328 | * Description: |
| 329 | * This should be set to the lowest possible sector size that the |
| 330 | * hardware can operate on without reverting to read-modify-write |
| 331 | * operations. |
| 332 | */ |
Martin K. Petersen | 892b6f9 | 2010-10-13 21:18:03 +0200 | [diff] [blame] | 333 | void blk_queue_physical_block_size(struct request_queue *q, unsigned int size) |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 334 | { |
| 335 | q->limits.physical_block_size = size; |
| 336 | |
| 337 | if (q->limits.physical_block_size < q->limits.logical_block_size) |
| 338 | q->limits.physical_block_size = q->limits.logical_block_size; |
| 339 | |
| 340 | if (q->limits.io_min < q->limits.physical_block_size) |
| 341 | q->limits.io_min = q->limits.physical_block_size; |
| 342 | } |
| 343 | EXPORT_SYMBOL(blk_queue_physical_block_size); |
| 344 | |
| 345 | /** |
Damien Le Moal | a805a4f | 2021-01-28 13:47:30 +0900 | [diff] [blame] | 346 | * blk_queue_zone_write_granularity - set zone write granularity for the queue |
| 347 | * @q: the request queue for the zoned device |
| 348 | * @size: the zone write granularity size, in bytes |
| 349 | * |
| 350 | * Description: |
| 351 | * This should be set to the lowest possible size allowing to write in |
| 352 | * sequential zones of a zoned block device. |
| 353 | */ |
| 354 | void blk_queue_zone_write_granularity(struct request_queue *q, |
| 355 | unsigned int size) |
| 356 | { |
| 357 | if (WARN_ON_ONCE(!blk_queue_is_zoned(q))) |
| 358 | return; |
| 359 | |
| 360 | q->limits.zone_write_granularity = size; |
| 361 | |
| 362 | if (q->limits.zone_write_granularity < q->limits.logical_block_size) |
| 363 | q->limits.zone_write_granularity = q->limits.logical_block_size; |
| 364 | } |
| 365 | EXPORT_SYMBOL_GPL(blk_queue_zone_write_granularity); |
| 366 | |
| 367 | /** |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 368 | * blk_queue_alignment_offset - set physical block alignment offset |
| 369 | * @q: the request queue for the device |
Randy Dunlap | 8ebf975 | 2009-06-11 20:00:41 -0700 | [diff] [blame] | 370 | * @offset: alignment offset in bytes |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 371 | * |
| 372 | * Description: |
| 373 | * Some devices are naturally misaligned to compensate for things like |
| 374 | * the legacy DOS partition table 63-sector offset. Low-level drivers |
| 375 | * should call this function for devices whose first sector is not |
| 376 | * naturally aligned. |
| 377 | */ |
| 378 | void blk_queue_alignment_offset(struct request_queue *q, unsigned int offset) |
| 379 | { |
| 380 | q->limits.alignment_offset = |
| 381 | offset & (q->limits.physical_block_size - 1); |
| 382 | q->limits.misaligned = 0; |
| 383 | } |
| 384 | EXPORT_SYMBOL(blk_queue_alignment_offset); |
| 385 | |
Christoph Hellwig | 471aa70 | 2021-08-09 16:17:41 +0200 | [diff] [blame] | 386 | void disk_update_readahead(struct gendisk *disk) |
Christoph Hellwig | c2e4cd5 | 2020-09-24 08:51:34 +0200 | [diff] [blame] | 387 | { |
Christoph Hellwig | 471aa70 | 2021-08-09 16:17:41 +0200 | [diff] [blame] | 388 | struct request_queue *q = disk->queue; |
| 389 | |
Christoph Hellwig | c2e4cd5 | 2020-09-24 08:51:34 +0200 | [diff] [blame] | 390 | /* |
| 391 | * For read-ahead of large files to be effective, we need to read ahead |
| 392 | * at least twice the optimal I/O size. |
| 393 | */ |
Christoph Hellwig | edb0872 | 2021-08-09 16:17:43 +0200 | [diff] [blame] | 394 | disk->bdi->ra_pages = |
Christoph Hellwig | c2e4cd5 | 2020-09-24 08:51:34 +0200 | [diff] [blame] | 395 | max(queue_io_opt(q) * 2 / PAGE_SIZE, VM_READAHEAD_PAGES); |
Christoph Hellwig | edb0872 | 2021-08-09 16:17:43 +0200 | [diff] [blame] | 396 | disk->bdi->io_pages = queue_max_sectors(q) >> (PAGE_SHIFT - 9); |
Christoph Hellwig | c2e4cd5 | 2020-09-24 08:51:34 +0200 | [diff] [blame] | 397 | } |
Christoph Hellwig | 471aa70 | 2021-08-09 16:17:41 +0200 | [diff] [blame] | 398 | EXPORT_SYMBOL_GPL(disk_update_readahead); |
Christoph Hellwig | c2e4cd5 | 2020-09-24 08:51:34 +0200 | [diff] [blame] | 399 | |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 400 | /** |
Martin K. Petersen | 7c958e3 | 2009-07-31 11:49:11 -0400 | [diff] [blame] | 401 | * blk_limits_io_min - set minimum request size for a device |
| 402 | * @limits: the queue limits |
| 403 | * @min: smallest I/O size in bytes |
| 404 | * |
| 405 | * Description: |
| 406 | * Some devices have an internal block size bigger than the reported |
| 407 | * hardware sector size. This function can be used to signal the |
| 408 | * smallest I/O the device can perform without incurring a performance |
| 409 | * penalty. |
| 410 | */ |
| 411 | void blk_limits_io_min(struct queue_limits *limits, unsigned int min) |
| 412 | { |
| 413 | limits->io_min = min; |
| 414 | |
| 415 | if (limits->io_min < limits->logical_block_size) |
| 416 | limits->io_min = limits->logical_block_size; |
| 417 | |
| 418 | if (limits->io_min < limits->physical_block_size) |
| 419 | limits->io_min = limits->physical_block_size; |
| 420 | } |
| 421 | EXPORT_SYMBOL(blk_limits_io_min); |
| 422 | |
| 423 | /** |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 424 | * blk_queue_io_min - set minimum request size for the queue |
| 425 | * @q: the request queue for the device |
Randy Dunlap | 8ebf975 | 2009-06-11 20:00:41 -0700 | [diff] [blame] | 426 | * @min: smallest I/O size in bytes |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 427 | * |
| 428 | * Description: |
Martin K. Petersen | 7e5f5fb | 2009-07-31 11:49:13 -0400 | [diff] [blame] | 429 | * Storage devices may report a granularity or preferred minimum I/O |
| 430 | * size which is the smallest request the device can perform without |
| 431 | * incurring a performance penalty. For disk drives this is often the |
| 432 | * physical block size. For RAID arrays it is often the stripe chunk |
| 433 | * size. A properly aligned multiple of minimum_io_size is the |
| 434 | * preferred request size for workloads where a high number of I/O |
| 435 | * operations is desired. |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 436 | */ |
| 437 | void blk_queue_io_min(struct request_queue *q, unsigned int min) |
| 438 | { |
Martin K. Petersen | 7c958e3 | 2009-07-31 11:49:11 -0400 | [diff] [blame] | 439 | blk_limits_io_min(&q->limits, min); |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 440 | } |
| 441 | EXPORT_SYMBOL(blk_queue_io_min); |
| 442 | |
| 443 | /** |
Martin K. Petersen | 3c5820c | 2009-09-11 21:54:52 +0200 | [diff] [blame] | 444 | * blk_limits_io_opt - set optimal request size for a device |
| 445 | * @limits: the queue limits |
| 446 | * @opt: smallest I/O size in bytes |
| 447 | * |
| 448 | * Description: |
| 449 | * Storage devices may report an optimal I/O size, which is the |
| 450 | * device's preferred unit for sustained I/O. This is rarely reported |
| 451 | * for disk drives. For RAID arrays it is usually the stripe width or |
| 452 | * the internal track size. A properly aligned multiple of |
| 453 | * optimal_io_size is the preferred request size for workloads where |
| 454 | * sustained throughput is desired. |
| 455 | */ |
| 456 | void blk_limits_io_opt(struct queue_limits *limits, unsigned int opt) |
| 457 | { |
| 458 | limits->io_opt = opt; |
| 459 | } |
| 460 | EXPORT_SYMBOL(blk_limits_io_opt); |
| 461 | |
| 462 | /** |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 463 | * blk_queue_io_opt - set optimal request size for the queue |
| 464 | * @q: the request queue for the device |
Randy Dunlap | 8ebf975 | 2009-06-11 20:00:41 -0700 | [diff] [blame] | 465 | * @opt: optimal request size in bytes |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 466 | * |
| 467 | * Description: |
Martin K. Petersen | 7e5f5fb | 2009-07-31 11:49:13 -0400 | [diff] [blame] | 468 | * Storage devices may report an optimal I/O size, which is the |
| 469 | * device's preferred unit for sustained I/O. This is rarely reported |
| 470 | * for disk drives. For RAID arrays it is usually the stripe width or |
| 471 | * the internal track size. A properly aligned multiple of |
| 472 | * optimal_io_size is the preferred request size for workloads where |
| 473 | * sustained throughput is desired. |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 474 | */ |
| 475 | void blk_queue_io_opt(struct request_queue *q, unsigned int opt) |
| 476 | { |
Martin K. Petersen | 3c5820c | 2009-09-11 21:54:52 +0200 | [diff] [blame] | 477 | blk_limits_io_opt(&q->limits, opt); |
Christoph Hellwig | d152c68 | 2021-08-16 15:46:24 +0200 | [diff] [blame] | 478 | if (!q->disk) |
Christoph Hellwig | edb0872 | 2021-08-09 16:17:43 +0200 | [diff] [blame] | 479 | return; |
Christoph Hellwig | d152c68 | 2021-08-16 15:46:24 +0200 | [diff] [blame] | 480 | q->disk->bdi->ra_pages = |
Christoph Hellwig | c2e4cd5 | 2020-09-24 08:51:34 +0200 | [diff] [blame] | 481 | max(queue_io_opt(q) * 2 / PAGE_SIZE, VM_READAHEAD_PAGES); |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 482 | } |
| 483 | EXPORT_SYMBOL(blk_queue_io_opt); |
| 484 | |
Mikulas Patocka | 97f433c | 2021-02-23 19:25:30 -0700 | [diff] [blame] | 485 | static unsigned int blk_round_down_sectors(unsigned int sectors, unsigned int lbs) |
| 486 | { |
| 487 | sectors = round_down(sectors, lbs >> SECTOR_SHIFT); |
| 488 | if (sectors < PAGE_SIZE >> SECTOR_SHIFT) |
| 489 | sectors = PAGE_SIZE >> SECTOR_SHIFT; |
| 490 | return sectors; |
| 491 | } |
| 492 | |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 493 | /** |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 494 | * blk_stack_limits - adjust queue_limits for stacked devices |
Martin K. Petersen | 81744ee | 2009-12-29 08:35:35 +0100 | [diff] [blame] | 495 | * @t: the stacking driver limits (top device) |
| 496 | * @b: the underlying queue limits (bottom, component device) |
Martin K. Petersen | e03a72e | 2010-01-11 03:21:51 -0500 | [diff] [blame] | 497 | * @start: first data sector within component device |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 498 | * |
| 499 | * Description: |
Martin K. Petersen | 81744ee | 2009-12-29 08:35:35 +0100 | [diff] [blame] | 500 | * This function is used by stacking drivers like MD and DM to ensure |
| 501 | * that all component devices have compatible block sizes and |
| 502 | * alignments. The stacking driver must provide a queue_limits |
| 503 | * struct (top) and then iteratively call the stacking function for |
| 504 | * all component (bottom) devices. The stacking function will |
| 505 | * attempt to combine the values and ensure proper alignment. |
| 506 | * |
| 507 | * Returns 0 if the top and bottom queue_limits are compatible. The |
| 508 | * top device's block sizes and alignment offsets may be adjusted to |
| 509 | * ensure alignment with the bottom device. If no compatible sizes |
| 510 | * and alignments exist, -1 is returned and the resulting top |
| 511 | * queue_limits will have the misaligned flag set to indicate that |
| 512 | * the alignment_offset is undefined. |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 513 | */ |
| 514 | int blk_stack_limits(struct queue_limits *t, struct queue_limits *b, |
Martin K. Petersen | e03a72e | 2010-01-11 03:21:51 -0500 | [diff] [blame] | 515 | sector_t start) |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 516 | { |
Martin K. Petersen | e03a72e | 2010-01-11 03:21:51 -0500 | [diff] [blame] | 517 | unsigned int top, bottom, alignment, ret = 0; |
Martin K. Petersen | 86b3728 | 2009-11-10 11:50:21 +0100 | [diff] [blame] | 518 | |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 519 | t->max_sectors = min_not_zero(t->max_sectors, b->max_sectors); |
| 520 | t->max_hw_sectors = min_not_zero(t->max_hw_sectors, b->max_hw_sectors); |
Martin K. Petersen | ca369d5 | 2015-11-13 16:46:48 -0500 | [diff] [blame] | 521 | t->max_dev_sectors = min_not_zero(t->max_dev_sectors, b->max_dev_sectors); |
Martin K. Petersen | 4363ac7 | 2012-09-18 12:19:27 -0400 | [diff] [blame] | 522 | t->max_write_same_sectors = min(t->max_write_same_sectors, |
| 523 | b->max_write_same_sectors); |
Chaitanya Kulkarni | a6f0788 | 2016-11-30 12:28:59 -0800 | [diff] [blame] | 524 | t->max_write_zeroes_sectors = min(t->max_write_zeroes_sectors, |
| 525 | b->max_write_zeroes_sectors); |
Keith Busch | 0512a75 | 2020-05-12 17:55:47 +0900 | [diff] [blame] | 526 | t->max_zone_append_sectors = min(t->max_zone_append_sectors, |
| 527 | b->max_zone_append_sectors); |
Christoph Hellwig | 9bb33f2 | 2021-03-31 09:30:00 +0200 | [diff] [blame] | 528 | t->bounce = max(t->bounce, b->bounce); |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 529 | |
| 530 | t->seg_boundary_mask = min_not_zero(t->seg_boundary_mask, |
| 531 | b->seg_boundary_mask); |
Keith Busch | 03100aa | 2015-08-19 14:24:05 -0700 | [diff] [blame] | 532 | t->virt_boundary_mask = min_not_zero(t->virt_boundary_mask, |
| 533 | b->virt_boundary_mask); |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 534 | |
Martin K. Petersen | 8a78362 | 2010-02-26 00:20:39 -0500 | [diff] [blame] | 535 | t->max_segments = min_not_zero(t->max_segments, b->max_segments); |
Christoph Hellwig | 1e73973 | 2017-02-08 14:46:49 +0100 | [diff] [blame] | 536 | t->max_discard_segments = min_not_zero(t->max_discard_segments, |
| 537 | b->max_discard_segments); |
Martin K. Petersen | 13f05c8 | 2010-09-10 20:50:10 +0200 | [diff] [blame] | 538 | t->max_integrity_segments = min_not_zero(t->max_integrity_segments, |
| 539 | b->max_integrity_segments); |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 540 | |
| 541 | t->max_segment_size = min_not_zero(t->max_segment_size, |
| 542 | b->max_segment_size); |
| 543 | |
Martin K. Petersen | fe0b393 | 2010-01-11 03:21:47 -0500 | [diff] [blame] | 544 | t->misaligned |= b->misaligned; |
| 545 | |
Martin K. Petersen | e03a72e | 2010-01-11 03:21:51 -0500 | [diff] [blame] | 546 | alignment = queue_limit_alignment_offset(b, start); |
Martin K. Petersen | 9504e08 | 2009-12-21 15:55:51 +0100 | [diff] [blame] | 547 | |
Martin K. Petersen | 81744ee | 2009-12-29 08:35:35 +0100 | [diff] [blame] | 548 | /* Bottom device has different alignment. Check that it is |
| 549 | * compatible with the current top alignment. |
| 550 | */ |
Martin K. Petersen | 9504e08 | 2009-12-21 15:55:51 +0100 | [diff] [blame] | 551 | if (t->alignment_offset != alignment) { |
| 552 | |
| 553 | top = max(t->physical_block_size, t->io_min) |
| 554 | + t->alignment_offset; |
Martin K. Petersen | 81744ee | 2009-12-29 08:35:35 +0100 | [diff] [blame] | 555 | bottom = max(b->physical_block_size, b->io_min) + alignment; |
Martin K. Petersen | 9504e08 | 2009-12-21 15:55:51 +0100 | [diff] [blame] | 556 | |
Martin K. Petersen | 81744ee | 2009-12-29 08:35:35 +0100 | [diff] [blame] | 557 | /* Verify that top and bottom intervals line up */ |
Mike Snitzer | b8839b8 | 2014-10-08 18:26:13 -0400 | [diff] [blame] | 558 | if (max(top, bottom) % min(top, bottom)) { |
Martin K. Petersen | 9504e08 | 2009-12-21 15:55:51 +0100 | [diff] [blame] | 559 | t->misaligned = 1; |
Martin K. Petersen | fe0b393 | 2010-01-11 03:21:47 -0500 | [diff] [blame] | 560 | ret = -1; |
| 561 | } |
Martin K. Petersen | 9504e08 | 2009-12-21 15:55:51 +0100 | [diff] [blame] | 562 | } |
| 563 | |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 564 | t->logical_block_size = max(t->logical_block_size, |
| 565 | b->logical_block_size); |
| 566 | |
| 567 | t->physical_block_size = max(t->physical_block_size, |
| 568 | b->physical_block_size); |
| 569 | |
| 570 | t->io_min = max(t->io_min, b->io_min); |
Mike Snitzer | e963741 | 2015-03-30 13:39:09 -0400 | [diff] [blame] | 571 | t->io_opt = lcm_not_zero(t->io_opt, b->io_opt); |
Mike Snitzer | 7e7986f | 2020-12-01 11:07:09 -0500 | [diff] [blame] | 572 | |
| 573 | /* Set non-power-of-2 compatible chunk_sectors boundary */ |
| 574 | if (b->chunk_sectors) |
| 575 | t->chunk_sectors = gcd(t->chunk_sectors, b->chunk_sectors); |
Martin K. Petersen | 9504e08 | 2009-12-21 15:55:51 +0100 | [diff] [blame] | 576 | |
Martin K. Petersen | 81744ee | 2009-12-29 08:35:35 +0100 | [diff] [blame] | 577 | /* Physical block size a multiple of the logical block size? */ |
Martin K. Petersen | 9504e08 | 2009-12-21 15:55:51 +0100 | [diff] [blame] | 578 | if (t->physical_block_size & (t->logical_block_size - 1)) { |
| 579 | t->physical_block_size = t->logical_block_size; |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 580 | t->misaligned = 1; |
Martin K. Petersen | fe0b393 | 2010-01-11 03:21:47 -0500 | [diff] [blame] | 581 | ret = -1; |
Martin K. Petersen | 86b3728 | 2009-11-10 11:50:21 +0100 | [diff] [blame] | 582 | } |
| 583 | |
Martin K. Petersen | 81744ee | 2009-12-29 08:35:35 +0100 | [diff] [blame] | 584 | /* Minimum I/O a multiple of the physical block size? */ |
Martin K. Petersen | 9504e08 | 2009-12-21 15:55:51 +0100 | [diff] [blame] | 585 | if (t->io_min & (t->physical_block_size - 1)) { |
| 586 | t->io_min = t->physical_block_size; |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 587 | t->misaligned = 1; |
Martin K. Petersen | fe0b393 | 2010-01-11 03:21:47 -0500 | [diff] [blame] | 588 | ret = -1; |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 589 | } |
| 590 | |
Martin K. Petersen | 81744ee | 2009-12-29 08:35:35 +0100 | [diff] [blame] | 591 | /* Optimal I/O a multiple of the physical block size? */ |
Martin K. Petersen | 9504e08 | 2009-12-21 15:55:51 +0100 | [diff] [blame] | 592 | if (t->io_opt & (t->physical_block_size - 1)) { |
| 593 | t->io_opt = 0; |
| 594 | t->misaligned = 1; |
Martin K. Petersen | fe0b393 | 2010-01-11 03:21:47 -0500 | [diff] [blame] | 595 | ret = -1; |
Martin K. Petersen | 9504e08 | 2009-12-21 15:55:51 +0100 | [diff] [blame] | 596 | } |
Martin K. Petersen | 70dd5bf | 2009-07-31 11:49:12 -0400 | [diff] [blame] | 597 | |
Mike Snitzer | 22ada80 | 2020-09-21 22:32:48 -0400 | [diff] [blame] | 598 | /* chunk_sectors a multiple of the physical block size? */ |
| 599 | if ((t->chunk_sectors << 9) & (t->physical_block_size - 1)) { |
| 600 | t->chunk_sectors = 0; |
| 601 | t->misaligned = 1; |
| 602 | ret = -1; |
| 603 | } |
| 604 | |
Kent Overstreet | c78afc6 | 2013-07-11 22:39:53 -0700 | [diff] [blame] | 605 | t->raid_partial_stripes_expensive = |
| 606 | max(t->raid_partial_stripes_expensive, |
| 607 | b->raid_partial_stripes_expensive); |
| 608 | |
Martin K. Petersen | 81744ee | 2009-12-29 08:35:35 +0100 | [diff] [blame] | 609 | /* Find lowest common alignment_offset */ |
Mike Snitzer | e963741 | 2015-03-30 13:39:09 -0400 | [diff] [blame] | 610 | t->alignment_offset = lcm_not_zero(t->alignment_offset, alignment) |
Mike Snitzer | b8839b8 | 2014-10-08 18:26:13 -0400 | [diff] [blame] | 611 | % max(t->physical_block_size, t->io_min); |
Martin K. Petersen | 70dd5bf | 2009-07-31 11:49:12 -0400 | [diff] [blame] | 612 | |
Martin K. Petersen | 81744ee | 2009-12-29 08:35:35 +0100 | [diff] [blame] | 613 | /* Verify that new alignment_offset is on a logical block boundary */ |
Martin K. Petersen | fe0b393 | 2010-01-11 03:21:47 -0500 | [diff] [blame] | 614 | if (t->alignment_offset & (t->logical_block_size - 1)) { |
Martin K. Petersen | 9504e08 | 2009-12-21 15:55:51 +0100 | [diff] [blame] | 615 | t->misaligned = 1; |
Martin K. Petersen | fe0b393 | 2010-01-11 03:21:47 -0500 | [diff] [blame] | 616 | ret = -1; |
| 617 | } |
Martin K. Petersen | 9504e08 | 2009-12-21 15:55:51 +0100 | [diff] [blame] | 618 | |
Mikulas Patocka | 97f433c | 2021-02-23 19:25:30 -0700 | [diff] [blame] | 619 | t->max_sectors = blk_round_down_sectors(t->max_sectors, t->logical_block_size); |
| 620 | t->max_hw_sectors = blk_round_down_sectors(t->max_hw_sectors, t->logical_block_size); |
| 621 | t->max_dev_sectors = blk_round_down_sectors(t->max_dev_sectors, t->logical_block_size); |
| 622 | |
Martin K. Petersen | 9504e08 | 2009-12-21 15:55:51 +0100 | [diff] [blame] | 623 | /* Discard alignment and granularity */ |
| 624 | if (b->discard_granularity) { |
Martin K. Petersen | e03a72e | 2010-01-11 03:21:51 -0500 | [diff] [blame] | 625 | alignment = queue_limit_discard_alignment(b, start); |
Martin K. Petersen | 9504e08 | 2009-12-21 15:55:51 +0100 | [diff] [blame] | 626 | |
| 627 | if (t->discard_granularity != 0 && |
| 628 | t->discard_alignment != alignment) { |
| 629 | top = t->discard_granularity + t->discard_alignment; |
| 630 | bottom = b->discard_granularity + alignment; |
| 631 | |
| 632 | /* Verify that top and bottom intervals line up */ |
Shaohua Li | 8dd2cb7 | 2012-12-14 11:15:36 +0800 | [diff] [blame] | 633 | if ((max(top, bottom) % min(top, bottom)) != 0) |
Martin K. Petersen | 9504e08 | 2009-12-21 15:55:51 +0100 | [diff] [blame] | 634 | t->discard_misaligned = 1; |
| 635 | } |
| 636 | |
Martin K. Petersen | 81744ee | 2009-12-29 08:35:35 +0100 | [diff] [blame] | 637 | t->max_discard_sectors = min_not_zero(t->max_discard_sectors, |
| 638 | b->max_discard_sectors); |
Jens Axboe | 0034af0 | 2015-07-16 09:14:26 -0600 | [diff] [blame] | 639 | t->max_hw_discard_sectors = min_not_zero(t->max_hw_discard_sectors, |
| 640 | b->max_hw_discard_sectors); |
Martin K. Petersen | 9504e08 | 2009-12-21 15:55:51 +0100 | [diff] [blame] | 641 | t->discard_granularity = max(t->discard_granularity, |
| 642 | b->discard_granularity); |
Mike Snitzer | e963741 | 2015-03-30 13:39:09 -0400 | [diff] [blame] | 643 | t->discard_alignment = lcm_not_zero(t->discard_alignment, alignment) % |
Shaohua Li | 8dd2cb7 | 2012-12-14 11:15:36 +0800 | [diff] [blame] | 644 | t->discard_granularity; |
Martin K. Petersen | 9504e08 | 2009-12-21 15:55:51 +0100 | [diff] [blame] | 645 | } |
| 646 | |
Damien Le Moal | a805a4f | 2021-01-28 13:47:30 +0900 | [diff] [blame] | 647 | t->zone_write_granularity = max(t->zone_write_granularity, |
| 648 | b->zone_write_granularity); |
Christoph Hellwig | 3093a47 | 2020-07-20 08:12:49 +0200 | [diff] [blame] | 649 | t->zoned = max(t->zoned, b->zoned); |
Martin K. Petersen | fe0b393 | 2010-01-11 03:21:47 -0500 | [diff] [blame] | 650 | return ret; |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 651 | } |
Mike Snitzer | 5d85d32 | 2009-05-28 11:04:53 +0200 | [diff] [blame] | 652 | EXPORT_SYMBOL(blk_stack_limits); |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 653 | |
| 654 | /** |
| 655 | * disk_stack_limits - adjust queue limits for stacked drivers |
Martin K. Petersen | 77634f3 | 2009-06-09 06:23:22 +0200 | [diff] [blame] | 656 | * @disk: MD/DM gendisk (top) |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 657 | * @bdev: the underlying block device (bottom) |
| 658 | * @offset: offset to beginning of data within component device |
| 659 | * |
| 660 | * Description: |
Martin K. Petersen | e03a72e | 2010-01-11 03:21:51 -0500 | [diff] [blame] | 661 | * Merges the limits for a top level gendisk and a bottom level |
| 662 | * block_device. |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 663 | */ |
| 664 | void disk_stack_limits(struct gendisk *disk, struct block_device *bdev, |
| 665 | sector_t offset) |
| 666 | { |
| 667 | struct request_queue *t = disk->queue; |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 668 | |
Christoph Hellwig | 9efa82e | 2020-07-20 08:12:50 +0200 | [diff] [blame] | 669 | if (blk_stack_limits(&t->limits, &bdev_get_queue(bdev)->limits, |
Christoph Hellwig | 453b8ab | 2021-07-27 08:25:16 +0200 | [diff] [blame] | 670 | get_start_sect(bdev) + (offset >> 9)) < 0) |
| 671 | pr_notice("%s: Warning: Device %pg is misaligned\n", |
| 672 | disk->disk_name, bdev); |
Konstantin Khlebnikov | e74d93e | 2020-02-28 17:51:48 +0300 | [diff] [blame] | 673 | |
Christoph Hellwig | 471aa70 | 2021-08-09 16:17:41 +0200 | [diff] [blame] | 674 | disk_update_readahead(disk); |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 675 | } |
| 676 | EXPORT_SYMBOL(disk_stack_limits); |
| 677 | |
| 678 | /** |
FUJITA Tomonori | 27f8221 | 2008-07-04 09:30:03 +0200 | [diff] [blame] | 679 | * blk_queue_update_dma_pad - update pad mask |
| 680 | * @q: the request queue for the device |
| 681 | * @mask: pad mask |
| 682 | * |
| 683 | * Update dma pad mask. |
| 684 | * |
| 685 | * Appending pad buffer to a request modifies the last entry of a |
| 686 | * scatter list such that it includes the pad buffer. |
| 687 | **/ |
| 688 | void blk_queue_update_dma_pad(struct request_queue *q, unsigned int mask) |
| 689 | { |
| 690 | if (mask > q->dma_pad_mask) |
| 691 | q->dma_pad_mask = mask; |
| 692 | } |
| 693 | EXPORT_SYMBOL(blk_queue_update_dma_pad); |
| 694 | |
| 695 | /** |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 696 | * blk_queue_segment_boundary - set boundary rules for segment merging |
| 697 | * @q: the request queue for the device |
| 698 | * @mask: the memory boundary mask |
| 699 | **/ |
| 700 | void blk_queue_segment_boundary(struct request_queue *q, unsigned long mask) |
| 701 | { |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 702 | if (mask < PAGE_SIZE - 1) { |
| 703 | mask = PAGE_SIZE - 1; |
Harvey Harrison | 24c03d4 | 2008-05-01 04:35:17 -0700 | [diff] [blame] | 704 | printk(KERN_INFO "%s: set to minimum %lx\n", |
| 705 | __func__, mask); |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 706 | } |
| 707 | |
Martin K. Petersen | 025146e | 2009-05-22 17:17:51 -0400 | [diff] [blame] | 708 | q->limits.seg_boundary_mask = mask; |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 709 | } |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 710 | EXPORT_SYMBOL(blk_queue_segment_boundary); |
| 711 | |
| 712 | /** |
Keith Busch | 03100aa | 2015-08-19 14:24:05 -0700 | [diff] [blame] | 713 | * blk_queue_virt_boundary - set boundary rules for bio merging |
| 714 | * @q: the request queue for the device |
| 715 | * @mask: the memory boundary mask |
| 716 | **/ |
| 717 | void blk_queue_virt_boundary(struct request_queue *q, unsigned long mask) |
| 718 | { |
| 719 | q->limits.virt_boundary_mask = mask; |
Christoph Hellwig | 09324d3 | 2019-05-21 09:01:41 +0200 | [diff] [blame] | 720 | |
| 721 | /* |
| 722 | * Devices that require a virtual boundary do not support scatter/gather |
| 723 | * I/O natively, but instead require a descriptor list entry for each |
| 724 | * page (which might not be idential to the Linux PAGE_SIZE). Because |
| 725 | * of that they are not limited by our notion of "segment size". |
| 726 | */ |
Christoph Hellwig | c6c84f7 | 2019-07-24 18:26:56 +0200 | [diff] [blame] | 727 | if (mask) |
| 728 | q->limits.max_segment_size = UINT_MAX; |
Keith Busch | 03100aa | 2015-08-19 14:24:05 -0700 | [diff] [blame] | 729 | } |
| 730 | EXPORT_SYMBOL(blk_queue_virt_boundary); |
| 731 | |
| 732 | /** |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 733 | * blk_queue_dma_alignment - set dma length and memory alignment |
| 734 | * @q: the request queue for the device |
| 735 | * @mask: alignment mask |
| 736 | * |
| 737 | * description: |
Randy Dunlap | 710027a | 2008-08-19 20:13:11 +0200 | [diff] [blame] | 738 | * set required memory and length alignment for direct dma transactions. |
Alan Cox | 8feb4d2 | 2009-04-01 15:01:39 +0100 | [diff] [blame] | 739 | * this is used when building direct io requests for the queue. |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 740 | * |
| 741 | **/ |
| 742 | void blk_queue_dma_alignment(struct request_queue *q, int mask) |
| 743 | { |
| 744 | q->dma_alignment = mask; |
| 745 | } |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 746 | EXPORT_SYMBOL(blk_queue_dma_alignment); |
| 747 | |
| 748 | /** |
| 749 | * blk_queue_update_dma_alignment - update dma length and memory alignment |
| 750 | * @q: the request queue for the device |
| 751 | * @mask: alignment mask |
| 752 | * |
| 753 | * description: |
Randy Dunlap | 710027a | 2008-08-19 20:13:11 +0200 | [diff] [blame] | 754 | * update required memory and length alignment for direct dma transactions. |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 755 | * If the requested alignment is larger than the current alignment, then |
| 756 | * the current queue alignment is updated to the new value, otherwise it |
| 757 | * is left alone. The design of this is to allow multiple objects |
| 758 | * (driver, device, transport etc) to set their respective |
| 759 | * alignments without having them interfere. |
| 760 | * |
| 761 | **/ |
| 762 | void blk_queue_update_dma_alignment(struct request_queue *q, int mask) |
| 763 | { |
| 764 | BUG_ON(mask > PAGE_SIZE); |
| 765 | |
| 766 | if (mask > q->dma_alignment) |
| 767 | q->dma_alignment = mask; |
| 768 | } |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 769 | EXPORT_SYMBOL(blk_queue_update_dma_alignment); |
| 770 | |
Jens Axboe | 93e9d8e | 2016-04-12 12:32:46 -0600 | [diff] [blame] | 771 | /** |
Jens Axboe | d278d4a | 2016-03-30 10:21:08 -0600 | [diff] [blame] | 772 | * blk_set_queue_depth - tell the block layer about the device queue depth |
| 773 | * @q: the request queue for the device |
| 774 | * @depth: queue depth |
| 775 | * |
| 776 | */ |
| 777 | void blk_set_queue_depth(struct request_queue *q, unsigned int depth) |
| 778 | { |
| 779 | q->queue_depth = depth; |
Tejun Heo | 9677a3e | 2019-08-28 15:05:55 -0700 | [diff] [blame] | 780 | rq_qos_queue_depth_changed(q); |
Jens Axboe | d278d4a | 2016-03-30 10:21:08 -0600 | [diff] [blame] | 781 | } |
| 782 | EXPORT_SYMBOL(blk_set_queue_depth); |
| 783 | |
| 784 | /** |
Jens Axboe | 93e9d8e | 2016-04-12 12:32:46 -0600 | [diff] [blame] | 785 | * blk_queue_write_cache - configure queue's write cache |
| 786 | * @q: the request queue for the device |
| 787 | * @wc: write back cache on or off |
| 788 | * @fua: device supports FUA writes, if true |
| 789 | * |
| 790 | * Tell the block layer about the write cache of @q. |
| 791 | */ |
| 792 | void blk_queue_write_cache(struct request_queue *q, bool wc, bool fua) |
| 793 | { |
Jens Axboe | c888a8f | 2016-04-13 13:33:19 -0600 | [diff] [blame] | 794 | if (wc) |
Christoph Hellwig | 57d74df | 2018-11-14 17:02:07 +0100 | [diff] [blame] | 795 | blk_queue_flag_set(QUEUE_FLAG_WC, q); |
Jens Axboe | c888a8f | 2016-04-13 13:33:19 -0600 | [diff] [blame] | 796 | else |
Christoph Hellwig | 57d74df | 2018-11-14 17:02:07 +0100 | [diff] [blame] | 797 | blk_queue_flag_clear(QUEUE_FLAG_WC, q); |
Jens Axboe | c888a8f | 2016-04-13 13:33:19 -0600 | [diff] [blame] | 798 | if (fua) |
Christoph Hellwig | 57d74df | 2018-11-14 17:02:07 +0100 | [diff] [blame] | 799 | blk_queue_flag_set(QUEUE_FLAG_FUA, q); |
Jens Axboe | c888a8f | 2016-04-13 13:33:19 -0600 | [diff] [blame] | 800 | else |
Christoph Hellwig | 57d74df | 2018-11-14 17:02:07 +0100 | [diff] [blame] | 801 | blk_queue_flag_clear(QUEUE_FLAG_FUA, q); |
Jens Axboe | 87760e5 | 2016-11-09 12:38:14 -0700 | [diff] [blame] | 802 | |
Josef Bacik | a790504 | 2018-07-03 09:32:35 -0600 | [diff] [blame] | 803 | wbt_set_write_cache(q, test_bit(QUEUE_FLAG_WC, &q->queue_flags)); |
Jens Axboe | 93e9d8e | 2016-04-12 12:32:46 -0600 | [diff] [blame] | 804 | } |
| 805 | EXPORT_SYMBOL_GPL(blk_queue_write_cache); |
| 806 | |
Damien Le Moal | 68c43f1 | 2019-09-05 18:51:31 +0900 | [diff] [blame] | 807 | /** |
| 808 | * blk_queue_required_elevator_features - Set a queue required elevator features |
| 809 | * @q: the request queue for the target device |
| 810 | * @features: Required elevator features OR'ed together |
| 811 | * |
| 812 | * Tell the block layer that for the device controlled through @q, only the |
| 813 | * only elevators that can be used are those that implement at least the set of |
| 814 | * features specified by @features. |
| 815 | */ |
| 816 | void blk_queue_required_elevator_features(struct request_queue *q, |
| 817 | unsigned int features) |
| 818 | { |
| 819 | q->required_elevator_features = features; |
| 820 | } |
| 821 | EXPORT_SYMBOL_GPL(blk_queue_required_elevator_features); |
| 822 | |
Linus Torvalds | 671df18 | 2019-09-19 13:27:23 -0700 | [diff] [blame] | 823 | /** |
Yoshihiro Shimoda | 45147fb | 2019-08-28 21:35:42 +0900 | [diff] [blame] | 824 | * blk_queue_can_use_dma_map_merging - configure queue for merging segments. |
| 825 | * @q: the request queue for the device |
| 826 | * @dev: the device pointer for dma |
| 827 | * |
| 828 | * Tell the block layer about merging the segments by dma map of @q. |
| 829 | */ |
| 830 | bool blk_queue_can_use_dma_map_merging(struct request_queue *q, |
| 831 | struct device *dev) |
| 832 | { |
| 833 | unsigned long boundary = dma_get_merge_boundary(dev); |
| 834 | |
| 835 | if (!boundary) |
| 836 | return false; |
| 837 | |
| 838 | /* No need to update max_segment_size. see blk_queue_virt_boundary() */ |
| 839 | blk_queue_virt_boundary(q, boundary); |
| 840 | |
| 841 | return true; |
| 842 | } |
| 843 | EXPORT_SYMBOL_GPL(blk_queue_can_use_dma_map_merging); |
| 844 | |
Damien Le Moal | 27ba3e8 | 2020-09-15 16:33:46 +0900 | [diff] [blame] | 845 | /** |
| 846 | * blk_queue_set_zoned - configure a disk queue zoned model. |
| 847 | * @disk: the gendisk of the queue to configure |
| 848 | * @model: the zoned model to set |
| 849 | * |
| 850 | * Set the zoned model of the request queue of @disk according to @model. |
| 851 | * When @model is BLK_ZONED_HM (host managed), this should be called only |
| 852 | * if zoned block device support is enabled (CONFIG_BLK_DEV_ZONED option). |
| 853 | * If @model specifies BLK_ZONED_HA (host aware), the effective model used |
| 854 | * depends on CONFIG_BLK_DEV_ZONED settings and on the existence of partitions |
| 855 | * on the disk. |
| 856 | */ |
| 857 | void blk_queue_set_zoned(struct gendisk *disk, enum blk_zoned_model model) |
| 858 | { |
Damien Le Moal | a805a4f | 2021-01-28 13:47:30 +0900 | [diff] [blame] | 859 | struct request_queue *q = disk->queue; |
| 860 | |
Damien Le Moal | 27ba3e8 | 2020-09-15 16:33:46 +0900 | [diff] [blame] | 861 | switch (model) { |
| 862 | case BLK_ZONED_HM: |
| 863 | /* |
| 864 | * Host managed devices are supported only if |
| 865 | * CONFIG_BLK_DEV_ZONED is enabled. |
| 866 | */ |
| 867 | WARN_ON_ONCE(!IS_ENABLED(CONFIG_BLK_DEV_ZONED)); |
| 868 | break; |
| 869 | case BLK_ZONED_HA: |
| 870 | /* |
| 871 | * Host aware devices can be treated either as regular block |
| 872 | * devices (similar to drive managed devices) or as zoned block |
| 873 | * devices to take advantage of the zone command set, similarly |
| 874 | * to host managed devices. We try the latter if there are no |
| 875 | * partitions and zoned block device support is enabled, else |
| 876 | * we do nothing special as far as the block layer is concerned. |
| 877 | */ |
| 878 | if (!IS_ENABLED(CONFIG_BLK_DEV_ZONED) || |
Christoph Hellwig | a33df75 | 2021-01-24 11:02:41 +0100 | [diff] [blame] | 879 | !xa_empty(&disk->part_tbl)) |
Damien Le Moal | 27ba3e8 | 2020-09-15 16:33:46 +0900 | [diff] [blame] | 880 | model = BLK_ZONED_NONE; |
| 881 | break; |
| 882 | case BLK_ZONED_NONE: |
| 883 | default: |
| 884 | if (WARN_ON_ONCE(model != BLK_ZONED_NONE)) |
| 885 | model = BLK_ZONED_NONE; |
| 886 | break; |
| 887 | } |
| 888 | |
Damien Le Moal | a805a4f | 2021-01-28 13:47:30 +0900 | [diff] [blame] | 889 | q->limits.zoned = model; |
| 890 | if (model != BLK_ZONED_NONE) { |
| 891 | /* |
| 892 | * Set the zone write granularity to the device logical block |
| 893 | * size by default. The driver can change this value if needed. |
| 894 | */ |
| 895 | blk_queue_zone_write_granularity(q, |
| 896 | queue_logical_block_size(q)); |
Damien Le Moal | 508aebb | 2021-01-28 13:47:32 +0900 | [diff] [blame] | 897 | } else { |
| 898 | blk_queue_clear_zone_settings(q); |
Damien Le Moal | a805a4f | 2021-01-28 13:47:30 +0900 | [diff] [blame] | 899 | } |
Damien Le Moal | 27ba3e8 | 2020-09-15 16:33:46 +0900 | [diff] [blame] | 900 | } |
| 901 | EXPORT_SYMBOL_GPL(blk_queue_set_zoned); |