From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40654) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XbCZY-0006W2-G9 for qemu-devel@nongnu.org; Mon, 06 Oct 2014 13:59:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XbCZP-0002XU-En for qemu-devel@nongnu.org; Mon, 06 Oct 2014 13:59:48 -0400 Received: from mail-ob0-x229.google.com ([2607:f8b0:4003:c01::229]:46121) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XbCZP-0002Wc-86 for qemu-devel@nongnu.org; Mon, 06 Oct 2014 13:59:39 -0400 Received: by mail-ob0-f169.google.com with SMTP id m8so4404245obr.0 for ; Mon, 06 Oct 2014 10:59:36 -0700 (PDT) Received: from t430.minyard.home (pool-173-57-152-84.dllstx.fios.verizon.net. [173.57.152.84]) by mx.google.com with ESMTPSA id pf15sm10336818oeb.1.2014.10.06.10.59.34 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 06 Oct 2014 10:59:35 -0700 (PDT) Sender: Corey Minyard Received: from t430.minyard.home (t430.minyard.home [127.0.0.1]) by t430.minyard.home (8.14.7/8.14.7) with ESMTP id s96HxVuC015912 for ; Mon, 6 Oct 2014 12:59:31 -0500 Received: (from cminyard@localhost) by t430.minyard.home (8.14.7/8.14.7/Submit) id s96HxPBN015904 for qemu-devel@nongnu.org; Mon, 6 Oct 2014 12:59:25 -0500 From: minyard@acm.org Date: Mon, 6 Oct 2014 12:59:21 -0500 Message-Id: <1412618363-14968-1-git-send-email-minyard@acm.org> Subject: [Qemu-devel] [PATCH 0/2] qemu-char: Clean up socket reporting List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org The first patch fixes some reporting issues for reconnect sockets that fail to connect. It prevents a constant stream of error messages, and reports the error immediately instead of delaying it. This required a small restructure, but nothing big. The second adds an error to non-blocking connect reporting. The error was available, it just wasn't being passed. Hopefully this makes the error easier to diagnose. -corey