qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Daniel Henrique Barboza <danielhb413@gmail.com>
To: David Gibson <david@gibson.dropbear.id.au>
Cc: qemu-ppc@nongnu.org, Igor Mammedov <imammedo@redhat.com>,
	John Snow <jsnow@redhat.com>,
	Eduardo Habkost <ehabkost@redhat.com>,
	qemu-devel@nongnu.org
Subject: Re: [PATCH 02/10] numa: introduce MachineClass::forbid_asymmetrical_numa
Date: Mon, 24 Aug 2020 08:45:12 -0300	[thread overview]
Message-ID: <f936f3a7-78d1-dd1f-511b-1705c165fc06@gmail.com> (raw)
In-Reply-To: <20200824060839.GE4734@yekko.fritz.box>



On 8/24/20 3:08 AM, David Gibson wrote:
> On Fri, Aug 21, 2020 at 09:47:47AM -0300, Daniel Henrique Barboza wrote:
>>
>>
>> On 8/21/20 5:55 AM, Igor Mammedov wrote:
>>> On Thu, 20 Aug 2020 12:51:03 -0400
>>> Eduardo Habkost <ehabkost@redhat.com> wrote:
>>>
>>>> On Thu, Aug 20, 2020 at 02:15:04PM +1000, David Gibson wrote:
>>>>> On Wed, Aug 19, 2020 at 10:11:28PM -0400, Eduardo Habkost wrote:
>>>>>> On Thu, Aug 20, 2020 at 11:17:26AM +1000, David Gibson wrote:
>>>>>>> On Fri, Aug 14, 2020 at 05:54:16PM -0300, Daniel Henrique Barboza wrote:
>>>>>>>> The pSeries machine does not support asymmetrical NUMA
>>>>>>>> configurations.
>>>>>>>
>>>>>>> This seems a bit oddly specific to have as a global machine class
>>>>>>> property.
>>>>>>>
>>>>>>> Would it make more sense for machines with specific NUMA constraints
>>>>>>> to just verify those during their initialization?
>>>>>>
>>>>>> This would be much simpler.  However, I like the idea of
>>>>>> representing machine-specific configuration validation rules as
>>>>>> data that can eventually be exported to management software.
>>>>>
>>>>> Ah, ok, so basically the usual tradeoff between flexibility and
>>>>> advertisability.
>>>>>
>>>>> So, in that case, I guess the question is whether we envisage "no
>>>>> assymmetry" as a constraint common enough that it's worth creating an
>>>>> advertisable rule or not.  If we only ever have one user, then we
>>>>> haven't really done any better than hard coding the constraint in the
>>>>> manageent software.
>>>>>
>>>>> Of course to complicate matters, in the longer term we're looking at
>>>>> removing that constraint from pseries - but doing so will be dependent
>>>>> on the guest kernel understanding a new format for the NUMA
>>>>> information in the device tree.  So qemu alone won't have enough
>>>>> information to tell if such a configuration is possible or not.
>>>>
>>>> Requiring both QEMU (and possibly management software) to be
>>>> patched again after the guest kernel is fixed sounds undesirable.
>>> If we drop this restriction, then we don't need to touch QEMU when
>>> guest kernel is ready.
>>>
>>> Btw, what spapr spec says about the matter?
>>
>> LOPAPR support a somewhat asymmetrical NUMA setup in its current
>> form,
> 
> Huh, I didn't even realize that.  What's the mechanism?

LOPAPR mentions that a single resource/node can have multiple associativity
arrays. The idea is to contemplate the situations where the node has
more than one connection with the board.

I say "somewhat" because, right after mentioning that, the spec also says that
the OS should consider that the distance between two nodes must always be
the shortest one of all available arrays. I'll copy/paste the except here
(end of section 15.2, "Numa Resource Associativity":

-----

The reason that the “ibm,associativity” property may contain multiple associativity
lists is that a resource may be multiply connected into the platform. This resource
then has a different associativity characteristics relative to its multiple connections.
To determine the associativity between any two resources, the OS scans down the two
resources associativity lists in all pair wise combinations counting how many domains
are the same until the first domain where the two list do not agree. The highest such
count is the associativity between the two resources.

----


DHB


> 
>> but
>> the Linux kernel doesn't support it. The effort to implement it in the current
>> spapr machine code, given that Linux wouldn't mind it, is not worth it. This
>> is why I chose to invalidate it for pseries.
> 
> Igor,
> 
> It's kind of difficult to answer that question - PAPR doesn't
> specifically describe limitations, it's just that the representation
> it uses is inherently limited.  Instead of the obvious, simple and
> pretty much universal method (used in the generic kernel and qemu) of
> having a matrix of distance between all the nodes, it instead
> describes the hierarchy of components that give rise to the different
> distances.
> 
> So, for each NUMA relevant object (cpu, memory block, host bridge,
> etc.) there is a vector of IDs.  Each number in the vector gives one
> level of the objects location in the heirarchy.
> 
> So, for example the first number might be the physical chip/socket.
> the second one which group of cores & memory interfaces sharing an Ln
> cache, the third one the specific core number.  So to work out how far
> objects are from each other you essentially look at how long a prefix
> of their vector they share, which tells you how far above in the
> hierarchy you have to go to reach it.
> 
> There's a bunch of complicating details, but that's the gist of it.
> 
>>>> Perhaps a warning would be better in this case?
>>>>
>>>> In either case, it sounds like this won't be a common constraint
>>>> and I now agree with your original suggestion of doing this in
>>>> machine initialization code.
>>> Agreed, if it goes to spapr specific machine code I will not object much.
>>> (it will burden just spapr maintainers, so it's about convincing
>>> David in the end)
>>
>> I believe he's ok with it given that he suggested it in his first reply.
>>
>> I'll move this verification to spapr machine_init in the next version.
>>
>>
>>
>> Thanks,
>>
>> DHB
>>
>>
>>>
>>
> 


  reply	other threads:[~2020-08-24 11:46 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-14 20:54 [PATCH 00/10] pseries NUMA distance rework Daniel Henrique Barboza
2020-08-14 20:54 ` [PATCH 01/10] hw: add compat machines for 5.2 Daniel Henrique Barboza
2020-08-14 20:54 ` [PATCH 02/10] numa: introduce MachineClass::forbid_asymmetrical_numa Daniel Henrique Barboza
2020-08-20  1:17   ` David Gibson
2020-08-20  2:11     ` Eduardo Habkost
2020-08-20  4:15       ` David Gibson
2020-08-20 10:33         ` Daniel Henrique Barboza
2020-08-20 14:29           ` Igor Mammedov
2020-08-20 16:51         ` Eduardo Habkost
2020-08-21  8:55           ` Igor Mammedov
2020-08-21 12:47             ` Daniel Henrique Barboza
2020-08-24  6:08               ` David Gibson
2020-08-24 11:45                 ` Daniel Henrique Barboza [this message]
2020-08-24 23:49                   ` David Gibson
2020-08-25  9:56                     ` Daniel Henrique Barboza
2020-08-25 11:12                       ` David Gibson
2020-09-23 15:21           ` John Snow
2020-08-14 20:54 ` [PATCH 03/10] spapr: robustify NVLink2 NUMA node logic Daniel Henrique Barboza
2020-08-20  2:14   ` David Gibson
2020-08-26 21:49     ` Daniel Henrique Barboza
2020-08-14 20:54 ` [PATCH 04/10] spapr: add spapr_machine_using_legacy_numa() helper Daniel Henrique Barboza
2020-08-20  2:15   ` David Gibson
2020-08-14 20:54 ` [PATCH 05/10] spapr: make ibm, max-associativity-domains scale with user input Daniel Henrique Barboza
2020-08-20  2:55   ` [PATCH 05/10] spapr: make ibm,max-associativity-domains " David Gibson
2020-08-26 21:17     ` Daniel Henrique Barboza
2020-08-14 20:54 ` [PATCH 06/10] spapr: allow 4 NUMA levels in ibm, associativity-reference-points Daniel Henrique Barboza
2020-08-14 20:54 ` [PATCH 07/10] spapr: create helper to set ibm,associativity Daniel Henrique Barboza
2020-08-20  3:00   ` David Gibson
2020-08-20 10:39     ` Daniel Henrique Barboza
2020-08-14 20:54 ` [PATCH 08/10] spapr: introduce SpaprMachineClass::numa_assoc_domains Daniel Henrique Barboza
2020-08-20  4:26   ` David Gibson
2020-08-26 20:06     ` Daniel Henrique Barboza
2020-08-14 20:54 ` [PATCH 09/10] spapr: consider user input when defining spapr guest NUMA Daniel Henrique Barboza
2020-08-14 20:54 ` [PATCH 10/10] specs/ppc-spapr-numa: update with new NUMA support Daniel Henrique Barboza

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=f936f3a7-78d1-dd1f-511b-1705c165fc06@gmail.com \
    --to=danielhb413@gmail.com \
    --cc=david@gibson.dropbear.id.au \
    --cc=ehabkost@redhat.com \
    --cc=imammedo@redhat.com \
    --cc=jsnow@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@nongnu.org \
    /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).