Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751658Ab2KGNUz (ORCPT ); Wed, 7 Nov 2012 08:20:55 -0500 Received: from mail-la0-f46.google.com ([209.85.215.46]:42957 "EHLO mail-la0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750761Ab2KGNUy (ORCPT ); Wed, 7 Nov 2012 08:20:54 -0500 From: sjur.brandeland@stericsson.com To: Amit Shah , Rusty Russell Cc: "Michael S. Tsirkin" , Masami Hiramatsu , linux-kernel@vger.kernel.org, virtualization@lists.linux-foundation.org, sjur@brendeland.net, =?UTF-8?q?Sjur=20Br=C3=A6ndeland?= Subject: =?UTF8?q??= Date: Wed, 7 Nov 2012 15:22:51 +0100 Message-Id: <1352298171-21869-1-git-send-email-sjur.brandeland@stericsson.com> X-Mailer: git-send-email 1.7.9.5 References: <1350287856-5284-1-git-send-email-sjur.brandeland@stericsson.com> <1350287856-5284-5-git-send-email-sjur.brandeland@stericsson.com> <878vayhsca.fsf@rustcorp.com.au> <20121101073951.GA17012@amit.redhat.com> <87r4oc52ov.fsf@rustcorp.com.au> <20121102102047.GE10483@amit.redhat.com> <81C3A93C17462B4BBD7E272753C1057923BE98E5C6@EXDCVYMBSTM005.EQ1STM.local> In-Reply-To: <20121102102047.GE10483@amit.redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2403 Lines: 71 >From 0ce16d6a0270daebd9972e94a834034a093228b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sjur=20Br=C3=A6ndeland?= Date: Wed, 7 Nov 2012 12:20:07 +0100 Subject: [PATCH] virtio_console:Free buffers from out-queue upon close MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Free pending output buffers from the virtio out-queue when host has acknowledged port_close. Also removed WARN_ON() in remove_port_data(). Signed-off-by: Sjur Brændeland --- Hi Amit, Note: This patch is compile tested only. I have done the removal of buffers from out-queue in handle_control_message() when host has acked the close request. This seems less racy than doing it in the release function. I you want to change this further, feel free to take over from here and refine this. Thanks, Sjur drivers/char/virtio_console.c | 14 ++++++-------- 1 files changed, 6 insertions(+), 8 deletions(-) diff --git a/drivers/char/virtio_console.c b/drivers/char/virtio_console.c index 3fa036a..3a5831d 100644 --- a/drivers/char/virtio_console.c +++ b/drivers/char/virtio_console.c @@ -1522,15 +1522,9 @@ static void remove_port_data(struct port *port) while ((buf = virtqueue_detach_unused_buf(port->in_vq))) free_buf(buf, true); - /* - * Check the out-queue for buffers. For VIRTIO_CONSOLE it is a - * bug if this happens. But for RPROC_SERIAL the remote processor - * may have crashed, leaving buffers hanging in the out-queue. - */ - while ((buf = virtqueue_detach_unused_buf(port->out_vq))) { - WARN_ON_ONCE(!is_rproc_serial(port->portdev->vdev)); + /* Free pending buffers from the out-queue. */ + while ((buf = virtqueue_detach_unused_buf(port->out_vq))) free_buf(buf, true); - } } /* @@ -1655,6 +1649,10 @@ static void handle_control_message(struct ports_device *portdev, */ spin_lock_irq(&port->outvq_lock); reclaim_consumed_buffers(port); + + /* Free pending buffers from the out-queue. */ + while ((buf = virtqueue_detach_unused_buf(port->out_vq))) + free_buf(buf, true); spin_unlock_irq(&port->outvq_lock); /* -- 1.7.5.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/