From: He Chen <he.chen@linux.intel.com>
To: Ian Campbell <ian.campbell@citrix.com>
Cc: wei.liu2@citrix.com, stefano.stabellini@eu.citrix.com,
andrew.cooper3@citrix.com, ian.jackson@eu.citrix.com,
jbeulich@suse.com, xen-devel@lists.xenproject.org,
chao.p.peng@linux.intel.com, keir@xen.org
Subject: Re: [PATCH v4 4/4] docs: add document to introduce CDP command
Date: Fri, 25 Sep 2015 18:16:04 +0800 [thread overview]
Message-ID: <20150925101604.GA15813@HE> (raw)
In-Reply-To: <1443175138.25250.102.camel@citrix.com>
On Fri, Sep 25, 2015 at 10:58:58AM +0100, Ian Campbell wrote:
> On Fri, 2015-09-25 at 17:29 +0800, He Chen wrote:
> > On Thu, Sep 24, 2015 at 12:22:02PM +0100, Ian Campbell wrote:
> > > On Thu, 2015-09-17 at 17:35 +0800, He Chen wrote:
> > > > Add new CDP options with CAT commands in xl interface man page.
> > > > Add description of CDP in xl-psr.markdown.
> > >
> > > It would have been fine to include this in the previous patch by the
> > > way.
> > >
> >
> > You mean include both xl man page and xl-psr.markdown in the previous
> > patch? Or just only xl man page?
>
> All of the docs could validly be included with the patch which introduces
> the feature. i.e. you could fold patch #4 into #3 completely.
>
> You don't have to if you don't want to.
>
Thanks for your reminding, I will merge patch #3 and #4 in next version.
> > Maybe I make words a little confused here.
> > With CDP enabled, user can specify code cache (or data cache) only, and
> > the other would remain previous value (if no previous value, it would
> > keep as default value).
>
> The value is just enabled or disabled, so do I understand correctly that
> this is what you can do if cdp is enabled:
>
> [now: code cbm=<default>; data cbm=<default>]
>
> xl psr-cat-cbm-set -c <domid> 0xdeadbeed
> [now: code cbm=0xdeadbeef; data cbm=<default>]
>
> xl psr-cat-cbm-set -d <domid> 0xf00fb00f
> [now: code cbm=0xdeadbeef; data cbm=0xf00fb00f]
>
> xl psr-cat-cbm-set -c -d <domid> 0xd00dfeed
>
> [now: code cbm=0xd00dfeed; data cbm=0xd00dfeed]
>
> xl psr-cat-cbm-set <domid> 0xee11ee11
>
> [now: code cbm=0xee11ee11; data cbm=0xee11ee11]
>
> Is that right?
Yes.
>
> And if cdp is not enabled:
>
> [now: cbm=<default>]
>
> xl psr-cat-cbm-set -c <domid> 0xdeadbeed
> *ERRROR*
> [now: cbm=<default>]
>
> xl psr-cat-cbm-set -d <domid> 0xf00fb00f
> *ERRROR*
> [now: cbm=<default>]
>
Right above.
> xl psr-cat-cbm-set -c -d <domid> 0xd00dfeed
>
> *ERRROR*
> [now: cbm=<default>]
>
In current code, it is valid since -c & -d have the same behaviour as
neither of them.
So, it will not show error, and cbm=0xd00dfeed
What do you think of this? Is it proper to do so?
> xl psr-cat-cbm-set <domid> 0xee11ee11
>
> [now: cbm=0xee11ee11]
>
Right.
> > So, I think independently would be fine here.
>
> If I'm correct in all the above then yes.
>
> Ian.
next prev parent reply other threads:[~2015-09-25 10:15 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-17 9:35 [PATCH v4 0/4] detect and initialize CDP (Code/Data Prioritization) feature He Chen
2015-09-17 9:35 ` [PATCH v4 1/4] x86: Support enable CDP by boot parameter and add get CDP status He Chen
2015-09-17 10:20 ` Andrew Cooper
2015-09-24 15:57 ` Jan Beulich
2015-09-17 9:35 ` [PATCH v4 2/4] x86: add domctl cmd to set/get CDP code/data CBM He Chen
2015-09-17 10:25 ` Andrew Cooper
2015-09-17 9:35 ` [PATCH v4 3/4] tools: add tools support for Intel CDP He Chen
2015-09-17 10:38 ` Andrew Cooper
2015-09-24 10:56 ` Ian Campbell
2015-09-24 10:57 ` Ian Campbell
2015-09-24 11:12 ` Andrew Cooper
2015-09-24 11:00 ` Ian Campbell
2015-09-24 11:50 ` Jan Beulich
2015-09-24 12:07 ` Ian Campbell
2015-09-24 12:20 ` Jan Beulich
2015-09-24 12:31 ` Ian Campbell
2015-09-24 11:07 ` Ian Campbell
2015-09-24 11:22 ` Ian Campbell
2015-09-25 9:04 ` He Chen
2015-09-25 9:19 ` Ian Campbell
2015-09-25 8:43 ` He Chen
2015-09-25 9:18 ` Ian Campbell
2015-09-25 9:53 ` He Chen
2015-09-25 10:30 ` Ian Campbell
2015-09-17 9:35 ` [PATCH v4 4/4] docs: add document to introduce CDP command He Chen
2015-09-24 11:22 ` Ian Campbell
2015-09-24 11:53 ` Jan Beulich
2015-09-25 9:29 ` He Chen
2015-09-25 9:58 ` Ian Campbell
2015-09-25 10:16 ` He Chen [this message]
2015-09-25 10:38 ` Ian Campbell
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=20150925101604.GA15813@HE \
--to=he.chen@linux.intel.com \
--cc=andrew.cooper3@citrix.com \
--cc=chao.p.peng@linux.intel.com \
--cc=ian.campbell@citrix.com \
--cc=ian.jackson@eu.citrix.com \
--cc=jbeulich@suse.com \
--cc=keir@xen.org \
--cc=stefano.stabellini@eu.citrix.com \
--cc=wei.liu2@citrix.com \
--cc=xen-devel@lists.xenproject.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.