Thread (15 messages) flat view 15 messages, 7 authors, 2021-05-11

Re: [PATCH] Revert "irqbypass: do not start cons/prod when failed connect"

From: Jason Wang <hidden>
Date: 2021-05-10 02:43:45
Also in: kvm, kvmarm, stable

在 2021/5/8 下午3:11, Zhu Lingshan 写道:
This reverts commit a979a6aa009f3c99689432e0cdb5402a4463fb88.

The reverted commit may cause VM freeze on arm64 platform.
Because on arm64 platform, stop a consumer will suspend the VM,
the VM will freeze without a start consumer

Signed-off-by: Zhu Lingshan <redacted>

Acked-by: Jason Wang <redacted>

Please resubmit with the formal process of stable (stable-kernel-rules.rst).

Thanks

quoted hunk ↗ jump to hunk
---
  virt/lib/irqbypass.c | 16 ++++++----------
  1 file changed, 6 insertions(+), 10 deletions(-)
diff --git a/virt/lib/irqbypass.c b/virt/lib/irqbypass.c
index c9bb3957f58a..28fda42e471b 100644
--- a/virt/lib/irqbypass.c
+++ b/virt/lib/irqbypass.c
@@ -40,21 +40,17 @@ static int __connect(struct irq_bypass_producer *prod,
  	if (prod->add_consumer)
  		ret = prod->add_consumer(prod, cons);
  
-	if (ret)
-		goto err_add_consumer;
-
-	ret = cons->add_producer(cons, prod);
-	if (ret)
-		goto err_add_producer;
+	if (!ret) {
+		ret = cons->add_producer(cons, prod);
+		if (ret && prod->del_consumer)
+			prod->del_consumer(prod, cons);
+	}
  
  	if (cons->start)
  		cons->start(cons);
  	if (prod->start)
  		prod->start(prod);
-err_add_producer:
-	if (prod->del_consumer)
-		prod->del_consumer(prod, cons);
-err_add_consumer:
+
  	return ret;
  }
  

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help