lkml.org 
[lkml]   [2022]   [Jul]   [13]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    SubjectRe: [PATCH] sched/deadline: Fix BUG_ON condition for deboosted tasks
    Date

    Hi Juri,

    On 7/13/22 12:50 AM, Juri Lelli wrote:
    > Tasks the are being deboosted from SCHED_DEADLINE might enter
    > enqueue_task_dl() one last time and hit an erroneous BUG_ON condition:
    > since they are not boosted anymore, the if (is_dl_boosted()) branch is
    > not taken, but the else if (!dl_prio) is and inside this one we
    > BUG_ON(!is_dl_boosted), which is of course false (BUG_ON triggered)
    > otherwise we had entered the if branch above. Long story short, the
    > current condition doesn't make sense and always leads to triggering of a
    > BUG.
    >
    > Fix this by only checking enqueue flags, properly: ENQUEUE_REPLENISH has
    > to be present, but additional flags are not a problem.
    >
    > Fixes: 2279f540ea7d ("sched/deadline: Fix priority inheritance with multiple scheduling classes")

    It looks like this problem goes further back than the above commit
    (which was merged in v5.10).

    Even the oldest LTS kernel (4.9) has code like this:

    if (... && p->dl.dl_boosted && ...)) {
    /* code */

    } else if (!dl_prio(p->normal_prio)) {

    BUG_ON(!p->dl.dl_boosted || flags != ENQUEUE_REPLENISH);
    return;
    }

    And we have observed crashes in the 4.19 kernel series too (CC'ed
    Ankit Jain and Him Kalyan who have reproduced this issue).

    I believe commit 64be6f1f5f71 ("sched/deadline: Don't replenish from a
    !SCHED_DEADLINE entity") introduced the problem, which dates back to
    v3.18.

    Would you mind updating the Fixes: tag and adding a CC: stable tag as
    well, when you respin the patch, please?

    Thank you!

    > Signed-off-by: Juri Lelli <juri.lelli@redhat.com>
    > ---
    > kernel/sched/deadline.c | 2 +-
    > 1 file changed, 1 insertion(+), 1 deletion(-)
    >
    > diff --git a/kernel/sched/deadline.c b/kernel/sched/deadline.c
    > index 5867e186c39a..0447d46f4718 100644
    > --- a/kernel/sched/deadline.c
    > +++ b/kernel/sched/deadline.c
    > @@ -1703,7 +1703,7 @@ static void enqueue_task_dl(struct rq *rq, struct task_struct *p, int flags)
    > * the throttle.
    > */
    > p->dl.dl_throttled = 0;
    > - BUG_ON(!is_dl_boosted(&p->dl) || flags != ENQUEUE_REPLENISH);
    > + BUG_ON(!(flags & ENQUEUE_REPLENISH));
    > return;
    > }
    >
    >

    Regards,
    Srivatsa
    VMware Photon OS

    \
     
     \ /
      Last update: 2022-07-13 23:32    [W:3.099 / U:0.048 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site