* Fwd: RCU indicates stalls with iwlwifi, causing boot failures
@ 2023-09-02 0:29 Bagas Sanjaya
2023-09-02 2:07 ` Ben Greear
0 siblings, 1 reply; 5+ messages in thread
From: Bagas Sanjaya @ 2023-09-02 0:29 UTC (permalink / raw)
To: Lai Jiangshan, Paul E. McKenney, Gregory Greenman, Dave Hansen
Cc: Linux Kernel Mailing List, Linux Networking, Linux Wireless,
Linux RCU
Hi,
I notice a bug report on Bugzilla [1]. Quoting from it:
> I'm seeing RCU warnings in Linus's current tree (like 87dfd85c38923acd9517e8df4afc908565df0961) that come from RCU:
>
> WARNING: CPU: 0 PID: 0 at kernel/rcu/tree_exp.h:787 rcu_exp_handler+0x35/0xe0
>
> But they *ONLY* occur on a system with a newer iwlwifi device:
>
> aa:00.0 Network controller: Intel Corporation Wi-Fi 6 AX210/AX211/AX411 160MHz (rev 1a)
>
> and never in a VM or on an older device (like an 8260). During a bisect the only seem to occur with the "83" version of the firmware.
>
> iwlwifi 0000:aa:00.0: loaded firmware version 83.e8f84e98.0 ty-a0-gf-a0-83.ucode op_mode iwlmvm
>
> The first warning gets spit out within a millisecond of the last printk() from the iwlwifi driver. They eventually result in a big spew of RCU messages like this:
>
> [ 27.124796] rcu: INFO: rcu_preempt detected expedited stalls on CPUs/tasks: { 0-...D } 125 jiffies s: 193 root: 0x1/.
> [ 27.126466] rcu: blocking rcu_node structures (internal RCU debug):
> [ 27.128114] Sending NMI from CPU 3 to CPUs 0:
> [ 27.128122] NMI backtrace for cpu 0 skipped: idling at intel_idle+0x5f/0xb0
> [ 27.159757] loop30: detected capacity change from 0 to 8
> [ 27.204967] rcu: INFO: rcu_preempt detected expedited stalls on CPUs/tasks: { 0-...D } 145 jiffies s: 193 root: 0x1/.
> [ 27.206353] rcu: blocking rcu_node structures (internal RCU debug):
> [ 27.207751] Sending NMI from CPU 3 to CPUs 0:
> [ 27.207825] NMI backtrace for cpu 0 skipped: idling at intel_idle+0x5f/0xb0
>
> I usually see them at boot. In that case, they usually hang the system and keep it from booting. I've also encountered them at reboots and also seen them *not* be fatal at boot. I suspect it has to do with which CPU gets wedged.
See Bugzilla for the full thread and attached full dmesg output.
Thanks.
[1]: https://bugzilla.kernel.org/show_bug.cgi?id=217856
--
An old man doll... just what I always wanted! - Clara
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Fwd: RCU indicates stalls with iwlwifi, causing boot failures
2023-09-02 0:29 Fwd: RCU indicates stalls with iwlwifi, causing boot failures Bagas Sanjaya
@ 2023-09-02 2:07 ` Ben Greear
2023-09-02 6:59 ` Hugh Dickins
0 siblings, 1 reply; 5+ messages in thread
From: Ben Greear @ 2023-09-02 2:07 UTC (permalink / raw)
To: Bagas Sanjaya, Lai Jiangshan, Paul E. McKenney, Gregory Greenman,
Dave Hansen
Cc: Linux Kernel Mailing List, Linux Networking, Linux Wireless,
Linux RCU
On 9/1/23 5:29 PM, Bagas Sanjaya wrote:
> Hi,
>
> I notice a bug report on Bugzilla [1]. Quoting from it:
Try booting with pcie=noaer ?
That fixes only known iwlwifi bug we have found in 6.5, but we are also using mostly
backports iwlwifi driver...
Thanks,
Ben
>
>> I'm seeing RCU warnings in Linus's current tree (like 87dfd85c38923acd9517e8df4afc908565df0961) that come from RCU:
>>
>> WARNING: CPU: 0 PID: 0 at kernel/rcu/tree_exp.h:787 rcu_exp_handler+0x35/0xe0
>>
>> But they *ONLY* occur on a system with a newer iwlwifi device:
>>
>> aa:00.0 Network controller: Intel Corporation Wi-Fi 6 AX210/AX211/AX411 160MHz (rev 1a)
>>
>> and never in a VM or on an older device (like an 8260). During a bisect the only seem to occur with the "83" version of the firmware.
>>
>> iwlwifi 0000:aa:00.0: loaded firmware version 83.e8f84e98.0 ty-a0-gf-a0-83.ucode op_mode iwlmvm
>>
>> The first warning gets spit out within a millisecond of the last printk() from the iwlwifi driver. They eventually result in a big spew of RCU messages like this:
>>
>> [ 27.124796] rcu: INFO: rcu_preempt detected expedited stalls on CPUs/tasks: { 0-...D } 125 jiffies s: 193 root: 0x1/.
>> [ 27.126466] rcu: blocking rcu_node structures (internal RCU debug):
>> [ 27.128114] Sending NMI from CPU 3 to CPUs 0:
>> [ 27.128122] NMI backtrace for cpu 0 skipped: idling at intel_idle+0x5f/0xb0
>> [ 27.159757] loop30: detected capacity change from 0 to 8
>> [ 27.204967] rcu: INFO: rcu_preempt detected expedited stalls on CPUs/tasks: { 0-...D } 145 jiffies s: 193 root: 0x1/.
>> [ 27.206353] rcu: blocking rcu_node structures (internal RCU debug):
>> [ 27.207751] Sending NMI from CPU 3 to CPUs 0:
>> [ 27.207825] NMI backtrace for cpu 0 skipped: idling at intel_idle+0x5f/0xb0
>>
>> I usually see them at boot. In that case, they usually hang the system and keep it from booting. I've also encountered them at reboots and also seen them *not* be fatal at boot. I suspect it has to do with which CPU gets wedged.
>
> See Bugzilla for the full thread and attached full dmesg output.
>
> Thanks.
>
> [1]: https://bugzilla.kernel.org/show_bug.cgi?id=217856
>
--
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc http://www.candelatech.com
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Fwd: RCU indicates stalls with iwlwifi, causing boot failures
2023-09-02 2:07 ` Ben Greear
@ 2023-09-02 6:59 ` Hugh Dickins
2023-09-02 15:59 ` Hugh Dickins
2023-09-05 16:21 ` Dave Hansen
0 siblings, 2 replies; 5+ messages in thread
From: Hugh Dickins @ 2023-09-02 6:59 UTC (permalink / raw)
To: Dave Hansen
Cc: Mikhail Gavrilov, Bagas Sanjaya, Lai Jiangshan, Paul E. McKenney,
Gregory Greenman, Ben Greear, Linux Kernel Mailing List,
Linux Networking, Linux Wireless, Linux RCU
Hi Dave,
On Fri, 1 Sep 2023, Ben Greear wrote:
> On 9/1/23 5:29 PM, Bagas Sanjaya wrote:
> > Hi,
> >
> > I notice a bug report on Bugzilla [1]. Quoting from it:
>
> Try booting with pcie=noaer ?
>
> That fixes only known iwlwifi bug we have found in 6.5, but we are also using
> mostly
> backports iwlwifi driver...
>
> Thanks,
> Ben
>
> >
> >> I'm seeing RCU warnings in Linus's current tree (like
> >> 87dfd85c38923acd9517e8df4afc908565df0961) that come from RCU:
> >>
> >> WARNING: CPU: 0 PID: 0 at kernel/rcu/tree_exp.h:787
> >> rcu_exp_handler+0x35/0xe0
> >>
> >> But they *ONLY* occur on a system with a newer iwlwifi device:
> >>
> >> aa:00.0 Network controller: Intel Corporation Wi-Fi 6 AX210/AX211/AX411
> >> 160MHz (rev 1a)
> >>
> >> and never in a VM or on an older device (like an 8260). During a bisect
> >> the only seem to occur with the "83" version of the firmware.
> >>
> >> iwlwifi 0000:aa:00.0: loaded firmware version 83.e8f84e98.0
> >> ty-a0-gf-a0-83.ucode op_mode iwlmvm
> >>
> >> The first warning gets spit out within a millisecond of the last printk()
> >> from the iwlwifi driver. They eventually result in a big spew of RCU
> >> messages like this:
> >>
> >> [ 27.124796] rcu: INFO: rcu_preempt detected expedited stalls on
> >> CPUs/tasks: { 0-...D } 125 jiffies s: 193 root: 0x1/.
> >> [ 27.126466] rcu: blocking rcu_node structures (internal RCU debug):
> >> [ 27.128114] Sending NMI from CPU 3 to CPUs 0:
> >> [ 27.128122] NMI backtrace for cpu 0 skipped: idling at
> >> intel_idle+0x5f/0xb0
> >> [ 27.159757] loop30: detected capacity change from 0 to 8
> >> [ 27.204967] rcu: INFO: rcu_preempt detected expedited stalls on
> >> CPUs/tasks: { 0-...D } 145 jiffies s: 193 root: 0x1/.
> >> [ 27.206353] rcu: blocking rcu_node structures (internal RCU debug):
> >> [ 27.207751] Sending NMI from CPU 3 to CPUs 0:
> >> [ 27.207825] NMI backtrace for cpu 0 skipped: idling at
> >> intel_idle+0x5f/0xb0
> >>
> >> I usually see them at boot. In that case, they usually hang the system and
> >> keep it from booting. I've also encountered them at reboots and also seen
> >> them *not* be fatal at boot. I suspect it has to do with which CPU gets
> >> wedged.
> >
> > See Bugzilla for the full thread and attached full dmesg output.
> >
> > Thanks.
> >
> > [1]: https://bugzilla.kernel.org/show_bug.cgi?id=217856
I just took a look at your dmesg in bugzilla: I see lots of page tables
dumped, including "ESPfix Area", and think you're hitting my screwup: see
https://lore.kernel.org/linux-mm/CABXGCsNi8Tiv5zUPNXr6UJw6qV1VdaBEfGqEAMkkXE3QPvZuAQ@mail.gmail.com/
Please give the patch from the end of that thread a try:
[PATCH] mm/pagewalk: fix bootstopping regression from extra pte_unmap()
[ Commit message now written, but let's see if Dave can confirm it too ]
Signed-off-by: Hugh Dickins <hughd@google.com>
---
mm/pagewalk.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mm/pagewalk.c b/mm/pagewalk.c
index 2022333805d3..9e7d0276c38a 100644
--- a/mm/pagewalk.c
+++ b/mm/pagewalk.c
@@ -58,7 +58,7 @@ static int walk_pte_range(pmd_t *pmd, unsigned long addr, unsigned long end,
pte = pte_offset_map(pmd, addr);
if (pte) {
err = walk_pte_range_inner(pte, addr, end, walk);
- if (walk->mm != &init_mm)
+ if (walk->mm != &init_mm && addr < TASK_SIZE)
pte_unmap(pte);
}
} else {
--
2.35.3
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: Fwd: RCU indicates stalls with iwlwifi, causing boot failures
2023-09-02 6:59 ` Hugh Dickins
@ 2023-09-02 15:59 ` Hugh Dickins
2023-09-05 16:21 ` Dave Hansen
1 sibling, 0 replies; 5+ messages in thread
From: Hugh Dickins @ 2023-09-02 15:59 UTC (permalink / raw)
To: Dave Hansen
Cc: Mikhail Gavrilov, Bagas Sanjaya, Lai Jiangshan, Paul E. McKenney,
Gregory Greenman, Ben Greear, Linux Kernel Mailing List,
Linux Networking, Linux Wireless, Linux RCU
On Fri, 1 Sep 2023, Hugh Dickins wrote:
> Hi Dave,
>
> On Fri, 1 Sep 2023, Ben Greear wrote:
> > On 9/1/23 5:29 PM, Bagas Sanjaya wrote:
> > > Hi,
> > >
> > > I notice a bug report on Bugzilla [1]. Quoting from it:
> >
> > Try booting with pcie=noaer ?
> >
> > That fixes only known iwlwifi bug we have found in 6.5, but we are also using
> > mostly
> > backports iwlwifi driver...
> >
> > Thanks,
> > Ben
> >
> > >
> > >> I'm seeing RCU warnings in Linus's current tree (like
> > >> 87dfd85c38923acd9517e8df4afc908565df0961) that come from RCU:
> > >>
> > >> WARNING: CPU: 0 PID: 0 at kernel/rcu/tree_exp.h:787
> > >> rcu_exp_handler+0x35/0xe0
> > >>
> > >> But they *ONLY* occur on a system with a newer iwlwifi device:
> > >>
> > >> aa:00.0 Network controller: Intel Corporation Wi-Fi 6 AX210/AX211/AX411
> > >> 160MHz (rev 1a)
> > >>
> > >> and never in a VM or on an older device (like an 8260). During a bisect
> > >> the only seem to occur with the "83" version of the firmware.
> > >>
> > >> iwlwifi 0000:aa:00.0: loaded firmware version 83.e8f84e98.0
> > >> ty-a0-gf-a0-83.ucode op_mode iwlmvm
> > >>
> > >> The first warning gets spit out within a millisecond of the last printk()
> > >> from the iwlwifi driver. They eventually result in a big spew of RCU
> > >> messages like this:
> > >>
> > >> [ 27.124796] rcu: INFO: rcu_preempt detected expedited stalls on
> > >> CPUs/tasks: { 0-...D } 125 jiffies s: 193 root: 0x1/.
> > >> [ 27.126466] rcu: blocking rcu_node structures (internal RCU debug):
> > >> [ 27.128114] Sending NMI from CPU 3 to CPUs 0:
> > >> [ 27.128122] NMI backtrace for cpu 0 skipped: idling at
> > >> intel_idle+0x5f/0xb0
> > >> [ 27.159757] loop30: detected capacity change from 0 to 8
> > >> [ 27.204967] rcu: INFO: rcu_preempt detected expedited stalls on
> > >> CPUs/tasks: { 0-...D } 145 jiffies s: 193 root: 0x1/.
> > >> [ 27.206353] rcu: blocking rcu_node structures (internal RCU debug):
> > >> [ 27.207751] Sending NMI from CPU 3 to CPUs 0:
> > >> [ 27.207825] NMI backtrace for cpu 0 skipped: idling at
> > >> intel_idle+0x5f/0xb0
> > >>
> > >> I usually see them at boot. In that case, they usually hang the system and
> > >> keep it from booting. I've also encountered them at reboots and also seen
> > >> them *not* be fatal at boot. I suspect it has to do with which CPU gets
> > >> wedged.
> > >
> > > See Bugzilla for the full thread and attached full dmesg output.
> > >
> > > Thanks.
> > >
> > > [1]: https://bugzilla.kernel.org/show_bug.cgi?id=217856
>
> I just took a look at your dmesg in bugzilla: I see lots of page tables
> dumped, including "ESPfix Area", and think you're hitting my screwup: see
>
> https://lore.kernel.org/linux-mm/CABXGCsNi8Tiv5zUPNXr6UJw6qV1VdaBEfGqEAMkkXE3QPvZuAQ@mail.gmail.com/
>
> Please give the patch from the end of that thread a try:
Mikhail confirmed it for his case, and Linus already took it into his tree:
ee40d543e97d mm/pagewalk: fix bootstopping regression from extra pte_unmap()
But I couldn't see the WARN_ON_ONCE I was expecting from __rcu_read_unlock()
in your dmesg - ah, but it is only when CONFIG_PROVE_LOCKING is enabled.
Hugh
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Fwd: RCU indicates stalls with iwlwifi, causing boot failures
2023-09-02 6:59 ` Hugh Dickins
2023-09-02 15:59 ` Hugh Dickins
@ 2023-09-05 16:21 ` Dave Hansen
1 sibling, 0 replies; 5+ messages in thread
From: Dave Hansen @ 2023-09-05 16:21 UTC (permalink / raw)
To: Hugh Dickins, Dave Hansen
Cc: Mikhail Gavrilov, Bagas Sanjaya, Lai Jiangshan, Paul E. McKenney,
Gregory Greenman, Ben Greear, Linux Kernel Mailing List,
Linux Networking, Linux Wireless, Linux RCU
On 9/1/23 23:59, Hugh Dickins wrote:
> I just took a look at your dmesg in bugzilla: I see lots of page tables
> dumped, including "ESPfix Area", and think you're hitting my screwup: see
>
> https://lore.kernel.org/linux-mm/CABXGCsNi8Tiv5zUPNXr6UJw6qV1VdaBEfGqEAMkkXE3QPvZuAQ@mail.gmail.com/
>
> Please give the patch from the end of that thread a try:
Thanks, Hugh.
I tried a random commit from Linus's tree that didn't boot for me
earlier. Applying your fix allowed me to boot!
I still can't boot Linus's _current_ tree with your patch in it, but
that looks like another failure mode altogether.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-09-05 17:01 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-02 0:29 Fwd: RCU indicates stalls with iwlwifi, causing boot failures Bagas Sanjaya
2023-09-02 2:07 ` Ben Greear
2023-09-02 6:59 ` Hugh Dickins
2023-09-02 15:59 ` Hugh Dickins
2023-09-05 16:21 ` Dave Hansen
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.