* [PATCH v2] xen: sched: removal of redundant check in Credit
@ 2016-12-15 18:09 Praveen Kumar
2016-12-16 0:55 ` Dario Faggioli
0 siblings, 1 reply; 2+ messages in thread
From: Praveen Kumar @ 2016-12-15 18:09 UTC (permalink / raw)
To: xen-devel@lists.xen.org; +Cc: george.dunlap@eu.citrix.com, Dario Faggioli
The patch gets rid of a redundant check in csched_vcpu_acct. In fact,
the function is only called from csched_tick, which already checks
that current is not the idle vcpu. The patch also adds an ASSERT to
the same effect, in order to make assumption ( i.e., no calling this
on idle vcpus) even more clear and as a guard for future mis-use.
Signed-off-by: Praveen Kumar <kpraveen.lkml@gmail.com>
---
Changed since v1:
* Changelog updated as per the comment.
v2:
diff --git a/xen/common/sched_credit.c b/xen/common/sched_credit.c
index fc3a321..dfe8545 100644
--- a/xen/common/sched_credit.c
+++ b/xen/common/sched_credit.c
@@ -941,6 +941,7 @@ csched_vcpu_acct(struct csched_private *prv,
unsigned int cpu)
ASSERT( current->processor == cpu );
ASSERT( svc->sdom != NULL );
+ ASSERT( !is_idle_vcpu(svc->vcpu) );
/*
* If this VCPU's priority was boosted when it last awoke, reset
it.
@@ -957,8 +958,7 @@ csched_vcpu_acct(struct csched_private *prv,
unsigned int cpu)
/*
* Update credits
*/
- if ( !is_idle_vcpu(svc->vcpu) )
- burn_credits(svc, NOW());
+ burn_credits(svc, NOW());
/*
* Put this VCPU and domain back on the active list if it was
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH v2] xen: sched: removal of redundant check in Credit
2016-12-15 18:09 [PATCH v2] xen: sched: removal of redundant check in Credit Praveen Kumar
@ 2016-12-16 0:55 ` Dario Faggioli
0 siblings, 0 replies; 2+ messages in thread
From: Dario Faggioli @ 2016-12-16 0:55 UTC (permalink / raw)
To: Praveen Kumar, xen-devel@lists.xen.org; +Cc: george.dunlap@eu.citrix.com
[-- Attachment #1.1: Type: text/plain, Size: 2074 bytes --]
On Thu, 2016-12-15 at 23:39 +0530, Praveen Kumar wrote:
> The patch gets rid of a redundant check in csched_vcpu_acct. In fact,
> the function is only called from csched_tick, which already checks
> that current is not the idle vcpu. The patch also adds an ASSERT to
> the same effect, in order to make assumption ( i.e., no calling this
> on idle vcpus) even more clear and as a guard for future mis-use.
>
> Signed-off-by: Praveen Kumar <kpraveen.lkml@gmail.com>
>
This is all good and can have my:
Acked-by: Dario Faggioli <dario.faggioli@citrix.com>
_HOWEVER_ when I tried to apply the patch directly from this email I
get this:
(Stripping trailing CRs from patch; use --binary to disable.)
checking file xen/common/sched_credit.c
patch: **** malformed patch at line 6: unsigned int cpu)
Which I think means that the patch has been corrupted, most likely by
the email program.
This is a common issue, and although it is possible to paste patches in
an email client and teach it not to mangle them, I would say:
1) it's a very boring thing to do, it does not scale, it's not
practical when sending patch series and it's not reliable;
2) I've only done a couple of times at the beginning of my OS
contribution history, and would not be able to help on how to make
that happen.
For this reason, I encourage you to look at and learn alternative ways
of submitting patches, like git-send-email. Personally, I use StGit for
development, and it has its own sending patches machinery too.
I think you should send a v3, by using one of these methods (or, in
general, not in a mangled state). When doing that (and if you don't
change anything), you can stick my 'Acked-by:' tag right below your own
'Signed-off-by:'
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] 2+ messages in thread
end of thread, other threads:[~2016-12-16 0:55 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-15 18:09 [PATCH v2] xen: sched: removal of redundant check in Credit Praveen Kumar
2016-12-16 0:55 ` Dario Faggioli
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).