Re: [syzbot] INFO: rcu detected stall in tx

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Fri, May 21, 2021 at 10:17:06PM +0000, guido@xxxxxxxxxxxxxxxxxx wrote:
> I looked at the original console output again:
> https://syzkaller.appspot.com/x/log.txt?x=1065c5fcd00000
> I'm not very familiar yet in reading rcu files, but I would say:
> 1. I assume there are 2 CPUs running (C0,C1).
> 2. There are 5 USBTMC devices running concurrenlty which seems to be
> disconnected together at once.
> You will find all disconnect messages "usb x-1: USB disconnect, device
> number y" at the end within 5 seconds (418.4-423.7 sec).
> 3. Each USBTMC device issues every 20 msec the typical INT pipe message
> "X-1:0.0: unknown status received: -71" when the connection is disconnected.
> All USBTMC device messages are alternating. Round robin works.
> 
> Does someone have an idea for the following questions:
> 1. Why does it take about 96 seconds from the beginning of the first INT
> pipe message (322.1) until the first disconnect message (418.4)?

Because the system is so busy handling all those -71 errors that it 
doesn't have time to process the disconnect events until 96 seconds have 
passed by.

> 2. What is blocking the "disconnect" event for such a long time?

The usbtmc driver immediately resubmits the URB that failed with a -71 
error code.  The resubmitted URB fails a few milliseconds later with the 
same error, and so on.  This all happens at interrupt priority.  With 
five instances of this going on concurrently there's no time for the 
system to do much of anything else.

For another example of a bug reported by syzbot having exactly the form 
and the same explanation, see commit 32a0721c6620 ("USB: yurex: Don't 
retry on unexpected errors") and the accompanying syzbot 
dashboard and console output 
(https://syzkaller.appspot.com/bug?extid=b24d736f18a1541ad550, 
https://syzkaller.appspot.com/x/log.txt?x=1146550d600000).  The 
solution was to prevent the yurex driver from resubmitting the URB if it 
failed with code -EPROTO.  No doubt a similar fix would work for usbtmc.

> 3. Is it possible to provoke this behavior when I disconnect the cable in
> slow motion?

It doesn't matter how quickly or slowly you unplug the cable.  
Disconnection is an "edge" event; it happens all at once.

> 4. Is the self-detected stall just caused by another driver and the USBTMC
> driver is innocent, but only chatty?

No.  It is caused by the usbtmc driver.

> Next Thursday I can check recommendations again.

There's another very important difference that you didn't notice.  In 
your test, you are certainly using a different USB host controller 
driver from what syzbot uses.  You're probably using xhci-hcd, whereas 
syzbot uses dummy-hcd.  Those two drivers handle USB communications in 
completely different ways; it's entirely possible that one of them could 
get stuck in this error loop while the other one would not.

Alan Stern



[Index of Archives]     [Linux Media]     [Linux Input]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [Old Linux USB Devel Archive]

  Powered by Linux