[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20210324091701.63c9ce8e@jacob-builder>
Date: Wed, 24 Mar 2021 09:17:01 -0700
From: Jacob Pan <jacob.jun.pan@...el.com>
To: Vipin Sharma <vipinsh@...gle.com>
Cc: tj@...nel.org, mkoutny@...e.com, rdunlap@...radead.org,
thomas.lendacky@....com, brijesh.singh@....com, jon.grimm@....com,
eric.vantassell@....com, pbonzini@...hat.com, hannes@...xchg.org,
frankja@...ux.ibm.com, borntraeger@...ibm.com, corbet@....net,
seanjc@...gle.com, vkuznets@...hat.com, wanpengli@...cent.com,
jmattson@...gle.com, joro@...tes.org, tglx@...utronix.de,
mingo@...hat.com, bp@...en8.de, hpa@...or.com, gingell@...gle.com,
rientjes@...gle.com, dionnaglaze@...gle.com, kvm@...r.kernel.org,
x86@...nel.org, cgroups@...r.kernel.org, linux-doc@...r.kernel.org,
linux-kernel@...r.kernel.org,
Jacob Pan <jacob.jun.pan@...ux.intel.com>,
jacob.jun.pan@...el.com
Subject: Re: [Patch v3 1/2] cgroup: sev: Add misc cgroup controller
Hi Vipin,
On Mon, 22 Mar 2021 11:54:39 -0700, Vipin Sharma <vipinsh@...gle.com> wrote:
> On Fri, Mar 19, 2021 at 02:28:01PM -0700, Jacob Pan wrote:
> > On Thu, 4 Mar 2021 15:19:45 -0800, Vipin Sharma <vipinsh@...gle.com>
> > wrote:
> > > +#ifndef _MISC_CGROUP_H_
> > > +#define _MISC_CGROUP_H_
> > > +
> > nit: should you do #include <linux/cgroup.h>?
> > Otherwise, css may be undefined.
>
> User of this controller will use get_curernt_misc_cg() API which returns
> a pointer. Ideally the user should use this pointer and they shouldn't
> have any need to access "css" in their code. They also don't need to
> create a object of 'struct misc_cg{}', because that won't be correct misc
> cgroup object. They should just declare a pointer like we are doing here
> in 'struct kvm_sev_info {}'.
>
> If they do need to use "css" then they can include cgroup header in their
> code.
>
I didn't mean the users of misc_cgroup will use css directly. I meant if I
want to use misc cgruop in ioasid.c, I have to do the following to avoid
undefined css:
#include <linux/cgroup.h>
#include <linux/misc_cgroup.h>
So it might be simpler if you do #include <linux/cgroup.h> inside
misc_cgroup.h. Then in ioasid.c, I only need to do
#include <linux/misc_cgroup.h>.
> Let me know if I am overlooking something here.
>
> Thanks
> Vipin Sharma
Thanks,
Jacob
Powered by blists - more mailing lists