From nobody Tue Feb 10 08:06:45 2026 Delivered-To: importer@patchew.org Authentication-Results: mx.zohomail.com; spf=pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 1624533537060525.5081945425131; Thu, 24 Jun 2021 04:18:57 -0700 (PDT) Received: from localhost ([::1]:34678 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lwNNn-0002WR-Vo for importer@patchew.org; Thu, 24 Jun 2021 07:18:56 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:42786) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lwN5y-0000Bb-OV for qemu-devel@nongnu.org; Thu, 24 Jun 2021 07:00:32 -0400 Received: from mail.cn.fujitsu.com ([183.91.158.132]:13775 helo=heian.cn.fujitsu.com) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lwN5u-0006tM-F9 for qemu-devel@nongnu.org; Thu, 24 Jun 2021 07:00:30 -0400 Received: from unknown (HELO cn.fujitsu.com) ([10.167.33.5]) by heian.cn.fujitsu.com with ESMTP; 24 Jun 2021 19:00:20 +0800 Received: from G08CNEXMBPEKD04.g08.fujitsu.local (unknown [10.167.33.201]) by cn.fujitsu.com (Postfix) with ESMTP id BB7194C36A1E; Thu, 24 Jun 2021 19:00:14 +0800 (CST) Received: from G08CNEXCHPEKD07.g08.fujitsu.local (10.167.33.80) by G08CNEXMBPEKD04.g08.fujitsu.local (10.167.33.201) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Thu, 24 Jun 2021 19:00:04 +0800 Received: from localhost.localdomain (10.167.225.141) by G08CNEXCHPEKD07.g08.fujitsu.local (10.167.33.209) with Microsoft SMTP Server id 15.0.1497.2 via Frontend Transport; Thu, 24 Jun 2021 19:00:04 +0800 IronPort-HdrOrdr: =?us-ascii?q?A9a23=3A5NdkFKyAdyE84fEDDQEDKrPwSb1zdoMgy1kn?= =?us-ascii?q?xilNoH1uEvBw+PrCoB1273XJYVUqOU3I++ruBEDoexq1nqKdibNhXotKNzOLhI?= =?us-ascii?q?LHFu9f0bc=3D?= X-IronPort-AV: E=Sophos;i="5.83,296,1616428800"; d="scan'208";a="110119395" From: Li Zhijian To: , , Subject: [PATCH] nvdimm: release the correct device list Date: Thu, 24 Jun 2021 19:04:15 +0800 Message-ID: <20210624110415.187164-1-lizhijian@cn.fujitsu.com> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-yoursite-MailScanner-ID: BB7194C36A1E.ABB51 X-yoursite-MailScanner: Found to be clean X-yoursite-MailScanner-From: lizhijian@fujitsu.com Received-SPF: pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Received-SPF: neutral client-ip=183.91.158.132; envelope-from=lizhijian@fujitsu.com; helo=heian.cn.fujitsu.com X-Spam_score_int: -33 X-Spam_score: -3.4 X-Spam_bar: --- X-Spam_report: (-3.4 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_MED=-2.3, SPF_HELO_NONE=0.001, SPF_NEUTRAL=0.779 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: qemu-devel@nongnu.org, Li Zhijian Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Type: text/plain; charset="utf-8" Signed-off-by: Li Zhijian Reviewed-by: Igor Mammedov --- hw/acpi/nvdimm.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/hw/acpi/nvdimm.c b/hw/acpi/nvdimm.c index e3d5fe19392..ff317263e85 100644 --- a/hw/acpi/nvdimm.c +++ b/hw/acpi/nvdimm.c @@ -355,10 +355,10 @@ nvdimm_build_structure_caps(GArray *structures, uint3= 2_t capabilities) =20 static GArray *nvdimm_build_device_structure(NVDIMMState *state) { - GSList *device_list =3D nvdimm_get_device_list(); + GSList *device_list, *list =3D nvdimm_get_device_list(); GArray *structures =3D g_array_new(false, true /* clear */, 1); =20 - for (; device_list; device_list =3D device_list->next) { + for (device_list =3D list; device_list; device_list =3D device_list->n= ext) { DeviceState *dev =3D device_list->data; =20 /* build System Physical Address Range Structure. */ @@ -373,7 +373,7 @@ static GArray *nvdimm_build_device_structure(NVDIMMStat= e *state) /* build NVDIMM Control Region Structure. */ nvdimm_build_structure_dcr(structures, dev); } - g_slist_free(device_list); + g_slist_free(list); =20 if (state->persistence) { nvdimm_build_structure_caps(structures, state->persistence); @@ -1339,9 +1339,9 @@ static void nvdimm_build_ssdt(GArray *table_offsets, = GArray *table_data, =20 void nvdimm_build_srat(GArray *table_data) { - GSList *device_list =3D nvdimm_get_device_list(); + GSList *device_list, *list =3D nvdimm_get_device_list(); =20 - for (; device_list; device_list =3D device_list->next) { + for (device_list =3D list; device_list; device_list =3D device_list->n= ext) { AcpiSratMemoryAffinity *numamem =3D NULL; DeviceState *dev =3D device_list->data; Object *obj =3D OBJECT(dev); @@ -1356,7 +1356,7 @@ void nvdimm_build_srat(GArray *table_data) build_srat_memory(numamem, addr, size, node, MEM_AFFINITY_ENABLED | MEM_AFFINITY_NON_VOLATILE= ); } - g_slist_free(device_list); + g_slist_free(list); } =20 void nvdimm_build_acpi(GArray *table_offsets, GArray *table_data, --=20 2.31.1