* [PATCH v3] features: declare the Credit2 scheduler as Supported.
@ 2016-11-02 15:05 Dario Faggioli
2016-11-02 15:38 ` Jan Beulich
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Dario Faggioli @ 2016-11-02 15:05 UTC (permalink / raw)
To: xen-devel
Cc: Lars Kurth, Stefano Stabellini, Wei Liu, George Dunlap,
Andrew Cooper, Anshul Makkar, Ian Jackson, Tim Deegan, security,
Jan Beulich
Credit2 is available in tree as an "Experimental" scheduler since
a few years. Recently, effort started for making it production ready
and, eventually, the new Xen's default scheduler. As a consequence of
that, it has undergone a greatd deal of development, testing and
benchmarking.
In fact, Credit2's much more modern (wrt Credit1) design and cleaner
code makes it a lot easier to understand what the scheduler is doing,
fix scheduling issues that may come up, and implement new and more
advanced features, in future.
In some more details:
- key features that were missing (pinning and context switching
rate-limiting) have now been implemented, and more (soft affinity,
caps and reservations) are about to come. The gap wrt Credit1 is
therefore closing. In particular, with pinning and rate-limiting
available, the scheduler can be considered usable.
- Credit2 is tested by OSSTest since long time. Furthermore, as a
part of recent efforts, stress tests and benchmarks have been run
and shown no bugs or stability issues.
- A number of different benchmarks have been run, most of them
comparing Credit2 with Credit1. Some of the results were posted on
xen-devel, some others have been illustrated during a talk at 2016
edition of Xen-Project Developer Summit. In general, performance
look promising --if not better than Credit1 already, in some of
the cases.
It therefore appears that we are ready to mark the Credit2 scheduler
as a 'Supported' feature, and ask users to look at it and try it, if
they think it suits their needs.
Of course, declaring something 'Supported' has security implications.
So here it is how the situation looks like from a security standpoint:
1) Is guest->host privilege escalation possible?
The only interfaces exposed to unprivileged guests are the SCHEDOP
hypercalls, and timers. None of those hypercalls contain any pointers,
and they don't look to contain any privilege escalation path. Also,
they're not specific to Credit2, as they're "used" by all schedulers
(ingluding the current default, Credit1), so anything about these
interfaces would be a security concern already.
2) Is guest user->guest kernel escalation possible?
The guest kernel is not really relying on anything from the scheduler
to protect itself or any data in any way.
3) Is there any information leakage?
The only information which the scheduler exposes to unprivileged
guests is the timing information. This may be able to be used for
side-channel attacks to probabilistically infer things about other
vcpus running on the same system; but this has not traditionally
been considered within the security boundary. And, again, this is
possible with all schedulers.
The control domain can issue DOMCTL_SCHEDOP and SYSCTL_SCHEDOP
hypercalls, but the involved data structures are handled in a
way that does not leak information (which would be leaked "only"
to Dom0 anyway).
4) Can a Denial-of-Service be triggered?
This is a risk, with schedulers, and one that's hard to foresee.
For instance, it _did_ happen on Credit1, in the past (a vcpu
could "game the system" by sleeping at particular times to gain
BOOST priority and monopolize 95% of the cpu). In that case, it
was possible because of the probabilistic nature of accounting
in Credit1 (which was then fixed). Well, Credit2:
- already do accurate, rather than probabilistic, accounting;
- does not have any BOOST or, in general, any way for a vcpu to
become 'more important' than the others: they're all subjected
to the same crediting algorithm.
Also note that, the accounting and the crediting algorithm are a lot
simpler than in Credit1, and hence a lot easier to understand, debug
and audit.
Signed-off-by: Dario Faggioli <dario.faggioli@citrix.com>
---
Changes since v2:
* 'EXPERIMENTAL' tag removed from Kconfig;
* reworded paragraph on SCHEDOP DOMCTL & SYSCTL from Dom0.
---
Cc: George Dunlap <George.Dunlap@eu.citrix.com>
Cc: Anshul Makkar <anshul.makkar@citrix.com>
Cc: Wei Liu <wei.liu2@citrix.com>
Cc: Lars Kurth <lars.kurth@citrix.com>
Cc: Stefano Stabellini <sstabellini@kernel.org>
Cc: Andrew Cooper <andrew.cooper3@citrix.com>
Cc: Ian Jackson <ian.jackson@eu.citrix.com>
Cc: Jan Beulich <jbeulich@suse.com>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: Tim Deegan <tim@xen.org>
Cc: security@xenproject.org
---
docs/features/sched_credit2.pandoc | 2 +-
xen/common/Kconfig | 2 +-
xen/common/sched_credit2.c | 2 --
3 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/docs/features/sched_credit2.pandoc b/docs/features/sched_credit2.pandoc
index 8609d9c..9c8e15b 100644
--- a/docs/features/sched_credit2.pandoc
+++ b/docs/features/sched_credit2.pandoc
@@ -5,7 +5,7 @@
# Basics
---------------- ----------------------------------------------------
- Status: **Experimental**
+ Status: **Supported**
Component: Hypervisor
---------------- ----------------------------------------------------
diff --git a/xen/common/Kconfig b/xen/common/Kconfig
index d4f10ca..f2ecbc4 100644
--- a/xen/common/Kconfig
+++ b/xen/common/Kconfig
@@ -166,7 +166,7 @@ config SCHED_CREDIT
The traditional credit scheduler is a general purpose scheduler.
config SCHED_CREDIT2
- bool "Credit2 scheduler support (EXPERIMENTAL)"
+ bool "Credit2 scheduler support"
default y
---help---
The credit2 scheduler is a general purpose scheduler that is
diff --git a/xen/common/sched_credit2.c b/xen/common/sched_credit2.c
index fe46e80..1f26553 100644
--- a/xen/common/sched_credit2.c
+++ b/xen/common/sched_credit2.c
@@ -2954,8 +2954,6 @@ csched2_init(struct scheduler *ops)
struct csched2_private *prv;
printk("Initializing Credit2 scheduler\n");
- printk(" WARNING: This is experimental software in development.\n" \
- " Use at your own risk.\n");
printk(XENLOG_INFO " load_precision_shift: %d\n"
XENLOG_INFO " load_window_shift: %d\n"
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH v3] features: declare the Credit2 scheduler as Supported.
2016-11-02 15:05 [PATCH v3] features: declare the Credit2 scheduler as Supported Dario Faggioli
@ 2016-11-02 15:38 ` Jan Beulich
2016-11-02 15:39 ` Wei Liu
` (3 subsequent siblings)
4 siblings, 0 replies; 9+ messages in thread
From: Jan Beulich @ 2016-11-02 15:38 UTC (permalink / raw)
To: Dario Faggioli
Cc: Lars Kurth, Stefano Stabellini, Wei Liu, George Dunlap,
Andrew Cooper, Anshul Makkar, Ian Jackson, Tim Deegan, security,
xen-devel
>>> On 02.11.16 at 16:05, <dario.faggioli@citrix.com> wrote:
> Credit2 is available in tree as an "Experimental" scheduler since
> a few years. Recently, effort started for making it production ready
> and, eventually, the new Xen's default scheduler. As a consequence of
> that, it has undergone a greatd deal of development, testing and
> benchmarking.
>
> In fact, Credit2's much more modern (wrt Credit1) design and cleaner
> code makes it a lot easier to understand what the scheduler is doing,
> fix scheduling issues that may come up, and implement new and more
> advanced features, in future.
>
> In some more details:
>
> - key features that were missing (pinning and context switching
> rate-limiting) have now been implemented, and more (soft affinity,
> caps and reservations) are about to come. The gap wrt Credit1 is
> therefore closing. In particular, with pinning and rate-limiting
> available, the scheduler can be considered usable.
>
> - Credit2 is tested by OSSTest since long time. Furthermore, as a
> part of recent efforts, stress tests and benchmarks have been run
> and shown no bugs or stability issues.
>
> - A number of different benchmarks have been run, most of them
> comparing Credit2 with Credit1. Some of the results were posted on
> xen-devel, some others have been illustrated during a talk at 2016
> edition of Xen-Project Developer Summit. In general, performance
> look promising --if not better than Credit1 already, in some of
> the cases.
>
> It therefore appears that we are ready to mark the Credit2 scheduler
> as a 'Supported' feature, and ask users to look at it and try it, if
> they think it suits their needs.
>
> Of course, declaring something 'Supported' has security implications.
> So here it is how the situation looks like from a security standpoint:
>
> 1) Is guest->host privilege escalation possible?
>
> The only interfaces exposed to unprivileged guests are the SCHEDOP
> hypercalls, and timers. None of those hypercalls contain any pointers,
> and they don't look to contain any privilege escalation path. Also,
> they're not specific to Credit2, as they're "used" by all schedulers
> (ingluding the current default, Credit1), so anything about these
> interfaces would be a security concern already.
>
>
> 2) Is guest user->guest kernel escalation possible?
>
> The guest kernel is not really relying on anything from the scheduler
> to protect itself or any data in any way.
>
>
> 3) Is there any information leakage?
>
> The only information which the scheduler exposes to unprivileged
> guests is the timing information. This may be able to be used for
> side-channel attacks to probabilistically infer things about other
> vcpus running on the same system; but this has not traditionally
> been considered within the security boundary. And, again, this is
> possible with all schedulers.
>
> The control domain can issue DOMCTL_SCHEDOP and SYSCTL_SCHEDOP
> hypercalls, but the involved data structures are handled in a
> way that does not leak information (which would be leaked "only"
> to Dom0 anyway).
>
>
> 4) Can a Denial-of-Service be triggered?
>
> This is a risk, with schedulers, and one that's hard to foresee.
> For instance, it _did_ happen on Credit1, in the past (a vcpu
> could "game the system" by sleeping at particular times to gain
> BOOST priority and monopolize 95% of the cpu). In that case, it
> was possible because of the probabilistic nature of accounting
> in Credit1 (which was then fixed). Well, Credit2:
> - already do accurate, rather than probabilistic, accounting;
> - does not have any BOOST or, in general, any way for a vcpu to
> become 'more important' than the others: they're all subjected
> to the same crediting algorithm.
>
> Also note that, the accounting and the crediting algorithm are a lot
> simpler than in Credit1, and hence a lot easier to understand, debug
> and audit.
>
> Signed-off-by: Dario Faggioli <dario.faggioli@citrix.com>
Acked-by: Jan Beulich <jbeulich@suse.com>
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3] features: declare the Credit2 scheduler as Supported.
2016-11-02 15:05 [PATCH v3] features: declare the Credit2 scheduler as Supported Dario Faggioli
2016-11-02 15:38 ` Jan Beulich
@ 2016-11-02 15:39 ` Wei Liu
2016-11-02 15:49 ` Dario Faggioli
2016-11-02 15:45 ` George Dunlap
` (2 subsequent siblings)
4 siblings, 1 reply; 9+ messages in thread
From: Wei Liu @ 2016-11-02 15:39 UTC (permalink / raw)
To: Dario Faggioli
Cc: Lars Kurth, Stefano Stabellini, Wei Liu, George Dunlap,
Andrew Cooper, Anshul Makkar, Ian Jackson, Tim Deegan, security,
Jan Beulich, xen-devel
On Wed, Nov 02, 2016 at 04:05:03PM +0100, Dario Faggioli wrote:
> Credit2 is available in tree as an "Experimental" scheduler since
> a few years. Recently, effort started for making it production ready
> and, eventually, the new Xen's default scheduler. As a consequence of
> that, it has undergone a greatd deal of development, testing and
greatd -> great
> benchmarking.
>
> In fact, Credit2's much more modern (wrt Credit1) design and cleaner
Credit2's -> Credit2 is
(I believe contraction is not applicable in this case, but maybe some
native speakers can check.)
> code makes it a lot easier to understand what the scheduler is doing,
> fix scheduling issues that may come up, and implement new and more
> advanced features, in future.
>
> In some more details:
>
> - key features that were missing (pinning and context switching
> rate-limiting) have now been implemented, and more (soft affinity,
> caps and reservations) are about to come. The gap wrt Credit1 is
> therefore closing. In particular, with pinning and rate-limiting
> available, the scheduler can be considered usable.
>
> - Credit2 is tested by OSSTest since long time. Furthermore, as a
> part of recent efforts, stress tests and benchmarks have been run
> and shown no bugs or stability issues.
>
> - A number of different benchmarks have been run, most of them
> comparing Credit2 with Credit1. Some of the results were posted on
> xen-devel, some others have been illustrated during a talk at 2016
> edition of Xen-Project Developer Summit. In general, performance
> look promising --if not better than Credit1 already, in some of
> the cases.
>
> It therefore appears that we are ready to mark the Credit2 scheduler
> as a 'Supported' feature, and ask users to look at it and try it, if
> they think it suits their needs.
>
> Of course, declaring something 'Supported' has security implications.
> So here it is how the situation looks like from a security standpoint:
>
> 1) Is guest->host privilege escalation possible?
>
> The only interfaces exposed to unprivileged guests are the SCHEDOP
> hypercalls, and timers. None of those hypercalls contain any pointers,
> and they don't look to contain any privilege escalation path. Also,
> they're not specific to Credit2, as they're "used" by all schedulers
> (ingluding the current default, Credit1), so anything about these
> interfaces would be a security concern already.
>
>
> 2) Is guest user->guest kernel escalation possible?
>
> The guest kernel is not really relying on anything from the scheduler
> to protect itself or any data in any way.
>
>
> 3) Is there any information leakage?
>
> The only information which the scheduler exposes to unprivileged
> guests is the timing information. This may be able to be used for
> side-channel attacks to probabilistically infer things about other
> vcpus running on the same system; but this has not traditionally
> been considered within the security boundary. And, again, this is
> possible with all schedulers.
>
> The control domain can issue DOMCTL_SCHEDOP and SYSCTL_SCHEDOP
> hypercalls, but the involved data structures are handled in a
> way that does not leak information (which would be leaked "only"
> to Dom0 anyway).
>
>
> 4) Can a Denial-of-Service be triggered?
>
> This is a risk, with schedulers, and one that's hard to foresee.
> For instance, it _did_ happen on Credit1, in the past (a vcpu
> could "game the system" by sleeping at particular times to gain
> BOOST priority and monopolize 95% of the cpu). In that case, it
> was possible because of the probabilistic nature of accounting
> in Credit1 (which was then fixed). Well, Credit2:
> - already do accurate, rather than probabilistic, accounting;
> - does not have any BOOST or, in general, any way for a vcpu to
> become 'more important' than the others: they're all subjected
> to the same crediting algorithm.
>
> Also note that, the accounting and the crediting algorithm are a lot
> simpler than in Credit1, and hence a lot easier to understand, debug
> and audit.
>
> Signed-off-by: Dario Faggioli <dario.faggioli@citrix.com>
Acked-by: Wei Liu <wei.liu2@citrix.com>
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3] features: declare the Credit2 scheduler as Supported.
2016-11-02 15:05 [PATCH v3] features: declare the Credit2 scheduler as Supported Dario Faggioli
2016-11-02 15:38 ` Jan Beulich
2016-11-02 15:39 ` Wei Liu
@ 2016-11-02 15:45 ` George Dunlap
2016-11-02 16:00 ` Konrad Rzeszutek Wilk
2016-11-03 11:09 ` Wei Liu
4 siblings, 0 replies; 9+ messages in thread
From: George Dunlap @ 2016-11-02 15:45 UTC (permalink / raw)
To: Dario Faggioli, xen-devel
Cc: Lars Kurth, Stefano Stabellini, Wei Liu, George Dunlap,
Andrew Cooper, Anshul Makkar, Ian Jackson, Tim Deegan, security,
Jan Beulich
On 02/11/16 15:05, Dario Faggioli wrote:
> Credit2 is available in tree as an "Experimental" scheduler since
> a few years. Recently, effort started for making it production ready
> and, eventually, the new Xen's default scheduler. As a consequence of
> that, it has undergone a greatd deal of development, testing and
> benchmarking.
>
> In fact, Credit2's much more modern (wrt Credit1) design and cleaner
> code makes it a lot easier to understand what the scheduler is doing,
> fix scheduling issues that may come up, and implement new and more
> advanced features, in future.
>
> In some more details:
>
> - key features that were missing (pinning and context switching
> rate-limiting) have now been implemented, and more (soft affinity,
> caps and reservations) are about to come. The gap wrt Credit1 is
> therefore closing. In particular, with pinning and rate-limiting
> available, the scheduler can be considered usable.
>
> - Credit2 is tested by OSSTest since long time. Furthermore, as a
> part of recent efforts, stress tests and benchmarks have been run
> and shown no bugs or stability issues.
>
> - A number of different benchmarks have been run, most of them
> comparing Credit2 with Credit1. Some of the results were posted on
> xen-devel, some others have been illustrated during a talk at 2016
> edition of Xen-Project Developer Summit. In general, performance
> look promising --if not better than Credit1 already, in some of
> the cases.
>
> It therefore appears that we are ready to mark the Credit2 scheduler
> as a 'Supported' feature, and ask users to look at it and try it, if
> they think it suits their needs.
>
> Of course, declaring something 'Supported' has security implications.
> So here it is how the situation looks like from a security standpoint:
>
> 1) Is guest->host privilege escalation possible?
>
> The only interfaces exposed to unprivileged guests are the SCHEDOP
> hypercalls, and timers. None of those hypercalls contain any pointers,
> and they don't look to contain any privilege escalation path. Also,
> they're not specific to Credit2, as they're "used" by all schedulers
> (ingluding the current default, Credit1), so anything about these
> interfaces would be a security concern already.
>
>
> 2) Is guest user->guest kernel escalation possible?
>
> The guest kernel is not really relying on anything from the scheduler
> to protect itself or any data in any way.
>
>
> 3) Is there any information leakage?
>
> The only information which the scheduler exposes to unprivileged
> guests is the timing information. This may be able to be used for
> side-channel attacks to probabilistically infer things about other
> vcpus running on the same system; but this has not traditionally
> been considered within the security boundary. And, again, this is
> possible with all schedulers.
>
> The control domain can issue DOMCTL_SCHEDOP and SYSCTL_SCHEDOP
> hypercalls, but the involved data structures are handled in a
> way that does not leak information (which would be leaked "only"
> to Dom0 anyway).
>
>
> 4) Can a Denial-of-Service be triggered?
>
> This is a risk, with schedulers, and one that's hard to foresee.
> For instance, it _did_ happen on Credit1, in the past (a vcpu
> could "game the system" by sleeping at particular times to gain
> BOOST priority and monopolize 95% of the cpu). In that case, it
> was possible because of the probabilistic nature of accounting
> in Credit1 (which was then fixed). Well, Credit2:
> - already do accurate, rather than probabilistic, accounting;
> - does not have any BOOST or, in general, any way for a vcpu to
> become 'more important' than the others: they're all subjected
> to the same crediting algorithm.
>
> Also note that, the accounting and the crediting algorithm are a lot
> simpler than in Credit1, and hence a lot easier to understand, debug
> and audit.
>
> Signed-off-by: Dario Faggioli <dario.faggioli@citrix.com>
Acked-by: George Dunlap <george.dunlap@citrix.com>
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3] features: declare the Credit2 scheduler as Supported.
2016-11-02 15:39 ` Wei Liu
@ 2016-11-02 15:49 ` Dario Faggioli
2016-11-02 16:11 ` Ian Jackson
2016-11-02 16:22 ` Wei Liu
0 siblings, 2 replies; 9+ messages in thread
From: Dario Faggioli @ 2016-11-02 15:49 UTC (permalink / raw)
To: Wei Liu
Cc: Lars Kurth, Stefano Stabellini, George Dunlap, Andrew Cooper,
Anshul Makkar, Ian Jackson, Tim Deegan, security, Jan Beulich,
xen-devel
[-- Attachment #1.1: Type: text/plain, Size: 1369 bytes --]
On Wed, 2016-11-02 at 15:39 +0000, Wei Liu wrote:
> On Wed, Nov 02, 2016 at 04:05:03PM +0100, Dario Faggioli wrote:
> >
> > Credit2 is available in tree as an "Experimental" scheduler since
> > a few years. Recently, effort started for making it production
> > ready
> > and, eventually, the new Xen's default scheduler. As a consequence
> > of
> > that, it has undergone a greatd deal of development, testing and
>
> greatd -> great
>
Sorry, and thanks.
> >
> > benchmarking.
> >
> > In fact, Credit2's much more modern (wrt Credit1) design and
> > cleaner
>
> Credit2's -> Credit2 is
>
> (I believe contraction is not applicable in this case, but maybe some
> native speakers can check.)
>
Well, that was actually Saxon genitive (or English possessive, or
genitive case, or whatever is called). But even that, I'm not 100% sure
it is ok/best to use it. I think yes, but if it is not, I guess this
should become:
"In fact, the much more modern design of Credit2 (wrt Credit1) and its
cleaner..."
But I'm relaying on native speakers too.
Thanks and Regards,
Dario
--
<<This happens because I choose it to happen!>> (Raistlin Majere)
-----------------------------------------------------------------
Dario Faggioli, Ph.D, http://about.me/dario.faggioli
Senior Software Engineer, Citrix Systems R&D Ltd., Cambridge (UK)
[-- Attachment #1.2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
[-- Attachment #2: Type: text/plain, Size: 127 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3] features: declare the Credit2 scheduler as Supported.
2016-11-02 15:05 [PATCH v3] features: declare the Credit2 scheduler as Supported Dario Faggioli
` (2 preceding siblings ...)
2016-11-02 15:45 ` George Dunlap
@ 2016-11-02 16:00 ` Konrad Rzeszutek Wilk
2016-11-03 11:09 ` Wei Liu
4 siblings, 0 replies; 9+ messages in thread
From: Konrad Rzeszutek Wilk @ 2016-11-02 16:00 UTC (permalink / raw)
To: Dario Faggioli
Cc: Lars Kurth, Stefano Stabellini, Wei Liu, George Dunlap,
Andrew Cooper, Anshul Makkar, Ian Jackson, Tim Deegan, security,
Jan Beulich, xen-devel
> Signed-off-by: Dario Faggioli <dario.faggioli@citrix.com>
> ---
> Changes since v2:
> * 'EXPERIMENTAL' tag removed from Kconfig;
> * reworded paragraph on SCHEDOP DOMCTL & SYSCTL from Dom0.
> ---
> Cc: George Dunlap <George.Dunlap@eu.citrix.com>
> Cc: Anshul Makkar <anshul.makkar@citrix.com>
> Cc: Wei Liu <wei.liu2@citrix.com>
> Cc: Lars Kurth <lars.kurth@citrix.com>
> Cc: Stefano Stabellini <sstabellini@kernel.org>
> Cc: Andrew Cooper <andrew.cooper3@citrix.com>
> Cc: Ian Jackson <ian.jackson@eu.citrix.com>
> Cc: Jan Beulich <jbeulich@suse.com>
> Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Acked-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3] features: declare the Credit2 scheduler as Supported.
2016-11-02 15:49 ` Dario Faggioli
@ 2016-11-02 16:11 ` Ian Jackson
2016-11-02 16:22 ` Wei Liu
1 sibling, 0 replies; 9+ messages in thread
From: Ian Jackson @ 2016-11-02 16:11 UTC (permalink / raw)
To: Dario Faggioli
Cc: Lars Kurth, Stefano Stabellini, Wei Liu, George Dunlap,
Andrew Cooper, Anshul Makkar, Tim Deegan, security, Jan Beulich,
xen-devel
Dario Faggioli writes ("Re: [PATCH v3] features: declare the Credit2 scheduler as Supported."):
> On Wed, 2016-11-02 at 15:39 +0000, Wei Liu wrote:
> > On Wed, Nov 02, 2016 at 04:05:03PM +0100, Dario Faggioli wrote:
> > > In fact, Credit2's much more modern (wrt Credit1) design and
> > > cleaner
> >
> > Credit2's -> Credit2 is
> >
> > (I believe contraction is not applicable in this case, but maybe some
> > native speakers can check.)
>
> Well, that was actually Saxon genitive (or English possessive, or
> genitive case, or whatever is called). But even that, I'm not 100% sure
> it is ok/best to use it. I think yes, but if it is not, I guess this
> should become:
Your original was right.
Anyway,
Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
Ian.
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3] features: declare the Credit2 scheduler as Supported.
2016-11-02 15:49 ` Dario Faggioli
2016-11-02 16:11 ` Ian Jackson
@ 2016-11-02 16:22 ` Wei Liu
1 sibling, 0 replies; 9+ messages in thread
From: Wei Liu @ 2016-11-02 16:22 UTC (permalink / raw)
To: Dario Faggioli
Cc: Lars Kurth, Stefano Stabellini, Wei Liu, George Dunlap,
Andrew Cooper, Anshul Makkar, Ian Jackson, Tim Deegan, security,
Jan Beulich, xen-devel
On Wed, Nov 02, 2016 at 04:49:37PM +0100, Dario Faggioli wrote:
> On Wed, 2016-11-02 at 15:39 +0000, Wei Liu wrote:
> > On Wed, Nov 02, 2016 at 04:05:03PM +0100, Dario Faggioli wrote:
> > >
> > > Credit2 is available in tree as an "Experimental" scheduler since
> > > a few years. Recently, effort started for making it production
> > > ready
> > > and, eventually, the new Xen's default scheduler. As a consequence
> > > of
> > > that, it has undergone a greatd deal of development, testing and
> >
> > greatd -> great
> >
> Sorry, and thanks.
> > >
> > > benchmarking.
> > >
> > > In fact, Credit2's much more modern (wrt Credit1) design and
> > > cleaner
> >
> > Credit2's -> Credit2 is
> >
> > (I believe contraction is not applicable in this case, but maybe some
> > native speakers can check.)
> >
> Well, that was actually Saxon genitive (or English possessive, or
> genitive case, or whatever is called). But even that, I'm not 100% sure
> it is ok/best to use it. I think yes, but if it is not, I guess this
> should become:
>
Ah, I skipped "design" and read that as "Credit2's ... cleaner". Sorry
for the noise.
Wei.
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3] features: declare the Credit2 scheduler as Supported.
2016-11-02 15:05 [PATCH v3] features: declare the Credit2 scheduler as Supported Dario Faggioli
` (3 preceding siblings ...)
2016-11-02 16:00 ` Konrad Rzeszutek Wilk
@ 2016-11-03 11:09 ` Wei Liu
4 siblings, 0 replies; 9+ messages in thread
From: Wei Liu @ 2016-11-03 11:09 UTC (permalink / raw)
To: Dario Faggioli
Cc: Lars Kurth, Stefano Stabellini, Wei Liu, George Dunlap,
Andrew Cooper, Anshul Makkar, Ian Jackson, Tim Deegan, security,
Jan Beulich, xen-devel
Fixed one typo, removed period in subject line and pushed.
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2016-11-03 11:10 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-02 15:05 [PATCH v3] features: declare the Credit2 scheduler as Supported Dario Faggioli
2016-11-02 15:38 ` Jan Beulich
2016-11-02 15:39 ` Wei Liu
2016-11-02 15:49 ` Dario Faggioli
2016-11-02 16:11 ` Ian Jackson
2016-11-02 16:22 ` Wei Liu
2016-11-02 15:45 ` George Dunlap
2016-11-02 16:00 ` Konrad Rzeszutek Wilk
2016-11-03 11:09 ` Wei Liu
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).