qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Gu Zheng <guz.fnst@cn.fujitsu.com>
To: qemu-devel@nongnu.org
Cc: "Eduardo Habkost" <ehabkost@redhat.com>,
	tangchen <tangchen@cn.fujitsu.com>,
	"Yasuaki Ishimatsu" <isimatu.yasuaki@jp.fujitsu.com>,
	ChenFan <chen.fan.fnst@cn.fujitsu.com>,
	"Igor Mammedov" <imammedo@redhat.com>,
	"Andreas Färber" <afaerber@suse.de>
Subject: Re: [Qemu-devel] [RFC PATCH 1/3] cpu: introduce CpuTopoInfo structure for argument simplification
Date: Fri, 27 Jun 2014 18:09:09 +0800	[thread overview]
Message-ID: <53AD42C5.7040000@cn.fujitsu.com> (raw)
In-Reply-To: <53AD415D.1080103@cn.fujitsu.com>

Correct the author.
From: Chen Fan <chen.fan.fnst@cn.fujitsu.com>

On 06/27/2014 06:03 PM, Gu Zheng wrote:

> Signed-off-by: Chen Fan <chen.fan.fnst@cn.fujitsu.com>
> Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
> Signed-off-by: Gu Zheng <guz.fnst@cn.fujitsu.com>
> ---
>  target-i386/topology.h |   33 +++++++++++++++++----------------
>  1 files changed, 17 insertions(+), 16 deletions(-)
> 
> diff --git a/target-i386/topology.h b/target-i386/topology.h
> index 07a6c5f..e9ff89c 100644
> --- a/target-i386/topology.h
> +++ b/target-i386/topology.h
> @@ -47,6 +47,12 @@
>   */
>  typedef uint32_t apic_id_t;
>  
> +typedef struct X86CPUTopoInfo {
> +    unsigned pkg_id;
> +    unsigned core_id;
> +    unsigned smt_id;
> +} X86CPUTopoInfo;
> +
>  /* Return the bit width needed for 'count' IDs
>   */
>  static unsigned apicid_bitwidth_for_count(unsigned count)
> @@ -92,13 +98,11 @@ static inline unsigned apicid_pkg_offset(unsigned nr_cores, unsigned nr_threads)
>   */
>  static inline apic_id_t apicid_from_topo_ids(unsigned nr_cores,
>                                               unsigned nr_threads,
> -                                             unsigned pkg_id,
> -                                             unsigned core_id,
> -                                             unsigned smt_id)
> +                                             const X86CPUTopoInfo *topo)
>  {
> -    return (pkg_id  << apicid_pkg_offset(nr_cores, nr_threads)) |
> -           (core_id << apicid_core_offset(nr_cores, nr_threads)) |
> -           smt_id;
> +    return (topo->pkg_id  << apicid_pkg_offset(nr_cores, nr_threads)) |
> +           (topo->core_id << apicid_core_offset(nr_cores, nr_threads)) |
> +           topo->smt_id;
>  }
>  
>  /* Calculate thread/core/package IDs for a specific topology,
> @@ -107,14 +111,12 @@ static inline apic_id_t apicid_from_topo_ids(unsigned nr_cores,
>  static inline void x86_topo_ids_from_idx(unsigned nr_cores,
>                                           unsigned nr_threads,
>                                           unsigned cpu_index,
> -                                         unsigned *pkg_id,
> -                                         unsigned *core_id,
> -                                         unsigned *smt_id)
> +                                         X86CPUTopoInfo *topo)
>  {
>      unsigned core_index = cpu_index / nr_threads;
> -    *smt_id = cpu_index % nr_threads;
> -    *core_id = core_index % nr_cores;
> -    *pkg_id = core_index / nr_cores;
> +    topo->smt_id = cpu_index % nr_threads;
> +    topo->core_id = core_index % nr_cores;
> +    topo->pkg_id = core_index / nr_cores;
>  }
>  
>  /* Make APIC ID for the CPU 'cpu_index'
> @@ -125,10 +127,9 @@ static inline apic_id_t x86_apicid_from_cpu_idx(unsigned nr_cores,
>                                                  unsigned nr_threads,
>                                                  unsigned cpu_index)
>  {
> -    unsigned pkg_id, core_id, smt_id;
> -    x86_topo_ids_from_idx(nr_cores, nr_threads, cpu_index,
> -                          &pkg_id, &core_id, &smt_id);
> -    return apicid_from_topo_ids(nr_cores, nr_threads, pkg_id, core_id, smt_id);
> +    X86CPUTopoInfo topo;
> +    x86_topo_ids_from_idx(nr_cores, nr_threads, cpu_index, &topo);
> +    return apicid_from_topo_ids(nr_cores, nr_threads, &topo);
>  }
>  
>  #endif /* TARGET_I386_TOPOLOGY_H */

  reply	other threads:[~2014-06-27 10:20 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-27 10:01 [Qemu-devel] [RFC PATCH 0/3] cpu: add device_add foo-x86_64-cpu support Gu Zheng
2014-06-27 10:03 ` [Qemu-devel] [RFC PATCH 1/3] cpu: introduce CpuTopoInfo structure for argument simplification Gu Zheng
2014-06-27 10:09   ` Gu Zheng [this message]
2014-06-27 10:04 ` [Qemu-devel] [RFC PATCH 2/3] qom/cpu: move register_vmstate to common CPUClass.realizefn Gu Zheng
2014-06-27 10:05 ` [Qemu-devel] [RFC PATCH 3/3] cpu: add device_add foo-x86_64-cpu support Gu Zheng

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=53AD42C5.7040000@cn.fujitsu.com \
    --to=guz.fnst@cn.fujitsu.com \
    --cc=afaerber@suse.de \
    --cc=chen.fan.fnst@cn.fujitsu.com \
    --cc=ehabkost@redhat.com \
    --cc=imammedo@redhat.com \
    --cc=isimatu.yasuaki@jp.fujitsu.com \
    --cc=qemu-devel@nongnu.org \
    --cc=tangchen@cn.fujitsu.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).