diff options
| author | Bart Van Assche <[email protected]> | 2021-04-06 13:08:20 -0700 |
|---|---|---|
| committer | Jens Axboe <[email protected]> | 2021-04-07 14:31:45 -0600 |
| commit | 540ad3f3da2542ec99235ac55e7cba8b11ce4b7b (patch) | |
| tree | 95d43fd9cd1cb4e9f5bc6986766c46a8aa149884 | |
| parent | 580dca8143d215977811bd2ff881e1e4f6ff39f0 (diff) | |
blk-zoned: Remove the definition of blk_zone_start()
Commit e76239a3748c ("block: add a report_zones method") removed the last
blk_zone_start() call. Hence also remove the definition of this function.
Cc: Christoph Hellwig <[email protected]>
Cc: Damien Le Moal <[email protected]>
Signed-off-by: Bart Van Assche <[email protected]>
Reviewed-by: Himanshu Madhani <[email protected]>
Reviewed-by: Chaitanya Kulkarni <[email protected]>
Reviewed-by: Christoph Hellwig <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jens Axboe <[email protected]>
| -rw-r--r-- | block/blk-zoned.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/block/blk-zoned.c b/block/blk-zoned.c index c0276b42d9fb..250cb76ee615 100644 --- a/block/blk-zoned.c +++ b/block/blk-zoned.c @@ -52,14 +52,6 @@ const char *blk_zone_cond_str(enum blk_zone_cond zone_cond) } EXPORT_SYMBOL_GPL(blk_zone_cond_str); -static inline sector_t blk_zone_start(struct request_queue *q, - sector_t sector) -{ - sector_t zone_mask = blk_queue_zone_sectors(q) - 1; - - return sector & ~zone_mask; -} - /* * Return true if a request is a write requests that needs zone write locking. */ |