Linux 5.16 compat: submit_bio()

The submit_bio() prototype has changed again.  The version is 5.16
still only expects a single argument but the return type has changed
to void.  Since we never used the returned value before update the
configure check to detect both single arg versions.

Reviewed-by: Tony Hutter <hutter2@llnl.gov>
Reviewed-by: Alexander Lobakin <alobakin@pm.me>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #12725
This commit is contained in:
Brian Behlendorf
2021-11-05 17:17:03 -07:00
committed by Tony Hutter
parent 0e537a0195
commit 22b0891dbb
2 changed files with 3 additions and 4 deletions
+2 -2
View File
@@ -433,9 +433,9 @@ static inline void
vdev_submit_bio_impl(struct bio *bio)
{
#ifdef HAVE_1ARG_SUBMIT_BIO
submit_bio(bio);
(void) submit_bio(bio);
#else
submit_bio(0, bio);
(void) submit_bio(0, bio);
#endif
}