From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38090) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bG2wH-0005ma-Fg for qemu-devel@nongnu.org; Thu, 23 Jun 2016 07:36:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bG2wA-0003sp-AD for qemu-devel@nongnu.org; Thu, 23 Jun 2016 07:36:52 -0400 Received: from mx1.redhat.com ([209.132.183.28]:41921) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bG2wA-0003sk-41 for qemu-devel@nongnu.org; Thu, 23 Jun 2016 07:36:46 -0400 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id B716E3B72C for ; Thu, 23 Jun 2016 11:36:45 +0000 (UTC) Date: Thu, 23 Jun 2016 08:36:43 -0300 From: Eduardo Habkost Message-ID: <20160623113643.GU2048@thinpad.lan.raisama.net> References: <1466437983-27133-1-git-send-email-ehabkost@redhat.com> <1466437983-27133-2-git-send-email-ehabkost@redhat.com> <87eg7o73p5.fsf@dusky.pond.sub.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <87eg7o73p5.fsf@dusky.pond.sub.org> Subject: Re: [Qemu-devel] [PATCH v2 01/10] qdev: Don't stop applying globals on first error List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Markus Armbruster Cc: qemu-devel@nongnu.org, Marcel Apfelbaum , Paolo Bonzini , Igor Mammedov On Thu, Jun 23, 2016 at 09:40:54AM +0200, Markus Armbruster wrote: > Eduardo Habkost writes: > > > Since commit 25f8dd9, qdev_prop_set_globals_for_type() stops > > applying global properties on the first error. It is a leftover > > from when QEMU exited on any error when applying global property. > > Now we print a warning about the first error, bug ignore all > > other global properties after it. > > Actually, we've stopped since forever. Before commit 25f8dd9, that was > okay. Since commit, it isn't. Suggest: > > qdev_prop_set_globals_for_type() stops applying global properties on the > first error. It is a leftover from when QEMU exited on any error when > applying global property. Commit 25f8dd9 changed the fatal error to a > warning, but neglected to drop the stopping. Fix that. Fixed that. Thanks! -- Eduardo