Message ID | 20241025213645.3464331-2-kbusch@meta.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | write hints with nvme fdp, scsi streams | expand |
On 10/25/24 2:36 PM, Keith Busch wrote: > This is still backwards compatible with lifetime hints. It just doesn't > constrain the hints to that definition. Since struct bio is modified, and since it is important not to increase the size of struct bio, some comments about whether or not the size of struct bio is affected would be welcome. Thanks, Bart.
On Mon, Oct 28, 2024 at 11:19:33AM -0700, Bart Van Assche wrote: > On 10/25/24 2:36 PM, Keith Busch wrote: > > This is still backwards compatible with lifetime hints. It just doesn't > > constrain the hints to that definition. > > Since struct bio is modified, and since it is important not to increase > the size of struct bio, some comments about whether or not the size of > struct bio is affected would be welcome. Sure. The type just shrinks a hole from 2 bytes to 1. Total size remains the same.
diff --git a/include/linux/blk-mq.h b/include/linux/blk-mq.h index 59e9adf815a49..bf007a4081d9b 100644 --- a/include/linux/blk-mq.h +++ b/include/linux/blk-mq.h @@ -8,7 +8,6 @@ #include <linux/scatterlist.h> #include <linux/prefetch.h> #include <linux/srcu.h> -#include <linux/rw_hint.h> struct blk_mq_tags; struct blk_flush_queue; @@ -156,7 +155,7 @@ struct request { struct blk_crypto_keyslot *crypt_keyslot; #endif - enum rw_hint write_hint; + unsigned short write_hint; unsigned short ioprio; enum mq_rq_state state; diff --git a/include/linux/blk_types.h b/include/linux/blk_types.h index dce7615c35e7e..6737795220e18 100644 --- a/include/linux/blk_types.h +++ b/include/linux/blk_types.h @@ -10,7 +10,6 @@ #include <linux/bvec.h> #include <linux/device.h> #include <linux/ktime.h> -#include <linux/rw_hint.h> struct bio_set; struct bio; @@ -219,7 +218,7 @@ struct bio { */ unsigned short bi_flags; /* BIO_* below */ unsigned short bi_ioprio; - enum rw_hint bi_write_hint; + unsigned short bi_write_hint; blk_status_t bi_status; atomic_t __bi_remaining;