Blame SOURCES/kvm-linux-aio-explain-why-max-batch-is-checked-in-laio_i.patch

0727d3
From 99d33621440fd30e0da2974dafb0cd372334305a Mon Sep 17 00:00:00 2001
0727d3
From: Stefan Hajnoczi <stefanha@redhat.com>
0727d3
Date: Thu, 9 Jun 2022 17:47:12 +0100
0727d3
Subject: [PATCH 2/2] linux-aio: explain why max batch is checked in
0727d3
 laio_io_unplug()
0727d3
0727d3
RH-Author: Stefan Hajnoczi <stefanha@redhat.com>
0727d3
RH-MergeRequest: 199: linux-aio: fix unbalanced plugged counter in laio_io_unplug()
0727d3
RH-Commit: [2/2] 8617870ed70e3a57269f06eeb242d0fab79a66fb
0727d3
RH-Bugzilla: 2105410
0727d3
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
0727d3
RH-Acked-by: Hanna Reitz <hreitz@redhat.com>
0727d3
RH-Acked-by: Stefano Garzarella <sgarzare@redhat.com>
0727d3
0727d3
It may not be obvious why laio_io_unplug() checks max batch. I discussed
0727d3
this with Stefano and have added a comment summarizing the reason.
0727d3
0727d3
Cc: Stefano Garzarella <sgarzare@redhat.com>
0727d3
Cc: Kevin Wolf <kwolf@redhat.com>
0727d3
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
0727d3
Reviewed-by: Stefano Garzarella <sgarzare@redhat.com>
0727d3
Message-id: 20220609164712.1539045-3-stefanha@redhat.com
0727d3
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
0727d3
(cherry picked from commit 99b969fbe105117f5af6060d3afef40ca39cc9c1)
0727d3
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
0727d3
---
0727d3
 block/linux-aio.c | 6 ++++++
0727d3
 1 file changed, 6 insertions(+)
0727d3
0727d3
diff --git a/block/linux-aio.c b/block/linux-aio.c
0727d3
index 77f17ad596..85650c4222 100644
0727d3
--- a/block/linux-aio.c
0727d3
+++ b/block/linux-aio.c
0727d3
@@ -362,6 +362,12 @@ void laio_io_unplug(BlockDriverState *bs, LinuxAioState *s,
0727d3
     assert(s->io_q.plugged);
0727d3
     s->io_q.plugged--;
0727d3
 
0727d3
+    /*
0727d3
+     * Why max batch checking is performed here:
0727d3
+     * Another BDS may have queued requests with a higher dev_max_batch and
0727d3
+     * therefore in_queue could now exceed our dev_max_batch. Re-check the max
0727d3
+     * batch so we can honor our device's dev_max_batch.
0727d3
+     */
0727d3
     if (s->io_q.in_queue >= laio_max_batch(s, dev_max_batch) ||
0727d3
         (!s->io_q.plugged &&
0727d3
          !s->io_q.blocked && !QSIMPLEQ_EMPTY(&s->io_q.pending))) {
0727d3
-- 
0727d3
2.35.3
0727d3