From: Juri Lelli <juri.lelli@redhat.com>
To: Ankit Jain <ankitja@vmware.com>
Cc: "srivatsa@csail.mit.edu" <srivatsa@csail.mit.edu>,
LKML <linux-kernel@vger.kernel.org>,
linux-rt-users <linux-rt-users@vger.kernel.org>,
Ingo Molnar <mingo@redhat.com>,
Peter Zijlstra <peterz@infradead.org>,
Vincent Guittot <vincent.guittot@linaro.org>,
Dietmar Eggemann <dietmar.eggemann@arm.com>,
Steven Rostedt <rostedt@goodmis.org>,
Ben Segall <bsegall@google.com>, Mel Gorman <mgorman@suse.de>,
Daniel Bristot de Oliveira <bristot@redhat.com>,
Valentin Schneider <vschneid@redhat.com>,
Sharan Turlapati <sturlapati@vmware.com>,
Him Kalyan Bordoloi <bordoloih@vmware.com>,
Keerthana Kalyanasundaram <keerthanak@vmware.com>,
Anish Swaminathan <anishs@vmware.com>,
Srivatsa Bhat <srivatsab@vmware.com>
Subject: Re: [PATCH] sched/deadline: Fix BUG_ON condition for deboosted tasks
Date: Fri, 15 Jul 2022 09:47:03 +0200 [thread overview]
Message-ID: <YtEbd2WjIOB6nXvr@localhost.localdomain> (raw)
In-Reply-To: <D5F4086A-AD87-4CCB-B926-25713BBF00ED@vmware.com>
Hi,
On 15/07/22 04:49, Ankit Jain wrote:
[...]
> Hi Juri,
>
> I tried the patch but it still hit the BUG_ON.
>
> [ 163.094094] ------------[ cut here ]------------
> [ 163.094095] kernel BUG at kernel/sched/deadline.c:1525!
> [ 163.094103] invalid opcode: 0000 [#1] PREEMPT SMP PTI
> [ 163.094105] CPU: 0 PID: 5494 Comm: stalld/34 Not tainted 4.19.247-rt108-10.ph3-rt #1-photon
> [ 163.094107] Hardware name: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 07/03/2018
> [ 163.094113] RIP: 0010:enqueue_task_dl+0x35d/0x9d0
> [ 163.094115] Code: 83 c4 10 5b 41 5c 41 5d 41 5e 41 5f 5d c3 8b 56 74 85 d2 0f 88 91 fd ff ff 80 a6 0c 03 00 00 fe 41 83 e5 20 0f 85
> [ 163.094116] RSP: 0018:ffff9b9286537e40 EFLAGS: 00010046
> [ 163.094118] RAX: ffffffff840bded0 RBX: ffff8dda07c48000 RCX: 0000000000002000
> [ 163.094119] RDX: 0000000000000078 RSI: ffff8dda07c48000 RDI: ffff8dddb79a87c0
> [ 163.094120] RBP: ffff9b9286537e78 R08: 0000000000000000 R09: 000000000000007f
> [ 163.094121] R10: ffff9b9286537e68 R11: 0000000000000000 R12: ffff9b9286537ef0
> [ 163.094121] R13: 0000000000000000 R14: ffff8dddb79a87c0 R15: ffff8dda07c482b8
> [ 163.094123] FS: 00007f81a27e4700(0000) GS:ffff8ddbb7600000(0000) knlGS:0000000000000000
> [ 163.094124] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
> [ 163.094125] CR2: 00007f85e6cfc4c0 CR3: 0000000233744004 CR4: 00000000007606b0
> [ 163.094176] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
> [ 163.094177] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
> [ 163.094177] PKRU: 55555554
> [ 163.094178] Call Trace:
> [ 163.094183] ? dequeue_task_dl+0x38/0x1d0
> [ 163.094188] __sched_setscheduler+0x2e2/0x8e0
> [ 163.094191] __x64_sys_sched_setattr+0x74/0xb0
> [ 163.094194] do_syscall_64+0x60/0x1b0
> [ 163.094200] entry_SYSCALL_64_after_hwframe+0x44/0xa9
> [ 163.094201] RIP: 0033:0x7f81b6ffe319
> [ 163.094202] Code: 00 f3 c3 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 40 00 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c
> [ 163.094203] RSP: 002b:00007f81a27e3e28 EFLAGS: 00000206 ORIG_RAX: 000000000000013a
> [ 163.094205] RAX: ffffffffffffffda RBX: 000000000000150a RCX: 00007f81b6ffe319
> [ 163.094205] RDX: 0000000000000000 RSI: 00007f81a27e3e50 RDI: 000000000000150a
> [ 163.094206] RBP: 000000000000150a R08: 0000000000000000 R09: 0000000000000030
> [ 163.094207] R10: 00007f80f0002090 R11: 0000000000000206 R12: 0000556306de7a20
> [ 163.094208] R13: 0000000000000002 R14: 0000556306ba3570 R15: 00007f81a27e4700
> [ 163.094210] Modules linked in: ipt_MASQUERADE nf_conntrack_netlink nfnetlink xfrm_user xfrm_algo xt_addrtype br_netfilter bridge stp
> [ 163.099512] ---[ end trace 0000000000000002 ]---
>
>
> In enqueue_task_dl():
>
> } else if (!dl_prio(p->normal_prio)) {
> …
> BUG_ON(!(flags & ENQUEUE_REPLENISH));
> return;
> }
>
> I observe flags value as (ENQUEUE_RESTORE | ENQUEUE_NOCLOCK)
Thanks for testing!
However, it looks like 4.19-rt is at least missing commit 46fcc4b00c3cc
("sched/deadline: Fix stale throttling on de-/boosted tasks") and commit
2279f540ea7d0 ("sched/deadline: Fix priority inheritance with multiple
scheduling classes") that might be playing also a role here.
Best,
Juri
next prev parent reply other threads:[~2022-07-15 7:47 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-13 7:50 [PATCH] sched/deadline: Fix BUG_ON condition for deboosted tasks Juri Lelli
2022-07-13 11:46 ` Peter Zijlstra
2022-07-13 12:58 ` Juri Lelli
2022-07-13 21:31 ` Srivatsa S. Bhat
2022-07-14 7:28 ` Juri Lelli
2022-07-15 4:49 ` Ankit Jain
2022-07-15 7:47 ` Juri Lelli [this message]
2022-07-18 7:46 ` Ankit Jain
2022-07-18 13:01 ` Juri Lelli
2022-07-19 5:30 ` Ankit Jain
2022-07-19 7:19 ` Juri Lelli
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=YtEbd2WjIOB6nXvr@localhost.localdomain \
--to=juri.lelli@redhat.com \
--cc=anishs@vmware.com \
--cc=ankitja@vmware.com \
--cc=bordoloih@vmware.com \
--cc=bristot@redhat.com \
--cc=bsegall@google.com \
--cc=dietmar.eggemann@arm.com \
--cc=keerthanak@vmware.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rt-users@vger.kernel.org \
--cc=mgorman@suse.de \
--cc=mingo@redhat.com \
--cc=peterz@infradead.org \
--cc=rostedt@goodmis.org \
--cc=srivatsa@csail.mit.edu \
--cc=srivatsab@vmware.com \
--cc=sturlapati@vmware.com \
--cc=vincent.guittot@linaro.org \
--cc=vschneid@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox