[tip:sched/core] sched: Fix signedness bug in yield_to()

2014-06-05 Thread tip-bot for Dan Carpenter
Commit-ID: fa93384f40deeb294fd29f2fdcadbd0ebc2dedf1 Gitweb: http://git.kernel.org/tip/fa93384f40deeb294fd29f2fdcadbd0ebc2dedf1 Author: Dan Carpenter AuthorDate: Fri, 23 May 2014 13:20:42 +0300 Committer: Ingo Molnar CommitDate: Thu, 5 Jun 2014 11:52:13 +0200 sched: Fix signedness bug

[tip:sched/core] sched: Fix signedness bug in yield_to()

2014-06-05 Thread tip-bot for Dan Carpenter
:52:13 +0200 sched: Fix signedness bug in yield_to() yield_to() is supposed to return -ESRCH if there is no task to yield to, but because the type is bool that is the same as returning true. The only place I see which cares is kvm_vcpu_on_spin(). Signed-off-by: Dan Carpenter dan.carpen

Re: sched: Fix signedness bug in yield_to()

2013-02-22 Thread Shuah Khan
: e0a79f529d5ba2507486d498b25da40911d95cf6 >>> > > Author: Dan Carpenter >>> > > AuthorDate: Tue Feb 5 14:37:51 2013 +0300 >>> > > Committer: Ingo Molnar >>> > > CommitDate: Tue Feb 5 12:59:29 2013 +0100 >>> > > &g

Re: sched: Fix signedness bug in yield_to()

2013-02-22 Thread Ingo Molnar
ate: Tue Feb 5 14:37:51 2013 +0300 > > > > Committer: Ingo Molnar > > > > CommitDate: Tue Feb 5 12:59:29 2013 +0100 > > > > > > > > sched: Fix signedness bug in yield_to() > > > > > > > > In 7b270f6099 "sched:

Re: sched: Fix signedness bug in yield_to()

2013-02-22 Thread Ingo Molnar
Molnar mi...@kernel.org CommitDate: Tue Feb 5 12:59:29 2013 +0100 sched: Fix signedness bug in yield_to() In 7b270f6099 sched: Bail out of yield_to when source and target runqueue has one task we changed this to store -ESRCH so it needs to be signed

Re: sched: Fix signedness bug in yield_to()

2013-02-22 Thread Shuah Khan
Carpenter dan.carpen...@oracle.com AuthorDate: Tue Feb 5 14:37:51 2013 +0300 Committer: Ingo Molnar mi...@kernel.org CommitDate: Tue Feb 5 12:59:29 2013 +0100 sched: Fix signedness bug in yield_to() In 7b270f6099 sched: Bail out of yield_to when source

Re: sched: Fix signedness bug in yield_to()

2013-02-21 Thread Raghavendra KT
gt; > AuthorDate: Tue Feb 5 14:37:51 2013 +0300 >> > > Committer: Ingo Molnar >> > > CommitDate: Tue Feb 5 12:59:29 2013 +0100 >> > > >> > > sched: Fix signedness bug in yield_to() >> > > >> > > In 7b270f6099 &quo

Re: sched: Fix signedness bug in yield_to()

2013-02-21 Thread Marcelo Tosatti
; > > The current kenel/sched/core.c doesn't have the code from the > > associated patch https://patchwork.kernel.org/patch/2016651/ > > As per the lkml discussion that one was supposed to go upstream > via the KVM tree. Marcelo? commit c3c186403c6abd32e719f005f0af950155a9e54d Au

Re: sched: Fix signedness bug in yield_to()

2013-02-21 Thread Shuah Khan
horDate: Tue Feb 5 14:37:51 2013 +0300 >>> > Committer: Ingo Molnar >>> > CommitDate: Tue Feb 5 12:59:29 2013 +0100 >>> > >>> > sched: Fix signedness bug in yield_to() >>> > >>> > In 7b270f6099 "sched: Bail out of

Re: sched: Fix signedness bug in yield_to()

2013-02-21 Thread Raghavendra KT
d32e719f005f0af950155a9e54d >> > Commit: c3c186403c6abd32e719f005f0af950155a9e54d >> > Parent: e0a79f529d5ba2507486d498b25da40911d95cf6 >> > Author: Dan Carpenter >> > AuthorDate: Tue Feb 5 14:37:51 2013 +0300 >> > Committer: Ingo Molnar >> >

Re: sched: Fix signedness bug in yield_to()

2013-02-21 Thread Ingo Molnar
f950155a9e54d > > Parent: e0a79f529d5ba2507486d498b25da40911d95cf6 > > Author: Dan Carpenter > > AuthorDate: Tue Feb 5 14:37:51 2013 +0300 > > Committer: Ingo Molnar > > CommitDate: Tue Feb 5 12:59:29 2013 +0100 > > > > sched: Fix signedness bug in yield_to()

Re: sched: Fix signedness bug in yield_to()

2013-02-21 Thread Ingo Molnar
Parent: e0a79f529d5ba2507486d498b25da40911d95cf6 Author: Dan Carpenter dan.carpen...@oracle.com AuthorDate: Tue Feb 5 14:37:51 2013 +0300 Committer: Ingo Molnar mi...@kernel.org CommitDate: Tue Feb 5 12:59:29 2013 +0100 sched: Fix signedness bug in yield_to

Re: sched: Fix signedness bug in yield_to()

2013-02-21 Thread Raghavendra KT
+0100 sched: Fix signedness bug in yield_to() In 7b270f6099 sched: Bail out of yield_to when source and target runqueue has one task we changed this to store -ESRCH so it needs to be signed. Dan, Ingo, I can't find the 7b270f6099 sched: Bail out of yield_to when source

Re: sched: Fix signedness bug in yield_to()

2013-02-21 Thread Shuah Khan
+0300 Committer: Ingo Molnar mi...@kernel.org CommitDate: Tue Feb 5 12:59:29 2013 +0100 sched: Fix signedness bug in yield_to() In 7b270f6099 sched: Bail out of yield_to when source and target runqueue has one task we changed this to store -ESRCH so it needs

Re: sched: Fix signedness bug in yield_to()

2013-02-21 Thread Marcelo Tosatti
+0100 sched: Fix signedness bug in yield_to() In 7b270f6099 sched: Bail out of yield_to when source and target runqueue has one task we changed this to store -ESRCH so it needs to be signed. Dan, Ingo, I can't find the 7b270f6099 sched: Bail out

Re: sched: Fix signedness bug in yield_to()

2013-02-21 Thread Raghavendra KT
Committer: Ingo Molnar mi...@kernel.org CommitDate: Tue Feb 5 12:59:29 2013 +0100 sched: Fix signedness bug in yield_to() In 7b270f6099 sched: Bail out of yield_to when source and target runqueue has one task we changed this to store -ESRCH so it needs to be signed

Re: sched: Fix signedness bug in yield_to()

2013-02-20 Thread Shuah Khan
Author: Dan Carpenter > AuthorDate: Tue Feb 5 14:37:51 2013 +0300 > Committer: Ingo Molnar > CommitDate: Tue Feb 5 12:59:29 2013 +0100 > > sched: Fix signedness bug in yield_to() > > In 7b270f6099 "sched: Bail out of yield_to when source and > target run

Re: sched: Fix signedness bug in yield_to()

2013-02-20 Thread Shuah Khan
Author: Dan Carpenter dan.carpen...@oracle.com AuthorDate: Tue Feb 5 14:37:51 2013 +0300 Committer: Ingo Molnar mi...@kernel.org CommitDate: Tue Feb 5 12:59:29 2013 +0100 sched: Fix signedness bug in yield_to() In 7b270f6099 sched: Bail out of yield_to when source

[tip:sched/core] sched: Fix signedness bug in yield_to()

2013-02-05 Thread tip-bot for Dan Carpenter
Commit-ID: c3c186403c6abd32e719f005f0af950155a9e54d Gitweb: http://git.kernel.org/tip/c3c186403c6abd32e719f005f0af950155a9e54d Author: Dan Carpenter AuthorDate: Tue, 5 Feb 2013 14:37:51 +0300 Committer: Ingo Molnar CommitDate: Tue, 5 Feb 2013 12:59:29 +0100 sched: Fix signedness bug

[tip:sched/core] sched: Fix signedness bug in yield_to()

2013-02-05 Thread tip-bot for Dan Carpenter
:59:29 +0100 sched: Fix signedness bug in yield_to() In 7b270f6099 sched: Bail out of yield_to when source and target runqueue has one task we changed this to store -ESRCH so it needs to be signed. Signed-off-by: Dan Carpenter dan.carpen...@oracle.com Cc: Peter Zijlstra pet...@infradead.org Cc