From patchwork Tue Jan 31 19:53:28 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luiz Capitulino X-Patchwork-Id: 138854 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id EC104B71A8 for ; Wed, 1 Feb 2012 06:54:13 +1100 (EST) Received: from localhost ([::1]:58267 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RsJmI-0003MN-1u for incoming@patchwork.ozlabs.org; Tue, 31 Jan 2012 14:54:06 -0500 Received: from eggs.gnu.org ([140.186.70.92]:56477) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RsJm5-0002xy-PZ for qemu-devel@nongnu.org; Tue, 31 Jan 2012 14:53:59 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RsJm0-0003kh-GD for qemu-devel@nongnu.org; Tue, 31 Jan 2012 14:53:53 -0500 Received: from mx1.redhat.com ([209.132.183.28]:4332) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RsJm0-0003kL-9F for qemu-devel@nongnu.org; Tue, 31 Jan 2012 14:53:48 -0500 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q0VJrhoX007440 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Tue, 31 Jan 2012 14:53:43 -0500 Received: from localhost (ovpn-116-58.ams2.redhat.com [10.36.116.58]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q0VJrf75009957; Tue, 31 Jan 2012 14:53:42 -0500 From: Luiz Capitulino To: qemu-devel@nongnu.org Date: Tue, 31 Jan 2012 17:53:28 -0200 Message-Id: <1328039611-24048-2-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1328039611-24048-1-git-send-email-lcapitulino@redhat.com> References: <1328039611-24048-1-git-send-email-lcapitulino@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.25 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Cc: mprivozn@redhat.com, eblake@redhat.com, mdroth@linux.vnet.ibm.com, jcody@redhat.com Subject: [Qemu-devel] [PATCH 1/4] qemu-ga: set O_NONBLOCK for serial channels X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org This fixes a bug when using -m isa-serial where qemu-ga will hang on a read()'s when communicating to the host via isa-serial. Original fix by Michael Roth. Signed-off-by: Luiz Capitulino --- qemu-ga.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/qemu-ga.c b/qemu-ga.c index 29e4f64..647df82 100644 --- a/qemu-ga.c +++ b/qemu-ga.c @@ -504,7 +504,7 @@ static void init_guest_agent(GAState *s) exit(EXIT_FAILURE); } } else if (strcmp(s->method, "isa-serial") == 0) { - fd = qemu_open(s->path, O_RDWR | O_NOCTTY); + fd = qemu_open(s->path, O_RDWR | O_NOCTTY | O_NONBLOCK); if (fd == -1) { g_critical("error opening channel: %s", strerror(errno)); exit(EXIT_FAILURE);