diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2023-08-13 21:26:34 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2023-08-15 00:40:42 +0300 |
commit | 7ba3792718709d410be5d971732b9251cbda67b6 (patch) | |
tree | 6be2e57ab13494e193427afa486db329b1384a60 /include/linux/blkdev.h | |
parent | e24721e441a7c640e4e7b2b63c23c06d9a750880 (diff) | |
download | linux-7ba3792718709d410be5d971732b9251cbda67b6.tar.xz |
block: Add some exports for bcachefs
- bio_set_pages_dirty(), bio_check_pages_dirty() - dio path
- blk_status_to_str() - error messages
- bio_add_folio() - this should definitely be exported for everyone,
it's the modern version of bio_add_page()
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
Cc: linux-block@vger.kernel.org
Cc: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Link: https://lore.kernel.org/r/20230813182636.2966159-2-kent.overstreet@linux.dev
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include/linux/blkdev.h')
-rw-r--r-- | include/linux/blkdev.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index 2f5371b8482c..4feed1fc141f 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h @@ -847,6 +847,7 @@ extern const char *blk_op_str(enum req_op op); int blk_status_to_errno(blk_status_t status); blk_status_t errno_to_blk_status(int errno); +const char *blk_status_to_str(blk_status_t status); /* only poll the hardware once, don't continue until a completion was found */ #define BLK_POLL_ONESHOT (1 << 0) |