Blame SOURCES/9003-Compat-Replace-BIO_MAX_VECS-by-BIO_MAX_PAGES.patch

Kmods SIG 63c143
From 61b202bf20ac931e408f48eb55a6c552105f75ae Mon Sep 17 00:00:00 2001
Kmods SIG 63c143
From: Peter Georg <peter.georg@physik.uni-regensburg.de>
Kmods SIG 63c143
Date: Wed, 22 Sep 2021 22:31:49 +0200
Kmods SIG 63c143
Subject: [PATCH 9003/9005] Compat: Replace BIO_MAX_VECS by BIO_MAX_PAGES
Kmods SIG 63c143
Kmods SIG 63c143
---
Kmods SIG 63c143
 src/fsntfs.c | 2 +-
Kmods SIG 63c143
 1 file changed, 1 insertion(+), 1 deletion(-)
Kmods SIG 63c143
Kmods SIG 63c143
diff --git a/src/fsntfs.c b/src/fsntfs.c
Kmods SIG 63c143
index 4de9acb..6d02b2c 100644
Kmods SIG 63c143
--- a/src/fsntfs.c
Kmods SIG 63c143
+++ b/src/fsntfs.c
Kmods SIG 63c143
@@ -1599,7 +1599,7 @@ int ntfs_bio_fill_1(struct ntfs_sb_info *sbi, const struct runs_tree *run)
Kmods SIG 63c143
 		lbo = (u64)lcn << cluster_bits;
Kmods SIG 63c143
 		len = (u64)clen << cluster_bits;
Kmods SIG 63c143
 new_bio:
Kmods SIG 63c143
-		new = ntfs_alloc_bio(BIO_MAX_VECS);
Kmods SIG 63c143
+		new = ntfs_alloc_bio(BIO_MAX_PAGES);
Kmods SIG 63c143
 		if (!new) {
Kmods SIG 63c143
 			err = -ENOMEM;
Kmods SIG 63c143
 			break;
Kmods SIG 63c143
-- 
Kmods SIG 63c143
2.31.1
Kmods SIG 63c143