Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1262314 > unrolled thread

Re: [PATCH V15 00/11] x86: Intel Cache Allocation Technology Support

Started byLuiz Capitulino <lcapitulino@redhat.com>
First post2015-11-04 15:50 +0100
Last post2015-11-04 17:00 +0100
Articles 6 — 2 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: [PATCH V15 00/11] x86: Intel Cache Allocation Technology  Support Luiz Capitulino <lcapitulino@redhat.com> - 2015-11-04 15:50 +0100
    Re: [PATCH V15 00/11] x86: Intel Cache Allocation Technology  Support Thomas Gleixner <tglx@linutronix.de> - 2015-11-04 16:00 +0100
      Re: [PATCH V15 00/11] x86: Intel Cache Allocation Technology  Support Luiz Capitulino <lcapitulino@redhat.com> - 2015-11-04 16:20 +0100
        Re: [PATCH V15 00/11] x86: Intel Cache Allocation Technology  Support Thomas Gleixner <tglx@linutronix.de> - 2015-11-04 16:30 +0100
          Re: [PATCH V15 00/11] x86: Intel Cache Allocation Technology  Support Luiz Capitulino <lcapitulino@redhat.com> - 2015-11-04 16:40 +0100
            Re: [PATCH V15 00/11] x86: Intel Cache Allocation Technology  Support Thomas Gleixner <tglx@linutronix.de> - 2015-11-04 17:00 +0100

#1262314 — Re: [PATCH V15 00/11] x86: Intel Cache Allocation Technology Support

FromLuiz Capitulino <lcapitulino@redhat.com>
Date2015-11-04 15:50 +0100
SubjectRe: [PATCH V15 00/11] x86: Intel Cache Allocation Technology Support
Message-ID<qr7xT-1HX-7@gated-at.bofh.it>
On Thu,  1 Oct 2015 23:09:34 -0700
Fenghua Yu <fenghua.yu@intel.com> wrote:

> This series has some preparatory patches and Intel cache allocation
> support.

Ping? What's the status of this series?

We badly need this series for KVM-RT workloads. I did try it and it
seems to work but, apart from small fixable issues which I'll reply
to specific patches to point out, there are some design issues which
I need some clarification. They are in order of relevance:

 o Cache reservations are global to all NUMA nodes

   CAT is mostly intended for real-time and high performance
   computing. For both of them the most common setup is to
   pin your threads to specific cores on a specific NUMA node.

   So, suppose I have two HPC threads pinned to specific cores
   on node1. I want to reserve 80% of the L3 cache to those
   threads. With current patches I'd do this:

    1. Create a "all-tasks" cgroup which can only access 20% of
       the cache
    2. Create a "hpc" cgroup which can access 80% of the cache
    3. Move my HPC threads to "hpc" and all the other threads to
       "all-tasks"

   This has the intended behavior on node1: the "hpc" threads
   will write into 80% of the L3 cache and any "all-tasks" threads
   executing there will only write into 20% of the cache.

   However, this is also true for node0! So, the "all-tasks"
   threads can only write into 20% of the cache in node0 even
   though "hpc" threads will never execute there.

   Is this intended by design? Like, is this a hardware limitation
   (given that the IA32_L3_MASK_n MSRs are global anyways) or maybe
   a way to enforce cache coherence?

   I was wondering if we could have masks per NUMA node, where
   they are applied to processes whenever they migrate among
   NUMA nodes.

 o How does this feature apply to kernel threads?

   I'm just unable to move kernel threads out of the root
   cgroup. This means that kernel threads can always write
   into all cache no matter what the reservation scheme is.

   Is this intended by design? Why? Unless I'm missing
   something, reservations could and should be applied to
   kernel threads as well.

 o You can't change the root cgroup's CBM

   I can understand this makes the implementation a lot simpler.
   However, the reality is that there are way too little CBMs
   and loosing one for the root group seems like a waste.

   Can we change this or is there strong reasons not to do so?

 o cgroups hierarchy is limited by the number of CBMs

   Today on my Haswell system, this means that I can only have 3
   directories in my cgroups hierarchy. If the number of CBMs
   are expected to grow in next processors, then I think having
   this feature as cgroups makes sense. However, if we're still
   going to be this limited in terms of directory structure, then
   it seems a bit overkill to me to have this as cgroups
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [next] | [standalone]


#1262321

FromThomas Gleixner <tglx@linutronix.de>
Date2015-11-04 16:00 +0100
Message-ID<qr7HA-1LY-5@gated-at.bofh.it>
In reply to#1262314
On Wed, 4 Nov 2015, Luiz Capitulino wrote:

> On Thu,  1 Oct 2015 23:09:34 -0700
> Fenghua Yu <fenghua.yu@intel.com> wrote:
> 
> > This series has some preparatory patches and Intel cache allocation
> > support.
> 
> Ping? What's the status of this series?

We still need to agree on the user space interface which is the
hardest part of it....

Thanks,

	tglx
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1262342

FromLuiz Capitulino <lcapitulino@redhat.com>
Date2015-11-04 16:20 +0100
Message-ID<qr80V-28m-11@gated-at.bofh.it>
In reply to#1262321
On Wed, 4 Nov 2015 15:57:41 +0100 (CET)
Thomas Gleixner <tglx@linutronix.de> wrote:

> On Wed, 4 Nov 2015, Luiz Capitulino wrote:
> 
> > On Thu,  1 Oct 2015 23:09:34 -0700
> > Fenghua Yu <fenghua.yu@intel.com> wrote:
> > 
> > > This series has some preparatory patches and Intel cache allocation
> > > support.
> > 
> > Ping? What's the status of this series?
> 
> We still need to agree on the user space interface which is the
> hardest part of it....

My understanding is that two interfaces have been proposed: the cgroups
one and an API based on syscalls or ioctls.

Are those proposals mutual exclusive? What about having the cgroups one
merged IFF it's useful, and having the syscall API later if really
needed?

I don't want to make the wrong decision, but the cgroups interface is
here. Holding it while we discuss a perfect interface that doesn't
even exist will just do a bad service for users.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1262350

FromThomas Gleixner <tglx@linutronix.de>
Date2015-11-04 16:30 +0100
Message-ID<qr8aC-2cC-23@gated-at.bofh.it>
In reply to#1262342
On Wed, 4 Nov 2015, Luiz Capitulino wrote:
> On Wed, 4 Nov 2015 15:57:41 +0100 (CET)
> Thomas Gleixner <tglx@linutronix.de> wrote:
> 
> > On Wed, 4 Nov 2015, Luiz Capitulino wrote:
> > 
> > > On Thu,  1 Oct 2015 23:09:34 -0700
> > > Fenghua Yu <fenghua.yu@intel.com> wrote:
> > > 
> > > > This series has some preparatory patches and Intel cache allocation
> > > > support.
> > > 
> > > Ping? What's the status of this series?
> > 
> > We still need to agree on the user space interface which is the
> > hardest part of it....
> 
> My understanding is that two interfaces have been proposed: the cgroups
> one and an API based on syscalls or ioctls.
> 
> Are those proposals mutual exclusive? What about having the cgroups one
> merged IFF it's useful, and having the syscall API later if really
> needed?
> 
> I don't want to make the wrong decision, but the cgroups interface is
> here. Holding it while we discuss a perfect interface that doesn't
> even exist will just do a bad service for users.

Well, no. We do not just introduce a random user space ABI simply
because we have to support it forever.

Thanks,

	tglx

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1262376

FromLuiz Capitulino <lcapitulino@redhat.com>
Date2015-11-04 16:40 +0100
Message-ID<qr8kj-2go-61@gated-at.bofh.it>
In reply to#1262350
On Wed, 4 Nov 2015 16:28:04 +0100 (CET)
Thomas Gleixner <tglx@linutronix.de> wrote:

> On Wed, 4 Nov 2015, Luiz Capitulino wrote:
> > On Wed, 4 Nov 2015 15:57:41 +0100 (CET)
> > Thomas Gleixner <tglx@linutronix.de> wrote:
> > 
> > > On Wed, 4 Nov 2015, Luiz Capitulino wrote:
> > > 
> > > > On Thu,  1 Oct 2015 23:09:34 -0700
> > > > Fenghua Yu <fenghua.yu@intel.com> wrote:
> > > > 
> > > > > This series has some preparatory patches and Intel cache allocation
> > > > > support.
> > > > 
> > > > Ping? What's the status of this series?
> > > 
> > > We still need to agree on the user space interface which is the
> > > hardest part of it....
> > 
> > My understanding is that two interfaces have been proposed: the cgroups
> > one and an API based on syscalls or ioctls.
> > 
> > Are those proposals mutual exclusive? What about having the cgroups one
> > merged IFF it's useful, and having the syscall API later if really
> > needed?
> > 
> > I don't want to make the wrong decision, but the cgroups interface is
> > here. Holding it while we discuss a perfect interface that doesn't
> > even exist will just do a bad service for users.
> 
> Well, no. We do not just introduce a random user space ABI simply
> because we have to support it forever.

I don't think it's random, it's in discussion for a long time and
Peter seems to be in favor of it.

But I'm all for progress here whatever route we take. In that regard,
what's your opinion on the best way to move forward?
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1262396

FromThomas Gleixner <tglx@linutronix.de>
Date2015-11-04 17:00 +0100
Message-ID<qr8DE-2nj-19@gated-at.bofh.it>
In reply to#1262376
On Wed, 4 Nov 2015, Luiz Capitulino wrote:
> On Wed, 4 Nov 2015 16:28:04 +0100 (CET)
> Thomas Gleixner <tglx@linutronix.de> wrote:
> 
> > On Wed, 4 Nov 2015, Luiz Capitulino wrote:
> > > On Wed, 4 Nov 2015 15:57:41 +0100 (CET)
> > > Thomas Gleixner <tglx@linutronix.de> wrote:
> > > 
> > > > On Wed, 4 Nov 2015, Luiz Capitulino wrote:
> > > > 
> > > > > On Thu,  1 Oct 2015 23:09:34 -0700
> > > > > Fenghua Yu <fenghua.yu@intel.com> wrote:
> > > > > 
> > > > > > This series has some preparatory patches and Intel cache allocation
> > > > > > support.
> > > > > 
> > > > > Ping? What's the status of this series?
> > > > 
> > > > We still need to agree on the user space interface which is the
> > > > hardest part of it....
> > > 
> > > My understanding is that two interfaces have been proposed: the cgroups
> > > one and an API based on syscalls or ioctls.
> > > 
> > > Are those proposals mutual exclusive? What about having the cgroups one
> > > merged IFF it's useful, and having the syscall API later if really
> > > needed?
> > > 
> > > I don't want to make the wrong decision, but the cgroups interface is
> > > here. Holding it while we discuss a perfect interface that doesn't
> > > even exist will just do a bad service for users.
> > 
> > Well, no. We do not just introduce a random user space ABI simply
> > because we have to support it forever.
> 
> I don't think it's random, it's in discussion for a long time and
> Peter seems to be in favor of it.

It does not matter whether it's in discussion for a long time. We have
requests for functionality which cannot be covered with that
interface.
 
> But I'm all for progress here whatever route we take. In that regard,
> what's your opinion on the best way to move forward?

Talk to the people in your very company, who are having a different
opinion and requests for stuff which cannot be handled by the current
proposed interface. You had yourself a list of things you want to see
handled.

So feel free to come up with patches which implement that instead of
telling us that your company needs it badly for some reason.

Thanks,

	tglx
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web