[Drbd-dev] [PATCH 4/8] drbd: fix drbd_submit_bio argument handling
Michael D Labriola
michael.d.labriola at gmail.com
Sun Dec 13 06:58:55 CET 2020
Looks like we changed arguments from q to bio, but left the line that gets
device from q untouched. Oopsie.
Signed-off-by: Michael D Labriola <michael.d.labriola at gmail.com>
---
drbd/drbd_req.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drbd/drbd_req.c b/drbd/drbd_req.c
index 8db2a0e0..92b3b863 100644
--- a/drbd/drbd_req.c
+++ b/drbd/drbd_req.c
@@ -2196,7 +2196,7 @@ static bool drbd_fail_request_early(struct drbd_device *device, struct bio *bio)
blk_qc_t drbd_submit_bio(struct bio *bio)
{
- struct drbd_device *device = (struct drbd_device *) q->queuedata;
+ struct drbd_device *device = bio->bi_disk->private_data;
#ifdef CONFIG_DRBD_TIMING_STATS
ktime_t start_kt;
#endif
--
2.17.1
More information about the drbd-dev
mailing list