|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [for-4.9 PATCH] xen: credit: change an ASSERT on nr_runnable so that it makes sense.
On 13/04/17 08:49, Dario Faggioli wrote:
> Since the counter is unsigned, it's pointless/bogous to check
> for if to be above zero.
>
> Check that it is at least one before it's decremented, instead.
>
> Spotted by Coverity.
>
> Reported-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
> Signed-off-by: Dario Faggioli <dario.faggioli@xxxxxxxxxx>
Reviewed-by: George Dunlap <george.dunlap@xxxxxxxxxx>
And queued
> ---
> Cc: George Dunlap <george.dunlap@xxxxxxxxxx>
> Cc: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
> Cc: Julien Grall <julien.grall@xxxxxxx>
> ---
> Julien,
>
> This is very low risk, and I'd call it a bugfix in the sense that it quiesces
> coverity.
>
> Dario
> ---
> xen/common/sched_credit.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/xen/common/sched_credit.c b/xen/common/sched_credit.c
> index 93658dc..efdf6bf 100644
> --- a/xen/common/sched_credit.c
> +++ b/xen/common/sched_credit.c
> @@ -275,8 +275,8 @@ static inline void
> dec_nr_runnable(unsigned int cpu)
> {
> ASSERT(spin_is_locked(per_cpu(schedule_data, cpu).schedule_lock));
> + ASSERT(CSCHED_PCPU(cpu)->nr_runnable >= 1);
> CSCHED_PCPU(cpu)->nr_runnable--;
> - ASSERT(CSCHED_PCPU(cpu)->nr_runnable >= 0);
> }
>
> static inline void
>
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxx
https://lists.xen.org/xen-devel
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |