From nobody Mon Feb 9 02:27:31 2026 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.zoho.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 1493816950016947.017933936053; Wed, 3 May 2017 06:09:10 -0700 (PDT) Received: from localhost ([::1]:36644 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d5u1i-00011W-IP for importer@patchew.org; Wed, 03 May 2017 09:09:06 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39848) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d5trC-00008Y-0m for qemu-devel@nongnu.org; Wed, 03 May 2017 08:58:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d5trB-00016Y-Ba for qemu-devel@nongnu.org; Wed, 03 May 2017 08:58:14 -0400 Received: from mx1.redhat.com ([209.132.183.28]:40144) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1d5tr2-0000w7-KU; Wed, 03 May 2017 08:58:04 -0400 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 020DDC04B92C; Wed, 3 May 2017 12:57:57 +0000 (UTC) Received: from dell-r430-03.lab.eng.brq.redhat.com (dell-r430-03.lab.eng.brq.redhat.com [10.34.112.60]) by smtp.corp.redhat.com (Postfix) with ESMTP id C8459182C6; Wed, 3 May 2017 12:57:54 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 020DDC04B92C Authentication-Results: ext-mx07.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx07.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=imammedo@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com 020DDC04B92C From: Igor Mammedov To: qemu-devel@nongnu.org Date: Wed, 3 May 2017 14:57:06 +0200 Message-Id: <1493816238-33120-13-git-send-email-imammedo@redhat.com> In-Reply-To: <1493816238-33120-1-git-send-email-imammedo@redhat.com> References: <1493816238-33120-1-git-send-email-imammedo@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.31]); Wed, 03 May 2017 12:57:57 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH v2 12/24] numa: add numa_[has_]node_id() wrappers 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: Peter Maydell , Andrew Jones , Eduardo Habkost , qemu-arm@nongnu.org, qemu-ppc@nongnu.org, Shannon Zhao , Paolo Bonzini , David Gibson 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" wrappers should make access to [has]node_id fields more readable Signed-off-by: Igor Mammedov Reviewed-by: Andrew Jones Reviewed-by: David Gibson --- follow up patches will use this wrappers v2: - add wrappers (Drew) --- include/sysemu/numa.h | 10 ++++++++++ numa.c | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/include/sysemu/numa.h b/include/sysemu/numa.h index 46ea6c7..98d01e6 100644 --- a/include/sysemu/numa.h +++ b/include/sysemu/numa.h @@ -35,4 +35,14 @@ uint32_t numa_get_node(ram_addr_t addr, Error **errp); /* on success returns node index in numa_info, * on failure returns nb_numa_nodes */ int numa_get_node_for_cpu(int idx); + +static inline bool numa_has_node_id(const CPUArchIdList *possible_cpus, in= t idx) +{ + return possible_cpus->cpus[idx].props.has_node_id; +} + +static inline int numa_node_id(const CPUArchIdList *possible_cpus, int idx) +{ + return possible_cpus->cpus[idx].props.node_id; +} #endif diff --git a/numa.c b/numa.c index c7e3e0a..872ee0d 100644 --- a/numa.c +++ b/numa.c @@ -394,7 +394,7 @@ void parse_numa_opts(MachineState *ms) =20 possible_cpus =3D mc->possible_cpu_arch_ids(ms); for (i =3D 0; i < possible_cpus->len; i++) { - if (possible_cpus->cpus[i].props.has_node_id) { + if (numa_has_node_id(possible_cpus, i)) { break; } } --=20 2.7.4