[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v9 02/21] hw/core/machine: Support modules in -smp
From: |
Zhao Liu |
Subject: |
Re: [PATCH v9 02/21] hw/core/machine: Support modules in -smp |
Date: |
Tue, 12 Mar 2024 18:12:38 +0800 |
> > @@ -51,6 +51,10 @@ static char *cpu_hierarchy_to_string(MachineState *ms)
> > g_string_append_printf(s, " * clusters (%u)", ms->smp.clusters);
> > }
> > + if (mc->smp_props.modules_supported) {
> > + g_string_append_printf(s, " * modules (%u)", ms->smp.clusters);
> > + }
>
> smp.clusters -> smp.modules?
>
Good catch! Thanks!
-Zhao