diff options
| author | Mark Brown <broonie@kernel.org> | 2026-07-03 16:20:56 +0100 |
|---|---|---|
| committer | Mark Brown <broonie@kernel.org> | 2026-07-03 16:20:58 +0100 |
| commit | 307a8ee4f21580acf593223dabfd55b503ce4d04 (patch) | |
| tree | 9e941b321a1e6664f8a3ed9e1415f06fdd8bb770 /include | |
| parent | 16773300cf60c8e84b11536c570b4e0710f26e09 (diff) | |
| parent | 39dffa2bee1ba8ed84b6befed3678a1040764ff2 (diff) | |
| download | linux-next-307a8ee4f21580acf593223dabfd55b503ce4d04.tar.gz linux-next-307a8ee4f21580acf593223dabfd55b503ce4d04.zip | |
Merge branch 'for-next' of https://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux.git
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/bio.h | 6 | ||||
| -rw-r--r-- | include/linux/io_uring_types.h | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/include/linux/bio.h b/include/linux/bio.h index 8f33f717b14f..3a0e9cb6c2f6 100644 --- a/include/linux/bio.h +++ b/include/linux/bio.h @@ -256,6 +256,12 @@ static inline struct folio *bio_first_folio_all(struct bio *bio) return page_folio(bio_first_page_all(bio)); } +static inline struct bio_vec *bio_last_bvec_all(struct bio *bio) +{ + WARN_ON_ONCE(bio_flagged(bio, BIO_CLONED)); + return &bio->bi_io_vec[bio->bi_vcnt - 1]; +} + /** * struct folio_iter - State for iterating all folios in a bio. * @folio: The current folio we're iterating. NULL after the last folio. diff --git a/include/linux/io_uring_types.h b/include/linux/io_uring_types.h index 87151a5b62c1..a2c623a67a25 100644 --- a/include/linux/io_uring_types.h +++ b/include/linux/io_uring_types.h @@ -534,6 +534,8 @@ struct io_ring_ctx { struct io_mapped_region ring_region; /* used for optimised request parameter and wait argument passing */ struct io_mapped_region param_region; + + struct kcov_common_handle_id kcov_handle; }; /* |
