All of lore.kernel.org
 help / color / mirror / Atom feed
From: Felipe Balbi <felipe.balbi@linux.intel.com>
To: Alan Stern <stern@rowland.harvard.edu>,
	Peter Zijlstra <peterz@infradead.org>
Cc: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>,
	Ingo Molnar <mingo@redhat.com>,
	USB list <linux-usb@vger.kernel.org>,
	Kernel development list <linux-kernel@vger.kernel.org>,
	Will Deacon <will.deacon@arm.com>
Subject: Re: Memory barrier needed with wake_up_process()?
Date: Fri, 09 Sep 2016 13:36:02 +0300	[thread overview]
Message-ID: <877falgy25.fsf@linux.intel.com> (raw)
In-Reply-To: <87oa40koh3.fsf@linux.intel.com>

[-- Attachment #1: Type: text/plain, Size: 107727 bytes --]


Hi,

Felipe Balbi <felipe.balbi@linux.intel.com> writes:
> Alan Stern <stern@rowland.harvard.edu> writes:
>> On Tue, 6 Sep 2016, Peter Zijlstra wrote:
>>
>>> On Tue, Sep 06, 2016 at 01:49:37PM +0200, Peter Zijlstra wrote:
>>> > On Tue, Sep 06, 2016 at 02:43:39PM +0300, Felipe Balbi wrote:
>>> 
>>> > > My fear now, however, is that changing smp_[rw]mb() to smp_mb() just
>>> > > adds extra overhead which makes the problem much, much less likely to
>>> > > happen. Does that sound plausible to you?
>>> > 
>>> > I did consider that, but I've not sufficiently grokked the code to rule
>>> > out actual fail. So let me stare at this a bit more.
>>> 
>>> OK, so I'm really not seeing it, we've got:
>>> 
>>> while (bh->state != FULL) {
>>>         for (;;) {
>>>                 set_current_state(INTERRUPTIBLE); /* MB after */
>>>                 if (signal_pending(current))
>>>                         return -EINTR;
>>>                 if (common->thread_wakeup_needed)
>>>                         break;
>>>                 schedule(); /* MB */
>>>         }
>>>         __set_current_state(RUNNING);
>>>         common->thread_wakeup_needed = 0;
>>>         smp_rmb(); /* NOP */
>>> }
>>> 
>>> 
>>> VS.
>>> 
>>> 
>>> spin_lock(&common->lock); /* MB */
>>> bh->state = FULL;
>>> smp_wmb(); /* NOP */
>>> common->thread_wakeup_needed = 1;
>>> wake_up_process(common->thread_task); /* MB before */
>>> spin_unlock(&common->lock);
>>> 
>>> 
>>> 
>>> (the MB annotations specific to x86, not true in general)
>>> 
>>> 
>>> If we observe thread_wakeup_needed, we must also observe bh->state.
>>> 
>>> And the sleep/wakeup ordering is also correct, we either see
>>> thread_wakeup_needed and continue, or we see task->state == RUNNING
>>> (from the wakeup) and NO-OP schedule(). The MB from set_current_statE()
>>> then matches with the MB from wake_up_process() to ensure we must see
>>> thead_wakeup_needed.
>>> 
>>> Or, we go sleep, and get woken up, at which point the same happens.
>>> Since the waking CPU gets the task back on its RQ the happens-before
>>> chain includes the waking CPUs state along with the state of the task
>>> itself before it went to sleep.
>>> 
>>> At which point we're back where we started, once we see
>>> thread_wakeup_needed we must then also see bh->state (and all state
>>> prior to that on the waking CPU).
>>> 
>>> 
>>> 
>>> There's enough cruft in the while-sleep loop to force reload bh->state.
>>> 
>>> Load/store tearing cannot be a problem because all values are single
>>> bytes (the variables are multi bytes, but all values used only affect
>>> the LSB).
>>> 
>>> Colour me puzzled.
>>
>> Felipe, can you please try this patch on an unmodified tree?  If the 
>> problem still occurs, what shows up in the kernel log?
>>
>> Alan Stern
>>
>>
>>
>> Index: usb-4.x/drivers/usb/gadget/function/f_mass_storage.c
>> ===================================================================
>> --- usb-4.x.orig/drivers/usb/gadget/function/f_mass_storage.c
>> +++ usb-4.x/drivers/usb/gadget/function/f_mass_storage.c
>> @@ -485,6 +485,8 @@ static void bulk_out_complete(struct usb
>>  	spin_lock(&common->lock);
>>  	bh->outreq_busy = 0;
>>  	bh->state = BUF_STATE_FULL;
>> +	if (bh->bulk_out_intended_length == US_BULK_CB_WRAP_LEN)
>> +		INFO(common, "compl: bh %p state %d\n", bh, bh->state);
>>  	wakeup_thread(common);
>>  	spin_unlock(&common->lock);
>>  }
>> @@ -2207,6 +2209,7 @@ static int get_next_command(struct fsg_c
>>  		rc = sleep_thread(common, true);
>>  		if (rc)
>>  			return rc;
>> +		INFO(common, "next: bh %p state %d\n", bh, bh->state);
>>  	}
>>  	smp_rmb();
>>  	rc = fsg_is_set(common) ? received_cbw(common->fsg, bh) : -EIO;
>
> I've replace INFO() with trace_printk() (which is what I have been using
> anyway):
>
> diff --git a/drivers/usb/gadget/function/f_mass_storage.c b/drivers/usb/gadget/function/f_mass_storage.c
> index 2505117e88e8..dbc6a380b38b 100644
> --- a/drivers/usb/gadget/function/f_mass_storage.c
> +++ b/drivers/usb/gadget/function/f_mass_storage.c
> @@ -485,6 +485,8 @@ static void bulk_out_complete(struct usb_ep *ep, struct usb_request *req)
>  	spin_lock(&common->lock);
>  	bh->outreq_busy = 0;
>  	bh->state = BUF_STATE_FULL;
> +	if (bh->bulk_out_intended_length == US_BULK_CB_WRAP_LEN)
> +		trace_printk("compl: bh %p state %d\n", bh, bh->state);
>  	wakeup_thread(common);
>  	spin_unlock(&common->lock);
>  }
> @@ -2207,6 +2209,7 @@ static int get_next_command(struct fsg_common *common)
>  		rc = sleep_thread(common, true);
>  		if (rc)
>  			return rc;
> +		trace_printk("next: bh %p state %d\n", bh, bh->state);
>  	}
>  	smp_rmb();
>  	rc = fsg_is_set(common) ? received_cbw(common->fsg, bh) : -EIO;
>
> But I can't reproduce as reliably as before. I'll keep the thing running
> an infinite loop which will stop only when interrupts in UDC (dwc3 in
> this case) stop increasing.

Finally :-) Here's the diff I used:

diff --git a/drivers/usb/gadget/function/f_mass_storage.c b/drivers/usb/gadget/function/f_mass_storage.c
index 8f3659b65f53..0716024f6b65 100644
--- a/drivers/usb/gadget/function/f_mass_storage.c
+++ b/drivers/usb/gadget/function/f_mass_storage.c
@@ -481,6 +481,8 @@ static void bulk_out_complete(struct usb_ep *ep, struct usb_request *req)
        spin_lock(&common->lock);
        bh->outreq_busy = 0;
        bh->state = BUF_STATE_FULL;
+       if (bh->bulk_out_intended_length == US_BULK_CB_WRAP_LEN)
+               trace_printk("compl: bh %p state %d\n", bh, bh->state);
        wakeup_thread(common);
        spin_unlock(&common->lock);
 }
@@ -2208,6 +2210,7 @@ static int get_next_command(struct fsg_common *common)
                rc = sleep_thread(common, true);
                if (rc)
                        return rc;
+               trace_printk("next: bh %p state %d\n", bh, bh->state);
        }
        smp_rmb();
        rc = fsg_is_set(common) ? received_cbw(common->fsg, bh) : -EIO;


And here's trace output:

# tracer: nop
#
# entries-in-buffer/entries-written: 1002/1002   #P:4
#
#                              _-----=> irqs-off
#                             / _----=> need-resched
#                            | / _---=> hardirq/softirq
#                            || / _--=> preempt-depth
#                            ||| /     delay
#           TASK-PID   CPU#  ||||    TIMESTAMP  FUNCTION
#              | |       |   ||||       |         |
    file-storage-3578  [000] .... 21166.789127: fsg_main_thread: next: bh ffff880111e69a00 state 2
    file-storage-3578  [000] .... 21166.789312: fsg_main_thread: next: bh ffff880111e69a00 state 2
     irq/17-dwc3-3579  [003] d..1 21166.789395: bulk_out_complete: compl: bh ffff880111e69a00 state 1
    file-storage-3578  [000] .... 21166.789445: fsg_main_thread: next: bh ffff880111e69a00 state 1
    file-storage-3578  [000] .... 21166.893131: fsg_main_thread: next: bh ffff880111e69a80 state 2
    file-storage-3578  [000] .... 21166.893523: fsg_main_thread: next: bh ffff880111e69a80 state 2
     irq/17-dwc3-3579  [003] d..1 21166.893681: bulk_out_complete: compl: bh ffff880111e69a80 state 1
    file-storage-3578  [000] .... 21166.893733: fsg_main_thread: next: bh ffff880111e69a80 state 1
    file-storage-3578  [000] .... 21166.893937: fsg_main_thread: next: bh ffff880111e69b00 state 2
    file-storage-3578  [000] .... 21166.893967: fsg_main_thread: next: bh ffff880111e69b00 state 2
     irq/17-dwc3-3579  [003] d..1 21166.894026: bulk_out_complete: compl: bh ffff880111e69b00 state 1
    file-storage-3578  [000] .... 21166.894035: fsg_main_thread: next: bh ffff880111e69b00 state 1
    file-storage-3578  [000] .... 21166.894166: fsg_main_thread: next: bh ffff880111e69b80 state 2
    file-storage-3578  [000] .... 21166.894194: fsg_main_thread: next: bh ffff880111e69b80 state 2
     irq/17-dwc3-3579  [003] d..1 21166.896360: bulk_out_complete: compl: bh ffff880111e69b80 state 1
    file-storage-3578  [000] .... 21166.896366: fsg_main_thread: next: bh ffff880111e69b80 state 1
    file-storage-3578  [000] .... 21166.896445: fsg_main_thread: next: bh ffff880111e69c00 state 2
    file-storage-3578  [000] .... 21166.896455: fsg_main_thread: next: bh ffff880111e69c00 state 2
     irq/17-dwc3-3579  [003] d..1 21166.896532: bulk_out_complete: compl: bh ffff880111e69c00 state 1
    file-storage-3578  [000] .... 21166.896535: fsg_main_thread: next: bh ffff880111e69c00 state 1
    file-storage-3578  [002] .... 21167.005103: fsg_main_thread: next: bh ffff880111e69c80 state 2
    file-storage-3578  [002] .... 21167.005283: fsg_main_thread: next: bh ffff880111e69c80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.005342: bulk_out_complete: compl: bh ffff880111e69c80 state 1
    file-storage-3578  [002] .... 21167.005346: fsg_main_thread: next: bh ffff880111e69c80 state 1
    file-storage-3578  [002] .... 21167.005422: fsg_main_thread: next: bh ffff880111e69d00 state 2
     irq/17-dwc3-3579  [003] d..1 21167.005547: bulk_out_complete: compl: bh ffff880111e69d00 state 1
    file-storage-3578  [003] .... 21167.006087: fsg_main_thread: next: bh ffff880111e69d00 state 1
    file-storage-3578  [003] .... 21167.010189: fsg_main_thread: next: bh ffff880111e69d40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.010253: bulk_out_complete: compl: bh ffff880111e69d40 state 1
    file-storage-3578  [003] .... 21167.010262: fsg_main_thread: next: bh ffff880111e69d40 state 1
    file-storage-3578  [003] .... 21167.012669: fsg_main_thread: next: bh ffff880111e6ad80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.012942: bulk_out_complete: compl: bh ffff880111e6ad80 state 1
    file-storage-3578  [003] .... 21167.012951: fsg_main_thread: next: bh ffff880111e6ad80 state 1
    file-storage-3578  [003] .... 21167.015329: fsg_main_thread: next: bh ffff880111e6bdc0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.015606: bulk_out_complete: compl: bh ffff880111e6bdc0 state 1
    file-storage-3578  [003] .... 21167.015616: fsg_main_thread: next: bh ffff880111e6bdc0 state 1
    file-storage-3578  [003] .... 21167.015716: fsg_main_thread: next: bh ffff880111e6be40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.015807: bulk_out_complete: compl: bh ffff880111e6be40 state 1
    file-storage-3578  [003] .... 21167.015810: fsg_main_thread: next: bh ffff880111e6be40 state 1
    file-storage-3578  [003] .... 21167.015905: fsg_main_thread: next: bh ffff880111e6bec0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.015986: bulk_out_complete: compl: bh ffff880111e6bec0 state 1
    file-storage-3578  [003] .... 21167.015990: fsg_main_thread: next: bh ffff880111e6bec0 state 1
    file-storage-3578  [003] .... 21167.016078: fsg_main_thread: next: bh ffff880111e6bf40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.016149: bulk_out_complete: compl: bh ffff880111e6bf40 state 1
    file-storage-3578  [003] .... 21167.016159: fsg_main_thread: next: bh ffff880111e6bf40 state 1
    file-storage-3578  [003] .... 21167.016243: fsg_main_thread: next: bh ffff880111e68000 state 2
     irq/17-dwc3-3579  [003] d..1 21167.016301: bulk_out_complete: compl: bh ffff880111e68000 state 1
    file-storage-3578  [003] .... 21167.016305: fsg_main_thread: next: bh ffff880111e68000 state 1
    file-storage-3578  [003] .... 21167.016388: fsg_main_thread: next: bh ffff880111e68080 state 2
     irq/17-dwc3-3579  [003] d..1 21167.016446: bulk_out_complete: compl: bh ffff880111e68080 state 1
    file-storage-3578  [003] .... 21167.016450: fsg_main_thread: next: bh ffff880111e68080 state 1
    file-storage-3578  [003] .... 21167.016533: fsg_main_thread: next: bh ffff880111e68100 state 2
     irq/17-dwc3-3579  [003] d..1 21167.016591: bulk_out_complete: compl: bh ffff880111e68100 state 1
    file-storage-3578  [003] .... 21167.016595: fsg_main_thread: next: bh ffff880111e68100 state 1
    file-storage-3578  [003] .... 21167.016672: fsg_main_thread: next: bh ffff880111e68180 state 2
     irq/17-dwc3-3579  [003] d..1 21167.016729: bulk_out_complete: compl: bh ffff880111e68180 state 1
    file-storage-3578  [003] .... 21167.016733: fsg_main_thread: next: bh ffff880111e68180 state 1
    file-storage-3578  [003] .... 21167.016811: fsg_main_thread: next: bh ffff880111e68200 state 2
     irq/17-dwc3-3579  [003] d..1 21167.016869: bulk_out_complete: compl: bh ffff880111e68200 state 1
    file-storage-3578  [003] .... 21167.016873: fsg_main_thread: next: bh ffff880111e68200 state 1
    file-storage-3578  [003] .... 21167.016950: fsg_main_thread: next: bh ffff880111e68280 state 2
     irq/17-dwc3-3579  [003] d..1 21167.017008: bulk_out_complete: compl: bh ffff880111e68280 state 1
    file-storage-3578  [003] .... 21167.017012: fsg_main_thread: next: bh ffff880111e68280 state 1
    file-storage-3578  [003] .... 21167.017089: fsg_main_thread: next: bh ffff880111e68300 state 2
     irq/17-dwc3-3579  [003] d..1 21167.017179: bulk_out_complete: compl: bh ffff880111e68300 state 1
    file-storage-3578  [003] .... 21167.017183: fsg_main_thread: next: bh ffff880111e68300 state 1
    file-storage-3578  [003] .... 21167.017277: fsg_main_thread: next: bh ffff880111e68380 state 2
     irq/17-dwc3-3579  [003] d..1 21167.017373: bulk_out_complete: compl: bh ffff880111e68380 state 1
    file-storage-3578  [003] .... 21167.017376: fsg_main_thread: next: bh ffff880111e68380 state 1
    file-storage-3578  [003] .... 21167.017473: fsg_main_thread: next: bh ffff880111e68400 state 2
     irq/17-dwc3-3579  [003] d..1 21167.017548: bulk_out_complete: compl: bh ffff880111e68400 state 1
    file-storage-3578  [003] .... 21167.017552: fsg_main_thread: next: bh ffff880111e68400 state 1
    file-storage-3578  [003] .... 21167.017646: fsg_main_thread: next: bh ffff880111e68480 state 2
     irq/17-dwc3-3579  [003] d..1 21167.017728: bulk_out_complete: compl: bh ffff880111e68480 state 1
    file-storage-3578  [003] .... 21167.017732: fsg_main_thread: next: bh ffff880111e68480 state 1
    file-storage-3578  [003] .... 21167.017828: fsg_main_thread: next: bh ffff880111e68500 state 2
     irq/17-dwc3-3579  [003] d..1 21167.017904: bulk_out_complete: compl: bh ffff880111e68500 state 1
    file-storage-3578  [003] .... 21167.017908: fsg_main_thread: next: bh ffff880111e68500 state 1
    file-storage-3578  [003] .... 21167.018002: fsg_main_thread: next: bh ffff880111e68580 state 2
     irq/17-dwc3-3579  [003] d..1 21167.018078: bulk_out_complete: compl: bh ffff880111e68580 state 1
    file-storage-3578  [003] .... 21167.018087: fsg_main_thread: next: bh ffff880111e68580 state 1
    file-storage-3578  [003] .... 21167.018182: fsg_main_thread: next: bh ffff880111e68600 state 2
     irq/17-dwc3-3579  [003] d..1 21167.018261: bulk_out_complete: compl: bh ffff880111e68600 state 1
    file-storage-3578  [003] .... 21167.018264: fsg_main_thread: next: bh ffff880111e68600 state 1
    file-storage-3578  [003] .... 21167.018358: fsg_main_thread: next: bh ffff880111e68680 state 2
     irq/17-dwc3-3579  [003] d..1 21167.018435: bulk_out_complete: compl: bh ffff880111e68680 state 1
    file-storage-3578  [003] .... 21167.018439: fsg_main_thread: next: bh ffff880111e68680 state 1
    file-storage-3578  [003] .... 21167.018533: fsg_main_thread: next: bh ffff880111e68700 state 2
     irq/17-dwc3-3579  [003] d..1 21167.018609: bulk_out_complete: compl: bh ffff880111e68700 state 1
    file-storage-3578  [003] .... 21167.018613: fsg_main_thread: next: bh ffff880111e68700 state 1
    file-storage-3578  [003] .... 21167.018708: fsg_main_thread: next: bh ffff880111e68780 state 2
     irq/17-dwc3-3579  [003] d..1 21167.018782: bulk_out_complete: compl: bh ffff880111e68780 state 1
    file-storage-3578  [003] .... 21167.018785: fsg_main_thread: next: bh ffff880111e68780 state 1
    file-storage-3578  [003] .... 21167.018879: fsg_main_thread: next: bh ffff880111e68800 state 2
     irq/17-dwc3-3579  [003] d..1 21167.018955: bulk_out_complete: compl: bh ffff880111e68800 state 1
    file-storage-3578  [003] .... 21167.018959: fsg_main_thread: next: bh ffff880111e68800 state 1
    file-storage-3578  [003] .... 21167.019052: fsg_main_thread: next: bh ffff880111e68880 state 2
     irq/17-dwc3-3579  [003] d..1 21167.019128: bulk_out_complete: compl: bh ffff880111e68880 state 1
    file-storage-3578  [003] .... 21167.019138: fsg_main_thread: next: bh ffff880111e68880 state 1
    file-storage-3578  [003] .... 21167.019234: fsg_main_thread: next: bh ffff880111e68900 state 2
     irq/17-dwc3-3579  [003] d..1 21167.020016: bulk_out_complete: compl: bh ffff880111e68900 state 1
    file-storage-3578  [003] .... 21167.020025: fsg_main_thread: next: bh ffff880111e68900 state 1
    file-storage-3578  [003] .... 21167.020166: fsg_main_thread: next: bh ffff880111e68980 state 2
     irq/17-dwc3-3579  [003] d..1 21167.020230: bulk_out_complete: compl: bh ffff880111e68980 state 1
    file-storage-3578  [003] .... 21167.020240: fsg_main_thread: next: bh ffff880111e68980 state 1
    file-storage-3578  [003] .... 21167.020335: fsg_main_thread: next: bh ffff880111e68a00 state 2
     irq/17-dwc3-3579  [003] d..1 21167.020396: bulk_out_complete: compl: bh ffff880111e68a00 state 1
    file-storage-3578  [003] .... 21167.020400: fsg_main_thread: next: bh ffff880111e68a00 state 1
    file-storage-3578  [003] .... 21167.020510: fsg_main_thread: next: bh ffff880111e68a80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.020571: bulk_out_complete: compl: bh ffff880111e68a80 state 1
    file-storage-3578  [003] .... 21167.020575: fsg_main_thread: next: bh ffff880111e68a80 state 1
    file-storage-3578  [003] .... 21167.020711: fsg_main_thread: next: bh ffff880111e68b00 state 2
     irq/17-dwc3-3579  [003] d..1 21167.020770: bulk_out_complete: compl: bh ffff880111e68b00 state 1
    file-storage-3578  [003] .... 21167.020774: fsg_main_thread: next: bh ffff880111e68b00 state 1
    file-storage-3578  [003] .... 21167.020912: fsg_main_thread: next: bh ffff880111e68c80 state 2
    file-storage-3578  [003] .... 21167.021015: fsg_main_thread: next: bh ffff880111e68c80 state 2
    file-storage-3578  [003] .... 21167.021076: fsg_main_thread: next: bh ffff880111e68c80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.021214: bulk_out_complete: compl: bh ffff880111e68c80 state 1
    file-storage-3578  [003] .... 21167.021219: fsg_main_thread: next: bh ffff880111e68c80 state 1
    file-storage-3578  [003] .... 21167.021363: fsg_main_thread: next: bh ffff880111e68d00 state 2
     irq/17-dwc3-3579  [003] d..1 21167.021424: bulk_out_complete: compl: bh ffff880111e68d00 state 1
    file-storage-3578  [003] .... 21167.021434: fsg_main_thread: next: bh ffff880111e68d00 state 1
    file-storage-3578  [003] .... 21167.021570: fsg_main_thread: next: bh ffff880111e68dc0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.021629: bulk_out_complete: compl: bh ffff880111e68dc0 state 1
    file-storage-3578  [003] .... 21167.021633: fsg_main_thread: next: bh ffff880111e68dc0 state 1
    file-storage-3578  [003] .... 21167.021767: fsg_main_thread: next: bh ffff880111e68ec0 state 2
    file-storage-3578  [003] .... 21167.021831: fsg_main_thread: next: bh ffff880111e68ec0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.021892: bulk_out_complete: compl: bh ffff880111e68ec0 state 1
    file-storage-3578  [003] .... 21167.021896: fsg_main_thread: next: bh ffff880111e68ec0 state 1
    file-storage-3578  [003] .... 21167.022038: fsg_main_thread: next: bh ffff880111e68fc0 state 2
    file-storage-3578  [003] .... 21167.022102: fsg_main_thread: next: bh ffff880111e68fc0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.022255: bulk_out_complete: compl: bh ffff880111e68fc0 state 1
    file-storage-3578  [003] .... 21167.022259: fsg_main_thread: next: bh ffff880111e68fc0 state 1
    file-storage-3578  [003] .... 21167.022400: fsg_main_thread: next: bh ffff880111e69100 state 2
    file-storage-3578  [003] .... 21167.022490: fsg_main_thread: next: bh ffff880111e69100 state 2
     irq/17-dwc3-3579  [003] d..1 21167.022549: bulk_out_complete: compl: bh ffff880111e69100 state 1
    file-storage-3578  [003] .... 21167.022552: fsg_main_thread: next: bh ffff880111e69100 state 1
    file-storage-3578  [003] .... 21167.022695: fsg_main_thread: next: bh ffff880111e69240 state 2
    file-storage-3578  [003] .... 21167.022788: fsg_main_thread: next: bh ffff880111e69240 state 2
    file-storage-3578  [003] .... 21167.022852: fsg_main_thread: next: bh ffff880111e69240 state 2
     irq/17-dwc3-3579  [003] d..1 21167.023005: bulk_out_complete: compl: bh ffff880111e69240 state 1
    file-storage-3578  [003] .... 21167.023012: fsg_main_thread: next: bh ffff880111e69240 state 1
    file-storage-3578  [003] .... 21167.023148: fsg_main_thread: next: bh ffff880111e69380 state 2
    file-storage-3578  [003] .... 21167.023239: fsg_main_thread: next: bh ffff880111e69380 state 2
     irq/17-dwc3-3579  [003] d..1 21167.023299: bulk_out_complete: compl: bh ffff880111e69380 state 1
    file-storage-3578  [003] .... 21167.023305: fsg_main_thread: next: bh ffff880111e69380 state 1
    file-storage-3578  [003] .... 21167.023450: fsg_main_thread: next: bh ffff880111e69440 state 2
     irq/17-dwc3-3579  [003] d..1 21167.023508: bulk_out_complete: compl: bh ffff880111e69440 state 1
    file-storage-3578  [003] .... 21167.023514: fsg_main_thread: next: bh ffff880111e69440 state 1
    file-storage-3578  [003] .... 21167.023665: fsg_main_thread: next: bh ffff880111e69500 state 2
     irq/17-dwc3-3579  [003] d..1 21167.023850: bulk_out_complete: compl: bh ffff880111e69500 state 1
    file-storage-3578  [003] .... 21167.023860: fsg_main_thread: next: bh ffff880111e69500 state 1
    file-storage-3578  [003] .... 21167.023939: fsg_main_thread: next: bh ffff880111e69540 state 2
     irq/17-dwc3-3579  [003] d..1 21167.024901: bulk_out_complete: compl: bh ffff880111e69540 state 1
    file-storage-3578  [003] .... 21167.025129: fsg_main_thread: next: bh ffff880111e69540 state 1
    file-storage-3578  [003] .... 21167.025257: fsg_main_thread: next: bh ffff880111e69580 state 2
     irq/17-dwc3-3579  [003] d..1 21167.025333: bulk_out_complete: compl: bh ffff880111e69580 state 1
    file-storage-3578  [000] .... 21167.025366: fsg_main_thread: next: bh ffff880111e69580 state 1
    file-storage-3578  [000] .... 21167.027653: fsg_main_thread: next: bh ffff880111e6a5c0 state 2
    file-storage-3578  [000] .... 21167.027717: fsg_main_thread: next: bh ffff880111e6a5c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.027926: bulk_out_complete: compl: bh ffff880111e6a5c0 state 1
    file-storage-3578  [000] .... 21167.027929: fsg_main_thread: next: bh ffff880111e6a5c0 state 1
    file-storage-3578  [002] .... 21167.030290: fsg_main_thread: next: bh ffff880111e6b600 state 2
     irq/17-dwc3-3579  [003] d..1 21167.030485: bulk_out_complete: compl: bh ffff880111e6b600 state 1
    file-storage-3578  [002] .... 21167.030488: fsg_main_thread: next: bh ffff880111e6b600 state 1
    file-storage-3578  [000] .... 21167.032852: fsg_main_thread: next: bh ffff880111e68680 state 2
     irq/17-dwc3-3579  [003] d..1 21167.033063: bulk_out_complete: compl: bh ffff880111e68680 state 1
    file-storage-3578  [000] .... 21167.033066: fsg_main_thread: next: bh ffff880111e68680 state 1
    file-storage-3578  [002] .... 21167.035429: fsg_main_thread: next: bh ffff880111e696c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.035629: bulk_out_complete: compl: bh ffff880111e696c0 state 1
    file-storage-3578  [002] .... 21167.035632: fsg_main_thread: next: bh ffff880111e696c0 state 1
    file-storage-3578  [002] .... 21167.037982: fsg_main_thread: next: bh ffff880111e6a700 state 2
     irq/17-dwc3-3579  [003] d..1 21167.038173: bulk_out_complete: compl: bh ffff880111e6a700 state 1
    file-storage-3578  [002] .... 21167.038177: fsg_main_thread: next: bh ffff880111e6a700 state 1
    file-storage-3578  [000] .... 21167.040538: fsg_main_thread: next: bh ffff880111e6b740 state 2
     irq/17-dwc3-3579  [003] d..1 21167.040738: bulk_out_complete: compl: bh ffff880111e6b740 state 1
    file-storage-3578  [000] .... 21167.040741: fsg_main_thread: next: bh ffff880111e6b740 state 1
    file-storage-3578  [000] .... 21167.043368: fsg_main_thread: next: bh ffff880111e687c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.043435: bulk_out_complete: compl: bh ffff880111e687c0 state 1
    file-storage-3578  [000] .... 21167.043439: fsg_main_thread: next: bh ffff880111e687c0 state 1
    file-storage-3578  [000] .... 21167.046046: fsg_main_thread: next: bh ffff880111e69800 state 2
     irq/17-dwc3-3579  [003] d..1 21167.046113: bulk_out_complete: compl: bh ffff880111e69800 state 1
    file-storage-3578  [000] .... 21167.046118: fsg_main_thread: next: bh ffff880111e69800 state 1
    file-storage-3578  [000] .... 21167.048720: fsg_main_thread: next: bh ffff880111e6a840 state 2
     irq/17-dwc3-3579  [003] d..1 21167.048787: bulk_out_complete: compl: bh ffff880111e6a840 state 1
    file-storage-3578  [000] .... 21167.048790: fsg_main_thread: next: bh ffff880111e6a840 state 1
    file-storage-3578  [000] .... 21167.051423: fsg_main_thread: next: bh ffff880111e6b880 state 2
     irq/17-dwc3-3579  [003] d..1 21167.051490: bulk_out_complete: compl: bh ffff880111e6b880 state 1
    file-storage-3578  [000] .... 21167.051493: fsg_main_thread: next: bh ffff880111e6b880 state 1
    file-storage-3578  [000] .... 21167.054116: fsg_main_thread: next: bh ffff880111e68900 state 2
     irq/17-dwc3-3579  [003] d..1 21167.054183: bulk_out_complete: compl: bh ffff880111e68900 state 1
    file-storage-3578  [000] .... 21167.054187: fsg_main_thread: next: bh ffff880111e68900 state 1
    file-storage-3578  [000] .... 21167.056808: fsg_main_thread: next: bh ffff880111e69940 state 2
     irq/17-dwc3-3579  [003] d..1 21167.056874: bulk_out_complete: compl: bh ffff880111e69940 state 1
    file-storage-3578  [000] .... 21167.056878: fsg_main_thread: next: bh ffff880111e69940 state 1
    file-storage-3578  [000] .... 21167.059493: fsg_main_thread: next: bh ffff880111e6a980 state 2
     irq/17-dwc3-3579  [003] d..1 21167.059560: bulk_out_complete: compl: bh ffff880111e6a980 state 1
    file-storage-3578  [000] .... 21167.059564: fsg_main_thread: next: bh ffff880111e6a980 state 1
    file-storage-3578  [002] .... 21167.061913: fsg_main_thread: next: bh ffff880111e6b9c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.062146: bulk_out_complete: compl: bh ffff880111e6b9c0 state 1
    file-storage-3578  [002] .... 21167.062150: fsg_main_thread: next: bh ffff880111e6b9c0 state 1
    file-storage-3578  [000] .... 21167.064505: fsg_main_thread: next: bh ffff880111e68a40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.064711: bulk_out_complete: compl: bh ffff880111e68a40 state 1
    file-storage-3578  [000] .... 21167.064716: fsg_main_thread: next: bh ffff880111e68a40 state 1
    file-storage-3578  [000] .... 21167.066999: fsg_main_thread: next: bh ffff880111e69a80 state 2
    file-storage-3578  [002] .... 21167.067065: fsg_main_thread: next: bh ffff880111e69a80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.067266: bulk_out_complete: compl: bh ffff880111e69a80 state 1
    file-storage-3578  [002] .... 21167.067269: fsg_main_thread: next: bh ffff880111e69a80 state 1
    file-storage-3578  [000] .... 21167.069635: fsg_main_thread: next: bh ffff880111e6aac0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.069820: bulk_out_complete: compl: bh ffff880111e6aac0 state 1
    file-storage-3578  [000] .... 21167.069823: fsg_main_thread: next: bh ffff880111e6aac0 state 1
    file-storage-3578  [002] .... 21167.072173: fsg_main_thread: next: bh ffff880111e6bb00 state 2
     irq/17-dwc3-3579  [003] d..1 21167.072365: bulk_out_complete: compl: bh ffff880111e6bb00 state 1
    file-storage-3578  [002] .... 21167.072368: fsg_main_thread: next: bh ffff880111e6bb00 state 1
    file-storage-3578  [000] .... 21167.074736: fsg_main_thread: next: bh ffff880111e68b80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.074932: bulk_out_complete: compl: bh ffff880111e68b80 state 1
    file-storage-3578  [000] .... 21167.074936: fsg_main_thread: next: bh ffff880111e68b80 state 1
    file-storage-3578  [000] .... 21167.077333: fsg_main_thread: next: bh ffff880111e69bc0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.077539: bulk_out_complete: compl: bh ffff880111e69bc0 state 1
    file-storage-3578  [000] .... 21167.077543: fsg_main_thread: next: bh ffff880111e69bc0 state 1
    file-storage-3578  [000] .... 21167.080182: fsg_main_thread: next: bh ffff880111e6ac00 state 2
     irq/17-dwc3-3579  [003] d..1 21167.080250: bulk_out_complete: compl: bh ffff880111e6ac00 state 1
    file-storage-3578  [000] .... 21167.080255: fsg_main_thread: next: bh ffff880111e6ac00 state 1
    file-storage-3578  [000] .... 21167.082860: fsg_main_thread: next: bh ffff880111e6bc40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.082926: bulk_out_complete: compl: bh ffff880111e6bc40 state 1
    file-storage-3578  [000] .... 21167.082930: fsg_main_thread: next: bh ffff880111e6bc40 state 1
    file-storage-3578  [000] .... 21167.085562: fsg_main_thread: next: bh ffff880111e68cc0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.085629: bulk_out_complete: compl: bh ffff880111e68cc0 state 1
    file-storage-3578  [000] .... 21167.085632: fsg_main_thread: next: bh ffff880111e68cc0 state 1
    file-storage-3578  [000] .... 21167.088282: fsg_main_thread: next: bh ffff880111e69d00 state 2
     irq/17-dwc3-3579  [003] d..1 21167.088346: bulk_out_complete: compl: bh ffff880111e69d00 state 1
    file-storage-3578  [000] .... 21167.088350: fsg_main_thread: next: bh ffff880111e69d00 state 1
    file-storage-3578  [000] .... 21167.090988: fsg_main_thread: next: bh ffff880111e6ad40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.091056: bulk_out_complete: compl: bh ffff880111e6ad40 state 1
    file-storage-3578  [000] .... 21167.091060: fsg_main_thread: next: bh ffff880111e6ad40 state 1
    file-storage-3578  [000] .... 21167.093680: fsg_main_thread: next: bh ffff880111e6bd80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.093748: bulk_out_complete: compl: bh ffff880111e6bd80 state 1
    file-storage-3578  [000] .... 21167.093752: fsg_main_thread: next: bh ffff880111e6bd80 state 1
    file-storage-3578  [002] .... 21167.096100: fsg_main_thread: next: bh ffff880111e68e00 state 2
     irq/17-dwc3-3579  [003] d..1 21167.096324: bulk_out_complete: compl: bh ffff880111e68e00 state 1
    file-storage-3578  [002] .... 21167.096327: fsg_main_thread: next: bh ffff880111e68e00 state 1
    file-storage-3578  [000] .... 21167.098682: fsg_main_thread: next: bh ffff880111e69e40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.098885: bulk_out_complete: compl: bh ffff880111e69e40 state 1
    file-storage-3578  [000] .... 21167.098890: fsg_main_thread: next: bh ffff880111e69e40 state 1
    file-storage-3578  [000] .... 21167.101268: fsg_main_thread: next: bh ffff880111e6ae80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.101473: bulk_out_complete: compl: bh ffff880111e6ae80 state 1
    file-storage-3578  [000] .... 21167.101476: fsg_main_thread: next: bh ffff880111e6ae80 state 1
    file-storage-3578  [000] .... 21167.103842: fsg_main_thread: next: bh ffff880111e6bec0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.104002: bulk_out_complete: compl: bh ffff880111e6bec0 state 1
    file-storage-3578  [000] .... 21167.104006: fsg_main_thread: next: bh ffff880111e6bec0 state 1
    file-storage-3578  [000] .... 21167.106391: fsg_main_thread: next: bh ffff880111e68f40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.106599: bulk_out_complete: compl: bh ffff880111e68f40 state 1
    file-storage-3578  [000] .... 21167.106603: fsg_main_thread: next: bh ffff880111e68f40 state 1
    file-storage-3578  [000] .... 21167.108889: fsg_main_thread: next: bh ffff880111e69f80 state 2
    file-storage-3578  [002] .... 21167.108990: fsg_main_thread: next: bh ffff880111e69f80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.109135: bulk_out_complete: compl: bh ffff880111e69f80 state 1
    file-storage-3578  [002] .... 21167.109139: fsg_main_thread: next: bh ffff880111e69f80 state 1
    file-storage-3578  [002] .... 21167.111491: fsg_main_thread: next: bh ffff880111e6afc0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.111653: bulk_out_complete: compl: bh ffff880111e6afc0 state 1
    file-storage-3578  [002] .... 21167.111656: fsg_main_thread: next: bh ffff880111e6afc0 state 1
    file-storage-3578  [002] .... 21167.114030: fsg_main_thread: next: bh ffff880111e68040 state 2
     irq/17-dwc3-3579  [003] d..1 21167.114207: bulk_out_complete: compl: bh ffff880111e68040 state 1
    file-storage-3578  [002] .... 21167.114210: fsg_main_thread: next: bh ffff880111e68040 state 1
    file-storage-3578  [002] .... 21167.116585: fsg_main_thread: next: bh ffff880111e69080 state 2
     irq/17-dwc3-3579  [003] d..1 21167.116747: bulk_out_complete: compl: bh ffff880111e69080 state 1
    file-storage-3578  [002] .... 21167.116751: fsg_main_thread: next: bh ffff880111e69080 state 1
    file-storage-3578  [002] .... 21167.119105: fsg_main_thread: next: bh ffff880111e6a0c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.119305: bulk_out_complete: compl: bh ffff880111e6a0c0 state 1
    file-storage-3578  [002] .... 21167.119309: fsg_main_thread: next: bh ffff880111e6a0c0 state 1
    file-storage-3578  [000] .... 21167.121615: fsg_main_thread: next: bh ffff880111e6b100 state 2
    file-storage-3578  [000] .... 21167.121681: fsg_main_thread: next: bh ffff880111e6b100 state 2
     irq/17-dwc3-3579  [003] d..1 21167.121840: bulk_out_complete: compl: bh ffff880111e6b100 state 1
    file-storage-3578  [000] .... 21167.121844: fsg_main_thread: next: bh ffff880111e6b100 state 1
    file-storage-3578  [000] .... 21167.124192: fsg_main_thread: next: bh ffff880111e68180 state 2
     irq/17-dwc3-3579  [003] d..1 21167.124349: bulk_out_complete: compl: bh ffff880111e68180 state 1
    file-storage-3578  [000] .... 21167.124352: fsg_main_thread: next: bh ffff880111e68180 state 1
    file-storage-3578  [000] .... 21167.126725: fsg_main_thread: next: bh ffff880111e691c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.126933: bulk_out_complete: compl: bh ffff880111e691c0 state 1
    file-storage-3578  [000] .... 21167.126936: fsg_main_thread: next: bh ffff880111e691c0 state 1
    file-storage-3578  [000] .... 21167.129325: fsg_main_thread: next: bh ffff880111e6a200 state 2
     irq/17-dwc3-3579  [003] d..1 21167.129520: bulk_out_complete: compl: bh ffff880111e6a200 state 1
    file-storage-3578  [000] .... 21167.129524: fsg_main_thread: next: bh ffff880111e6a200 state 1
    file-storage-3578  [000] .... 21167.131886: fsg_main_thread: next: bh ffff880111e6b240 state 2
     irq/17-dwc3-3579  [003] d..1 21167.132101: bulk_out_complete: compl: bh ffff880111e6b240 state 1
    file-storage-3578  [000] .... 21167.132106: fsg_main_thread: next: bh ffff880111e6b240 state 1
    file-storage-3578  [000] .... 21167.134480: fsg_main_thread: next: bh ffff880111e682c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.134700: bulk_out_complete: compl: bh ffff880111e682c0 state 1
    file-storage-3578  [000] .... 21167.134704: fsg_main_thread: next: bh ffff880111e682c0 state 1
    file-storage-3578  [000] .... 21167.137086: fsg_main_thread: next: bh ffff880111e69300 state 2
     irq/17-dwc3-3579  [003] d..1 21167.137261: bulk_out_complete: compl: bh ffff880111e69300 state 1
    file-storage-3578  [000] .... 21167.137264: fsg_main_thread: next: bh ffff880111e69300 state 1
    file-storage-3578  [002] .... 21167.139628: fsg_main_thread: next: bh ffff880111e6a340 state 2
     irq/17-dwc3-3579  [003] d..1 21167.139804: bulk_out_complete: compl: bh ffff880111e6a340 state 1
    file-storage-3578  [002] .... 21167.139807: fsg_main_thread: next: bh ffff880111e6a340 state 1
    file-storage-3578  [002] .... 21167.142179: fsg_main_thread: next: bh ffff880111e6b380 state 2
     irq/17-dwc3-3579  [003] d..1 21167.142368: bulk_out_complete: compl: bh ffff880111e6b380 state 1
    file-storage-3578  [002] .... 21167.142373: fsg_main_thread: next: bh ffff880111e6b380 state 1
    file-storage-3578  [002] .... 21167.144749: fsg_main_thread: next: bh ffff880111e68400 state 2
     irq/17-dwc3-3579  [003] d..1 21167.144975: bulk_out_complete: compl: bh ffff880111e68400 state 1
    file-storage-3578  [002] .... 21167.144978: fsg_main_thread: next: bh ffff880111e68400 state 1
    file-storage-3578  [000] .... 21167.147387: fsg_main_thread: next: bh ffff880111e69440 state 2
     irq/17-dwc3-3579  [003] d..1 21167.147557: bulk_out_complete: compl: bh ffff880111e69440 state 1
    file-storage-3578  [000] .... 21167.147561: fsg_main_thread: next: bh ffff880111e69440 state 1
    file-storage-3578  [000] .... 21167.149935: fsg_main_thread: next: bh ffff880111e6a480 state 2
     irq/17-dwc3-3579  [003] d..1 21167.150156: bulk_out_complete: compl: bh ffff880111e6a480 state 1
    file-storage-3578  [000] .... 21167.150161: fsg_main_thread: next: bh ffff880111e6a480 state 1
    file-storage-3578  [000] .... 21167.152451: fsg_main_thread: next: bh ffff880111e6b4c0 state 2
    file-storage-3578  [000] .... 21167.152516: fsg_main_thread: next: bh ffff880111e6b4c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.152678: bulk_out_complete: compl: bh ffff880111e6b4c0 state 1
    file-storage-3578  [000] .... 21167.152682: fsg_main_thread: next: bh ffff880111e6b4c0 state 1
    file-storage-3578  [000] .... 21167.155048: fsg_main_thread: next: bh ffff880111e68540 state 2
     irq/17-dwc3-3579  [003] d..1 21167.155260: bulk_out_complete: compl: bh ffff880111e68540 state 1
    file-storage-3578  [000] .... 21167.155264: fsg_main_thread: next: bh ffff880111e68540 state 1
    file-storage-3578  [000] .... 21167.157640: fsg_main_thread: next: bh ffff880111e69580 state 2
     irq/17-dwc3-3579  [003] d..1 21167.157852: bulk_out_complete: compl: bh ffff880111e69580 state 1
    file-storage-3578  [000] .... 21167.157855: fsg_main_thread: next: bh ffff880111e69580 state 1
    file-storage-3578  [000] .... 21167.160132: fsg_main_thread: next: bh ffff880111e6a5c0 state 2
    file-storage-3578  [002] .... 21167.160197: fsg_main_thread: next: bh ffff880111e6a5c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.160375: bulk_out_complete: compl: bh ffff880111e6a5c0 state 1
    file-storage-3578  [002] .... 21167.160379: fsg_main_thread: next: bh ffff880111e6a5c0 state 1
    file-storage-3578  [002] .... 21167.162730: fsg_main_thread: next: bh ffff880111e6b600 state 2
     irq/17-dwc3-3579  [003] d..1 21167.162900: bulk_out_complete: compl: bh ffff880111e6b600 state 1
    file-storage-3578  [002] .... 21167.162904: fsg_main_thread: next: bh ffff880111e6b600 state 1
    file-storage-3578  [002] .... 21167.165295: fsg_main_thread: next: bh ffff880111e68680 state 2
     irq/17-dwc3-3579  [003] d..1 21167.165466: bulk_out_complete: compl: bh ffff880111e68680 state 1
    file-storage-3578  [002] .... 21167.165469: fsg_main_thread: next: bh ffff880111e68680 state 1
    file-storage-3578  [002] .... 21167.167838: fsg_main_thread: next: bh ffff880111e696c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.168105: bulk_out_complete: compl: bh ffff880111e696c0 state 1
    file-storage-3578  [001] .... 21167.171118: fsg_main_thread: next: bh ffff880111e696c0 state 1
    file-storage-3578  [001] .... 21167.173506: fsg_main_thread: next: bh ffff880111e6a700 state 2
     irq/17-dwc3-3579  [003] d..1 21167.173741: bulk_out_complete: compl: bh ffff880111e6a700 state 1
    file-storage-3578  [001] .... 21167.173744: fsg_main_thread: next: bh ffff880111e6a700 state 1
    file-storage-3578  [001] .... 21167.176031: fsg_main_thread: next: bh ffff880111e6b740 state 2
    file-storage-3578  [000] .... 21167.176097: fsg_main_thread: next: bh ffff880111e6b740 state 2
     irq/17-dwc3-3579  [003] d..1 21167.176275: bulk_out_complete: compl: bh ffff880111e6b740 state 1
    file-storage-3578  [000] .... 21167.176279: fsg_main_thread: next: bh ffff880111e6b740 state 1
    file-storage-3578  [002] .... 21167.178642: fsg_main_thread: next: bh ffff880111e687c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.178793: bulk_out_complete: compl: bh ffff880111e687c0 state 1
    file-storage-3578  [002] .... 21167.178796: fsg_main_thread: next: bh ffff880111e687c0 state 1
    file-storage-3578  [002] .... 21167.181152: fsg_main_thread: next: bh ffff880111e69800 state 2
     irq/17-dwc3-3579  [003] d..1 21167.181351: bulk_out_complete: compl: bh ffff880111e69800 state 1
    file-storage-3578  [002] .... 21167.181354: fsg_main_thread: next: bh ffff880111e69800 state 1
    file-storage-3578  [000] .... 21167.183665: fsg_main_thread: next: bh ffff880111e6a840 state 2
    file-storage-3578  [000] .... 21167.183731: fsg_main_thread: next: bh ffff880111e6a840 state 2
     irq/17-dwc3-3579  [003] d..1 21167.183931: bulk_out_complete: compl: bh ffff880111e6a840 state 1
    file-storage-3578  [000] .... 21167.183935: fsg_main_thread: next: bh ffff880111e6a840 state 1
    file-storage-3578  [000] .... 21167.186311: fsg_main_thread: next: bh ffff880111e6b880 state 2
     irq/17-dwc3-3579  [003] d..1 21167.186482: bulk_out_complete: compl: bh ffff880111e6b880 state 1
    file-storage-3578  [000] .... 21167.186485: fsg_main_thread: next: bh ffff880111e6b880 state 1
    file-storage-3578  [000] .... 21167.188899: fsg_main_thread: next: bh ffff880111e68900 state 2
     irq/17-dwc3-3579  [003] d..1 21167.189117: bulk_out_complete: compl: bh ffff880111e68900 state 1
    file-storage-3578  [000] .... 21167.189122: fsg_main_thread: next: bh ffff880111e68900 state 1
    file-storage-3578  [000] .... 21167.191502: fsg_main_thread: next: bh ffff880111e69940 state 2
     irq/17-dwc3-3579  [003] d..1 21167.191673: bulk_out_complete: compl: bh ffff880111e69940 state 1
    file-storage-3578  [000] .... 21167.191676: fsg_main_thread: next: bh ffff880111e69940 state 1
    file-storage-3578  [000] .... 21167.194058: fsg_main_thread: next: bh ffff880111e6a980 state 2
     irq/17-dwc3-3579  [003] d..1 21167.194228: bulk_out_complete: compl: bh ffff880111e6a980 state 1
    file-storage-3578  [000] .... 21167.194231: fsg_main_thread: next: bh ffff880111e6a980 state 1
    file-storage-3578  [000] .... 21167.196618: fsg_main_thread: next: bh ffff880111e6b9c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.196833: bulk_out_complete: compl: bh ffff880111e6b9c0 state 1
    file-storage-3578  [000] .... 21167.196837: fsg_main_thread: next: bh ffff880111e6b9c0 state 1
    file-storage-3578  [002] .... 21167.199213: fsg_main_thread: next: bh ffff880111e68a40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.199395: bulk_out_complete: compl: bh ffff880111e68a40 state 1
    file-storage-3578  [002] .... 21167.199398: fsg_main_thread: next: bh ffff880111e68a40 state 1
    file-storage-3578  [002] .... 21167.201796: fsg_main_thread: next: bh ffff880111e69a80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.201961: bulk_out_complete: compl: bh ffff880111e69a80 state 1
    file-storage-3578  [002] .... 21167.201964: fsg_main_thread: next: bh ffff880111e69a80 state 1
    file-storage-3578  [002] .... 21167.204326: fsg_main_thread: next: bh ffff880111e6aac0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.204509: bulk_out_complete: compl: bh ffff880111e6aac0 state 1
    file-storage-3578  [002] .... 21167.204512: fsg_main_thread: next: bh ffff880111e6aac0 state 1
    file-storage-3578  [002] .... 21167.206913: fsg_main_thread: next: bh ffff880111e6bb00 state 2
     irq/17-dwc3-3579  [003] d..1 21167.207077: bulk_out_complete: compl: bh ffff880111e6bb00 state 1
    file-storage-3578  [002] .... 21167.207080: fsg_main_thread: next: bh ffff880111e6bb00 state 1
    file-storage-3578  [002] .... 21167.209421: fsg_main_thread: next: bh ffff880111e68b80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.209622: bulk_out_complete: compl: bh ffff880111e68b80 state 1
    file-storage-3578  [002] .... 21167.209626: fsg_main_thread: next: bh ffff880111e68b80 state 1
    file-storage-3578  [002] .... 21167.211990: fsg_main_thread: next: bh ffff880111e69bc0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.212238: bulk_out_complete: compl: bh ffff880111e69bc0 state 1
    file-storage-3578  [002] .... 21167.212241: fsg_main_thread: next: bh ffff880111e69bc0 state 1
    file-storage-3578  [000] .... 21167.214551: fsg_main_thread: next: bh ffff880111e6ac00 state 2
    file-storage-3578  [000] .... 21167.214615: fsg_main_thread: next: bh ffff880111e6ac00 state 2
     irq/17-dwc3-3579  [003] d..1 21167.214829: bulk_out_complete: compl: bh ffff880111e6ac00 state 1
    file-storage-3578  [000] .... 21167.214833: fsg_main_thread: next: bh ffff880111e6ac00 state 1
    file-storage-3578  [000] .... 21167.217206: fsg_main_thread: next: bh ffff880111e6bc40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.217389: bulk_out_complete: compl: bh ffff880111e6bc40 state 1
    file-storage-3578  [000] .... 21167.217394: fsg_main_thread: next: bh ffff880111e6bc40 state 1
    file-storage-3578  [000] .... 21167.219810: fsg_main_thread: next: bh ffff880111e68cc0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.219947: bulk_out_complete: compl: bh ffff880111e68cc0 state 1
    file-storage-3578  [000] .... 21167.219951: fsg_main_thread: next: bh ffff880111e68cc0 state 1
    file-storage-3578  [000] .... 21167.222332: fsg_main_thread: next: bh ffff880111e69d00 state 2
     irq/17-dwc3-3579  [003] d..1 21167.222494: bulk_out_complete: compl: bh ffff880111e69d00 state 1
    file-storage-3578  [000] .... 21167.222498: fsg_main_thread: next: bh ffff880111e69d00 state 1
    file-storage-3578  [000] .... 21167.224779: fsg_main_thread: next: bh ffff880111e6ad40 state 2
    file-storage-3578  [002] .... 21167.224846: fsg_main_thread: next: bh ffff880111e6ad40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.225106: bulk_out_complete: compl: bh ffff880111e6ad40 state 1
    file-storage-3578  [002] .... 21167.225110: fsg_main_thread: next: bh ffff880111e6ad40 state 1
    file-storage-3578  [000] .... 21167.227470: fsg_main_thread: next: bh ffff880111e6bd80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.227651: bulk_out_complete: compl: bh ffff880111e6bd80 state 1
    file-storage-3578  [000] .... 21167.227656: fsg_main_thread: next: bh ffff880111e6bd80 state 1
    file-storage-3578  [000] .... 21167.230010: fsg_main_thread: next: bh ffff880111e68e00 state 2
     irq/17-dwc3-3579  [003] d..1 21167.230181: bulk_out_complete: compl: bh ffff880111e68e00 state 1
    file-storage-3578  [000] .... 21167.230185: fsg_main_thread: next: bh ffff880111e68e00 state 1
    file-storage-3578  [002] .... 21167.232528: fsg_main_thread: next: bh ffff880111e69e40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.232697: bulk_out_complete: compl: bh ffff880111e69e40 state 1
    file-storage-3578  [002] .... 21167.232701: fsg_main_thread: next: bh ffff880111e69e40 state 1
    file-storage-3578  [002] .... 21167.235063: fsg_main_thread: next: bh ffff880111e6ae80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.235238: bulk_out_complete: compl: bh ffff880111e6ae80 state 1
    file-storage-3578  [002] .... 21167.235241: fsg_main_thread: next: bh ffff880111e6ae80 state 1
    file-storage-3578  [000] .... 21167.237637: fsg_main_thread: next: bh ffff880111e6bec0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.237793: bulk_out_complete: compl: bh ffff880111e6bec0 state 1
    file-storage-3578  [000] .... 21167.237797: fsg_main_thread: next: bh ffff880111e6bec0 state 1
    file-storage-3578  [000] .... 21167.240185: fsg_main_thread: next: bh ffff880111e68f40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.240399: bulk_out_complete: compl: bh ffff880111e68f40 state 1
    file-storage-3578  [000] .... 21167.240403: fsg_main_thread: next: bh ffff880111e68f40 state 1
    file-storage-3578  [000] .... 21167.242780: fsg_main_thread: next: bh ffff880111e69f80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.242951: bulk_out_complete: compl: bh ffff880111e69f80 state 1
    file-storage-3578  [000] .... 21167.242955: fsg_main_thread: next: bh ffff880111e69f80 state 1
    file-storage-3578  [000] .... 21167.245313: fsg_main_thread: next: bh ffff880111e6afc0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.245475: bulk_out_complete: compl: bh ffff880111e6afc0 state 1
    file-storage-3578  [000] .... 21167.245479: fsg_main_thread: next: bh ffff880111e6afc0 state 1
    file-storage-3578  [002] .... 21167.247829: fsg_main_thread: next: bh ffff880111e68040 state 2
     irq/17-dwc3-3579  [003] d..1 21167.248012: bulk_out_complete: compl: bh ffff880111e68040 state 1
    file-storage-3578  [002] .... 21167.248015: fsg_main_thread: next: bh ffff880111e68040 state 1
    file-storage-3578  [002] .... 21167.250370: fsg_main_thread: next: bh ffff880111e69080 state 2
     irq/17-dwc3-3579  [003] d..1 21167.250551: bulk_out_complete: compl: bh ffff880111e69080 state 1
    file-storage-3578  [002] .... 21167.250554: fsg_main_thread: next: bh ffff880111e69080 state 1
    file-storage-3578  [002] .... 21167.252826: fsg_main_thread: next: bh ffff880111e6a0c0 state 2
    file-storage-3578  [002] .... 21167.252891: fsg_main_thread: next: bh ffff880111e6a0c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.253067: bulk_out_complete: compl: bh ffff880111e6a0c0 state 1
    file-storage-3578  [000] .... 21167.253073: fsg_main_thread: next: bh ffff880111e6a0c0 state 1
    file-storage-3578  [000] .... 21167.255747: fsg_main_thread: next: bh ffff880111e6b100 state 2
     irq/17-dwc3-3579  [003] d..1 21167.255815: bulk_out_complete: compl: bh ffff880111e6b100 state 1
    file-storage-3578  [000] .... 21167.255819: fsg_main_thread: next: bh ffff880111e6b100 state 1
    file-storage-3578  [000] .... 21167.258108: fsg_main_thread: next: bh ffff880111e68180 state 2
     irq/17-dwc3-3579  [003] d..1 21167.258387: bulk_out_complete: compl: bh ffff880111e68180 state 1
    file-storage-3578  [000] .... 21167.258387: fsg_main_thread: next: bh ffff880111e68180 state 1
    file-storage-3578  [000] .... 21167.260758: fsg_main_thread: next: bh ffff880111e691c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.260947: bulk_out_complete: compl: bh ffff880111e691c0 state 1
    file-storage-3578  [000] .... 21167.260951: fsg_main_thread: next: bh ffff880111e691c0 state 1
    file-storage-3578  [002] .... 21167.263384: fsg_main_thread: next: bh ffff880111e6a200 state 2
     irq/17-dwc3-3579  [003] d..1 21167.263555: bulk_out_complete: compl: bh ffff880111e6a200 state 1
    file-storage-3578  [002] .... 21167.263559: fsg_main_thread: next: bh ffff880111e6a200 state 1
    file-storage-3578  [002] .... 21167.265909: fsg_main_thread: next: bh ffff880111e6b240 state 2
     irq/17-dwc3-3579  [003] d..1 21167.266088: bulk_out_complete: compl: bh ffff880111e6b240 state 1
    file-storage-3578  [002] .... 21167.266092: fsg_main_thread: next: bh ffff880111e6b240 state 1
    file-storage-3578  [002] .... 21167.268478: fsg_main_thread: next: bh ffff880111e682c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.268684: bulk_out_complete: compl: bh ffff880111e682c0 state 1
    file-storage-3578  [002] .... 21167.268687: fsg_main_thread: next: bh ffff880111e682c0 state 1
    file-storage-3578  [000] .... 21167.271091: fsg_main_thread: next: bh ffff880111e69300 state 2
     irq/17-dwc3-3579  [003] d..1 21167.271262: bulk_out_complete: compl: bh ffff880111e69300 state 1
    file-storage-3578  [000] .... 21167.271266: fsg_main_thread: next: bh ffff880111e69300 state 1
    file-storage-3578  [000] .... 21167.273640: fsg_main_thread: next: bh ffff880111e6a340 state 2
     irq/17-dwc3-3579  [003] d..1 21167.273806: bulk_out_complete: compl: bh ffff880111e6a340 state 1
    file-storage-3578  [000] .... 21167.273810: fsg_main_thread: next: bh ffff880111e6a340 state 1
    file-storage-3578  [000] .... 21167.276199: fsg_main_thread: next: bh ffff880111e6b380 state 2
     irq/17-dwc3-3579  [003] d..1 21167.276386: bulk_out_complete: compl: bh ffff880111e6b380 state 1
    file-storage-3578  [000] .... 21167.276389: fsg_main_thread: next: bh ffff880111e6b380 state 1
    file-storage-3578  [002] .... 21167.278749: fsg_main_thread: next: bh ffff880111e68400 state 2
     irq/17-dwc3-3579  [003] d..1 21167.278975: bulk_out_complete: compl: bh ffff880111e68400 state 1
    file-storage-3578  [002] .... 21167.278979: fsg_main_thread: next: bh ffff880111e68400 state 1
    file-storage-3578  [002] .... 21167.281336: fsg_main_thread: next: bh ffff880111e69440 state 2
     irq/17-dwc3-3579  [003] d..1 21167.281506: bulk_out_complete: compl: bh ffff880111e69440 state 1
    file-storage-3578  [002] .... 21167.281509: fsg_main_thread: next: bh ffff880111e69440 state 1
    file-storage-3578  [002] .... 21167.283877: fsg_main_thread: next: bh ffff880111e6a480 state 2
     irq/17-dwc3-3579  [003] d..1 21167.284047: bulk_out_complete: compl: bh ffff880111e6a480 state 1
    file-storage-3578  [002] .... 21167.284050: fsg_main_thread: next: bh ffff880111e6a480 state 1
    file-storage-3578  [002] .... 21167.286423: fsg_main_thread: next: bh ffff880111e6b4c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.286636: bulk_out_complete: compl: bh ffff880111e6b4c0 state 1
    file-storage-3578  [002] .... 21167.286640: fsg_main_thread: next: bh ffff880111e6b4c0 state 1
    file-storage-3578  [002] .... 21167.289042: fsg_main_thread: next: bh ffff880111e68540 state 2
     irq/17-dwc3-3579  [003] d..1 21167.289212: bulk_out_complete: compl: bh ffff880111e68540 state 1
    file-storage-3578  [002] .... 21167.289215: fsg_main_thread: next: bh ffff880111e68540 state 1
    file-storage-3578  [002] .... 21167.291584: fsg_main_thread: next: bh ffff880111e69580 state 2
     irq/17-dwc3-3579  [003] d..1 21167.291751: bulk_out_complete: compl: bh ffff880111e69580 state 1
    file-storage-3578  [002] .... 21167.291755: fsg_main_thread: next: bh ffff880111e69580 state 1
    file-storage-3578  [002] .... 21167.294170: fsg_main_thread: next: bh ffff880111e6a5c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.294358: bulk_out_complete: compl: bh ffff880111e6a5c0 state 1
    file-storage-3578  [002] .... 21167.294362: fsg_main_thread: next: bh ffff880111e6a5c0 state 1
    file-storage-3578  [002] .... 21167.296734: fsg_main_thread: next: bh ffff880111e6b600 state 2
     irq/17-dwc3-3579  [003] d..1 21167.296906: bulk_out_complete: compl: bh ffff880111e6b600 state 1
    file-storage-3578  [002] .... 21167.296910: fsg_main_thread: next: bh ffff880111e6b600 state 1
    file-storage-3578  [002] .... 21167.299184: fsg_main_thread: next: bh ffff880111e68680 state 2
    file-storage-3578  [002] .... 21167.299247: fsg_main_thread: next: bh ffff880111e68680 state 2
     irq/17-dwc3-3579  [003] d..1 21167.299414: bulk_out_complete: compl: bh ffff880111e68680 state 1
    file-storage-3578  [002] .... 21167.299417: fsg_main_thread: next: bh ffff880111e68680 state 1
    file-storage-3578  [002] .... 21167.301696: fsg_main_thread: next: bh ffff880111e696c0 state 2
    file-storage-3578  [002] .... 21167.301761: fsg_main_thread: next: bh ffff880111e696c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.301973: bulk_out_complete: compl: bh ffff880111e696c0 state 1
    file-storage-3578  [002] .... 21167.301977: fsg_main_thread: next: bh ffff880111e696c0 state 1
    file-storage-3578  [002] .... 21167.304276: fsg_main_thread: next: bh ffff880111e6a700 state 2
    file-storage-3578  [000] .... 21167.304343: fsg_main_thread: next: bh ffff880111e6a700 state 2
     irq/17-dwc3-3579  [003] d..1 21167.304522: bulk_out_complete: compl: bh ffff880111e6a700 state 1
    file-storage-3578  [000] .... 21167.304526: fsg_main_thread: next: bh ffff880111e6a700 state 1
    file-storage-3578  [000] .... 21167.306888: fsg_main_thread: next: bh ffff880111e6b740 state 2
     irq/17-dwc3-3579  [003] d..1 21167.307062: bulk_out_complete: compl: bh ffff880111e6b740 state 1
    file-storage-3578  [000] .... 21167.307065: fsg_main_thread: next: bh ffff880111e6b740 state 1
    file-storage-3578  [000] .... 21167.309454: fsg_main_thread: next: bh ffff880111e687c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.309664: bulk_out_complete: compl: bh ffff880111e687c0 state 1
    file-storage-3578  [000] .... 21167.309668: fsg_main_thread: next: bh ffff880111e687c0 state 1
    file-storage-3578  [002] .... 21167.312042: fsg_main_thread: next: bh ffff880111e69800 state 2
     irq/17-dwc3-3579  [003] d..1 21167.312227: bulk_out_complete: compl: bh ffff880111e69800 state 1
    file-storage-3578  [002] .... 21167.312231: fsg_main_thread: next: bh ffff880111e69800 state 1
    file-storage-3578  [002] .... 21167.314569: fsg_main_thread: next: bh ffff880111e6a840 state 2
     irq/17-dwc3-3579  [003] d..1 21167.314727: bulk_out_complete: compl: bh ffff880111e6a840 state 1
    file-storage-3578  [002] .... 21167.314731: fsg_main_thread: next: bh ffff880111e6a840 state 1
    file-storage-3578  [002] .... 21167.317083: fsg_main_thread: next: bh ffff880111e6b880 state 2
     irq/17-dwc3-3579  [003] d..1 21167.317267: bulk_out_complete: compl: bh ffff880111e6b880 state 1
    file-storage-3578  [002] .... 21167.317270: fsg_main_thread: next: bh ffff880111e6b880 state 1
    file-storage-3578  [002] .... 21167.319623: fsg_main_thread: next: bh ffff880111e68900 state 2
     irq/17-dwc3-3579  [003] d..1 21167.319790: bulk_out_complete: compl: bh ffff880111e68900 state 1
    file-storage-3578  [002] .... 21167.319793: fsg_main_thread: next: bh ffff880111e68900 state 1
    file-storage-3578  [002] .... 21167.322177: fsg_main_thread: next: bh ffff880111e69940 state 2
     irq/17-dwc3-3579  [003] d..1 21167.322358: bulk_out_complete: compl: bh ffff880111e69940 state 1
    file-storage-3578  [002] .... 21167.322361: fsg_main_thread: next: bh ffff880111e69940 state 1
    file-storage-3578  [002] .... 21167.324760: fsg_main_thread: next: bh ffff880111e6a980 state 2
     irq/17-dwc3-3579  [003] d..1 21167.324951: bulk_out_complete: compl: bh ffff880111e6a980 state 1
    file-storage-3578  [002] .... 21167.324955: fsg_main_thread: next: bh ffff880111e6a980 state 1
    file-storage-3578  [000] .... 21167.327324: fsg_main_thread: next: bh ffff880111e6b9c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.327534: bulk_out_complete: compl: bh ffff880111e6b9c0 state 1
    file-storage-3578  [000] .... 21167.327539: fsg_main_thread: next: bh ffff880111e6b9c0 state 1
    file-storage-3578  [002] .... 21167.329977: fsg_main_thread: next: bh ffff880111e68a40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.330160: bulk_out_complete: compl: bh ffff880111e68a40 state 1
    file-storage-3578  [002] .... 21167.330164: fsg_main_thread: next: bh ffff880111e68a40 state 1
    file-storage-3578  [002] .... 21167.332535: fsg_main_thread: next: bh ffff880111e69a80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.332710: bulk_out_complete: compl: bh ffff880111e69a80 state 1
    file-storage-3578  [002] .... 21167.332713: fsg_main_thread: next: bh ffff880111e69a80 state 1
    file-storage-3578  [002] .... 21167.335103: fsg_main_thread: next: bh ffff880111e6aac0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.335286: bulk_out_complete: compl: bh ffff880111e6aac0 state 1
    file-storage-3578  [000] .... 21167.335290: fsg_main_thread: next: bh ffff880111e6aac0 state 1
     irq/17-dwc3-3579  [003] d..1 21167.337859: bulk_out_complete: compl: bh ffff880111e6bb00 state 1
    file-storage-3578  [000] .... 21167.337859: fsg_main_thread: next: bh ffff880111e6bb00 state 2
    file-storage-3578  [000] .... 21167.340471: fsg_main_thread: next: bh ffff880111e68b80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.340544: bulk_out_complete: compl: bh ffff880111e68b80 state 1
    file-storage-3578  [000] .... 21167.340548: fsg_main_thread: next: bh ffff880111e68b80 state 1
    file-storage-3578  [000] .... 21167.343168: fsg_main_thread: next: bh ffff880111e69bc0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.343241: bulk_out_complete: compl: bh ffff880111e69bc0 state 1
    file-storage-3578  [000] .... 21167.343245: fsg_main_thread: next: bh ffff880111e69bc0 state 1
    file-storage-3578  [000] .... 21167.345623: fsg_main_thread: next: bh ffff880111e6ac00 state 2
     irq/17-dwc3-3579  [003] d..1 21167.345846: bulk_out_complete: compl: bh ffff880111e6ac00 state 1
    file-storage-3578  [000] .... 21167.345849: fsg_main_thread: next: bh ffff880111e6ac00 state 1
    file-storage-3578  [000] .... 21167.348211: fsg_main_thread: next: bh ffff880111e6bc40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.348368: bulk_out_complete: compl: bh ffff880111e6bc40 state 1
    file-storage-3578  [000] .... 21167.348371: fsg_main_thread: next: bh ffff880111e6bc40 state 1
    file-storage-3578  [000] .... 21167.350662: fsg_main_thread: next: bh ffff880111e68cc0 state 2
    file-storage-3578  [002] .... 21167.350727: fsg_main_thread: next: bh ffff880111e68cc0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.350908: bulk_out_complete: compl: bh ffff880111e68cc0 state 1
    file-storage-3578  [002] .... 21167.350912: fsg_main_thread: next: bh ffff880111e68cc0 state 1
    file-storage-3578  [002] .... 21167.353282: fsg_main_thread: next: bh ffff880111e69d00 state 2
     irq/17-dwc3-3579  [003] d..1 21167.353458: bulk_out_complete: compl: bh ffff880111e69d00 state 1
    file-storage-3578  [002] .... 21167.353461: fsg_main_thread: next: bh ffff880111e69d00 state 1
    file-storage-3578  [000] .... 21167.355809: fsg_main_thread: next: bh ffff880111e6ad40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.355966: bulk_out_complete: compl: bh ffff880111e6ad40 state 1
    file-storage-3578  [000] .... 21167.355970: fsg_main_thread: next: bh ffff880111e6ad40 state 1
    file-storage-3578  [000] .... 21167.358322: fsg_main_thread: next: bh ffff880111e6bd80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.358494: bulk_out_complete: compl: bh ffff880111e6bd80 state 1
    file-storage-3578  [002] .... 21167.358500: fsg_main_thread: next: bh ffff880111e6bd80 state 1
    file-storage-3578  [000] .... 21167.360869: fsg_main_thread: next: bh ffff880111e68e00 state 2
     irq/17-dwc3-3579  [003] d..1 21167.361040: bulk_out_complete: compl: bh ffff880111e68e00 state 1
    file-storage-3578  [000] .... 21167.361044: fsg_main_thread: next: bh ffff880111e68e00 state 1
    file-storage-3578  [000] .... 21167.363400: fsg_main_thread: next: bh ffff880111e69e40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.363566: bulk_out_complete: compl: bh ffff880111e69e40 state 1
    file-storage-3578  [000] .... 21167.363569: fsg_main_thread: next: bh ffff880111e69e40 state 1
    file-storage-3578  [002] .... 21167.365920: fsg_main_thread: next: bh ffff880111e6ae80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.366121: bulk_out_complete: compl: bh ffff880111e6ae80 state 1
    file-storage-3578  [002] .... 21167.366125: fsg_main_thread: next: bh ffff880111e6ae80 state 1
    file-storage-3578  [000] .... 21167.368480: fsg_main_thread: next: bh ffff880111e6bec0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.368662: bulk_out_complete: compl: bh ffff880111e6bec0 state 1
    file-storage-3578  [000] .... 21167.368667: fsg_main_thread: next: bh ffff880111e6bec0 state 1
    file-storage-3578  [000] .... 21167.370944: fsg_main_thread: next: bh ffff880111e68f40 state 2
    file-storage-3578  [000] .... 21167.371007: fsg_main_thread: next: bh ffff880111e68f40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.371181: bulk_out_complete: compl: bh ffff880111e68f40 state 1
    file-storage-3578  [000] .... 21167.371184: fsg_main_thread: next: bh ffff880111e68f40 state 1
    file-storage-3578  [002] .... 21167.373521: fsg_main_thread: next: bh ffff880111e69f80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.373693: bulk_out_complete: compl: bh ffff880111e69f80 state 1
    file-storage-3578  [002] .... 21167.373696: fsg_main_thread: next: bh ffff880111e69f80 state 1
    file-storage-3578  [002] .... 21167.376049: fsg_main_thread: next: bh ffff880111e6afc0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.376222: bulk_out_complete: compl: bh ffff880111e6afc0 state 1
    file-storage-3578  [002] .... 21167.376225: fsg_main_thread: next: bh ffff880111e6afc0 state 1
    file-storage-3578  [002] .... 21167.378598: fsg_main_thread: next: bh ffff880111e68040 state 2
     irq/17-dwc3-3579  [003] d..1 21167.378779: bulk_out_complete: compl: bh ffff880111e68040 state 1
    file-storage-3578  [002] .... 21167.378782: fsg_main_thread: next: bh ffff880111e68040 state 1
    file-storage-3578  [002] .... 21167.381157: fsg_main_thread: next: bh ffff880111e69080 state 2
     irq/17-dwc3-3579  [003] d..1 21167.381350: bulk_out_complete: compl: bh ffff880111e69080 state 1
    file-storage-3578  [002] .... 21167.381354: fsg_main_thread: next: bh ffff880111e69080 state 1
    file-storage-3578  [000] .... 21167.383722: fsg_main_thread: next: bh ffff880111e6a0c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.383890: bulk_out_complete: compl: bh ffff880111e6a0c0 state 1
    file-storage-3578  [000] .... 21167.383894: fsg_main_thread: next: bh ffff880111e6a0c0 state 1
    file-storage-3578  [000] .... 21167.386249: fsg_main_thread: next: bh ffff880111e6b100 state 2
     irq/17-dwc3-3579  [003] d..1 21167.386421: bulk_out_complete: compl: bh ffff880111e6b100 state 1
    file-storage-3578  [000] .... 21167.386425: fsg_main_thread: next: bh ffff880111e6b100 state 1
    file-storage-3578  [002] .... 21167.388785: fsg_main_thread: next: bh ffff880111e68180 state 2
     irq/17-dwc3-3579  [003] d..1 21167.388982: bulk_out_complete: compl: bh ffff880111e68180 state 1
    file-storage-3578  [002] .... 21167.388986: fsg_main_thread: next: bh ffff880111e68180 state 1
    file-storage-3578  [000] .... 21167.391335: fsg_main_thread: next: bh ffff880111e691c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.391509: bulk_out_complete: compl: bh ffff880111e691c0 state 1
    file-storage-3578  [000] .... 21167.391514: fsg_main_thread: next: bh ffff880111e691c0 state 1
    file-storage-3578  [000] .... 21167.393892: fsg_main_thread: next: bh ffff880111e6a200 state 2
     irq/17-dwc3-3579  [003] d..1 21167.394057: bulk_out_complete: compl: bh ffff880111e6a200 state 1
    file-storage-3578  [000] .... 21167.394060: fsg_main_thread: next: bh ffff880111e6a200 state 1
    file-storage-3578  [002] .... 21167.396393: fsg_main_thread: next: bh ffff880111e6b240 state 2
     irq/17-dwc3-3579  [003] d..1 21167.396568: bulk_out_complete: compl: bh ffff880111e6b240 state 1
    file-storage-3578  [002] .... 21167.396572: fsg_main_thread: next: bh ffff880111e6b240 state 1
    file-storage-3578  [002] .... 21167.398949: fsg_main_thread: next: bh ffff880111e682c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.399144: bulk_out_complete: compl: bh ffff880111e682c0 state 1
    file-storage-3578  [002] .... 21167.399147: fsg_main_thread: next: bh ffff880111e682c0 state 1
    file-storage-3578  [002] .... 21167.401519: fsg_main_thread: next: bh ffff880111e69300 state 2
     irq/17-dwc3-3579  [003] d..1 21167.401693: bulk_out_complete: compl: bh ffff880111e69300 state 1
    file-storage-3578  [002] .... 21167.401696: fsg_main_thread: next: bh ffff880111e69300 state 1
    file-storage-3578  [002] .... 21167.404028: fsg_main_thread: next: bh ffff880111e6a340 state 2
     irq/17-dwc3-3579  [003] d..1 21167.404215: bulk_out_complete: compl: bh ffff880111e6a340 state 1
    file-storage-3578  [002] .... 21167.404218: fsg_main_thread: next: bh ffff880111e6a340 state 1
    file-storage-3578  [002] .... 21167.406621: fsg_main_thread: next: bh ffff880111e6b380 state 2
     irq/17-dwc3-3579  [003] d..1 21167.406813: bulk_out_complete: compl: bh ffff880111e6b380 state 1
    file-storage-3578  [002] .... 21167.406816: fsg_main_thread: next: bh ffff880111e6b380 state 1
    file-storage-3578  [002] .... 21167.409220: fsg_main_thread: next: bh ffff880111e68400 state 2
     irq/17-dwc3-3579  [003] d..1 21167.409396: bulk_out_complete: compl: bh ffff880111e68400 state 1
    file-storage-3578  [002] .... 21167.409399: fsg_main_thread: next: bh ffff880111e68400 state 1
    file-storage-3578  [002] .... 21167.411786: fsg_main_thread: next: bh ffff880111e69440 state 2
     irq/17-dwc3-3579  [003] d..1 21167.411958: bulk_out_complete: compl: bh ffff880111e69440 state 1
    file-storage-3578  [002] .... 21167.411961: fsg_main_thread: next: bh ffff880111e69440 state 1
    file-storage-3578  [000] .... 21167.414345: fsg_main_thread: next: bh ffff880111e6a480 state 2
     irq/17-dwc3-3579  [003] d..1 21167.414594: bulk_out_complete: compl: bh ffff880111e6a480 state 1
    file-storage-3578  [000] .... 21167.414599: fsg_main_thread: next: bh ffff880111e6a480 state 1
    file-storage-3578  [002] .... 21167.416994: fsg_main_thread: next: bh ffff880111e6b4c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.417176: bulk_out_complete: compl: bh ffff880111e6b4c0 state 1
    file-storage-3578  [000] .... 21167.417180: fsg_main_thread: next: bh ffff880111e6b4c0 state 1
    file-storage-3578  [000] .... 21167.419551: fsg_main_thread: next: bh ffff880111e68540 state 2
     irq/17-dwc3-3579  [003] d..1 21167.419747: bulk_out_complete: compl: bh ffff880111e68540 state 1
    file-storage-3578  [000] .... 21167.419752: fsg_main_thread: next: bh ffff880111e68540 state 1
    file-storage-3578  [000] .... 21167.422125: fsg_main_thread: next: bh ffff880111e69580 state 2
     irq/17-dwc3-3579  [003] d..1 21167.422336: bulk_out_complete: compl: bh ffff880111e69580 state 1
    file-storage-3578  [000] .... 21167.422339: fsg_main_thread: next: bh ffff880111e69580 state 1
    file-storage-3578  [000] .... 21167.424708: fsg_main_thread: next: bh ffff880111e6a5c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.424903: bulk_out_complete: compl: bh ffff880111e6a5c0 state 1
    file-storage-3578  [000] .... 21167.424907: fsg_main_thread: next: bh ffff880111e6a5c0 state 1
    file-storage-3578  [002] .... 21167.427376: fsg_main_thread: next: bh ffff880111e6b600 state 2
     irq/17-dwc3-3579  [003] d..1 21167.427434: bulk_out_complete: compl: bh ffff880111e6b600 state 1
    file-storage-3578  [002] .... 21167.427437: fsg_main_thread: next: bh ffff880111e6b600 state 1
    file-storage-3578  [002] .... 21167.429791: fsg_main_thread: next: bh ffff880111e68680 state 2
     irq/17-dwc3-3579  [003] d..1 21167.430006: bulk_out_complete: compl: bh ffff880111e68680 state 1
    file-storage-3578  [002] .... 21167.430010: fsg_main_thread: next: bh ffff880111e68680 state 1
    file-storage-3578  [002] .... 21167.432386: fsg_main_thread: next: bh ffff880111e696c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.432577: bulk_out_complete: compl: bh ffff880111e696c0 state 1
    file-storage-3578  [002] .... 21167.432581: fsg_main_thread: next: bh ffff880111e696c0 state 1
    file-storage-3578  [002] .... 21167.434936: fsg_main_thread: next: bh ffff880111e6a700 state 2
     irq/17-dwc3-3579  [003] d..1 21167.435108: bulk_out_complete: compl: bh ffff880111e6a700 state 1
    file-storage-3578  [002] .... 21167.435112: fsg_main_thread: next: bh ffff880111e6a700 state 1
    file-storage-3578  [002] .... 21167.437460: fsg_main_thread: next: bh ffff880111e6b740 state 2
     irq/17-dwc3-3579  [003] d..1 21167.437674: bulk_out_complete: compl: bh ffff880111e6b740 state 1
    file-storage-3578  [002] .... 21167.437678: fsg_main_thread: next: bh ffff880111e6b740 state 1
    file-storage-3578  [000] .... 21167.440041: fsg_main_thread: next: bh ffff880111e687c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.440259: bulk_out_complete: compl: bh ffff880111e687c0 state 1
    file-storage-3578  [000] .... 21167.440264: fsg_main_thread: next: bh ffff880111e687c0 state 1
    file-storage-3578  [000] .... 21167.442617: fsg_main_thread: next: bh ffff880111e69800 state 2
     irq/17-dwc3-3579  [003] d..1 21167.442789: bulk_out_complete: compl: bh ffff880111e69800 state 1
    file-storage-3578  [000] .... 21167.442792: fsg_main_thread: next: bh ffff880111e69800 state 1
    file-storage-3578  [002] .... 21167.445191: fsg_main_thread: next: bh ffff880111e6a840 state 2
     irq/17-dwc3-3579  [003] d..1 21167.445408: bulk_out_complete: compl: bh ffff880111e6a840 state 1
    file-storage-3578  [002] .... 21167.445412: fsg_main_thread: next: bh ffff880111e6a840 state 1
    file-storage-3578  [000] .... 21167.447774: fsg_main_thread: next: bh ffff880111e6b880 state 2
     irq/17-dwc3-3579  [003] d..1 21167.447950: bulk_out_complete: compl: bh ffff880111e6b880 state 1
    file-storage-3578  [000] .... 21167.447954: fsg_main_thread: next: bh ffff880111e6b880 state 1
    file-storage-3578  [000] .... 21167.450326: fsg_main_thread: next: bh ffff880111e68900 state 2
     irq/17-dwc3-3579  [003] d..1 21167.450496: bulk_out_complete: compl: bh ffff880111e68900 state 1
    file-storage-3578  [000] .... 21167.450499: fsg_main_thread: next: bh ffff880111e68900 state 1
    file-storage-3578  [002] .... 21167.452862: fsg_main_thread: next: bh ffff880111e69940 state 2
     irq/17-dwc3-3579  [003] d..1 21167.453039: bulk_out_complete: compl: bh ffff880111e69940 state 1
    file-storage-3578  [002] .... 21167.453043: fsg_main_thread: next: bh ffff880111e69940 state 1
    file-storage-3578  [000] .... 21167.455350: fsg_main_thread: next: bh ffff880111e6a980 state 2
    file-storage-3578  [000] .... 21167.455415: fsg_main_thread: next: bh ffff880111e6a980 state 2
     irq/17-dwc3-3579  [003] d..1 21167.455618: bulk_out_complete: compl: bh ffff880111e6a980 state 1
    file-storage-3578  [000] .... 21167.455622: fsg_main_thread: next: bh ffff880111e6a980 state 1
    file-storage-3578  [002] .... 21167.457982: fsg_main_thread: next: bh ffff880111e6b9c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.458160: bulk_out_complete: compl: bh ffff880111e6b9c0 state 1
    file-storage-3578  [002] .... 21167.458163: fsg_main_thread: next: bh ffff880111e6b9c0 state 1
    file-storage-3578  [002] .... 21167.460526: fsg_main_thread: next: bh ffff880111e68a40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.460702: bulk_out_complete: compl: bh ffff880111e68a40 state 1
    file-storage-3578  [002] .... 21167.460705: fsg_main_thread: next: bh ffff880111e68a40 state 1
    file-storage-3578  [002] .... 21167.463087: fsg_main_thread: next: bh ffff880111e69a80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.463300: bulk_out_complete: compl: bh ffff880111e69a80 state 1
    file-storage-3578  [002] .... 21167.463304: fsg_main_thread: next: bh ffff880111e69a80 state 1
    file-storage-3578  [002] .... 21167.465667: fsg_main_thread: next: bh ffff880111e6aac0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.465839: bulk_out_complete: compl: bh ffff880111e6aac0 state 1
    file-storage-3578  [002] .... 21167.465843: fsg_main_thread: next: bh ffff880111e6aac0 state 1
    file-storage-3578  [002] .... 21167.468201: fsg_main_thread: next: bh ffff880111e6bb00 state 2
     irq/17-dwc3-3579  [003] d..1 21167.468384: bulk_out_complete: compl: bh ffff880111e6bb00 state 1
    file-storage-3578  [002] .... 21167.468388: fsg_main_thread: next: bh ffff880111e6bb00 state 1
    file-storage-3578  [000] .... 21167.470770: fsg_main_thread: next: bh ffff880111e68b80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.471021: bulk_out_complete: compl: bh ffff880111e68b80 state 1
    file-storage-3578  [000] .... 21167.471026: fsg_main_thread: next: bh ffff880111e68b80 state 1
    file-storage-3578  [000] .... 21167.473417: fsg_main_thread: next: bh ffff880111e69bc0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.473642: bulk_out_complete: compl: bh ffff880111e69bc0 state 1
    file-storage-3578  [000] .... 21167.473646: fsg_main_thread: next: bh ffff880111e69bc0 state 1
    file-storage-3578  [000] .... 21167.476024: fsg_main_thread: next: bh ffff880111e6ac00 state 2
     irq/17-dwc3-3579  [003] d..1 21167.476198: bulk_out_complete: compl: bh ffff880111e6ac00 state 1
    file-storage-3578  [000] .... 21167.476202: fsg_main_thread: next: bh ffff880111e6ac00 state 1
    file-storage-3578  [002] .... 21167.478566: fsg_main_thread: next: bh ffff880111e6bc40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.478734: bulk_out_complete: compl: bh ffff880111e6bc40 state 1
    file-storage-3578  [002] .... 21167.478738: fsg_main_thread: next: bh ffff880111e6bc40 state 1
    file-storage-3578  [002] .... 21167.481112: fsg_main_thread: next: bh ffff880111e68cc0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.481290: bulk_out_complete: compl: bh ffff880111e68cc0 state 1
    file-storage-3578  [002] .... 21167.481293: fsg_main_thread: next: bh ffff880111e68cc0 state 1
    file-storage-3578  [002] .... 21167.483676: fsg_main_thread: next: bh ffff880111e69d00 state 2
     irq/17-dwc3-3579  [003] d..1 21167.483847: bulk_out_complete: compl: bh ffff880111e69d00 state 1
    file-storage-3578  [002] .... 21167.483851: fsg_main_thread: next: bh ffff880111e69d00 state 1
    file-storage-3578  [002] .... 21167.486217: fsg_main_thread: next: bh ffff880111e6ad40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.486391: bulk_out_complete: compl: bh ffff880111e6ad40 state 1
    file-storage-3578  [002] .... 21167.486395: fsg_main_thread: next: bh ffff880111e6ad40 state 1
    file-storage-3578  [002] .... 21167.488766: fsg_main_thread: next: bh ffff880111e6bd80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.488950: bulk_out_complete: compl: bh ffff880111e6bd80 state 1
    file-storage-3578  [002] .... 21167.488953: fsg_main_thread: next: bh ffff880111e6bd80 state 1
    file-storage-3578  [002] .... 21167.491346: fsg_main_thread: next: bh ffff880111e68e00 state 2
     irq/17-dwc3-3579  [003] d..1 21167.491512: bulk_out_complete: compl: bh ffff880111e68e00 state 1
    file-storage-3578  [002] .... 21167.491516: fsg_main_thread: next: bh ffff880111e68e00 state 1
    file-storage-3578  [002] .... 21167.493906: fsg_main_thread: next: bh ffff880111e69e40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.494125: bulk_out_complete: compl: bh ffff880111e69e40 state 1
    file-storage-3578  [002] .... 21167.494129: fsg_main_thread: next: bh ffff880111e69e40 state 1
    file-storage-3578  [000] .... 21167.496425: fsg_main_thread: next: bh ffff880111e6ae80 state 2
    file-storage-3578  [000] .... 21167.496489: fsg_main_thread: next: bh ffff880111e6ae80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.496718: bulk_out_complete: compl: bh ffff880111e6ae80 state 1
    file-storage-3578  [000] .... 21167.496722: fsg_main_thread: next: bh ffff880111e6ae80 state 1
    file-storage-3578  [000] .... 21167.499096: fsg_main_thread: next: bh ffff880111e6bec0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.499280: bulk_out_complete: compl: bh ffff880111e6bec0 state 1
    file-storage-3578  [000] .... 21167.499285: fsg_main_thread: next: bh ffff880111e6bec0 state 1
    file-storage-3578  [000] .... 21167.501779: fsg_main_thread: next: bh ffff880111e68f40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.501831: bulk_out_complete: compl: bh ffff880111e68f40 state 1
    file-storage-3578  [000] .... 21167.501835: fsg_main_thread: next: bh ffff880111e68f40 state 1
    file-storage-3578  [000] .... 21167.504206: fsg_main_thread: next: bh ffff880111e69f80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.504406: bulk_out_complete: compl: bh ffff880111e69f80 state 1
    file-storage-3578  [000] .... 21167.504410: fsg_main_thread: next: bh ffff880111e69f80 state 1
    file-storage-3578  [000] .... 21167.506918: fsg_main_thread: next: bh ffff880111e6afc0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.506971: bulk_out_complete: compl: bh ffff880111e6afc0 state 1
    file-storage-3578  [000] .... 21167.506974: fsg_main_thread: next: bh ffff880111e6afc0 state 1
    file-storage-3578  [000] .... 21167.509360: fsg_main_thread: next: bh ffff880111e68040 state 2
     irq/17-dwc3-3579  [003] d..1 21167.509568: bulk_out_complete: compl: bh ffff880111e68040 state 1
    file-storage-3578  [000] .... 21167.509572: fsg_main_thread: next: bh ffff880111e68040 state 1
    file-storage-3578  [002] .... 21167.511933: fsg_main_thread: next: bh ffff880111e69080 state 2
     irq/17-dwc3-3579  [003] d..1 21167.512110: bulk_out_complete: compl: bh ffff880111e69080 state 1
    file-storage-3578  [002] .... 21167.512114: fsg_main_thread: next: bh ffff880111e69080 state 1
    file-storage-3578  [002] .... 21167.514514: fsg_main_thread: next: bh ffff880111e6a0c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.514689: bulk_out_complete: compl: bh ffff880111e6a0c0 state 1
    file-storage-3578  [002] .... 21167.514692: fsg_main_thread: next: bh ffff880111e6a0c0 state 1
    file-storage-3578  [002] .... 21167.517039: fsg_main_thread: next: bh ffff880111e6b100 state 2
     irq/17-dwc3-3579  [003] d..1 21167.517245: bulk_out_complete: compl: bh ffff880111e6b100 state 1
    file-storage-3578  [002] .... 21167.517249: fsg_main_thread: next: bh ffff880111e6b100 state 1
    file-storage-3578  [000] .... 21167.519659: fsg_main_thread: next: bh ffff880111e68180 state 2
     irq/17-dwc3-3579  [003] d..1 21167.519825: bulk_out_complete: compl: bh ffff880111e68180 state 1
    file-storage-3578  [000] .... 21167.519829: fsg_main_thread: next: bh ffff880111e68180 state 1
    file-storage-3578  [002] .... 21167.522186: fsg_main_thread: next: bh ffff880111e691c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.522354: bulk_out_complete: compl: bh ffff880111e691c0 state 1
    file-storage-3578  [002] .... 21167.522357: fsg_main_thread: next: bh ffff880111e691c0 state 1
    file-storage-3578  [002] .... 21167.524702: fsg_main_thread: next: bh ffff880111e6a200 state 2
     irq/17-dwc3-3579  [003] d..1 21167.524906: bulk_out_complete: compl: bh ffff880111e6a200 state 1
    file-storage-3578  [002] .... 21167.524910: fsg_main_thread: next: bh ffff880111e6a200 state 1
    file-storage-3578  [002] .... 21167.527194: fsg_main_thread: next: bh ffff880111e6b240 state 2
    file-storage-3578  [000] .... 21167.527260: fsg_main_thread: next: bh ffff880111e6b240 state 2
     irq/17-dwc3-3579  [003] d..1 21167.527482: bulk_out_complete: compl: bh ffff880111e6b240 state 1
    file-storage-3578  [000] .... 21167.527486: fsg_main_thread: next: bh ffff880111e6b240 state 1
    file-storage-3578  [000] .... 21167.529849: fsg_main_thread: next: bh ffff880111e682c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.530016: bulk_out_complete: compl: bh ffff880111e682c0 state 1
    file-storage-3578  [000] .... 21167.530020: fsg_main_thread: next: bh ffff880111e682c0 state 1
    file-storage-3578  [000] .... 21167.532405: fsg_main_thread: next: bh ffff880111e69300 state 2
     irq/17-dwc3-3579  [003] d..1 21167.532605: bulk_out_complete: compl: bh ffff880111e69300 state 1
    file-storage-3578  [000] .... 21167.532609: fsg_main_thread: next: bh ffff880111e69300 state 1
    file-storage-3578  [000] .... 21167.534996: fsg_main_thread: next: bh ffff880111e6a340 state 2
     irq/17-dwc3-3579  [003] d..1 21167.535213: bulk_out_complete: compl: bh ffff880111e6a340 state 1
    file-storage-3578  [000] .... 21167.535217: fsg_main_thread: next: bh ffff880111e6a340 state 1
    file-storage-3578  [000] .... 21167.537630: fsg_main_thread: next: bh ffff880111e6b380 state 2
     irq/17-dwc3-3579  [003] d..1 21167.537853: bulk_out_complete: compl: bh ffff880111e6b380 state 1
    file-storage-3578  [000] .... 21167.537858: fsg_main_thread: next: bh ffff880111e6b380 state 1
    file-storage-3578  [000] .... 21167.540222: fsg_main_thread: next: bh ffff880111e68400 state 2
     irq/17-dwc3-3579  [003] d..1 21167.540391: bulk_out_complete: compl: bh ffff880111e68400 state 1
    file-storage-3578  [000] .... 21167.540395: fsg_main_thread: next: bh ffff880111e68400 state 1
    file-storage-3578  [000] .... 21167.542775: fsg_main_thread: next: bh ffff880111e69440 state 2
     irq/17-dwc3-3579  [003] d..1 21167.542997: bulk_out_complete: compl: bh ffff880111e69440 state 1
    file-storage-3578  [000] .... 21167.543000: fsg_main_thread: next: bh ffff880111e69440 state 1
    file-storage-3578  [000] .... 21167.545375: fsg_main_thread: next: bh ffff880111e6a480 state 2
     irq/17-dwc3-3579  [003] d..1 21167.545593: bulk_out_complete: compl: bh ffff880111e6a480 state 1
    file-storage-3578  [000] .... 21167.545597: fsg_main_thread: next: bh ffff880111e6a480 state 1
    file-storage-3578  [002] .... 21167.547962: fsg_main_thread: next: bh ffff880111e6b4c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.548155: bulk_out_complete: compl: bh ffff880111e6b4c0 state 1
    file-storage-3578  [002] .... 21167.548159: fsg_main_thread: next: bh ffff880111e6b4c0 state 1
    file-storage-3578  [000] .... 21167.550548: fsg_main_thread: next: bh ffff880111e68540 state 2
     irq/17-dwc3-3579  [003] d..1 21167.550743: bulk_out_complete: compl: bh ffff880111e68540 state 1
    file-storage-3578  [000] .... 21167.550750: fsg_main_thread: next: bh ffff880111e68540 state 1
    file-storage-3578  [000] .... 21167.553207: fsg_main_thread: next: bh ffff880111e69580 state 2
     irq/17-dwc3-3579  [003] d..1 21167.553440: bulk_out_complete: compl: bh ffff880111e69580 state 1
    file-storage-3578  [000] .... 21167.553444: fsg_main_thread: next: bh ffff880111e69580 state 1
    file-storage-3578  [000] .... 21167.555742: fsg_main_thread: next: bh ffff880111e6a5c0 state 2
    file-storage-3578  [000] .... 21167.555807: fsg_main_thread: next: bh ffff880111e6a5c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.555996: bulk_out_complete: compl: bh ffff880111e6a5c0 state 1
    file-storage-3578  [000] .... 21167.556001: fsg_main_thread: next: bh ffff880111e6a5c0 state 1
    file-storage-3578  [000] .... 21167.558364: fsg_main_thread: next: bh ffff880111e6b600 state 2
     irq/17-dwc3-3579  [003] d..1 21167.558542: bulk_out_complete: compl: bh ffff880111e6b600 state 1
    file-storage-3578  [000] .... 21167.558546: fsg_main_thread: next: bh ffff880111e6b600 state 1
    file-storage-3578  [000] .... 21167.560901: fsg_main_thread: next: bh ffff880111e68680 state 2
     irq/17-dwc3-3579  [003] d..1 21167.561077: bulk_out_complete: compl: bh ffff880111e68680 state 1
    file-storage-3578  [000] .... 21167.561081: fsg_main_thread: next: bh ffff880111e68680 state 1
    file-storage-3578  [000] .... 21167.563485: fsg_main_thread: next: bh ffff880111e696c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.563703: bulk_out_complete: compl: bh ffff880111e696c0 state 1
    file-storage-3578  [000] .... 21167.563707: fsg_main_thread: next: bh ffff880111e696c0 state 1
    file-storage-3578  [000] .... 21167.565997: fsg_main_thread: next: bh ffff880111e6a700 state 2
    file-storage-3578  [000] .... 21167.566061: fsg_main_thread: next: bh ffff880111e6a700 state 2
     irq/17-dwc3-3579  [003] d..1 21167.566340: bulk_out_complete: compl: bh ffff880111e6a700 state 1
    file-storage-3578  [000] .... 21167.566345: fsg_main_thread: next: bh ffff880111e6a700 state 1
    file-storage-3578  [000] .... 21167.568795: fsg_main_thread: next: bh ffff880111e6b740 state 2
     irq/17-dwc3-3579  [003] d..1 21167.569033: bulk_out_complete: compl: bh ffff880111e6b740 state 1
    file-storage-3578  [000] .... 21167.569037: fsg_main_thread: next: bh ffff880111e6b740 state 1
    file-storage-3578  [000] .... 21167.571427: fsg_main_thread: next: bh ffff880111e687c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.571614: bulk_out_complete: compl: bh ffff880111e687c0 state 1
    file-storage-3578  [000] .... 21167.571618: fsg_main_thread: next: bh ffff880111e687c0 state 1
    file-storage-3578  [000] .... 21167.573990: fsg_main_thread: next: bh ffff880111e69800 state 2
     irq/17-dwc3-3579  [003] d..1 21167.574167: bulk_out_complete: compl: bh ffff880111e69800 state 1
    file-storage-3578  [000] .... 21167.574172: fsg_main_thread: next: bh ffff880111e69800 state 1
    file-storage-3578  [000] .... 21167.576560: fsg_main_thread: next: bh ffff880111e6a840 state 2
     irq/17-dwc3-3579  [003] d..1 21167.576777: bulk_out_complete: compl: bh ffff880111e6a840 state 1
    file-storage-3578  [000] .... 21167.576782: fsg_main_thread: next: bh ffff880111e6a840 state 1
    file-storage-3578  [002] .... 21167.579170: fsg_main_thread: next: bh ffff880111e6b880 state 2
     irq/17-dwc3-3579  [003] d..1 21167.579347: bulk_out_complete: compl: bh ffff880111e6b880 state 1
    file-storage-3578  [002] .... 21167.579350: fsg_main_thread: next: bh ffff880111e6b880 state 1
    file-storage-3578  [002] .... 21167.581733: fsg_main_thread: next: bh ffff880111e68900 state 2
     irq/17-dwc3-3579  [003] d..1 21167.581942: bulk_out_complete: compl: bh ffff880111e68900 state 1
    file-storage-3578  [000] .... 21167.581948: fsg_main_thread: next: bh ffff880111e68900 state 1
    file-storage-3578  [000] .... 21167.584321: fsg_main_thread: next: bh ffff880111e69940 state 2
     irq/17-dwc3-3579  [003] d..1 21167.584528: bulk_out_complete: compl: bh ffff880111e69940 state 1
    file-storage-3578  [000] .... 21167.584532: fsg_main_thread: next: bh ffff880111e69940 state 1
    file-storage-3578  [000] .... 21167.586814: fsg_main_thread: next: bh ffff880111e6a980 state 2
    file-storage-3578  [000] .... 21167.587040: fsg_main_thread: next: bh ffff880111e6a980 state 2
     irq/17-dwc3-3579  [003] d..1 21167.587100: bulk_out_complete: compl: bh ffff880111e6a980 state 1
    file-storage-3578  [000] .... 21167.587104: fsg_main_thread: next: bh ffff880111e6a980 state 1
    file-storage-3578  [001] .... 21167.589396: fsg_main_thread: next: bh ffff880111e6b9c0 state 2
    file-storage-3578  [001] .... 21167.589638: fsg_main_thread: next: bh ffff880111e6b9c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.589687: bulk_out_complete: compl: bh ffff880111e6b9c0 state 1
    file-storage-3578  [001] .... 21167.589695: fsg_main_thread: next: bh ffff880111e6b9c0 state 1
    file-storage-3578  [001] .... 21167.592084: fsg_main_thread: next: bh ffff880111e68a40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.592344: bulk_out_complete: compl: bh ffff880111e68a40 state 1
    file-storage-3578  [001] .... 21167.592349: fsg_main_thread: next: bh ffff880111e68a40 state 1
    file-storage-3578  [000] .... 21167.594734: fsg_main_thread: next: bh ffff880111e69a80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.594902: bulk_out_complete: compl: bh ffff880111e69a80 state 1
    file-storage-3578  [000] .... 21167.594905: fsg_main_thread: next: bh ffff880111e69a80 state 1
    file-storage-3578  [002] .... 21167.597277: fsg_main_thread: next: bh ffff880111e6aac0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.597498: bulk_out_complete: compl: bh ffff880111e6aac0 state 1
    file-storage-3578  [002] .... 21167.597503: fsg_main_thread: next: bh ffff880111e6aac0 state 1
    file-storage-3578  [002] .... 21167.599871: fsg_main_thread: next: bh ffff880111e6bb00 state 2
     irq/17-dwc3-3579  [003] d..1 21167.600051: bulk_out_complete: compl: bh ffff880111e6bb00 state 1
    file-storage-3578  [002] .... 21167.600055: fsg_main_thread: next: bh ffff880111e6bb00 state 1
    file-storage-3578  [000] .... 21167.602428: fsg_main_thread: next: bh ffff880111e68b80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.602612: bulk_out_complete: compl: bh ffff880111e68b80 state 1
    file-storage-3578  [000] .... 21167.602616: fsg_main_thread: next: bh ffff880111e68b80 state 1
    file-storage-3578  [002] .... 21167.604996: fsg_main_thread: next: bh ffff880111e69bc0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.605196: bulk_out_complete: compl: bh ffff880111e69bc0 state 1
    file-storage-3578  [002] .... 21167.605200: fsg_main_thread: next: bh ffff880111e69bc0 state 1
    file-storage-3578  [002] .... 21167.607854: fsg_main_thread: next: bh ffff880111e6ac00 state 2
     irq/17-dwc3-3579  [003] d..1 21167.607903: bulk_out_complete: compl: bh ffff880111e6ac00 state 1
    file-storage-3578  [002] .... 21167.607908: fsg_main_thread: next: bh ffff880111e6ac00 state 1
    file-storage-3578  [002] .... 21167.610293: fsg_main_thread: next: bh ffff880111e6bc40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.610481: bulk_out_complete: compl: bh ffff880111e6bc40 state 1
    file-storage-3578  [002] .... 21167.610485: fsg_main_thread: next: bh ffff880111e6bc40 state 1
    file-storage-3578  [002] .... 21167.612872: fsg_main_thread: next: bh ffff880111e68cc0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.613057: bulk_out_complete: compl: bh ffff880111e68cc0 state 1
    file-storage-3578  [002] .... 21167.613061: fsg_main_thread: next: bh ffff880111e68cc0 state 1
    file-storage-3578  [002] .... 21167.615439: fsg_main_thread: next: bh ffff880111e69d00 state 2
     irq/17-dwc3-3579  [003] d..1 21167.615622: bulk_out_complete: compl: bh ffff880111e69d00 state 1
    file-storage-3578  [002] .... 21167.615626: fsg_main_thread: next: bh ffff880111e69d00 state 1
    file-storage-3578  [000] .... 21167.618013: fsg_main_thread: next: bh ffff880111e6ad40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.618241: bulk_out_complete: compl: bh ffff880111e6ad40 state 1
    file-storage-3578  [000] .... 21167.618245: fsg_main_thread: next: bh ffff880111e6ad40 state 1
    file-storage-3578  [002] .... 21167.620629: fsg_main_thread: next: bh ffff880111e6bd80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.620821: bulk_out_complete: compl: bh ffff880111e6bd80 state 1
    file-storage-3578  [002] .... 21167.620828: fsg_main_thread: next: bh ffff880111e6bd80 state 1
    file-storage-3578  [002] .... 21167.623233: fsg_main_thread: next: bh ffff880111e68e00 state 2
     irq/17-dwc3-3579  [003] d..1 21167.623430: bulk_out_complete: compl: bh ffff880111e68e00 state 1
    file-storage-3578  [002] .... 21167.623435: fsg_main_thread: next: bh ffff880111e68e00 state 1
    file-storage-3578  [002] .... 21167.625741: fsg_main_thread: next: bh ffff880111e69e40 state 2
    file-storage-3578  [000] .... 21167.625808: fsg_main_thread: next: bh ffff880111e69e40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.625997: bulk_out_complete: compl: bh ffff880111e69e40 state 1
    file-storage-3578  [000] .... 21167.626001: fsg_main_thread: next: bh ffff880111e69e40 state 1
    file-storage-3578  [000] .... 21167.628425: fsg_main_thread: next: bh ffff880111e6ae80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.628646: bulk_out_complete: compl: bh ffff880111e6ae80 state 1
    file-storage-3578  [000] .... 21167.628650: fsg_main_thread: next: bh ffff880111e6ae80 state 1
    file-storage-3578  [000] .... 21167.631048: fsg_main_thread: next: bh ffff880111e6bec0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.631272: bulk_out_complete: compl: bh ffff880111e6bec0 state 1
    file-storage-3578  [000] .... 21167.631276: fsg_main_thread: next: bh ffff880111e6bec0 state 1
    file-storage-3578  [000] .... 21167.633650: fsg_main_thread: next: bh ffff880111e68f40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.633834: bulk_out_complete: compl: bh ffff880111e68f40 state 1
    file-storage-3578  [000] .... 21167.633837: fsg_main_thread: next: bh ffff880111e68f40 state 1
    file-storage-3578  [002] .... 21167.636199: fsg_main_thread: next: bh ffff880111e69f80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.636413: bulk_out_complete: compl: bh ffff880111e69f80 state 1
    file-storage-3578  [002] .... 21167.636418: fsg_main_thread: next: bh ffff880111e69f80 state 1
    file-storage-3578  [002] .... 21167.638954: fsg_main_thread: next: bh ffff880111e6afc0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.639017: bulk_out_complete: compl: bh ffff880111e6afc0 state 1
    file-storage-3578  [002] .... 21167.639021: fsg_main_thread: next: bh ffff880111e6afc0 state 1
    file-storage-3578  [002] .... 21167.641367: fsg_main_thread: next: bh ffff880111e68040 state 2
     irq/17-dwc3-3579  [003] d..1 21167.641551: bulk_out_complete: compl: bh ffff880111e68040 state 1
    file-storage-3578  [002] .... 21167.641555: fsg_main_thread: next: bh ffff880111e68040 state 1
    file-storage-3578  [002] .... 21167.643911: fsg_main_thread: next: bh ffff880111e69080 state 2
     irq/17-dwc3-3579  [003] d..1 21167.644091: bulk_out_complete: compl: bh ffff880111e69080 state 1
    file-storage-3578  [002] .... 21167.644095: fsg_main_thread: next: bh ffff880111e69080 state 1
    file-storage-3578  [002] .... 21167.646466: fsg_main_thread: next: bh ffff880111e6a0c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.646641: bulk_out_complete: compl: bh ffff880111e6a0c0 state 1
    file-storage-3578  [002] .... 21167.646644: fsg_main_thread: next: bh ffff880111e6a0c0 state 1
    file-storage-3578  [002] .... 21167.649025: fsg_main_thread: next: bh ffff880111e6b100 state 2
     irq/17-dwc3-3579  [003] d..1 21167.649216: bulk_out_complete: compl: bh ffff880111e6b100 state 1
    file-storage-3578  [002] .... 21167.649220: fsg_main_thread: next: bh ffff880111e6b100 state 1
    file-storage-3578  [002] .... 21167.651583: fsg_main_thread: next: bh ffff880111e68180 state 2
     irq/17-dwc3-3579  [003] d..1 21167.651766: bulk_out_complete: compl: bh ffff880111e68180 state 1
    file-storage-3578  [002] .... 21167.651771: fsg_main_thread: next: bh ffff880111e68180 state 1
    file-storage-3578  [002] .... 21167.654164: fsg_main_thread: next: bh ffff880111e691c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.654352: bulk_out_complete: compl: bh ffff880111e691c0 state 1
    file-storage-3578  [002] .... 21167.654357: fsg_main_thread: next: bh ffff880111e691c0 state 1
    file-storage-3578  [002] .... 21167.656735: fsg_main_thread: next: bh ffff880111e6a200 state 2
     irq/17-dwc3-3579  [003] d..1 21167.656957: bulk_out_complete: compl: bh ffff880111e6a200 state 1
    file-storage-3578  [002] .... 21167.656962: fsg_main_thread: next: bh ffff880111e6a200 state 1
    file-storage-3578  [002] .... 21167.659244: fsg_main_thread: next: bh ffff880111e6b240 state 2
    file-storage-3578  [002] .... 21167.659309: fsg_main_thread: next: bh ffff880111e6b240 state 2
     irq/17-dwc3-3579  [003] d..1 21167.659501: bulk_out_complete: compl: bh ffff880111e6b240 state 1
    file-storage-3578  [002] .... 21167.659505: fsg_main_thread: next: bh ffff880111e6b240 state 1
    file-storage-3578  [002] .... 21167.661818: fsg_main_thread: next: bh ffff880111e682c0 state 2
    file-storage-3578  [002] .... 21167.661883: fsg_main_thread: next: bh ffff880111e682c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.662073: bulk_out_complete: compl: bh ffff880111e682c0 state 1
    file-storage-3578  [002] .... 21167.662078: fsg_main_thread: next: bh ffff880111e682c0 state 1
    file-storage-3578  [002] .... 21167.664457: fsg_main_thread: next: bh ffff880111e69300 state 2
     irq/17-dwc3-3579  [003] d..1 21167.664634: bulk_out_complete: compl: bh ffff880111e69300 state 1
    file-storage-3578  [000] .... 21167.664641: fsg_main_thread: next: bh ffff880111e69300 state 1
    file-storage-3578  [000] .... 21167.667013: fsg_main_thread: next: bh ffff880111e6a340 state 2
     irq/17-dwc3-3579  [003] d..1 21167.667216: bulk_out_complete: compl: bh ffff880111e6a340 state 1
    file-storage-3578  [000] .... 21167.667221: fsg_main_thread: next: bh ffff880111e6a340 state 1
    file-storage-3578  [000] .... 21167.669540: fsg_main_thread: next: bh ffff880111e6b380 state 2
    file-storage-3578  [000] .... 21167.669856: fsg_main_thread: next: bh ffff880111e6b380 state 2
     irq/17-dwc3-3579  [003] d..1 21167.669929: bulk_out_complete: compl: bh ffff880111e6b380 state 1
    file-storage-3578  [000] .... 21167.669933: fsg_main_thread: next: bh ffff880111e6b380 state 1
    file-storage-3578  [000] .... 21167.672585: fsg_main_thread: next: bh ffff880111e68400 state 2
     irq/17-dwc3-3579  [003] d..1 21167.672652: bulk_out_complete: compl: bh ffff880111e68400 state 1
    file-storage-3578  [000] .... 21167.672658: fsg_main_thread: next: bh ffff880111e68400 state 1
    file-storage-3578  [000] .... 21167.675043: fsg_main_thread: next: bh ffff880111e69440 state 2
     irq/17-dwc3-3579  [003] d..1 21167.675270: bulk_out_complete: compl: bh ffff880111e69440 state 1
    file-storage-3578  [000] .... 21167.675275: fsg_main_thread: next: bh ffff880111e69440 state 1
    file-storage-3578  [000] .... 21167.677670: fsg_main_thread: next: bh ffff880111e6a480 state 2
     irq/17-dwc3-3579  [003] d..1 21167.677858: bulk_out_complete: compl: bh ffff880111e6a480 state 1
    file-storage-3578  [002] .... 21167.677864: fsg_main_thread: next: bh ffff880111e6a480 state 1
    file-storage-3578  [002] .... 21167.680223: fsg_main_thread: next: bh ffff880111e6b4c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.680404: bulk_out_complete: compl: bh ffff880111e6b4c0 state 1
    file-storage-3578  [002] .... 21167.680408: fsg_main_thread: next: bh ffff880111e6b4c0 state 1
    file-storage-3578  [002] .... 21167.682783: fsg_main_thread: next: bh ffff880111e68540 state 2
     irq/17-dwc3-3579  [003] d..1 21167.682965: bulk_out_complete: compl: bh ffff880111e68540 state 1
    file-storage-3578  [002] .... 21167.682969: fsg_main_thread: next: bh ffff880111e68540 state 1
    file-storage-3578  [002] .... 21167.685308: fsg_main_thread: next: bh ffff880111e69580 state 2
     irq/17-dwc3-3579  [003] d..1 21167.685528: bulk_out_complete: compl: bh ffff880111e69580 state 1
    file-storage-3578  [002] .... 21167.685532: fsg_main_thread: next: bh ffff880111e69580 state 1
    file-storage-3578  [002] .... 21167.687918: fsg_main_thread: next: bh ffff880111e6a5c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.688148: bulk_out_complete: compl: bh ffff880111e6a5c0 state 1
    file-storage-3578  [002] .... 21167.688152: fsg_main_thread: next: bh ffff880111e6a5c0 state 1
    file-storage-3578  [002] .... 21167.690581: fsg_main_thread: next: bh ffff880111e6b600 state 2
     irq/17-dwc3-3579  [003] d..1 21167.690773: bulk_out_complete: compl: bh ffff880111e6b600 state 1
    file-storage-3578  [002] .... 21167.690778: fsg_main_thread: next: bh ffff880111e6b600 state 1
    file-storage-3578  [002] .... 21167.693182: fsg_main_thread: next: bh ffff880111e68680 state 2
     irq/17-dwc3-3579  [003] d..1 21167.693360: bulk_out_complete: compl: bh ffff880111e68680 state 1
    file-storage-3578  [002] .... 21167.693364: fsg_main_thread: next: bh ffff880111e68680 state 1
    file-storage-3578  [002] .... 21167.695807: fsg_main_thread: next: bh ffff880111e696c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.695990: bulk_out_complete: compl: bh ffff880111e696c0 state 1
    file-storage-3578  [002] .... 21167.695994: fsg_main_thread: next: bh ffff880111e696c0 state 1
    file-storage-3578  [002] .... 21167.698368: fsg_main_thread: next: bh ffff880111e6a700 state 2
     irq/17-dwc3-3579  [003] d..1 21167.698544: bulk_out_complete: compl: bh ffff880111e6a700 state 1
    file-storage-3578  [002] .... 21167.698548: fsg_main_thread: next: bh ffff880111e6a700 state 1
    file-storage-3578  [002] .... 21167.700937: fsg_main_thread: next: bh ffff880111e6b740 state 2
     irq/17-dwc3-3579  [003] d..1 21167.701155: bulk_out_complete: compl: bh ffff880111e6b740 state 1
    file-storage-3578  [002] .... 21167.701159: fsg_main_thread: next: bh ffff880111e6b740 state 1
    file-storage-3578  [002] .... 21167.703553: fsg_main_thread: next: bh ffff880111e687c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.703773: bulk_out_complete: compl: bh ffff880111e687c0 state 1
    file-storage-3578  [002] .... 21167.703778: fsg_main_thread: next: bh ffff880111e687c0 state 1
    file-storage-3578  [002] .... 21167.706161: fsg_main_thread: next: bh ffff880111e69800 state 2
     irq/17-dwc3-3579  [003] d..1 21167.706364: bulk_out_complete: compl: bh ffff880111e69800 state 1
    file-storage-3578  [002] .... 21167.706368: fsg_main_thread: next: bh ffff880111e69800 state 1
    file-storage-3578  [002] .... 21167.708740: fsg_main_thread: next: bh ffff880111e6a840 state 2
     irq/17-dwc3-3579  [003] d..1 21167.708922: bulk_out_complete: compl: bh ffff880111e6a840 state 1
    file-storage-3578  [002] .... 21167.708926: fsg_main_thread: next: bh ffff880111e6a840 state 1
    file-storage-3578  [002] .... 21167.711338: fsg_main_thread: next: bh ffff880111e6b880 state 2
     irq/17-dwc3-3579  [003] d..1 21167.711519: bulk_out_complete: compl: bh ffff880111e6b880 state 1
    file-storage-3578  [002] .... 21167.711523: fsg_main_thread: next: bh ffff880111e6b880 state 1
    file-storage-3578  [002] .... 21167.713897: fsg_main_thread: next: bh ffff880111e68900 state 2
     irq/17-dwc3-3579  [003] d..1 21167.714076: bulk_out_complete: compl: bh ffff880111e68900 state 1
    file-storage-3578  [002] .... 21167.714080: fsg_main_thread: next: bh ffff880111e68900 state 1
    file-storage-3578  [002] .... 21167.716436: fsg_main_thread: next: bh ffff880111e69940 state 2
     irq/17-dwc3-3579  [003] d..1 21167.716639: bulk_out_complete: compl: bh ffff880111e69940 state 1
    file-storage-3578  [002] .... 21167.716643: fsg_main_thread: next: bh ffff880111e69940 state 1
    file-storage-3578  [002] .... 21167.719034: fsg_main_thread: next: bh ffff880111e6a980 state 2
     irq/17-dwc3-3579  [003] d..1 21167.719256: bulk_out_complete: compl: bh ffff880111e6a980 state 1
    file-storage-3578  [002] .... 21167.719260: fsg_main_thread: next: bh ffff880111e6a980 state 1
    file-storage-3578  [000] .... 21167.721547: fsg_main_thread: next: bh ffff880111e6b9c0 state 2
    file-storage-3578  [000] .... 21167.721612: fsg_main_thread: next: bh ffff880111e6b9c0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.721855: bulk_out_complete: compl: bh ffff880111e6b9c0 state 1
    file-storage-3578  [000] .... 21167.721859: fsg_main_thread: next: bh ffff880111e6b9c0 state 1
    file-storage-3578  [000] .... 21167.724148: fsg_main_thread: next: bh ffff880111e68a40 state 2
    file-storage-3578  [000] .... 21167.724213: fsg_main_thread: next: bh ffff880111e68a40 state 2
     irq/17-dwc3-3579  [003] d..1 21167.724413: bulk_out_complete: compl: bh ffff880111e68a40 state 1
    file-storage-3578  [002] .... 21167.724419: fsg_main_thread: next: bh ffff880111e68a40 state 1
    file-storage-3578  [002] .... 21167.726827: fsg_main_thread: next: bh ffff880111e69a80 state 2
     irq/17-dwc3-3579  [003] d..1 21167.727066: bulk_out_complete: compl: bh ffff880111e69a80 state 1
    file-storage-3578  [002] .... 21167.727072: fsg_main_thread: next: bh ffff880111e69a80 state 1
    file-storage-3578  [002] .... 21167.729458: fsg_main_thread: next: bh ffff880111e6aac0 state 2
     irq/17-dwc3-3579  [003] d..1 21167.729666: bulk_out_complete: compl: bh ffff880111e6aac0 state 1
    file-storage-3578  [002] .... 21167.729670: fsg_main_thread: next: bh ffff880111e6aac0 state 1


-- 
balbi

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 800 bytes --]

  reply	other threads:[~2016-09-09 10:36 UTC|newest]

Thread overview: 41+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-09-02 18:10 Memory barrier needed with wake_up_process()? Alan Stern
2016-09-02 18:47 ` Paul E. McKenney
2016-09-02 20:29   ` Alan Stern
2016-09-03  9:07     ` Paul E. McKenney
2016-09-03 12:31     ` Peter Zijlstra
2016-09-03 14:26       ` Alan Stern
2016-09-03 14:49         ` Alan Stern
2016-09-05  8:33           ` Peter Zijlstra
2016-09-05 15:29             ` Alan Stern
2016-09-06 11:36               ` Peter Zijlstra
2016-09-06 11:43                 ` Felipe Balbi
2016-09-06 11:49                   ` Peter Zijlstra
2016-09-06 12:20                     ` Peter Zijlstra
2016-09-06 14:46                       ` Alan Stern
2016-09-06 15:05                         ` Peter Zijlstra
2016-09-07 10:12                         ` Felipe Balbi
2016-09-09 10:36                           ` Felipe Balbi [this message]
2016-09-09 16:12                             ` Alan Stern
2016-09-19 11:11                               ` Felipe Balbi
2016-09-19 17:35                                 ` Alan Stern
2016-09-20 10:12                                   ` Felipe Balbi
2016-09-20 12:53                                     ` Felipe Balbi
2016-09-20 14:40                                     ` Alan Stern
2017-01-16 11:12                                       ` Felipe Balbi
2017-01-16 17:09                                         ` Alan Stern
2017-01-16 19:04                                           ` Felipe Balbi
2017-01-16 19:19                                             ` Felipe Balbi
2016-09-02 19:18 ` Peter Zijlstra
2016-09-02 20:16   ` Alan Stern
2016-09-02 22:14     ` Peter Zijlstra
2016-09-02 22:16       ` Peter Zijlstra
2016-09-05  9:43         ` Will Deacon
2016-09-06 11:10           ` Peter Zijlstra
2016-09-02 22:16     ` Peter Zijlstra
2016-09-03  6:58       ` Felipe Balbi
2016-09-03 12:19         ` Peter Zijlstra
2016-09-03 13:51           ` Felipe Balbi
2016-09-05  8:09             ` Peter Zijlstra
2016-09-03 14:16           ` Alan Stern
2016-09-05  8:08             ` Peter Zijlstra
2016-09-05 14:33               ` Alan Stern

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=877falgy25.fsf@linux.intel.com \
    --to=felipe.balbi@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=mingo@redhat.com \
    --cc=paulmck@linux.vnet.ibm.com \
    --cc=peterz@infradead.org \
    --cc=stern@rowland.harvard.edu \
    --cc=will.deacon@arm.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 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.