diff options
author | Christoph Hellwig <hch@lst.de> | 2024-06-26 17:26:24 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2024-06-26 18:37:35 +0300 |
commit | ec9b1cf0b0ebfb52274971a8a0e74e0a133f64fb (patch) | |
tree | 833cdf89a5d9a979d99094718d43199334cf78dd /include | |
parent | 78887d004fb2bb03233122a048eaf46e850dabf4 (diff) | |
download | linux-ec9b1cf0b0ebfb52274971a8a0e74e0a133f64fb.tar.xz |
block: rename BLK_FEAT_MISALIGNED
This is a flag for ->flags and not a feature for ->features. And fix the
one place that actually incorrectly cleared it from ->features.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: John Garry <john.g.garry@oracle.com>
Reviewed-by: Damien Le Moal <dlemoal@kernel.org>
Link: https://lore.kernel.org/r/20240626142637.300624-4-hch@lst.de
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/blkdev.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index b2f1362c4681..1a7e9d9c16d7 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h @@ -347,7 +347,7 @@ enum { BLK_FLAG_WRITE_CACHE_DISABLED = (1u << 0), /* I/O topology is misaligned */ - BLK_FEAT_MISALIGNED = (1u << 1), + BLK_FLAG_MISALIGNED = (1u << 1), }; struct queue_limits { |