mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	block, fs: Restore the per-bio/request data lifetime fields
Restore support for passing data lifetime information from filesystems to block drivers. This patch reverts commitb179c98f76("block: Remove request.write_hint") and commitc75e707fe1("block: remove the per-bio/request write hint"). This patch does not modify the size of struct bio because the new bi_write_hint member fills a hole in struct bio. pahole reports the following for struct bio on an x86_64 system with this patch applied: /* size: 112, cachelines: 2, members: 20 */ /* sum members: 110, holes: 1, sum holes: 2 */ /* last cacheline: 48 bytes */ Reviewed-by: Kanchan Joshi <joshi.k@samsung.com> Cc: Jens Axboe <axboe@kernel.dk> Cc: Christoph Hellwig <hch@lst.de> Signed-off-by: Bart Van Assche <bvanassche@acm.org> Link: https://lore.kernel.org/r/20240202203926.2478590-7-bvanassche@acm.org Signed-off-by: Christian Brauner <brauner@kernel.org>
This commit is contained in:
		
							parent
							
								
									ea7d898676
								
							
						
					
					
						commit
						449813515d
					
				
					 13 changed files with 34 additions and 4 deletions
				
			
		| 
						 | 
					@ -251,6 +251,7 @@ void bio_init(struct bio *bio, struct block_device *bdev, struct bio_vec *table,
 | 
				
			||||||
	bio->bi_opf = opf;
 | 
						bio->bi_opf = opf;
 | 
				
			||||||
	bio->bi_flags = 0;
 | 
						bio->bi_flags = 0;
 | 
				
			||||||
	bio->bi_ioprio = 0;
 | 
						bio->bi_ioprio = 0;
 | 
				
			||||||
 | 
						bio->bi_write_hint = 0;
 | 
				
			||||||
	bio->bi_status = 0;
 | 
						bio->bi_status = 0;
 | 
				
			||||||
	bio->bi_iter.bi_sector = 0;
 | 
						bio->bi_iter.bi_sector = 0;
 | 
				
			||||||
	bio->bi_iter.bi_size = 0;
 | 
						bio->bi_iter.bi_size = 0;
 | 
				
			||||||
| 
						 | 
					@ -813,6 +814,7 @@ static int __bio_clone(struct bio *bio, struct bio *bio_src, gfp_t gfp)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	bio_set_flag(bio, BIO_CLONED);
 | 
						bio_set_flag(bio, BIO_CLONED);
 | 
				
			||||||
	bio->bi_ioprio = bio_src->bi_ioprio;
 | 
						bio->bi_ioprio = bio_src->bi_ioprio;
 | 
				
			||||||
 | 
						bio->bi_write_hint = bio_src->bi_write_hint;
 | 
				
			||||||
	bio->bi_iter = bio_src->bi_iter;
 | 
						bio->bi_iter = bio_src->bi_iter;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (bio->bi_bdev) {
 | 
						if (bio->bi_bdev) {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -172,6 +172,7 @@ static struct bio *blk_crypto_fallback_clone_bio(struct bio *bio_src)
 | 
				
			||||||
	if (bio_flagged(bio_src, BIO_REMAPPED))
 | 
						if (bio_flagged(bio_src, BIO_REMAPPED))
 | 
				
			||||||
		bio_set_flag(bio, BIO_REMAPPED);
 | 
							bio_set_flag(bio, BIO_REMAPPED);
 | 
				
			||||||
	bio->bi_ioprio		= bio_src->bi_ioprio;
 | 
						bio->bi_ioprio		= bio_src->bi_ioprio;
 | 
				
			||||||
 | 
						bio->bi_write_hint	= bio_src->bi_write_hint;
 | 
				
			||||||
	bio->bi_iter.bi_sector	= bio_src->bi_iter.bi_sector;
 | 
						bio->bi_iter.bi_sector	= bio_src->bi_iter.bi_sector;
 | 
				
			||||||
	bio->bi_iter.bi_size	= bio_src->bi_iter.bi_size;
 | 
						bio->bi_iter.bi_size	= bio_src->bi_iter.bi_size;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -810,6 +810,10 @@ static struct request *attempt_merge(struct request_queue *q,
 | 
				
			||||||
	if (rq_data_dir(req) != rq_data_dir(next))
 | 
						if (rq_data_dir(req) != rq_data_dir(next))
 | 
				
			||||||
		return NULL;
 | 
							return NULL;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						/* Don't merge requests with different write hints. */
 | 
				
			||||||
 | 
						if (req->write_hint != next->write_hint)
 | 
				
			||||||
 | 
							return NULL;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (req->ioprio != next->ioprio)
 | 
						if (req->ioprio != next->ioprio)
 | 
				
			||||||
		return NULL;
 | 
							return NULL;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -937,6 +941,10 @@ bool blk_rq_merge_ok(struct request *rq, struct bio *bio)
 | 
				
			||||||
	if (!bio_crypt_rq_ctx_compatible(rq, bio))
 | 
						if (!bio_crypt_rq_ctx_compatible(rq, bio))
 | 
				
			||||||
		return false;
 | 
							return false;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						/* Don't merge requests with different write hints. */
 | 
				
			||||||
 | 
						if (rq->write_hint != bio->bi_write_hint)
 | 
				
			||||||
 | 
							return false;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (rq->ioprio != bio_prio(bio))
 | 
						if (rq->ioprio != bio_prio(bio))
 | 
				
			||||||
		return false;
 | 
							return false;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2585,6 +2585,7 @@ static void blk_mq_bio_to_request(struct request *rq, struct bio *bio,
 | 
				
			||||||
		rq->cmd_flags |= REQ_FAILFAST_MASK;
 | 
							rq->cmd_flags |= REQ_FAILFAST_MASK;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	rq->__sector = bio->bi_iter.bi_sector;
 | 
						rq->__sector = bio->bi_iter.bi_sector;
 | 
				
			||||||
 | 
						rq->write_hint = bio->bi_write_hint;
 | 
				
			||||||
	blk_rq_bio_prep(rq, bio, nr_segs);
 | 
						blk_rq_bio_prep(rq, bio, nr_segs);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* This can't fail, since GFP_NOIO includes __GFP_DIRECT_RECLAIM. */
 | 
						/* This can't fail, since GFP_NOIO includes __GFP_DIRECT_RECLAIM. */
 | 
				
			||||||
| 
						 | 
					@ -3185,6 +3186,7 @@ int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	rq->nr_phys_segments = rq_src->nr_phys_segments;
 | 
						rq->nr_phys_segments = rq_src->nr_phys_segments;
 | 
				
			||||||
	rq->ioprio = rq_src->ioprio;
 | 
						rq->ioprio = rq_src->ioprio;
 | 
				
			||||||
 | 
						rq->write_hint = rq_src->write_hint;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (rq->bio && blk_crypto_rq_bio_prep(rq, rq->bio, gfp_mask) < 0)
 | 
						if (rq->bio && blk_crypto_rq_bio_prep(rq, rq->bio, gfp_mask) < 0)
 | 
				
			||||||
		goto free_and_out;
 | 
							goto free_and_out;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -169,6 +169,7 @@ static struct bio *bounce_clone_bio(struct bio *bio_src)
 | 
				
			||||||
	if (bio_flagged(bio_src, BIO_REMAPPED))
 | 
						if (bio_flagged(bio_src, BIO_REMAPPED))
 | 
				
			||||||
		bio_set_flag(bio, BIO_REMAPPED);
 | 
							bio_set_flag(bio, BIO_REMAPPED);
 | 
				
			||||||
	bio->bi_ioprio		= bio_src->bi_ioprio;
 | 
						bio->bi_ioprio		= bio_src->bi_ioprio;
 | 
				
			||||||
 | 
						bio->bi_write_hint	= bio_src->bi_write_hint;
 | 
				
			||||||
	bio->bi_iter.bi_sector	= bio_src->bi_iter.bi_sector;
 | 
						bio->bi_iter.bi_sector	= bio_src->bi_iter.bi_sector;
 | 
				
			||||||
	bio->bi_iter.bi_size	= bio_src->bi_iter.bi_size;
 | 
						bio->bi_iter.bi_size	= bio_src->bi_iter.bi_size;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -73,6 +73,7 @@ static ssize_t __blkdev_direct_IO_simple(struct kiocb *iocb,
 | 
				
			||||||
		bio_init(&bio, bdev, vecs, nr_pages, dio_bio_write_op(iocb));
 | 
							bio_init(&bio, bdev, vecs, nr_pages, dio_bio_write_op(iocb));
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	bio.bi_iter.bi_sector = pos >> SECTOR_SHIFT;
 | 
						bio.bi_iter.bi_sector = pos >> SECTOR_SHIFT;
 | 
				
			||||||
 | 
						bio.bi_write_hint = file_inode(iocb->ki_filp)->i_write_hint;
 | 
				
			||||||
	bio.bi_ioprio = iocb->ki_ioprio;
 | 
						bio.bi_ioprio = iocb->ki_ioprio;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	ret = bio_iov_iter_get_pages(&bio, iter);
 | 
						ret = bio_iov_iter_get_pages(&bio, iter);
 | 
				
			||||||
| 
						 | 
					@ -203,6 +204,7 @@ static ssize_t __blkdev_direct_IO(struct kiocb *iocb, struct iov_iter *iter,
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	for (;;) {
 | 
						for (;;) {
 | 
				
			||||||
		bio->bi_iter.bi_sector = pos >> SECTOR_SHIFT;
 | 
							bio->bi_iter.bi_sector = pos >> SECTOR_SHIFT;
 | 
				
			||||||
 | 
							bio->bi_write_hint = file_inode(iocb->ki_filp)->i_write_hint;
 | 
				
			||||||
		bio->bi_private = dio;
 | 
							bio->bi_private = dio;
 | 
				
			||||||
		bio->bi_end_io = blkdev_bio_end_io;
 | 
							bio->bi_end_io = blkdev_bio_end_io;
 | 
				
			||||||
		bio->bi_ioprio = iocb->ki_ioprio;
 | 
							bio->bi_ioprio = iocb->ki_ioprio;
 | 
				
			||||||
| 
						 | 
					@ -321,6 +323,7 @@ static ssize_t __blkdev_direct_IO_async(struct kiocb *iocb,
 | 
				
			||||||
	dio->flags = 0;
 | 
						dio->flags = 0;
 | 
				
			||||||
	dio->iocb = iocb;
 | 
						dio->iocb = iocb;
 | 
				
			||||||
	bio->bi_iter.bi_sector = pos >> SECTOR_SHIFT;
 | 
						bio->bi_iter.bi_sector = pos >> SECTOR_SHIFT;
 | 
				
			||||||
 | 
						bio->bi_write_hint = file_inode(iocb->ki_filp)->i_write_hint;
 | 
				
			||||||
	bio->bi_end_io = blkdev_bio_end_io_async;
 | 
						bio->bi_end_io = blkdev_bio_end_io_async;
 | 
				
			||||||
	bio->bi_ioprio = iocb->ki_ioprio;
 | 
						bio->bi_ioprio = iocb->ki_ioprio;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										12
									
								
								fs/buffer.c
									
									
									
									
									
								
							
							
						
						
									
										12
									
								
								fs/buffer.c
									
									
									
									
									
								
							| 
						 | 
					@ -55,7 +55,7 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static int fsync_buffers_list(spinlock_t *lock, struct list_head *list);
 | 
					static int fsync_buffers_list(spinlock_t *lock, struct list_head *list);
 | 
				
			||||||
static void submit_bh_wbc(blk_opf_t opf, struct buffer_head *bh,
 | 
					static void submit_bh_wbc(blk_opf_t opf, struct buffer_head *bh,
 | 
				
			||||||
			  struct writeback_control *wbc);
 | 
								  enum rw_hint hint, struct writeback_control *wbc);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define BH_ENTRY(list) list_entry((list), struct buffer_head, b_assoc_buffers)
 | 
					#define BH_ENTRY(list) list_entry((list), struct buffer_head, b_assoc_buffers)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1889,7 +1889,8 @@ int __block_write_full_folio(struct inode *inode, struct folio *folio,
 | 
				
			||||||
	do {
 | 
						do {
 | 
				
			||||||
		struct buffer_head *next = bh->b_this_page;
 | 
							struct buffer_head *next = bh->b_this_page;
 | 
				
			||||||
		if (buffer_async_write(bh)) {
 | 
							if (buffer_async_write(bh)) {
 | 
				
			||||||
			submit_bh_wbc(REQ_OP_WRITE | write_flags, bh, wbc);
 | 
								submit_bh_wbc(REQ_OP_WRITE | write_flags, bh,
 | 
				
			||||||
 | 
									      inode->i_write_hint, wbc);
 | 
				
			||||||
			nr_underway++;
 | 
								nr_underway++;
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		bh = next;
 | 
							bh = next;
 | 
				
			||||||
| 
						 | 
					@ -1944,7 +1945,8 @@ int __block_write_full_folio(struct inode *inode, struct folio *folio,
 | 
				
			||||||
		struct buffer_head *next = bh->b_this_page;
 | 
							struct buffer_head *next = bh->b_this_page;
 | 
				
			||||||
		if (buffer_async_write(bh)) {
 | 
							if (buffer_async_write(bh)) {
 | 
				
			||||||
			clear_buffer_dirty(bh);
 | 
								clear_buffer_dirty(bh);
 | 
				
			||||||
			submit_bh_wbc(REQ_OP_WRITE | write_flags, bh, wbc);
 | 
								submit_bh_wbc(REQ_OP_WRITE | write_flags, bh,
 | 
				
			||||||
 | 
									      inode->i_write_hint, wbc);
 | 
				
			||||||
			nr_underway++;
 | 
								nr_underway++;
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		bh = next;
 | 
							bh = next;
 | 
				
			||||||
| 
						 | 
					@ -2756,6 +2758,7 @@ static void end_bio_bh_io_sync(struct bio *bio)
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static void submit_bh_wbc(blk_opf_t opf, struct buffer_head *bh,
 | 
					static void submit_bh_wbc(blk_opf_t opf, struct buffer_head *bh,
 | 
				
			||||||
 | 
								  enum rw_hint write_hint,
 | 
				
			||||||
			  struct writeback_control *wbc)
 | 
								  struct writeback_control *wbc)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	const enum req_op op = opf & REQ_OP_MASK;
 | 
						const enum req_op op = opf & REQ_OP_MASK;
 | 
				
			||||||
| 
						 | 
					@ -2783,6 +2786,7 @@ static void submit_bh_wbc(blk_opf_t opf, struct buffer_head *bh,
 | 
				
			||||||
	fscrypt_set_bio_crypt_ctx_bh(bio, bh, GFP_NOIO);
 | 
						fscrypt_set_bio_crypt_ctx_bh(bio, bh, GFP_NOIO);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	bio->bi_iter.bi_sector = bh->b_blocknr * (bh->b_size >> 9);
 | 
						bio->bi_iter.bi_sector = bh->b_blocknr * (bh->b_size >> 9);
 | 
				
			||||||
 | 
						bio->bi_write_hint = write_hint;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	__bio_add_page(bio, bh->b_page, bh->b_size, bh_offset(bh));
 | 
						__bio_add_page(bio, bh->b_page, bh->b_size, bh_offset(bh));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2802,7 +2806,7 @@ static void submit_bh_wbc(blk_opf_t opf, struct buffer_head *bh,
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void submit_bh(blk_opf_t opf, struct buffer_head *bh)
 | 
					void submit_bh(blk_opf_t opf, struct buffer_head *bh)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	submit_bh_wbc(opf, bh, NULL);
 | 
						submit_bh_wbc(opf, bh, WRITE_LIFE_NOT_SET, NULL);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
EXPORT_SYMBOL(submit_bh);
 | 
					EXPORT_SYMBOL(submit_bh);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -410,6 +410,8 @@ dio_bio_alloc(struct dio *dio, struct dio_submit *sdio,
 | 
				
			||||||
		bio->bi_end_io = dio_bio_end_io;
 | 
							bio->bi_end_io = dio_bio_end_io;
 | 
				
			||||||
	if (dio->is_pinned)
 | 
						if (dio->is_pinned)
 | 
				
			||||||
		bio_set_flag(bio, BIO_PAGE_PINNED);
 | 
							bio_set_flag(bio, BIO_PAGE_PINNED);
 | 
				
			||||||
 | 
						bio->bi_write_hint = file_inode(dio->iocb->ki_filp)->i_write_hint;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	sdio->bio = bio;
 | 
						sdio->bio = bio;
 | 
				
			||||||
	sdio->logical_offset_in_bio = sdio->cur_page_fs_offset;
 | 
						sdio->logical_offset_in_bio = sdio->cur_page_fs_offset;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1667,6 +1667,7 @@ iomap_alloc_ioend(struct inode *inode, struct iomap_writepage_ctx *wpc,
 | 
				
			||||||
			       REQ_OP_WRITE | wbc_to_write_flags(wbc),
 | 
								       REQ_OP_WRITE | wbc_to_write_flags(wbc),
 | 
				
			||||||
			       GFP_NOFS, &iomap_ioend_bioset);
 | 
								       GFP_NOFS, &iomap_ioend_bioset);
 | 
				
			||||||
	bio->bi_iter.bi_sector = sector;
 | 
						bio->bi_iter.bi_sector = sector;
 | 
				
			||||||
 | 
						bio->bi_write_hint = inode->i_write_hint;
 | 
				
			||||||
	wbc_init_bio(wbc, bio);
 | 
						wbc_init_bio(wbc, bio);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	ioend = container_of(bio, struct iomap_ioend, io_inline_bio);
 | 
						ioend = container_of(bio, struct iomap_ioend, io_inline_bio);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -380,6 +380,7 @@ static loff_t iomap_dio_bio_iter(const struct iomap_iter *iter,
 | 
				
			||||||
		fscrypt_set_bio_crypt_ctx(bio, inode, pos >> inode->i_blkbits,
 | 
							fscrypt_set_bio_crypt_ctx(bio, inode, pos >> inode->i_blkbits,
 | 
				
			||||||
					  GFP_KERNEL);
 | 
										  GFP_KERNEL);
 | 
				
			||||||
		bio->bi_iter.bi_sector = iomap_sector(iomap, pos);
 | 
							bio->bi_iter.bi_sector = iomap_sector(iomap, pos);
 | 
				
			||||||
 | 
							bio->bi_write_hint = inode->i_write_hint;
 | 
				
			||||||
		bio->bi_ioprio = dio->iocb->ki_ioprio;
 | 
							bio->bi_ioprio = dio->iocb->ki_ioprio;
 | 
				
			||||||
		bio->bi_private = dio;
 | 
							bio->bi_private = dio;
 | 
				
			||||||
		bio->bi_end_io = iomap_dio_bio_end_io;
 | 
							bio->bi_end_io = iomap_dio_bio_end_io;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -605,6 +605,7 @@ static int __mpage_writepage(struct folio *folio, struct writeback_control *wbc,
 | 
				
			||||||
				GFP_NOFS);
 | 
									GFP_NOFS);
 | 
				
			||||||
		bio->bi_iter.bi_sector = first_block << (blkbits - 9);
 | 
							bio->bi_iter.bi_sector = first_block << (blkbits - 9);
 | 
				
			||||||
		wbc_init_bio(wbc, bio);
 | 
							wbc_init_bio(wbc, bio);
 | 
				
			||||||
 | 
							bio->bi_write_hint = inode->i_write_hint;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/*
 | 
						/*
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -8,6 +8,7 @@
 | 
				
			||||||
#include <linux/scatterlist.h>
 | 
					#include <linux/scatterlist.h>
 | 
				
			||||||
#include <linux/prefetch.h>
 | 
					#include <linux/prefetch.h>
 | 
				
			||||||
#include <linux/srcu.h>
 | 
					#include <linux/srcu.h>
 | 
				
			||||||
 | 
					#include <linux/rw_hint.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
struct blk_mq_tags;
 | 
					struct blk_mq_tags;
 | 
				
			||||||
struct blk_flush_queue;
 | 
					struct blk_flush_queue;
 | 
				
			||||||
| 
						 | 
					@ -135,6 +136,7 @@ struct request {
 | 
				
			||||||
	struct blk_crypto_keyslot *crypt_keyslot;
 | 
						struct blk_crypto_keyslot *crypt_keyslot;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						enum rw_hint write_hint;
 | 
				
			||||||
	unsigned short ioprio;
 | 
						unsigned short ioprio;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	enum mq_rq_state state;
 | 
						enum mq_rq_state state;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -10,6 +10,7 @@
 | 
				
			||||||
#include <linux/bvec.h>
 | 
					#include <linux/bvec.h>
 | 
				
			||||||
#include <linux/device.h>
 | 
					#include <linux/device.h>
 | 
				
			||||||
#include <linux/ktime.h>
 | 
					#include <linux/ktime.h>
 | 
				
			||||||
 | 
					#include <linux/rw_hint.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
struct bio_set;
 | 
					struct bio_set;
 | 
				
			||||||
struct bio;
 | 
					struct bio;
 | 
				
			||||||
| 
						 | 
					@ -269,6 +270,7 @@ struct bio {
 | 
				
			||||||
						 */
 | 
											 */
 | 
				
			||||||
	unsigned short		bi_flags;	/* BIO_* below */
 | 
						unsigned short		bi_flags;	/* BIO_* below */
 | 
				
			||||||
	unsigned short		bi_ioprio;
 | 
						unsigned short		bi_ioprio;
 | 
				
			||||||
 | 
						enum rw_hint		bi_write_hint;
 | 
				
			||||||
	blk_status_t		bi_status;
 | 
						blk_status_t		bi_status;
 | 
				
			||||||
	atomic_t		__bi_remaining;
 | 
						atomic_t		__bi_remaining;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue