From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:51203) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TBREA-0001IX-Lc for qemu-devel@nongnu.org; Tue, 11 Sep 2012 10:14:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TBRE5-0007YI-Ul for qemu-devel@nongnu.org; Tue, 11 Sep 2012 10:14:10 -0400 Message-ID: <504F471D.3030701@CloudSwitch.Com> Date: Tue, 11 Sep 2012 10:13:49 -0400 From: Don Slutz MIME-Version: 1.0 References: <1346532470-15859-1-git-send-email-Don@CloudSwitch.com> <1346630960-30887-1-git-send-email-Don@CloudSwitch.com> In-Reply-To: <1346630960-30887-1-git-send-email-Don@CloudSwitch.com> Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2] target-i386: Report on error during cpu_x86_register(). List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Don Slutz Cc: blauwirbel@gmail.com, qemu-trivial@nongnu.org, qemu-devel@nongnu.org On 09/02/12 20:09, Don Slutz wrote: > Send it to stderr before free of the details. > > Signed-off-by: Don Slutz > --- > v2: Change __FUNCTION__ to __func__ > > target-i386/cpu.c | 1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/target-i386/cpu.c b/target-i386/cpu.c > index 57c064f..760cca4 100644 > --- a/target-i386/cpu.c > +++ b/target-i386/cpu.c > @@ -1352,6 +1352,7 @@ int cpu_x86_register(X86CPU *cpu, const char *cpu_model) > } > object_property_set_str(OBJECT(cpu), def->model_id, "model-id", &error); > if (error_is_set(&error)) { > + fprintf(stderr, "%s: %s\n", __func__, error_get_pretty(error)); > error_free(error); > return -1; > } The (3) patch set in http://lists.gnu.org/archive/html/qemu-devel/2012-09/msg01400.html includes this change, and so this request is being withdrawn.