Message ID | 20241119160932.1327864-3-hch@lst.de (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | [1/6] block: return unsigned int from bdev_io_opt | expand |
On 19/11/2024 16:09, Christoph Hellwig wrote: > The underlying limit is defined as an unsigned int, so return that from > queue_dma_alignment as well. > > Signed-off-by: Christoph Hellwig<hch@lst.de> Reviewed-by: John Garry <john.g.garry@oracle.com>
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index 37439acfa34e..d1a6f4bc4a1c 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h @@ -1417,7 +1417,7 @@ static inline bool bdev_zone_is_seq(struct block_device *bdev, sector_t sector) return is_seq; } -static inline int queue_dma_alignment(const struct request_queue *q) +static inline unsigned int queue_dma_alignment(const struct request_queue *q) { return q->limits.dma_alignment; }
The underlying limit is defined as an unsigned int, so return that from queue_dma_alignment as well. Signed-off-by: Christoph Hellwig <hch@lst.de> --- include/linux/blkdev.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)