From nobody Tue Nov 4 23:51:20 2025 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1531771204142846.33396023885; Mon, 16 Jul 2018 13:00:04 -0700 (PDT) Received: from localhost ([::1]:53463 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ff9f9-0006IM-4r for importer@patchew.org; Mon, 16 Jul 2018 16:00:03 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35730) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ff9e6-0005bq-Tz for qemu-devel@nongnu.org; Mon, 16 Jul 2018 15:58:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ff9e3-000119-2Z for qemu-devel@nongnu.org; Mon, 16 Jul 2018 15:58:59 -0400 Received: from zero.eik.bme.hu ([2001:738:2001:2001::2001]:25194) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ff9e2-00010g-Ri; Mon, 16 Jul 2018 15:58:55 -0400 Received: from zero.eik.bme.hu (blah.eik.bme.hu [152.66.115.182]) by localhost (Postfix) with SMTP id 2B6B17456B9; Mon, 16 Jul 2018 21:58:51 +0200 (CEST) Received: by zero.eik.bme.hu (Postfix, from userid 432) id 0FE177456B7; Mon, 16 Jul 2018 21:58:51 +0200 (CEST) From: BALATON Zoltan Date: Mon, 16 Jul 2018 21:47:37 +0200 To: qemu-devel@nongnu.org, qemu-trivial@nongnu.org Message-Id: <20180716195851.0FE177456B7@zero.eik.bme.hu> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2001:738:2001:2001::2001 Subject: [Qemu-devel] [PATCH] Do not enable QOM debugging by default X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Paolo Bonzini Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Commit 3556c233d 5 years ago added an option to disable QOM debugging, noting that it can have high performance cost but left the default to on. Change the default to off and only enable it when debugging is requested to avoid the performance penalty for those compiling without debug options. Signed-off-by: BALATON Zoltan --- configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 2a7796e..a8fc1ed 100755 --- a/configure +++ b/configure @@ -415,7 +415,7 @@ bsd_user=3D"no" blobs=3D"yes" pkgversion=3D"" pie=3D"" -qom_cast_debug=3D"yes" +qom_cast_debug=3D"no" trace_backends=3D"log" trace_file=3D"trace" spice=3D"" @@ -1062,6 +1062,7 @@ for opt do debug_tcg=3D"yes" debug_mutex=3D"yes" debug=3D"yes" + qom_cast_debug=3D"yes" strip_opt=3D"no" fortify_source=3D"no" ;; --=20 2.7.6