From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 8C1F4C433EF for ; Sun, 24 Apr 2022 11:28:18 +0000 (UTC) Received: from localhost ([::1]:59564 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1niaPZ-0001W6-CQ for qemu-devel@archiver.kernel.org; Sun, 24 Apr 2022 07:28:17 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:40350) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1niaO5-0000hf-Lk for qemu-devel@nongnu.org; Sun, 24 Apr 2022 07:26:48 -0400 Received: from mga09.intel.com ([134.134.136.24]:7487) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1niaO3-0003P0-GB for qemu-devel@nongnu.org; Sun, 24 Apr 2022 07:26:45 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650799603; x=1682335603; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=v6smy6uftkvRbvfOwpjgQsTPsOqitT5DAsUwed6GRl4=; b=ClORB5xUvz/WZUqPoYVq19i+c2DwkuwyaLbnndISsgOg+HwzzxTRVOPn lNVaF+DL84mB6+aCAFwgB/7W9cvsgMiszFyzh0jnnMkoWHLkkvKIJa1Uf Oesf6TQKqwPPbLWSGTtkDfkj4oJaY+q2RxX01aEL18GbEioTxNtYfMg3E RJTiuT7au1P6ath5eXpCxb9umF8fEvzJmD707pGmXr5sXuZ6BwcZrunTz h82GKuAQyx6m1mYq2k1sAigr7/c+RmSKnPJno874E1sqp+7lw+i7oPgUr Kp1NwhQhmhNz57BUFrkyM7uzo9VTf08lC0n7pOszZRLssrp7H9xpTP5E+ A==; X-IronPort-AV: E=McAfee;i="6400,9594,10326"; a="264537727" X-IronPort-AV: E=Sophos;i="5.90,286,1643702400"; d="scan'208";a="264537727" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Apr 2022 04:26:20 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,286,1643702400"; d="scan'208";a="675416501" Received: from npg-dpdk-haiyue-2.sh.intel.com ([10.67.111.4]) by orsmga004.jf.intel.com with ESMTP; 24 Apr 2022 04:26:18 -0700 From: Haiyue Wang To: qemu-devel@nongnu.org Subject: [PATCH v2] error-report: fix g_date_time_format assertion Date: Sun, 24 Apr 2022 18:50:35 +0800 Message-Id: <20220424105036.291370-1-haiyue.wang@intel.com> X-Mailer: git-send-email 2.36.0 In-Reply-To: <20220424103120.284688-1-haiyue.wang@intel.com> References: <20220424103120.284688-1-haiyue.wang@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=134.134.136.24; envelope-from=haiyue.wang@intel.com; helo=mga09.intel.com X-Spam_score_int: -24 X-Spam_score: -2.5 X-Spam_bar: -- X-Spam_report: (-2.5 / 5.0 requ) BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.082, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HK_RANDOM_ENVFROM=0.998, HK_RANDOM_FROM=0.998, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Haiyue Wang , =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= , Richard Henderson , =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= , Paolo Bonzini Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: "Qemu-devel" The 'g_get_real_time' returns the number of microseconds since January 1, 1970 UTC, but 'g_date_time_new_from_unix_utc' needs the number of seconds, so it will cause the invalid time input: (process:279642): GLib-CRITICAL (recursed) **: g_date_time_format: assertion 'datetime != NULL' failed Call function 'g_date_time_new_now_utc' instead, it has the same result as 'g_date_time_new_from_unix_utc(g_get_real_time() / G_USEC_PER_SEC)'; Fixes: 73dab893b569 ("error-report: replace deprecated g_get_current_time() with glib >= 2.62") Signed-off-by: Haiyue Wang --- v2: use 'g_date_time_new_now_utc' directly, which handles the time zone reference correctly. --- util/error-report.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/error-report.c b/util/error-report.c index dbadaf206d..5edb2e6040 100644 --- a/util/error-report.c +++ b/util/error-report.c @@ -173,7 +173,7 @@ static char * real_time_iso8601(void) { #if GLIB_CHECK_VERSION(2,62,0) - g_autoptr(GDateTime) dt = g_date_time_new_from_unix_utc(g_get_real_time()); + g_autoptr(GDateTime) dt = g_date_time_new_now_utc(); /* ignore deprecation warning, since GLIB_VERSION_MAX_ALLOWED is 2.56 */ #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wdeprecated-declarations" -- 2.36.0