On 01/12/2017 06:17 PM, Mathias Nyman wrote: > On 09.01.2017 18:42, Mathias Nyman wrote: >> On 09.01.2017 16:23, Patrice Chotard wrote: >>> On 01/09/2017 01:30 PM, Mathias Nyman wrote: >>>> >>>> On 09.01.2017 11:51, Patrice Chotard wrote: >>>>> Hi Mathias, Greg >>>> >>>> Hi >>>> >>>>> >>>>> I am working on ARM STi platform, since v4.10-rc1, when booting B2260 or B2120 STi boards platform >>>>> with nothing plugged on USB3 connector, i observed the following kernel logs : >>>>> >>>>> .... >>>>> [ 801.953836] usb usb6-port1: Cannot enable. Maybe the USB cable is bad? >>>> >>>> That's odd, why does it try to reset the port if there's nothing there? >>>> >>>>> [ 801.960455] xhci-hcd xhci-hcd.0.auto: Cannot set link state. >>>> >>>> This makes sense, nothing is connected, and we try to set link to U3 (PORT_PE == 0) >>>> >>>>> [ 801.966611] usb usb6-port1: cannot disable (err = -32) >>>> xhci reutns -EPIPE as we try to set link state to U3 while port is not enabled (PORT_PE == 0) >>>> >>>>> [ 806.083772] usb usb6-port1: Cannot enable. Maybe the USB cable is bad? >>>> >>>> Again, about 5 seconds later the same port is reset, while nothing is connected. >>>> Odd >>>> >>>>> [ 806.090370] xhci-hcd xhci-hcd.0.auto: Cannot set link state. >>>>> [ 806.096494] usb usb6-port1: cannot disable (err = -32) >>>>> [ 810.208766] usb usb6-port1: Cannot enable. Maybe the USB cable is bad? >>>>> [ 810.215374] xhci-hcd xhci-hcd.0.auto: Cannot set link state. >>>>> [ 810.221478] usb usb6-port1: cannot disable (err = -32) >>>>> [ 814.333767] usb usb6-port1: Cannot enable. Maybe the USB cable is bad? >>>>> [ 814.340364] xhci-hcd xhci-hcd.0.auto: Cannot set link state. >>>>> ..... >>>>> >>>>> Another interesting thing is even if i plugged a device (a mass storage device in my case) on the USB3 connector, >>>>> the above logs continue to appear. >>>>> >>>>> This is due to commit 37be66767e3ca "usb: hub: Fix auto-remount of safely removed or ejected USB-3 devices". >>>>> >>>>> I don't know if STi platforms are the only impacted by this issue. >>>>> >>>>> On v4.9 everything was ok. >>>>> >>>> >>>> Was there not a single "Cannot enable. Maybe USB cable is bad" message with 4.9? >>> >>> There is no "Cannot enable. Maybe USB cable is bad" message with 4.9 >>> >>>> >>>> Before commit 37be66767e3ca we forced the port to RxDetect state via Disabled state, >>>> and cleared port change flags when a usb3_port_disable() was called. >>>> >>>> after we just set the port to U3. Maybe those STi platforms depend on that cycle somehow? >>> >>> I really don't know :-( >>> >>>> >>>> Could you take logs (dmesg) of both 4.9 and 4.10-rc1 with both usb core and xhci debugging enabled: >>>> >>>> echo -n 'module xhci_hcd =p' > /sys/kernel/debug/dynamic_debug/control >>>> echo 'module usbcore =p' >/sys/kernel/debug/dynamic_debug/control >>> >>> >>> You will find below the 2 requested logs, in both case , no USB cable are plugged. >>> >>> v4.9 dmesg logs : >>> >>> ..... >>> [ 31.368022] hub 6-0:1.0: hub_resume >>> [ 31.368064] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 >>> [ 31.368071] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 >>> [ 31.368224] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 >> >> Looks like port is stuck in Compliance mode, this should only happen if a connect was detected, >> moving the port from RxDetect to Polling, and then timeout on polling to get to compliance. >> >> 4.9 is then stuck in a hub_suspend/resume loop with a port in compliance mode. >>> >>> >>> v4.10-rc1 dmesg logs : >>> >>> .... >>> [ 269.436617] usb usb6-port1: cannot disable (err = -32) >>> [ 269.464728] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0002 >>> [ 269.464756] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x340 >> >> I 4.10-rc1 we are again stuck in Compliance mode, but this time there was a event (00002) visible, maybe because >> the flags were not cleared or some other reason. Now are stuck in a port reset loop with the >> port in compliance mode. >> So the real question is why is the port in compliance mode when there are no devices connected.? >> >> I'll continue looking at this more tomorrow > > So with both 4.9 and 4.10-rc the ports are in Compliance mode state, even if nothing is connected > To me this looks like the real underlying issue. For some reason it didn't try to reset the port in 4.9, > and never got to the loop of port reset. > > In 4.9 the hub->events_bits[0] are not set, so the hub thread won't even ask for port status > on any ports. > > In 4.10-rc the hub->events_bits[0] is set for port 1, It will start handling port events, see the > compliance state and try to warm reset the port, and fail as it never sees port > > Any chance you could add extra debugging to xhci to show why the change bit is set? > Something like this: > > diff --git a/drivers/usb/host/xhci-hub.c b/drivers/usb/host/xhci-hub.c > index 0ef1690..e425d82 100644 > --- a/drivers/usb/host/xhci-hub.c > +++ b/drivers/usb/host/xhci-hub.c > @@ -1271,6 +1271,10 @@ int xhci_hub_status_data(struct usb_hcd *hcd, char *buf) > jiffies, bus_state->resume_done[i]))) { > buf[(i + 1) / 8] |= 1 << (i + 1) % 8; > status = 1; > + xhci_err(xhci, "portsc 0x%x, port_c_suspend:%d, resume_done:%d\n", > + temp, > + bus_state->port_c_suspend, > + bus_state->resume_done[i]); > } > if ((temp & PORT_RC)) > reset_change = true; > > > and run with 4.9 and 4.10-rc > > -Mathias Hi Mathias Thanks for your time For information i replaced xhci_err() by xhci_dbg() to avoid flooding kernel log which avoid to complete the kernel boot. Please find attached both kernel log files for v4.9 and v4.10-rc1. In v4.9_xhci-hub_additionnal_debug.txt, at the beginning of the trace portsc value is 0xa400340, then at [ 18.366392] it becomes 0x400340 (link state change) and then 0x2802a0 and back again to 0xa400340 In v4.10-rc1_xhci-hub_additionnal_debug.txt, at the beginning of the trace portsc value is 0xa400340, then at [ 5.557976] it becomes 0x400340 (link state change), and then 0x2802a0 or 0x680340 for ever .... Patrice
[ 4.391373] Freeing unused kernel memory: 2048K [ 4.396249] usb 2-1.1: new high-speed USB device number 3 using st-ehci [ 4.403013] hub 6-0:1.0: hub_resume [ 4.403055] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.403066] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.403247] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.403304] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.403444] hub 6-0:1.0: hub_suspend [ 4.403523] usb usb6: bus auto-suspend, wakeup 1 [ 4.403538] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.403545] usb usb6: suspend raced with wakeup event [ 4.403552] usb usb6: usb auto-resume [ 4.407946] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.418846] hub 6-0:1.0: hub_resume [ 4.418871] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.418881] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.418965] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.419002] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.419061] hub 6-0:1.0: hub_suspend [ 4.419110] usb usb6: bus auto-suspend, wakeup 1 [ 4.419125] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.419131] usb usb6: suspend raced with wakeup event [ 4.419138] usb usb6: usb auto-resume [ 4.424218] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.435080] hub 6-0:1.0: hub_resume [ 4.435122] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.435134] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.435316] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.435377] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.435464] hub 6-0:1.0: hub_suspend [ 4.435536] usb usb6: bus auto-suspend, wakeup 1 [ 4.435558] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.435567] usb usb6: suspend raced with wakeup event [ 4.435576] usb usb6: usb auto-resume [ 4.438004] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.448277] hub 6-0:1.0: hub_resume [ 4.448303] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.448312] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.449475] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.449520] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.449581] hub 6-0:1.0: hub_suspend [ 4.449628] usb usb6: bus auto-suspend, wakeup 1 [ 4.449643] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.449651] usb usb6: suspend raced with wakeup event [ 4.449658] usb usb6: usb auto-resume [ 4.452944] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.463038] hub 6-0:1.0: hub_resume [ 4.463063] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.463072] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.463156] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.463194] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.463249] hub 6-0:1.0: hub_suspend [ 4.463299] usb usb6: bus auto-suspend, wakeup 1 [ 4.463313] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.463320] usb usb6: suspend raced with wakeup event [ 4.463327] usb usb6: usb auto-resume [ 4.467966] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.478011] hub 6-0:1.0: hub_resume [ 4.478038] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.478047] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.478132] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.478168] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.478224] hub 6-0:1.0: hub_suspend [ 4.478273] usb usb6: bus auto-suspend, wakeup 1 [ 4.478288] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.478295] usb usb6: suspend raced with wakeup event [ 4.478303] usb usb6: usb auto-resume [ 4.482972] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.492992] hub 6-0:1.0: hub_resume [ 4.493019] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.493028] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.493149] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.493192] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.493247] hub 6-0:1.0: hub_suspend [ 4.493298] usb usb6: bus auto-suspend, wakeup 1 [ 4.493313] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.493321] usb usb6: suspend raced with wakeup event [ 4.493328] usb usb6: usb auto-resume [ 4.499666] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.508805] hub 6-0:1.0: hub_resume [ 4.508848] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.508860] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.509024] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.509085] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.509187] hub 6-0:1.0: hub_suspend [ 4.509269] usb usb6: bus auto-suspend, wakeup 1 [ 4.509290] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.509301] usb usb6: suspend raced with wakeup event [ 4.509311] usb usb6: usb auto-resume [ 4.512960] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.519948] usb 2-1.1: skipped 1 descriptor after configuration [ 4.522001] random: fast init done [ 4.525564] usb 2-1.1: default language 0x0409 [ 4.525571] hub 6-0:1.0: hub_resume [ 4.525603] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.525616] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.525847] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.525906] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.526002] hub 6-0:1.0: hub_suspend [ 4.526121] usb usb6: bus auto-suspend, wakeup 1 [ 4.526143] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.526153] usb usb6: suspend raced with wakeup event [ 4.526161] usb usb6: usb auto-resume [ 4.526366] usb 2-1.1: udev 3, busnum 2, minor = 130 [ 4.526864] usb 2-1.1: usb_probe_device [ 4.526879] usb 2-1.1: configuration #1 chosen from 1 choice [ 4.529077] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.529232] usb 2-1.1: adding 2-1.1:1.0 (config #1, interface 0) [ 4.529987] usb 2-1.1: adding 2-1.1:1.1 (config #1, interface 1) [ 4.530521] usb 2-1.1: adding 2-1.1:1.2 (config #1, interface 2) [ 4.534113] pwm-regulator pwm-regulator: Failed to get PWM: -517 [ 4.540423] hub 6-0:1.0: hub_resume [ 4.540457] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.540468] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.540567] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.540609] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.541036] hub 6-0:1.0: hub_suspend [ 4.541128] usb usb6: bus auto-suspend, wakeup 1 [ 4.541196] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.541227] usb usb6: suspend raced with wakeup event [ 4.541236] usb usb6: usb auto-resume [ 4.543713] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.552990] hub 6-0:1.0: hub_resume [ 4.553016] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.553025] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.553110] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.553150] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.553207] hub 6-0:1.0: hub_suspend [ 4.553257] usb usb6: bus auto-suspend, wakeup 1 [ 4.553272] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.553279] usb usb6: suspend raced with wakeup event [ 4.553286] usb usb6: usb auto-resume [ 4.557948] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.567990] hub 6-0:1.0: hub_resume [ 4.568017] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.568026] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.568127] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.568168] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.568229] hub 6-0:1.0: hub_suspend [ 4.568278] usb usb6: bus auto-suspend, wakeup 1 [ 4.568292] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.568300] usb usb6: suspend raced with wakeup event [ 4.568308] usb usb6: usb auto-resume [ 4.572950] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.582989] hub 6-0:1.0: hub_resume [ 4.583016] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.583025] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.583111] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.583147] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.583209] hub 6-0:1.0: hub_suspend [ 4.583260] usb usb6: bus auto-suspend, wakeup 1 [ 4.583275] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.583283] usb usb6: suspend raced with wakeup event [ 4.583291] usb usb6: usb auto-resume [ 4.587948] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.598019] hub 6-0:1.0: hub_resume [ 4.598046] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.598054] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.598154] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.598191] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.598250] hub 6-0:1.0: hub_suspend [ 4.598299] usb usb6: bus auto-suspend, wakeup 1 [ 4.598315] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.598323] usb usb6: suspend raced with wakeup event [ 4.598331] usb usb6: usb auto-resume [ 4.602954] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.613012] hub 6-0:1.0: hub_resume [ 4.613039] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.613048] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.613134] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.613172] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.613227] hub 6-0:1.0: hub_suspend [ 4.613277] usb usb6: bus auto-suspend, wakeup 1 [ 4.613291] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.613298] usb usb6: suspend raced with wakeup event [ 4.613305] usb usb6: usb auto-resume [ 4.617949] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.627987] hub 6-0:1.0: hub_resume [ 4.628015] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.628024] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.628109] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.628149] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.628249] hub 6-0:1.0: hub_suspend [ 4.628302] usb usb6: bus auto-suspend, wakeup 1 [ 4.628317] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.628325] usb usb6: suspend raced with wakeup event [ 4.628332] usb usb6: usb auto-resume [ 4.632949] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.642986] hub 6-0:1.0: hub_resume [ 4.643013] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.643022] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.643109] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.643147] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.643203] hub 6-0:1.0: hub_suspend [ 4.643250] usb usb6: bus auto-suspend, wakeup 1 [ 4.643264] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.643272] usb usb6: suspend raced with wakeup event [ 4.643278] usb usb6: usb auto-resume [ 4.647982] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.658014] hub 6-0:1.0: hub_resume [ 4.658041] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.658049] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.658139] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.658177] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.658234] hub 6-0:1.0: hub_suspend [ 4.658282] usb usb6: bus auto-suspend, wakeup 1 [ 4.658298] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.658305] usb usb6: suspend raced with wakeup event [ 4.658312] usb usb6: usb auto-resume [ 4.667963] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.678013] hub 6-0:1.0: hub_resume [ 4.678041] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.678050] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.678134] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.678173] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.678232] hub 6-0:1.0: hub_suspend [ 4.678280] usb usb6: bus auto-suspend, wakeup 1 [ 4.678296] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.678304] usb usb6: suspend raced with wakeup event [ 4.678312] usb usb6: usb auto-resume [ 4.681978] systemd[1]: System time before build time, advancing clock. [ 4.693010] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.693077] hub 6-0:1.0: hub_resume [ 4.693101] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.693110] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.693187] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.693225] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.693281] hub 6-0:1.0: hub_suspend [ 4.693332] usb usb6: bus auto-suspend, wakeup 1 [ 4.693347] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.693355] usb usb6: suspend raced with wakeup event [ 4.693362] usb usb6: usb auto-resume [ 4.702966] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.708241] hub 6-0:1.0: hub_resume [ 4.708279] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.708291] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.708403] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.708442] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.708501] hub 6-0:1.0: hub_suspend [ 4.708554] usb usb6: bus auto-suspend, wakeup 1 [ 4.708570] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.708577] usb usb6: suspend raced with wakeup event [ 4.708585] usb usb6: usb auto-resume [ 4.716641] systemd[1]: systemd 229 running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT +GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN) [ 4.717939] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.735394] systemd[1]: Detected architecture arm. [ 4.737971] hub 6-0:1.0: hub_resume [ 4.737993] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.738000] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.738081] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.738116] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.738168] hub 6-0:1.0: hub_suspend [ 4.738210] usb usb6: bus auto-suspend, wakeup 1 [ 4.738224] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.738230] usb usb6: suspend raced with wakeup event [ 4.738236] usb usb6: usb auto-resume [ 4.742956] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.747992] hub 6-0:1.0: hub_resume [ 4.748018] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.748026] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.748108] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.748146] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.748204] hub 6-0:1.0: hub_suspend [ 4.748255] usb usb6: bus auto-suspend, wakeup 1 [ 4.748270] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.748278] usb usb6: suspend raced with wakeup event [ 4.748285] usb usb6: usb auto-resume [ 4.752953] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.754028] systemd[1]: Set hostname to <sti>. [ 4.763202] hub 6-0:1.0: hub_resume [ 4.763228] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.763236] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.763320] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.763357] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.763413] hub 6-0:1.0: hub_suspend [ 4.763462] usb usb6: bus auto-suspend, wakeup 1 [ 4.763479] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.763487] usb usb6: suspend raced with wakeup event [ 4.763494] usb usb6: usb auto-resume [ 4.767952] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.782968] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.783049] hub 6-0:1.0: hub_resume [ 4.783074] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.783084] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.783185] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.783224] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.783282] hub 6-0:1.0: hub_suspend [ 4.783331] usb usb6: bus auto-suspend, wakeup 1 [ 4.783346] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.783353] usb usb6: suspend raced with wakeup event [ 4.783361] usb usb6: usb auto-resume [ 4.787953] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.798123] hub 6-0:1.0: hub_resume [ 4.798164] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.798177] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.798326] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.798465] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.799210] hub 6-0:1.0: hub_suspend [ 4.799282] usb usb6: bus auto-suspend, wakeup 1 [ 4.799303] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.799312] usb usb6: suspend raced with wakeup event [ 4.799321] usb usb6: usb auto-resume [ 4.807995] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.813170] hub 6-0:1.0: hub_resume [ 4.813208] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.813217] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.813340] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.813400] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.813561] hub 6-0:1.0: hub_suspend [ 4.813652] usb usb6: bus auto-suspend, wakeup 1 [ 4.813677] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.813688] usb usb6: suspend raced with wakeup event [ 4.813698] usb usb6: usb auto-resume [ 4.817989] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.828091] hub 6-0:1.0: hub_resume [ 4.828135] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.828144] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.828304] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.828414] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.828534] hub 6-0:1.0: hub_suspend [ 4.828732] usb usb6: bus auto-suspend, wakeup 1 [ 4.828793] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.828813] usb usb6: suspend raced with wakeup event [ 4.828863] usb usb6: usb auto-resume [ 4.837999] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.843180] hub 6-0:1.0: hub_resume [ 4.843212] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.843222] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.843323] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.843370] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.843434] hub 6-0:1.0: hub_suspend [ 4.843500] usb usb6: bus auto-suspend, wakeup 1 [ 4.843522] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.843534] usb usb6: suspend raced with wakeup event [ 4.843542] usb usb6: usb auto-resume [ 4.847996] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.858095] hub 6-0:1.0: hub_resume [ 4.858123] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.858131] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.858220] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.858259] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.858317] hub 6-0:1.0: hub_suspend [ 4.858369] usb usb6: bus auto-suspend, wakeup 1 [ 4.858384] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.858392] usb usb6: suspend raced with wakeup event [ 4.858398] usb usb6: usb auto-resume [ 4.862993] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.873099] hub 6-0:1.0: hub_resume [ 4.873145] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.873157] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.873291] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.873348] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.873432] hub 6-0:1.0: hub_suspend [ 4.873503] usb usb6: bus auto-suspend, wakeup 1 [ 4.873523] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.873531] usb usb6: suspend raced with wakeup event [ 4.873541] usb usb6: usb auto-resume [ 4.882976] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.888033] hub 6-0:1.0: hub_resume [ 4.888073] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.888084] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.888202] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.888243] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.888328] hub 6-0:1.0: hub_suspend [ 4.888387] usb usb6: bus auto-suspend, wakeup 1 [ 4.888402] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.888410] usb usb6: suspend raced with wakeup event [ 4.888416] usb usb6: usb auto-resume [ 4.897961] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.908006] hub 6-0:1.0: hub_resume [ 4.908036] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.908044] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.908129] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.908170] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.908229] hub 6-0:1.0: hub_suspend [ 4.908279] usb usb6: bus auto-suspend, wakeup 1 [ 4.908293] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.908302] usb usb6: suspend raced with wakeup event [ 4.908309] usb usb6: usb auto-resume [ 4.912954] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.923104] hub 6-0:1.0: hub_resume [ 4.923142] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.923155] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.923265] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.923317] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.923400] hub 6-0:1.0: hub_suspend [ 4.923464] usb usb6: bus auto-suspend, wakeup 1 [ 4.923484] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.923493] usb usb6: suspend raced with wakeup event [ 4.923501] usb usb6: usb auto-resume [ 4.927950] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.938008] hub 6-0:1.0: hub_resume [ 4.938036] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.938045] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.938140] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.938180] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.938237] hub 6-0:1.0: hub_suspend [ 4.938288] usb usb6: bus auto-suspend, wakeup 1 [ 4.938303] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.938310] usb usb6: suspend raced with wakeup event [ 4.938317] usb usb6: usb auto-resume [ 4.942982] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.953032] hub 6-0:1.0: hub_resume [ 4.953070] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.953080] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.953189] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.953236] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.953314] hub 6-0:1.0: hub_suspend [ 4.953379] usb usb6: bus auto-suspend, wakeup 1 [ 4.953401] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.953432] usb usb6: suspend raced with wakeup event [ 4.953443] usb usb6: usb auto-resume [ 4.962966] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.973019] hub 6-0:1.0: hub_resume [ 4.973051] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.973061] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.973173] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.973218] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.973288] hub 6-0:1.0: hub_suspend [ 4.973345] usb usb6: bus auto-suspend, wakeup 1 [ 4.973363] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.973373] usb usb6: suspend raced with wakeup event [ 4.973384] usb usb6: usb auto-resume [ 4.982971] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.988035] hub 6-0:1.0: hub_resume [ 4.988073] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 4.988082] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 4.988199] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 4.988252] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 4.988334] hub 6-0:1.0: hub_suspend [ 4.988402] usb usb6: bus auto-suspend, wakeup 1 [ 4.988426] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 4.988436] usb usb6: suspend raced with wakeup event [ 4.988445] usb usb6: usb auto-resume [ 4.992968] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.008032] hub 6-0:1.0: hub_resume [ 5.008069] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.008082] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.008215] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.008272] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.008356] hub 6-0:1.0: hub_suspend [ 5.008407] usb usb6: bus auto-suspend, wakeup 1 [ 5.008422] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.008430] usb usb6: suspend raced with wakeup event [ 5.008438] usb usb6: usb auto-resume [ 5.017946] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.027960] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.028023] hub 6-0:1.0: hub_resume [ 5.028054] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.028062] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.028143] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.028182] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.028239] hub 6-0:1.0: hub_suspend [ 5.028291] usb usb6: bus auto-suspend, wakeup 1 [ 5.028306] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.028362] usb usb6: suspend raced with wakeup event [ 5.028376] usb usb6: usb auto-resume [ 5.037950] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.048016] hub 6-0:1.0: hub_resume [ 5.048053] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.048065] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.048192] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.048254] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.048313] hub 6-0:1.0: hub_suspend [ 5.048363] usb usb6: bus auto-suspend, wakeup 1 [ 5.048378] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.048385] usb usb6: suspend raced with wakeup event [ 5.048392] usb usb6: usb auto-resume [ 5.057948] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.068015] hub 6-0:1.0: hub_resume [ 5.068052] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.068063] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.068187] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.068236] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.068324] hub 6-0:1.0: hub_suspend [ 5.068394] usb usb6: bus auto-suspend, wakeup 1 [ 5.068417] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.068428] usb usb6: suspend raced with wakeup event [ 5.068436] usb usb6: usb auto-resume [ 5.077949] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.087993] hub 6-0:1.0: hub_resume [ 5.088029] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.088039] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.088144] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.088183] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.088245] hub 6-0:1.0: hub_suspend [ 5.088298] usb usb6: bus auto-suspend, wakeup 1 [ 5.088315] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.088323] usb usb6: suspend raced with wakeup event [ 5.088330] usb usb6: usb auto-resume [ 5.097946] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.108015] hub 6-0:1.0: hub_resume [ 5.108047] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.108054] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.108209] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.108266] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.108350] hub 6-0:1.0: hub_suspend [ 5.108417] usb usb6: bus auto-suspend, wakeup 1 [ 5.108434] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.108443] usb usb6: suspend raced with wakeup event [ 5.108453] usb usb6: usb auto-resume [ 5.117969] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.128008] hub 6-0:1.0: hub_resume [ 5.128043] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.128054] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.128164] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.128215] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.128295] hub 6-0:1.0: hub_suspend [ 5.128372] usb usb6: bus auto-suspend, wakeup 1 [ 5.128393] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.128402] usb usb6: suspend raced with wakeup event [ 5.128414] usb usb6: usb auto-resume [ 5.132968] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.136080] systemd[1]: Reached target Remote File Systems. [ 5.143020] hub 6-0:1.0: hub_resume [ 5.143046] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.143056] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.143139] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.143177] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.143233] hub 6-0:1.0: hub_suspend [ 5.143284] usb usb6: bus auto-suspend, wakeup 1 [ 5.143299] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.143306] usb usb6: suspend raced with wakeup event [ 5.143313] usb usb6: usb auto-resume [ 5.147954] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.153396] systemd[1]: Listening on Journal Socket (/dev/log). [ 5.157985] hub 6-0:1.0: hub_resume [ 5.158007] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.158013] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.158094] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.158129] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.158184] hub 6-0:1.0: hub_suspend [ 5.158230] usb usb6: bus auto-suspend, wakeup 1 [ 5.158245] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.158250] usb usb6: suspend raced with wakeup event [ 5.158255] usb usb6: usb auto-resume [ 5.167941] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.173449] systemd[1]: Created slice User and Session Slice. [ 5.177958] hub 6-0:1.0: hub_resume [ 5.177980] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.177986] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.178066] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.178101] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.178156] hub 6-0:1.0: hub_suspend [ 5.178203] usb usb6: bus auto-suspend, wakeup 1 [ 5.178215] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.178221] usb usb6: suspend raced with wakeup event [ 5.178226] usb usb6: usb auto-resume [ 5.182953] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.188003] hub 6-0:1.0: hub_resume [ 5.188028] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.188038] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.188117] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.188153] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.188210] hub 6-0:1.0: hub_suspend [ 5.188260] usb usb6: bus auto-suspend, wakeup 1 [ 5.188275] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.188283] usb usb6: suspend raced with wakeup event [ 5.188290] usb usb6: usb auto-resume [ 5.192954] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.193429] systemd[1]: Listening on udev Control Socket. [ 5.203008] hub 6-0:1.0: hub_resume [ 5.203032] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.203041] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.203123] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.203160] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.203216] hub 6-0:1.0: hub_suspend [ 5.203265] usb usb6: bus auto-suspend, wakeup 1 [ 5.203279] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.203287] usb usb6: suspend raced with wakeup event [ 5.203295] usb usb6: usb auto-resume [ 5.207954] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.213326] systemd[1]: Listening on Syslog Socket. [ 5.217983] hub 6-0:1.0: hub_resume [ 5.218003] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.218010] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.218089] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.218123] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.218181] hub 6-0:1.0: hub_suspend [ 5.218241] usb usb6: bus auto-suspend, wakeup 1 [ 5.218259] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.218267] usb usb6: suspend raced with wakeup event [ 5.218274] usb usb6: usb auto-resume [ 5.227937] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.238023] hub 6-0:1.0: hub_resume [ 5.238051] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.238060] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.238150] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.238190] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.238250] hub 6-0:1.0: hub_suspend [ 5.238299] usb usb6: bus auto-suspend, wakeup 1 [ 5.238314] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.238322] usb usb6: suspend raced with wakeup event [ 5.238330] usb usb6: usb auto-resume [ 5.242989] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.246449] systemd[1]: Reached target Swap. [ 5.253021] hub 6-0:1.0: hub_resume [ 5.253057] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.253065] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.253152] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.253190] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.253246] hub 6-0:1.0: hub_suspend [ 5.253295] usb usb6: bus auto-suspend, wakeup 1 [ 5.253311] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.253319] usb usb6: suspend raced with wakeup event [ 5.253326] usb usb6: usb auto-resume [ 5.257955] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.263489] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. [ 5.273013] hub 6-0:1.0: hub_resume [ 5.273046] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.273055] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.273135] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.273174] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.273231] hub 6-0:1.0: hub_suspend [ 5.273279] usb usb6: bus auto-suspend, wakeup 1 [ 5.273294] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.273302] usb usb6: suspend raced with wakeup event [ 5.273309] usb usb6: usb auto-resume [ 5.277954] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.292993] hub 6-0:1.0: hub_resume [ 5.293024] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.293032] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.293114] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.293150] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.293206] hub 6-0:1.0: hub_suspend [ 5.293256] usb usb6: bus auto-suspend, wakeup 1 [ 5.293270] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.293278] usb usb6: suspend raced with wakeup event [ 5.293285] usb usb6: usb auto-resume [ 5.297954] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.308002] hub 6-0:1.0: hub_resume [ 5.308027] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.308036] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.308115] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.308152] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.308208] hub 6-0:1.0: hub_suspend [ 5.308258] usb usb6: bus auto-suspend, wakeup 1 [ 5.308273] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.308280] usb usb6: suspend raced with wakeup event [ 5.308288] usb usb6: usb auto-resume [ 5.312952] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.323015] hub 6-0:1.0: hub_resume [ 5.323039] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.323047] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.323130] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.323166] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.323223] hub 6-0:1.0: hub_suspend [ 5.323271] usb usb6: bus auto-suspend, wakeup 1 [ 5.323289] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.323297] usb usb6: suspend raced with wakeup event [ 5.323303] usb usb6: usb auto-resume [ 5.327951] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.338012] hub 6-0:1.0: hub_resume [ 5.338037] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.338044] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.338125] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.338160] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.338215] hub 6-0:1.0: hub_suspend [ 5.338262] usb usb6: bus auto-suspend, wakeup 1 [ 5.338276] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.338284] usb usb6: suspend raced with wakeup event [ 5.338292] usb usb6: usb auto-resume [ 5.342952] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.353016] hub 6-0:1.0: hub_resume [ 5.353039] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.353047] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.353128] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.353165] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.353222] hub 6-0:1.0: hub_suspend [ 5.353269] usb usb6: bus auto-suspend, wakeup 1 [ 5.353284] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.353291] usb usb6: suspend raced with wakeup event [ 5.353298] usb usb6: usb auto-resume [ 5.357951] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.368016] hub 6-0:1.0: hub_resume [ 5.368040] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.368048] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.368131] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.368166] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.368222] hub 6-0:1.0: hub_suspend [ 5.368274] usb usb6: bus auto-suspend, wakeup 1 [ 5.368288] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.368295] usb usb6: suspend raced with wakeup event [ 5.368302] usb usb6: usb auto-resume [ 5.372953] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.388047] hub 6-0:1.0: hub_resume [ 5.388090] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.388101] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.388223] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.388268] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.388344] hub 6-0:1.0: hub_suspend [ 5.388412] usb usb6: bus auto-suspend, wakeup 1 [ 5.388431] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.388440] usb usb6: suspend raced with wakeup event [ 5.388449] usb usb6: usb auto-resume [ 5.392990] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.403085] hub 6-0:1.0: hub_resume [ 5.403119] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.403130] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.403231] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.403275] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.403342] hub 6-0:1.0: hub_suspend [ 5.403410] usb usb6: bus auto-suspend, wakeup 1 [ 5.403433] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.403443] usb usb6: suspend raced with wakeup event [ 5.403452] usb usb6: usb auto-resume [ 5.408020] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.418079] hub 6-0:1.0: hub_resume [ 5.418120] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.418129] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.418259] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.418309] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.418379] hub 6-0:1.0: hub_suspend [ 5.418449] usb usb6: bus auto-suspend, wakeup 1 [ 5.418470] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.418480] usb usb6: suspend raced with wakeup event [ 5.418488] usb usb6: usb auto-resume [ 5.427968] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.438254] hub 6-0:1.0: hub_resume [ 5.438341] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.438389] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.438608] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.438733] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.438895] hub 6-0:1.0: hub_suspend [ 5.439000] usb usb6: bus auto-suspend, wakeup 1 [ 5.439020] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.439027] usb usb6: suspend raced with wakeup event [ 5.439035] usb usb6: usb auto-resume [ 5.448000] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.453052] hub 6-0:1.0: hub_resume [ 5.453096] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.453138] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.453294] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.453349] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.453439] hub 6-0:1.0: hub_suspend [ 5.453600] usb usb6: bus auto-suspend, wakeup 1 [ 5.453631] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.453640] usb usb6: suspend raced with wakeup event [ 5.453649] usb usb6: usb auto-resume [ 5.457994] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.468093] hub 6-0:1.0: hub_resume [ 5.468135] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.468165] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.468305] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.468395] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.468497] hub 6-0:1.0: hub_suspend [ 5.468568] usb usb6: bus auto-suspend, wakeup 1 [ 5.468604] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.468620] usb usb6: suspend raced with wakeup event [ 5.468629] usb usb6: usb auto-resume [ 5.472995] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.485471] hub 6-0:1.0: hub_resume [ 5.485515] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.485524] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.485632] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.485677] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.485934] hub 6-0:1.0: hub_suspend [ 5.486045] usb usb6: bus auto-suspend, wakeup 1 [ 5.486070] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.486080] usb usb6: suspend raced with wakeup event [ 5.486089] usb usb6: usb auto-resume [ 5.492993] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.498066] hub 6-0:1.0: hub_resume [ 5.498115] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.498130] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.500467] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.500542] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.500645] hub 6-0:1.0: hub_suspend [ 5.500713] usb usb6: bus auto-suspend, wakeup 1 [ 5.500748] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.500766] usb usb6: suspend raced with wakeup event [ 5.500776] usb usb6: usb auto-resume [ 5.503000] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.513089] hub 6-0:1.0: hub_resume [ 5.513132] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.513144] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.514345] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.514457] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.514644] hub 6-0:1.0: hub_suspend [ 5.514841] usb usb6: bus auto-suspend, wakeup 1 [ 5.514875] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.514885] usb usb6: suspend raced with wakeup event [ 5.514893] usb usb6: usb auto-resume [ 5.517998] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.528000] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.528189] hub 6-0:1.0: hub_resume [ 5.528232] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.528244] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.533135] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 5.533189] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 5.533262] hub 6-0:1.0: hub_suspend [ 5.533319] usb usb6: bus auto-suspend, wakeup 1 [ 5.533337] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.533345] usb usb6: suspend raced with wakeup event [ 5.533353] usb usb6: usb auto-resume [ 5.537492] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null) [ 5.539032] systemd-journald[108]: /dev/kmsg buffer overrun, some messages lost. [ 5.547958] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 5.557699] hub 6-0:1.0: hub_resume [ 5.557741] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.557754] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.557976] xhci-hcd xhci-hcd.0.auto: portsc 0x400340, port_c_suspend:0, resume_done:0 [ 5.558058] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0002 [ 5.558093] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 5.558103] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 5.558187] usb usb6-port1: link state change [ 5.558221] xhci-hcd xhci-hcd.0.auto: clear port link state change, actual port 0 status = 0x340 [ 5.558278] usb usb6-port1: do warm reset [ 5.558437] systemd-journald[108]: /dev/kmsg buffer overrun, some messages lost. [ 5.623028] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2b0 [ 5.623046] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x2b0 [ 5.623134] usb usb6-port1: not warm reset yet, waiting 50ms [ 5.658454] xhci-hcd xhci-hcd.0.auto: Port Status Change Event for port 2 [ 5.658471] xhci-hcd xhci-hcd.0.auto: handle_port_status: starting port polling. [ 5.658487] xhci-hcd xhci-hcd.0.auto: portsc 0x2802a0, port_c_suspend:0, resume_done:0 [ 5.683071] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2802e0 [ 5.683088] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x3002e0 [ 5.683187] usb usb6-port1: not warm reset yet, waiting 200ms [ 5.777987] xhci-hcd xhci-hcd.0.auto: portsc 0x2802e0, port_c_suspend:0, resume_done:0 [ 5.894043] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2802e0 [ 5.894061] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x3002e0 [ 5.894158] usb usb6-port1: not warm reset yet, waiting 200ms [ 6.027992] xhci-hcd xhci-hcd.0.auto: portsc 0x2802e0, port_c_suspend:0, resume_done:0 [ 6.103092] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x680340 [ 6.103110] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x700340 [ 6.103238] usb usb6-port1: not warm reset yet, waiting 200ms [ 6.277993] xhci-hcd xhci-hcd.0.auto: portsc 0x680340, port_c_suspend:0, resume_done:0 [ 6.313066] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x680340 [ 6.313085] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x700340 [ 6.313349] usb usb6-port1: not warm reset yet, waiting 200ms [ 6.313385] xhci-hcd xhci-hcd.0.auto: clear port reset change, actual port 0 status = 0x480340 [ 6.313464] xhci-hcd xhci-hcd.0.auto: clear port warm(BH) reset change, actual port 0 status = 0x400340 [ 6.313523] xhci-hcd xhci-hcd.0.auto: clear port link state change, actual port 0 status = 0x340 [ 6.313587] xhci-hcd xhci-hcd.0.auto: clear port connect change, actual port 0 status = 0x340 [ 6.313651] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x340 [ 6.313665] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x340 [ 6.313725] usb usb6-port1: not enabled, trying warm reset again... [ 6.413929] xhci-hcd xhci-hcd.0.auto: Port Status Change Event for port 2 [ 6.413951] xhci-hcd xhci-hcd.0.auto: handle_port_status: starting port polling. [ 6.413970] xhci-hcd xhci-hcd.0.auto: portsc 0x2802a0, port_c_suspend:0, resume_done:0 [ 6.523080] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2802e0 [ 6.523099] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x3002e0 [ 6.523242] usb usb6-port1: not warm reset yet, waiting 200ms [ 6.527998] xhci-hcd xhci-hcd.0.auto: portsc 0x2802e0, port_c_suspend:0, resume_done:0 [ 6.733075] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2802e0 [ 6.733092] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x3002e0 [ 6.733253] usb usb6-port1: not warm reset yet, waiting 200ms [ 6.778000] xhci-hcd xhci-hcd.0.auto: portsc 0x2802e0, port_c_suspend:0, resume_done:0 [ 6.943077] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x680340 [ 6.943093] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x700340 [ 6.943232] usb usb6-port1: not warm reset yet, waiting 200ms [ 7.028015] xhci-hcd xhci-hcd.0.auto: portsc 0x680340, port_c_suspend:0, resume_done:0 [ 7.153114] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x680340 [ 7.153130] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x700340 [ 7.153251] usb usb6-port1: not warm reset yet, waiting 200ms [ 7.153278] xhci-hcd xhci-hcd.0.auto: clear port reset change, actual port 0 status = 0x480340 [ 7.153344] xhci-hcd xhci-hcd.0.auto: clear port warm(BH) reset change, actual port 0 status = 0x400340 [ 7.153411] xhci-hcd xhci-hcd.0.auto: clear port link state change, actual port 0 status = 0x340 [ 7.153476] xhci-hcd xhci-hcd.0.auto: clear port connect change, actual port 0 status = 0x340 [ 7.153543] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x340 [ 7.153554] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x340 [ 7.153607] usb usb6-port1: not enabled, trying warm reset again... [ 7.253579] xhci-hcd xhci-hcd.0.auto: Port Status Change Event for port 2 [ 7.253601] xhci-hcd xhci-hcd.0.auto: handle_port_status: starting port polling. [ 7.253615] xhci-hcd xhci-hcd.0.auto: portsc 0x2802a0, port_c_suspend:0, resume_done:0 [ 7.277991] xhci-hcd xhci-hcd.0.auto: portsc 0x2802e0, port_c_suspend:0, resume_done:0 [ 7.363071] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2802e0 [ 7.363090] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x3002e0 [ 7.363212] usb usb6-port1: not warm reset yet, waiting 200ms [ 7.527994] xhci-hcd xhci-hcd.0.auto: portsc 0x2802e0, port_c_suspend:0, resume_done:0 [ 7.573084] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2802e0 [ 7.573104] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x3002e0 [ 7.573186] usb usb6-port1: not warm reset yet, waiting 200ms [ 7.778013] xhci-hcd xhci-hcd.0.auto: portsc 0x680340, port_c_suspend:0, resume_done:0 [ 7.783087] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x680340 [ 7.783106] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x700340 [ 7.783231] usb usb6-port1: not warm reset yet, waiting 200ms [ 7.848628] systemd-journald[108]: Received request to flush runtime journal from PID 1 [ 7.993063] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x680340 [ 7.993081] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x700340 [ 7.993178] usb usb6-port1: not warm reset yet, waiting 200ms [ 7.993211] xhci-hcd xhci-hcd.0.auto: clear port reset change, actual port 0 status = 0x480340 [ 7.993289] xhci-hcd xhci-hcd.0.auto: clear port warm(BH) reset change, actual port 0 status = 0x400340 [ 7.993357] xhci-hcd xhci-hcd.0.auto: clear port link state change, actual port 0 status = 0x340 [ 7.994530] xhci-hcd xhci-hcd.0.auto: clear port connect change, actual port 0 status = 0x340 [ 7.994698] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x340 [ 7.994708] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x340 [ 7.994795] usb usb6-port1: not enabled, trying warm reset again... [ 8.027983] xhci-hcd xhci-hcd.0.auto: xhci_hub_status_data: stopping port polling. [ 8.095253] xhci-hcd xhci-hcd.0.auto: Port Status Change Event for port 2 [ 8.095288] xhci-hcd xhci-hcd.0.auto: handle_port_status: starting port polling. [ 8.095312] xhci-hcd xhci-hcd.0.auto: portsc 0x2802a0, port_c_suspend:0, resume_done:0 [ 8.203080] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2802e0 [ 8.203101] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x3002e0 [ 8.203251] usb usb6-port1: not warm reset yet, waiting 200ms [ 8.278002] xhci-hcd xhci-hcd.0.auto: portsc 0x2802e0, port_c_suspend:0, resume_done:0 [ 8.415777] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2802e0 [ 8.415797] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x3002e0 [ 8.415892] usb usb6-port1: not warm reset yet, waiting 200ms [ 8.532998] xhci-hcd xhci-hcd.0.auto: portsc 0x680340, port_c_suspend:0, resume_done:0 [ 8.623156] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x680340 [ 8.623186] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x700340 [ 8.623293] usb usb6-port1: not warm reset yet, waiting 200ms [ 8.777992] xhci-hcd xhci-hcd.0.auto: portsc 0x680340, port_c_suspend:0, resume_done:0 [ 8.833128] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x680340 [ 8.833142] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x700340 [ 8.833315] usb usb6-port1: not warm reset yet, waiting 200ms [ 8.833390] xhci-hcd xhci-hcd.0.auto: clear port reset change, actual port 0 status = 0x480340 [ 8.833594] xhci-hcd xhci-hcd.0.auto: clear port warm(BH) reset change, actual port 0 status = 0x400340 [ 8.833719] xhci-hcd xhci-hcd.0.auto: clear port link state change, actual port 0 status = 0x340 [ 8.833882] xhci-hcd xhci-hcd.0.auto: clear port connect change, actual port 0 status = 0x340 [ 8.834064] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x340 [ 8.834112] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x340 [ 8.834278] usb usb6-port1: not enabled, trying warm reset again... [ 8.933922] xhci-hcd xhci-hcd.0.auto: Port Status Change Event for port 2 [ 8.933944] xhci-hcd xhci-hcd.0.auto: handle_port_status: starting port polling. [ 8.933960] xhci-hcd xhci-hcd.0.auto: portsc 0x2802a0, port_c_suspend:0, resume_done:0 [ 9.027991] xhci-hcd xhci-hcd.0.auto: portsc 0x2802e0, port_c_suspend:0, resume_done:0 [ 9.044633] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2802e0 [ 9.044651] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x3002e0 [ 9.044756] usb usb6-port1: not warm reset yet, waiting 200ms [ 9.253068] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2802e0 [ 9.253088] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x3002e0 [ 9.253183] usb usb6-port1: not warm reset yet, waiting 200ms [ 9.278000] xhci-hcd xhci-hcd.0.auto: portsc 0x2802e0, port_c_suspend:0, resume_done:0 [ 9.463142] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x680340 [ 9.463195] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x700340 [ 9.463317] usb usb6-port1: not warm reset yet, waiting 200ms [ 9.527997] xhci-hcd xhci-hcd.0.auto: portsc 0x680340, port_c_suspend:0, resume_done:0 [ 9.673092] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x680340 [ 9.673113] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x700340 [ 9.673365] usb usb6-port1: not warm reset yet, waiting 200ms [ 9.673402] xhci-hcd xhci-hcd.0.auto: clear port reset change, actual port 0 status = 0x480340 [ 9.673502] xhci-hcd xhci-hcd.0.auto: clear port warm(BH) reset change, actual port 0 status = 0x400340 [ 9.673572] xhci-hcd xhci-hcd.0.auto: clear port link state change, actual port 0 status = 0x340 [ 9.673634] xhci-hcd xhci-hcd.0.auto: clear port connect change, actual port 0 status = 0x340 [ 9.673696] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x340 [ 9.673709] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x340 [ 9.673761] usb usb6-port1: not enabled, trying warm reset again... [ 9.673771] usb usb6-port1: Cannot enable. Maybe the USB cable is bad? [ 9.680418] xhci-hcd xhci-hcd.0.auto: Cannot set link state. [ 9.722276] usb usb6-port1: cannot disable (err = -32) [ 9.754240] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0002 [ 9.754291] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x340 [ 9.754304] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x340 [ 9.754419] usb usb6-port1: do warm reset [ 9.782987] xhci-hcd xhci-hcd.0.auto: xhci_hub_status_data: stopping port polling. [ 9.813087] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2b0 [ 9.813105] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x2b0 [ 9.813445] usb usb6-port1: not warm reset yet, waiting 50ms [ 9.854726] xhci-hcd xhci-hcd.0.auto: Port Status Change Event for port 2 [ 9.854749] xhci-hcd xhci-hcd.0.auto: handle_port_status: starting port polling. [ 9.854772] xhci-hcd xhci-hcd.0.auto: portsc 0x2802a0, port_c_suspend:0, resume_done:0 [ 9.873105] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2802e0 [ 9.873122] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x3002e0 [ 9.873218] usb usb6-port1: not warm reset yet, waiting 200ms [ 10.027987] xhci-hcd xhci-hcd.0.auto: portsc 0x2802e0, port_c_suspend:0, resume_done:0 [ 10.083108] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2802e0 [ 10.083128] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x3002e0 [ 10.083251] usb usb6-port1: not warm reset yet, waiting 200ms [ 10.198474] sti-dwmac 9630000.dwmac eth0: IEEE 1588-2008 Advanced Timestamp supported [ 10.243158] sti-dwmac 9630000.dwmac eth0: registered PTP clock [ 10.249225] Link is Down [ 10.249360] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready [ 10.278001] xhci-hcd xhci-hcd.0.auto: portsc 0x680340, port_c_suspend:0, resume_done:0 [ 10.293104] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x680340 [ 10.293123] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x700340 [ 10.293225] usb usb6-port1: not warm reset yet, waiting 200ms [ 10.307147] Link is Up - 1000/Full [ 10.508078] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x680340 [ 10.508095] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x700340 [ 10.508233] usb usb6-port1: not warm reset yet, waiting 200ms [ 10.508269] xhci-hcd xhci-hcd.0.auto: clear port reset change, actual port 0 status = 0x480340 [ 10.508339] xhci-hcd xhci-hcd.0.auto: clear port warm(BH) reset change, actual port 0 status = 0x400340 [ 10.508407] xhci-hcd xhci-hcd.0.auto: clear port link state change, actual port 0 status = 0x340 [ 10.508479] xhci-hcd xhci-hcd.0.auto: clear port connect change, actual port 0 status = 0x340 [ 10.508757] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x340 [ 10.508772] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x340 [ 10.508846] usb usb6-port1: not enabled, trying warm reset again... [ 10.527988] xhci-hcd xhci-hcd.0.auto: xhci_hub_status_data: stopping port polling. [ 10.609211] xhci-hcd xhci-hcd.0.auto: Port Status Change Event for port 2 [ 10.609234] xhci-hcd xhci-hcd.0.auto: handle_port_status: starting port polling. [ 10.609252] xhci-hcd xhci-hcd.0.auto: portsc 0x2802a0, port_c_suspend:0, resume_done:0 [ 10.718080] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2802e0 [ 10.718099] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x3002e0 [ 10.718234] usb usb6-port1: not warm reset yet, waiting 200ms [ 10.777995] xhci-hcd xhci-hcd.0.auto: portsc 0x2802e0, port_c_suspend:0, resume_done:0 [ 10.928084] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2802e0 [ 10.928102] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x3002e0 [ 10.928199] usb usb6-port1: not warm reset yet, waiting 200ms [ 11.027996] xhci-hcd xhci-hcd.0.auto: portsc 0x680340, port_c_suspend:0, resume_done:0 [ 11.138153] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x680340 [ 11.138173] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x700340 [ 11.138275] usb usb6-port1: not warm reset yet, waiting 200ms [ 11.278008] xhci-hcd xhci-hcd.0.auto: portsc 0x680340, port_c_suspend:0, resume_done:0 [ 11.283067] Link is Down [ 11.348059] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x680340 [ 11.348078] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x700340 [ 11.348171] usb usb6-port1: not warm reset yet, waiting 200ms [ 11.348206] xhci-hcd xhci-hcd.0.auto: clear port reset change, actual port 0 status = 0x480340 [ 11.348289] xhci-hcd xhci-hcd.0.auto: clear port warm(BH) reset change, actual port 0 status = 0x400340 [ 11.348512] xhci-hcd xhci-hcd.0.auto: clear port link state change, actual port 0 status = 0x340 [ 11.348610] xhci-hcd xhci-hcd.0.auto: clear port connect change, actual port 0 status = 0x340 [ 11.348683] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x340 [ 11.348696] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x340 [ 11.348753] usb usb6-port1: not enabled, trying warm reset again... [ 11.448866] xhci-hcd xhci-hcd.0.auto: Port Status Change Event for port 2 [ 11.448888] xhci-hcd xhci-hcd.0.auto: handle_port_status: starting port polling. [ 11.448904] xhci-hcd xhci-hcd.0.auto: portsc 0x2802a0, port_c_suspend:0, resume_done:0 [ 11.527991] xhci-hcd xhci-hcd.0.auto: portsc 0x2802e0, port_c_suspend:0, resume_done:0 [ 11.558084] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2802e0 [ 11.558099] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x3002e0 [ 11.558185] usb usb6-port1: not warm reset yet, waiting 200ms [ 11.768091] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2802e0 [ 11.768110] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x3002e0 [ 11.768469] usb usb6-port1: not warm reset yet, waiting 200ms [ 11.777994] xhci-hcd xhci-hcd.0.auto: portsc 0x2802e0, port_c_suspend:0, resume_done:0 [ 11.978118] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x680340 [ 11.978137] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x700340 [ 11.978256] usb usb6-port1: not warm reset yet, waiting 200ms [ 12.027994] xhci-hcd xhci-hcd.0.auto: portsc 0x680340, port_c_suspend:0, resume_done:0 [ 12.188130] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x680340 [ 12.188149] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x700340 [ 12.188279] usb usb6-port1: not warm reset yet, waiting 200ms [ 12.188312] xhci-hcd xhci-hcd.0.auto: clear port reset change, actual port 0 status = 0x480340 [ 12.188388] xhci-hcd xhci-hcd.0.auto: clear port warm(BH) reset change, actual port 0 status = 0x400340 [ 12.188457] xhci-hcd xhci-hcd.0.auto: clear port link state change, actual port 0 status = 0x340 [ 12.188519] xhci-hcd xhci-hcd.0.auto: clear port connect change, actual port 0 status = 0x340 [ 12.188580] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x340 [ 12.188594] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x340 [ 12.188642] usb usb6-port1: not enabled, trying warm reset again... [ 12.277990] xhci-hcd xhci-hcd.0.auto: xhci_hub_status_data: stopping port polling. [ 12.288519] xhci-hcd xhci-hcd.0.auto: Port Status Change Event for port 2 [ 12.288538] xhci-hcd xhci-hcd.0.auto: handle_port_status: starting port polling. [ 12.288553] xhci-hcd xhci-hcd.0.auto: portsc 0x2802a0, port_c_suspend:0, resume_done:0 [ 12.398197] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2802e0 [ 12.398250] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x3002e0 [ 12.398439] usb usb6-port1: not warm reset yet, waiting 200ms [ 12.527990] xhci-hcd xhci-hcd.0.auto: portsc 0x2802e0, port_c_suspend:0, resume_done:0 [ 12.608092] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2802e0 [ 12.608113] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x3002e0 [ 12.608533] usb usb6-port1: not warm reset yet, waiting 200ms [ 12.778017] xhci-hcd xhci-hcd.0.auto: portsc 0x680340, port_c_suspend:0, resume_done:0 [ 12.818098] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x680340 [ 12.818122] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x700340 [ 12.818340] usb usb6-port1: not warm reset yet, waiting 200ms [ 13.028029] xhci-hcd xhci-hcd.0.auto: portsc 0x680340, port_c_suspend:0, resume_done:0 [ 13.028152] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x680340 [ 13.028166] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x700340 [ 13.028253] usb usb6-port1: not warm reset yet, waiting 200ms [ 13.028282] xhci-hcd xhci-hcd.0.auto: clear port reset change, actual port 0 status = 0x480340 [ 13.028349] xhci-hcd xhci-hcd.0.auto: clear port warm(BH) reset change, actual port 0 status = 0x400340 [ 13.028410] xhci-hcd xhci-hcd.0.auto: clear port link state change, actual port 0 status = 0x340 [ 13.028471] xhci-hcd xhci-hcd.0.auto: clear port connect change, actual port 0 status = 0x340 [ 13.028529] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x340 [ 13.028540] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x340 [ 13.028589] usb usb6-port1: not enabled, trying warm reset again... [ 13.128161] xhci-hcd xhci-hcd.0.auto: Port Status Change Event for port 2 [ 13.128183] xhci-hcd xhci-hcd.0.auto: handle_port_status: starting port polling. [ 13.128198] xhci-hcd xhci-hcd.0.auto: portsc 0x2802a0, port_c_suspend:0, resume_done:0 [ 13.240155] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2802e0 [ 13.240173] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x3002e0 [ 13.240365] usb usb6-port1: not warm reset yet, waiting 200ms [ 13.277996] xhci-hcd xhci-hcd.0.auto: portsc 0x2802e0, port_c_suspend:0, resume_done:0 [ 13.448070] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2802e0 [ 13.448084] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x3002e0 [ 13.448157] usb usb6-port1: not warm reset yet, waiting 200ms [ 13.527990] xhci-hcd xhci-hcd.0.auto: portsc 0x680340, port_c_suspend:0, resume_done:0 [ 13.658967] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x680340 [ 13.658986] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x700340 [ 13.659080] usb usb6-port1: not warm reset yet, waiting 200ms [ 13.777999] xhci-hcd xhci-hcd.0.auto: portsc 0x680340, port_c_suspend:0, resume_done:0 [ 13.868074] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x680340 [ 13.868092] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x700340 [ 13.868178] usb usb6-port1: not warm reset yet, waiting 200ms [ 13.868202] xhci-hcd xhci-hcd.0.auto: clear port reset change, actual port 0 status = 0x480340 [ 13.868263] xhci-hcd xhci-hcd.0.auto: clear port warm(BH) reset change, actual port 0 status = 0x400340 [ 13.868317] xhci-hcd xhci-hcd.0.auto: clear port link state change, actual port 0 status = 0x340 [ 13.868369] xhci-hcd xhci-hcd.0.auto: clear port connect change, actual port 0 status = 0x340 [ 13.868487] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x340 [ 13.868537] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x340 [ 13.868637] usb usb6-port1: not enabled, trying warm reset again... [ 13.868646] usb usb6-port1: Cannot enable. Maybe the USB cable is bad? [ 13.875301] xhci-hcd xhci-hcd.0.auto: Cannot set link state. [ 13.888136] usb usb6-port1: cannot disable (err = -32) [ 13.899852] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0002 [ 13.899903] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x340 [ 13.899915] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x340 [ 13.900017] usb usb6-port1: do warm reset [ 13.958110] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2b0 [ 13.958129] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x2b0 [ 13.958221] usb usb6-port1: not warm reset yet, waiting 50ms [ 13.999872] xhci-hcd xhci-hcd.0.auto: Port Status Change Event for port 2 [ 13.999894] xhci-hcd xhci-hcd.0.auto: handle_port_status: starting port polling. [ 13.999911] xhci-hcd xhci-hcd.0.auto: portsc 0x2802a0, port_c_suspend:0, resume_done:0 [ 14.018079] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2802e0 [ 14.018095] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x3002e0 [ 14.018267] usb usb6-port1: not warm reset yet, waiting 200ms [ 14.027994] xhci-hcd xhci-hcd.0.auto: portsc 0x2802e0, port_c_suspend:0, resume_done:0 [ 14.228618] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2802e0 [ 14.228638] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x3002e0 [ 14.228742] usb usb6-port1: not warm reset yet, waiting 200ms [ 14.277999] xhci-hcd xhci-hcd.0.auto: portsc 0x2802e0, port_c_suspend:0, resume_done:0 [ 14.438058] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x680340 [ 14.438075] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x700340 [ 14.438152] usb usb6-port1: not warm reset yet, waiting 200ms [ 14.528026] xhci-hcd xhci-hcd.0.auto: portsc 0x680340, port_c_suspend:0, resume_done:0 [ 14.648001] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x680340 [ 14.648016] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x700340 [ 14.648084] usb usb6-port1: not warm reset yet, waiting 200ms [ 14.648107] xhci-hcd xhci-hcd.0.auto: clear port reset change, actual port 0 status = 0x480340 [ 14.648167] xhci-hcd xhci-hcd.0.auto: clear port warm(BH) reset change, actual port 0 status = 0x400340 [ 14.648218] xhci-hcd xhci-hcd.0.auto: clear port link state change, actual port 0 status = 0x340 [ 14.648266] xhci-hcd xhci-hcd.0.auto: clear port connect change, actual port 0 status = 0x340 [ 14.648312] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x340 [ 14.648322] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x340 [ 14.648366] usb usb6-port1: not enabled, trying warm reset again... [ 14.748321] xhci-hcd xhci-hcd.0.auto: Port Status Change Event for port 2 [ 14.748337] xhci-hcd xhci-hcd.0.auto: handle_port_status: starting port polling. [ 14.748350] xhci-hcd xhci-hcd.0.auto: portsc 0x2802a0, port_c_suspend:0, resume_done:0 [ 14.777943] xhci-hcd xhci-hcd.0.auto: portsc 0x2802e0, port_c_suspend:0, resume_done:0 [ 14.857997] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2802e0 [ 14.858010] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x3002e0 [ 14.858075] usb usb6-port1: not warm reset yet, waiting 200ms [ 15.027944] xhci-hcd xhci-hcd.0.auto: portsc 0x2802e0, port_c_suspend:0, resume_done:0 [ 15.067986] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2802e0 [ 15.067999] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x3002e0 [ 15.068065] usb usb6-port1: not warm reset yet, waiting 200ms [ 15.277946] xhci-hcd xhci-hcd.0.auto: portsc 0x680340, port_c_suspend:0, resume_done:0 [ 15.278069] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x680340 [ 15.278096] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x700340 [ 15.278504] usb usb6-port1: not warm reset yet, waiting 200ms [ 15.443260] sti-dwmac 9630000.dwmac eth0: Link is Up - 1Gbps/Full - flow control rx/tx [ 15.452210] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [ 15.487991] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x680340 [ 15.488006] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x700340 [ 15.488072] usb usb6-port1: not warm reset yet, waiting 200ms [ 15.488097] xhci-hcd xhci-hcd.0.auto: clear port reset change, actual port 0 status = 0x480340 [ 15.488155] xhci-hcd xhci-hcd.0.auto: clear port warm(BH) reset change, actual port 0 status = 0x400340 [ 15.488204] xhci-hcd xhci-hcd.0.auto: clear port link state change, actual port 0 status = 0x340 [ 15.488249] xhci-hcd xhci-hcd.0.auto: clear port connect change, actual port 0 status = 0x340 [ 15.488297] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x340 [ 15.488307] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x340 [ 15.488346] usb usb6-port1: not enabled, trying warm reset again... [ 15.527942] xhci-hcd xhci-hcd.0.auto: xhci_hub_status_data: stopping port polling. [ 15.587946] xhci-hcd xhci-hcd.0.auto: Port Status Change Event for port 2 [ 15.587964] xhci-hcd xhci-hcd.0.auto: handle_port_status: starting port polling. [ 15.587979] xhci-hcd xhci-hcd.0.auto: portsc 0x2802a0, port_c_suspend:0, resume_done:0 [ 15.612363] Link is Up - 1000/Full [ 15.697997] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2802e0 [ 15.698011] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x3002e0 [ 15.698078] usb usb6-port1: not warm reset yet, waiting 200ms [ 15.777942] xhci-hcd xhci-hcd.0.auto: portsc 0x2802e0, port_c_suspend:0, resume_done:0 [ 15.907997] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2802e0 [ 15.908011] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x3002e0 [ 15.908076] usb usb6-port1: not warm reset yet, waiting 200ms [ 16.028011] xhci-hcd xhci-hcd.0.auto: portsc 0x680340, port_c_suspend:0, resume_done:0 [ 16.118095] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x680340 [ 16.118110] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x700340 [ 16.118176] usb usb6-port1: not warm reset yet, waiting 200ms
[ 18.092747] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.102826] hub 6-0:1.0: hub_resume [ 18.102860] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.102870] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.102989] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 18.103030] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 18.103116] hub 6-0:1.0: hub_suspend [ 18.103179] usb usb6: bus auto-suspend, wakeup 1 [ 18.103198] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.103206] usb usb6: suspend raced with wakeup event [ 18.103213] usb usb6: usb auto-resume [ 18.107776] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.118331] hub 6-0:1.0: hub_resume [ 18.118367] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.118376] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.118485] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 18.118536] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 18.118615] hub 6-0:1.0: hub_suspend [ 18.118682] usb usb6: bus auto-suspend, wakeup 1 [ 18.118702] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.118711] usb usb6: suspend raced with wakeup event [ 18.118718] usb usb6: usb auto-resume [ 18.122753] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.132839] hub 6-0:1.0: hub_resume [ 18.132875] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.132885] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.132986] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 18.133037] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 18.133119] hub 6-0:1.0: hub_suspend [ 18.133183] usb usb6: bus auto-suspend, wakeup 1 [ 18.133205] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.133215] usb usb6: suspend raced with wakeup event [ 18.133221] usb usb6: usb auto-resume [ 18.137747] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.147849] hub 6-0:1.0: hub_resume [ 18.147885] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.147896] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.148024] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 18.148074] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 18.148160] hub 6-0:1.0: hub_suspend [ 18.148219] usb usb6: bus auto-suspend, wakeup 1 [ 18.148235] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.148245] usb usb6: suspend raced with wakeup event [ 18.148252] usb usb6: usb auto-resume [ 18.152773] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.162890] hub 6-0:1.0: hub_resume [ 18.162929] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.162938] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.163035] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 18.163077] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 18.163339] hub 6-0:1.0: hub_suspend [ 18.163411] usb usb6: bus auto-suspend, wakeup 1 [ 18.163437] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.163448] usb usb6: suspend raced with wakeup event [ 18.163455] usb usb6: usb auto-resume [ 18.167748] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.177937] hub 6-0:1.0: hub_resume [ 18.177981] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.177991] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.178125] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 18.178177] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 18.178265] hub 6-0:1.0: hub_suspend [ 18.178328] usb usb6: bus auto-suspend, wakeup 1 [ 18.178347] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.178356] usb usb6: suspend raced with wakeup event [ 18.178363] usb usb6: usb auto-resume [ 18.182751] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.192852] hub 6-0:1.0: hub_resume [ 18.192926] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.192937] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.193107] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 18.193163] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 18.193247] hub 6-0:1.0: hub_suspend [ 18.193312] usb usb6: bus auto-suspend, wakeup 1 [ 18.193329] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.193336] usb usb6: suspend raced with wakeup event [ 18.193345] usb usb6: usb auto-resume [ 18.197760] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.207930] hub 6-0:1.0: hub_resume [ 18.207970] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.207992] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.208121] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 18.208172] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 18.208246] hub 6-0:1.0: hub_suspend [ 18.208307] usb usb6: bus auto-suspend, wakeup 1 [ 18.208325] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.208333] usb usb6: suspend raced with wakeup event [ 18.208341] usb usb6: usb auto-resume [ 18.212747] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.222792] hub 6-0:1.0: hub_resume [ 18.222823] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.222832] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.222955] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 18.223006] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 18.223090] hub 6-0:1.0: hub_suspend [ 18.223155] usb usb6: bus auto-suspend, wakeup 1 [ 18.223172] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.223180] usb usb6: suspend raced with wakeup event [ 18.223187] usb usb6: usb auto-resume [ 18.227771] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.237876] hub 6-0:1.0: hub_resume [ 18.237915] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.237925] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.238046] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 18.238101] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 18.238301] hub 6-0:1.0: hub_suspend [ 18.238373] usb usb6: bus auto-suspend, wakeup 1 [ 18.238390] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.238397] usb usb6: suspend raced with wakeup event [ 18.238403] usb usb6: usb auto-resume [ 18.242778] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.252958] hub 6-0:1.0: hub_resume [ 18.253000] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.253010] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.253921] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 18.253982] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 18.254073] hub 6-0:1.0: hub_suspend [ 18.254132] usb usb6: bus auto-suspend, wakeup 1 [ 18.254147] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.254154] usb usb6: suspend raced with wakeup event [ 18.254161] usb usb6: usb auto-resume [ 18.257767] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.267857] hub 6-0:1.0: hub_resume [ 18.267895] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.267905] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.268020] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 18.268067] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 18.268137] hub 6-0:1.0: hub_suspend [ 18.268204] usb usb6: bus auto-suspend, wakeup 1 [ 18.268222] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.268231] usb usb6: suspend raced with wakeup event [ 18.268239] usb usb6: usb auto-resume [ 18.272811] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.282883] hub 6-0:1.0: hub_resume [ 18.282923] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.282933] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.283261] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 18.283313] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 18.283399] hub 6-0:1.0: hub_suspend [ 18.283466] usb usb6: bus auto-suspend, wakeup 1 [ 18.283484] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.283493] usb usb6: suspend raced with wakeup event [ 18.283501] usb usb6: usb auto-resume [ 18.287771] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.297900] hub 6-0:1.0: hub_resume [ 18.297938] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.297947] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.298058] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 18.298099] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 18.298177] hub 6-0:1.0: hub_suspend [ 18.298243] usb usb6: bus auto-suspend, wakeup 1 [ 18.298261] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.298269] usb usb6: suspend raced with wakeup event [ 18.298276] usb usb6: usb auto-resume [ 18.302744] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.312950] hub 6-0:1.0: hub_resume [ 18.312987] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.312997] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.313164] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 18.313215] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 18.313372] hub 6-0:1.0: hub_suspend [ 18.316809] usb usb6: bus auto-suspend, wakeup 1 [ 18.316833] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.316842] usb usb6: suspend raced with wakeup event [ 18.316849] usb usb6: usb auto-resume [ 18.317768] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.328840] hub 6-0:1.0: hub_resume [ 18.328883] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.328895] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.329014] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 18.329057] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 18.329121] hub 6-0:1.0: hub_suspend [ 18.329175] usb usb6: bus auto-suspend, wakeup 1 [ 18.329193] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.329202] usb usb6: suspend raced with wakeup event [ 18.329209] usb usb6: usb auto-resume [ 18.332758] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.344140] hub 6-0:1.0: hub_resume [ 18.344179] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.344191] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.344318] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 18.344368] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 18.344451] hub 6-0:1.0: hub_suspend [ 18.344509] usb usb6: bus auto-suspend, wakeup 1 [ 18.344523] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.344530] usb usb6: suspend raced with wakeup event [ 18.344537] usb usb6: usb auto-resume [ 18.347747] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.357931] hub 6-0:1.0: hub_resume [ 18.357966] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.357976] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.358376] sti-dwmac 9630000.dwmac eth0: Link is Up - 1Gbps/Full - flow control rx/tx [ 18.366392] xhci-hcd xhci-hcd.0.auto: portsc 0x400340, port_c_suspend:0, resume_done:0 [ 18.367378] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0002 [ 18.367417] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.367426] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.367805] usb usb6-port1: link state change [ 18.367846] xhci-hcd xhci-hcd.0.auto: clear port link state change, actual port 0 status = 0x340 [ 18.367943] usb usb6-port1: do warm reset [ 18.368043] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [ 18.428313] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2b0 [ 18.428330] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x2b0 [ 18.428475] usb usb6-port1: not warm reset yet, waiting 50ms [ 18.468135] xhci-hcd xhci-hcd.0.auto: Port Status Change Event for port 2 [ 18.468155] xhci-hcd xhci-hcd.0.auto: handle_port_status: starting port polling. [ 18.468167] xhci-hcd xhci-hcd.0.auto: portsc 0x2802a0, port_c_suspend:0, resume_done:0 [ 18.487840] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2802e0 [ 18.487855] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x3002e0 [ 18.488636] xhci-hcd xhci-hcd.0.auto: clear port reset change, actual port 0 status = 0x802e0 [ 18.488736] xhci-hcd xhci-hcd.0.auto: clear port warm(BH) reset change, actual port 0 status = 0x2e0 [ 18.488803] xhci-hcd xhci-hcd.0.auto: clear port link state change, actual port 0 status = 0x2e0 [ 18.488869] xhci-hcd xhci-hcd.0.auto: clear port connect change, actual port 0 status = 0x2e0 [ 18.489012] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2e0 [ 18.489026] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x2e0 [ 18.489112] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2e0 [ 18.489122] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x2e0 [ 18.489182] xhci-hcd xhci-hcd.0.auto: Disable port 0 [ 18.489239] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x280 [ 18.489247] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x280 [ 18.489296] xhci-hcd xhci-hcd.0.auto: Enable port 0 [ 18.489357] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0002 [ 18.489386] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x2a0 [ 18.489395] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x2a0 [ 18.489489] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe0002a0 [ 18.489547] hub 6-0:1.0: hub_suspend [ 18.489606] usb usb6: bus auto-suspend, wakeup 1 [ 18.489624] xhci-hcd xhci-hcd.0.auto: xhci_hub_status_data: stopping port polling. [ 18.522772] xhci-hcd xhci-hcd.0.auto: xhci_hub_status_data: stopping port polling. [ 18.543748] Link is Up - 1000/Full [ 18.863014] xhci-hcd xhci-hcd.0.auto: Port Status Change Event for port 2 [ 18.863033] xhci-hcd xhci-hcd.0.auto: resume root hub [ 18.863073] xhci-hcd xhci-hcd.0.auto: handle_port_status: starting port polling. [ 18.863089] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.863333] usb usb6: usb wakeup-resume [ 18.863355] usb usb6: usb auto-resume [ 18.863379] hub 6-0:1.0: hub_resume [ 18.863410] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.863419] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.863708] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 18.863759] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 18.863851] hub 6-0:1.0: hub_suspend [ 18.863910] usb usb6: bus auto-suspend, wakeup 1 [ 18.863927] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.863935] usb usb6: suspend raced with wakeup event [ 18.863943] usb usb6: usb auto-resume [ 18.867749] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.880017] hub 6-0:1.0: hub_resume [ 18.880060] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.880071] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.880217] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 18.880260] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 18.880342] hub 6-0:1.0: hub_suspend [ 18.880409] usb usb6: bus auto-suspend, wakeup 1 [ 18.880427] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.880435] usb usb6: suspend raced with wakeup event [ 18.880442] usb usb6: usb auto-resume [ 18.882749] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.892946] hub 6-0:1.0: hub_resume [ 18.892989] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.892999] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.893115] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 18.893167] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 18.893246] hub 6-0:1.0: hub_suspend [ 18.893304] usb usb6: bus auto-suspend, wakeup 1 [ 18.893318] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.893327] usb usb6: suspend raced with wakeup event [ 18.893333] usb usb6: usb auto-resume [ 18.897754] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.907840] hub 6-0:1.0: hub_resume [ 18.907875] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.907886] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.908003] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 18.908055] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 18.908140] hub 6-0:1.0: hub_suspend [ 18.908206] usb usb6: bus auto-suspend, wakeup 1 [ 18.908223] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.908232] usb usb6: suspend raced with wakeup event [ 18.908239] usb usb6: usb auto-resume [ 18.912748] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.922857] hub 6-0:1.0: hub_resume [ 18.922896] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.922906] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.925705] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 18.925763] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 18.925866] hub 6-0:1.0: hub_suspend [ 18.925927] usb usb6: bus auto-suspend, wakeup 1 [ 18.925946] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.925954] usb usb6: suspend raced with wakeup event [ 18.925961] usb usb6: usb auto-resume [ 18.927781] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.937854] hub 6-0:1.0: hub_resume [ 18.937892] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.937903] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.938009] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 18.938058] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 18.938140] hub 6-0:1.0: hub_suspend [ 18.938204] usb usb6: bus auto-suspend, wakeup 1 [ 18.938224] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.938233] usb usb6: suspend raced with wakeup event [ 18.938241] usb usb6: usb auto-resume [ 18.942754] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.952857] hub 6-0:1.0: hub_resume [ 18.952898] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.952909] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.953040] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 18.953093] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 18.953163] hub 6-0:1.0: hub_suspend [ 18.953218] usb usb6: bus auto-suspend, wakeup 1 [ 18.953233] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.953240] usb usb6: suspend raced with wakeup event [ 18.953248] usb usb6: usb auto-resume [ 18.957766] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.967872] hub 6-0:1.0: hub_resume [ 18.967912] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.967923] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.968028] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 18.968077] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 18.968155] hub 6-0:1.0: hub_suspend [ 18.968218] usb usb6: bus auto-suspend, wakeup 1 [ 18.968236] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.968244] usb usb6: suspend raced with wakeup event [ 18.968253] usb usb6: usb auto-resume [ 18.972755] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.982929] hub 6-0:1.0: hub_resume [ 18.982969] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.982979] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.983095] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 18.983142] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 18.983225] hub 6-0:1.0: hub_suspend [ 18.983293] usb usb6: bus auto-suspend, wakeup 1 [ 18.983311] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.983320] usb usb6: suspend raced with wakeup event [ 18.983328] usb usb6: usb auto-resume [ 18.987749] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.997826] hub 6-0:1.0: hub_resume [ 18.997867] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 18.997879] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 18.998006] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 18.998052] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 18.998119] hub 6-0:1.0: hub_suspend [ 18.998194] usb usb6: bus auto-suspend, wakeup 1 [ 18.998212] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 18.998219] usb usb6: suspend raced with wakeup event [ 18.998226] usb usb6: usb auto-resume [ 19.002767] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.012825] hub 6-0:1.0: hub_resume [ 19.012863] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.012873] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.012986] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.013040] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.013114] hub 6-0:1.0: hub_suspend [ 19.013180] usb usb6: bus auto-suspend, wakeup 1 [ 19.013197] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.013206] usb usb6: suspend raced with wakeup event [ 19.013213] usb usb6: usb auto-resume [ 19.017776] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.027816] hub 6-0:1.0: hub_resume [ 19.027851] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.027860] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.027980] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.028036] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.028115] hub 6-0:1.0: hub_suspend [ 19.028178] usb usb6: bus auto-suspend, wakeup 1 [ 19.028196] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.028204] usb usb6: suspend raced with wakeup event [ 19.028210] usb usb6: usb auto-resume [ 19.032750] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.042891] hub 6-0:1.0: hub_resume [ 19.042929] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.042939] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.043043] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.043097] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.043177] hub 6-0:1.0: hub_suspend [ 19.043239] usb usb6: bus auto-suspend, wakeup 1 [ 19.043259] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.043269] usb usb6: suspend raced with wakeup event [ 19.043276] usb usb6: usb auto-resume [ 19.047757] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.057819] hub 6-0:1.0: hub_resume [ 19.057859] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.057870] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.057991] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.058040] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.058131] hub 6-0:1.0: hub_suspend [ 19.058187] usb usb6: bus auto-suspend, wakeup 1 [ 19.058204] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.058212] usb usb6: suspend raced with wakeup event [ 19.058218] usb usb6: usb auto-resume [ 19.062755] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.072858] hub 6-0:1.0: hub_resume [ 19.072891] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.072902] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.073025] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.073079] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.073160] hub 6-0:1.0: hub_suspend [ 19.073235] usb usb6: bus auto-suspend, wakeup 1 [ 19.073253] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.073264] usb usb6: suspend raced with wakeup event [ 19.073271] usb usb6: usb auto-resume [ 19.077769] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.087836] hub 6-0:1.0: hub_resume [ 19.087871] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.087880] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.087992] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.088059] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.088142] hub 6-0:1.0: hub_suspend [ 19.088201] usb usb6: bus auto-suspend, wakeup 1 [ 19.088219] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.088228] usb usb6: suspend raced with wakeup event [ 19.088236] usb usb6: usb auto-resume [ 19.092756] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.102834] hub 6-0:1.0: hub_resume [ 19.102872] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.102883] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.102988] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.103043] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.103130] hub 6-0:1.0: hub_suspend [ 19.103192] usb usb6: bus auto-suspend, wakeup 1 [ 19.103209] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.103216] usb usb6: suspend raced with wakeup event [ 19.103224] usb usb6: usb auto-resume [ 19.107751] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.117942] hub 6-0:1.0: hub_resume [ 19.117984] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.117996] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.121222] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.121273] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.121370] hub 6-0:1.0: hub_suspend [ 19.121433] usb usb6: bus auto-suspend, wakeup 1 [ 19.121448] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.121456] usb usb6: suspend raced with wakeup event [ 19.121462] usb usb6: usb auto-resume [ 19.122743] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.132829] hub 6-0:1.0: hub_resume [ 19.132868] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.132878] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.132984] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.133036] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.133120] hub 6-0:1.0: hub_suspend [ 19.133189] usb usb6: bus auto-suspend, wakeup 1 [ 19.133272] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.133283] usb usb6: suspend raced with wakeup event [ 19.133291] usb usb6: usb auto-resume [ 19.137752] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.147850] hub 6-0:1.0: hub_resume [ 19.147892] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.147903] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.148022] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.148069] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.148138] hub 6-0:1.0: hub_suspend [ 19.148209] usb usb6: bus auto-suspend, wakeup 1 [ 19.148226] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.148235] usb usb6: suspend raced with wakeup event [ 19.148243] usb usb6: usb auto-resume [ 19.152760] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.162928] hub 6-0:1.0: hub_resume [ 19.162981] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.162991] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.163117] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.163164] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.163230] hub 6-0:1.0: hub_suspend [ 19.163292] usb usb6: bus auto-suspend, wakeup 1 [ 19.163311] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.163319] usb usb6: suspend raced with wakeup event [ 19.163327] usb usb6: usb auto-resume [ 19.167740] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.177898] hub 6-0:1.0: hub_resume [ 19.177954] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.177967] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.178143] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.178195] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.178299] hub 6-0:1.0: hub_suspend [ 19.178361] usb usb6: bus auto-suspend, wakeup 1 [ 19.178379] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.178388] usb usb6: suspend raced with wakeup event [ 19.178395] usb usb6: usb auto-resume [ 19.182753] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.192777] hub 6-0:1.0: hub_resume [ 19.192814] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.192824] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.192952] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.193001] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.193082] hub 6-0:1.0: hub_suspend [ 19.193144] usb usb6: bus auto-suspend, wakeup 1 [ 19.193159] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.193167] usb usb6: suspend raced with wakeup event [ 19.193174] usb usb6: usb auto-resume [ 19.197758] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.208438] hub 6-0:1.0: hub_resume [ 19.208473] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.208482] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.208640] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.208700] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.208782] hub 6-0:1.0: hub_suspend [ 19.208834] usb usb6: bus auto-suspend, wakeup 1 [ 19.208853] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.208860] usb usb6: suspend raced with wakeup event [ 19.208868] usb usb6: usb auto-resume [ 19.212769] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.222840] hub 6-0:1.0: hub_resume [ 19.222881] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.222891] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.222991] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.223043] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.223130] hub 6-0:1.0: hub_suspend [ 19.223200] usb usb6: bus auto-suspend, wakeup 1 [ 19.223217] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.223226] usb usb6: suspend raced with wakeup event [ 19.223233] usb usb6: usb auto-resume [ 19.227792] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.237889] hub 6-0:1.0: hub_resume [ 19.237932] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.237943] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.238063] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.238109] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.238179] hub 6-0:1.0: hub_suspend [ 19.238247] usb usb6: bus auto-suspend, wakeup 1 [ 19.238265] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.238275] usb usb6: suspend raced with wakeup event [ 19.238283] usb usb6: usb auto-resume [ 19.242754] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.252810] hub 6-0:1.0: hub_resume [ 19.252847] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.252857] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.252971] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.253047] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.253172] hub 6-0:1.0: hub_suspend [ 19.253247] usb usb6: bus auto-suspend, wakeup 1 [ 19.253267] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.253275] usb usb6: suspend raced with wakeup event [ 19.253283] usb usb6: usb auto-resume [ 19.257754] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.268129] hub 6-0:1.0: hub_resume [ 19.268165] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.268176] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.268276] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.268331] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.268409] hub 6-0:1.0: hub_suspend [ 19.268472] usb usb6: bus auto-suspend, wakeup 1 [ 19.268491] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.268499] usb usb6: suspend raced with wakeup event [ 19.268506] usb usb6: usb auto-resume [ 19.272775] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.282847] hub 6-0:1.0: hub_resume [ 19.282886] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.282896] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.283002] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.283051] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.283135] hub 6-0:1.0: hub_suspend [ 19.283196] usb usb6: bus auto-suspend, wakeup 1 [ 19.283215] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.283224] usb usb6: suspend raced with wakeup event [ 19.283232] usb usb6: usb auto-resume [ 19.287789] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.297931] hub 6-0:1.0: hub_resume [ 19.297967] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.297977] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.298086] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.298139] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.298224] hub 6-0:1.0: hub_suspend [ 19.298284] usb usb6: bus auto-suspend, wakeup 1 [ 19.298304] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.298313] usb usb6: suspend raced with wakeup event [ 19.298321] usb usb6: usb auto-resume [ 19.302772] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.312840] hub 6-0:1.0: hub_resume [ 19.312880] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.312890] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.313017] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.313071] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.313150] hub 6-0:1.0: hub_suspend [ 19.313213] usb usb6: bus auto-suspend, wakeup 1 [ 19.313229] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.313237] usb usb6: suspend raced with wakeup event [ 19.313245] usb usb6: usb auto-resume [ 19.317757] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.327797] hub 6-0:1.0: hub_resume [ 19.327836] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.327847] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.327957] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.328010] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.328092] hub 6-0:1.0: hub_suspend [ 19.328158] usb usb6: bus auto-suspend, wakeup 1 [ 19.328176] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.328184] usb usb6: suspend raced with wakeup event [ 19.328191] usb usb6: usb auto-resume [ 19.332772] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.342990] hub 6-0:1.0: hub_resume [ 19.343023] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.343033] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.343154] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.343207] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.343288] hub 6-0:1.0: hub_suspend [ 19.343353] usb usb6: bus auto-suspend, wakeup 1 [ 19.343368] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.343375] usb usb6: suspend raced with wakeup event [ 19.343382] usb usb6: usb auto-resume [ 19.347753] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.357838] hub 6-0:1.0: hub_resume [ 19.357870] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.357878] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.357976] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.358016] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.358096] hub 6-0:1.0: hub_suspend [ 19.358154] usb usb6: bus auto-suspend, wakeup 1 [ 19.358170] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.358178] usb usb6: suspend raced with wakeup event [ 19.358185] usb usb6: usb auto-resume [ 19.362751] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.372966] hub 6-0:1.0: hub_resume [ 19.373007] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.373017] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.373347] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.373411] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.373508] hub 6-0:1.0: hub_suspend [ 19.373570] usb usb6: bus auto-suspend, wakeup 1 [ 19.373586] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.373593] usb usb6: suspend raced with wakeup event [ 19.373599] usb usb6: usb auto-resume [ 19.377769] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.387832] hub 6-0:1.0: hub_resume [ 19.387864] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.387873] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.388056] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.388108] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.388182] hub 6-0:1.0: hub_suspend [ 19.388256] usb usb6: bus auto-suspend, wakeup 1 [ 19.388274] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.388282] usb usb6: suspend raced with wakeup event [ 19.388289] usb usb6: usb auto-resume [ 19.392769] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.402807] hub 6-0:1.0: hub_resume [ 19.402848] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.402857] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.402983] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.403035] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.403102] hub 6-0:1.0: hub_suspend [ 19.403165] usb usb6: bus auto-suspend, wakeup 1 [ 19.403185] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.403193] usb usb6: suspend raced with wakeup event [ 19.403200] usb usb6: usb auto-resume [ 19.407774] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.417927] hub 6-0:1.0: hub_resume [ 19.417965] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.417975] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.418087] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.418138] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.418227] hub 6-0:1.0: hub_suspend [ 19.418296] usb usb6: bus auto-suspend, wakeup 1 [ 19.418316] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.418324] usb usb6: suspend raced with wakeup event [ 19.418330] usb usb6: usb auto-resume [ 19.422760] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.432859] hub 6-0:1.0: hub_resume [ 19.432894] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.432905] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.433026] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.433082] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.433278] hub 6-0:1.0: hub_suspend [ 19.433339] usb usb6: bus auto-suspend, wakeup 1 [ 19.433356] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.433364] usb usb6: suspend raced with wakeup event [ 19.433371] usb usb6: usb auto-resume [ 19.437752] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.447799] hub 6-0:1.0: hub_resume [ 19.447841] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.447854] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.447997] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.448050] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.448130] hub 6-0:1.0: hub_suspend [ 19.448201] usb usb6: bus auto-suspend, wakeup 1 [ 19.448220] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.448230] usb usb6: suspend raced with wakeup event [ 19.448238] usb usb6: usb auto-resume [ 19.452749] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.462816] hub 6-0:1.0: hub_resume [ 19.462853] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.462867] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.463080] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.463127] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.463219] hub 6-0:1.0: hub_suspend [ 19.463287] usb usb6: bus auto-suspend, wakeup 1 [ 19.463308] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.463318] usb usb6: suspend raced with wakeup event [ 19.463345] usb usb6: usb auto-resume [ 19.467746] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.477788] hub 6-0:1.0: hub_resume [ 19.477820] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.477827] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.477973] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.478020] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.478099] hub 6-0:1.0: hub_suspend [ 19.478168] usb usb6: bus auto-suspend, wakeup 1 [ 19.478188] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.478197] usb usb6: suspend raced with wakeup event [ 19.478203] usb usb6: usb auto-resume [ 19.482755] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.492919] hub 6-0:1.0: hub_resume [ 19.492962] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.492971] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.493091] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.493147] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.493227] hub 6-0:1.0: hub_suspend [ 19.493289] usb usb6: bus auto-suspend, wakeup 1 [ 19.493305] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.493314] usb usb6: suspend raced with wakeup event [ 19.493321] usb usb6: usb auto-resume [ 19.497766] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.507939] hub 6-0:1.0: hub_resume [ 19.507976] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.507987] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.508137] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.508191] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.508271] hub 6-0:1.0: hub_suspend [ 19.508331] usb usb6: bus auto-suspend, wakeup 1 [ 19.508345] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.508354] usb usb6: suspend raced with wakeup event [ 19.508361] usb usb6: usb auto-resume [ 19.512749] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.522747] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.522970] hub 6-0:1.0: hub_resume [ 19.523005] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.523015] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.523135] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.523175] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.523246] hub 6-0:1.0: hub_suspend [ 19.523313] usb usb6: bus auto-suspend, wakeup 1 [ 19.523333] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.523343] usb usb6: suspend raced with wakeup event [ 19.523350] usb usb6: usb auto-resume [ 19.527773] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.537848] hub 6-0:1.0: hub_resume [ 19.537884] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.537894] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.538110] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.538160] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.538241] hub 6-0:1.0: hub_suspend [ 19.538295] usb usb6: bus auto-suspend, wakeup 1 [ 19.538311] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.538318] usb usb6: suspend raced with wakeup event [ 19.538325] usb usb6: usb auto-resume [ 19.542779] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.552828] hub 6-0:1.0: hub_resume [ 19.552867] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.552878] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.553020] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.553076] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.553154] hub 6-0:1.0: hub_suspend [ 19.553209] usb usb6: bus auto-suspend, wakeup 1 [ 19.553226] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.553234] usb usb6: suspend raced with wakeup event [ 19.553241] usb usb6: usb auto-resume [ 19.557783] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.567852] hub 6-0:1.0: hub_resume [ 19.567886] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.567896] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.568026] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.568072] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.568160] hub 6-0:1.0: hub_suspend [ 19.568233] usb usb6: bus auto-suspend, wakeup 1 [ 19.568252] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.568260] usb usb6: suspend raced with wakeup event [ 19.568268] usb usb6: usb auto-resume [ 19.572757] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.582805] hub 6-0:1.0: hub_resume [ 19.582836] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.582845] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.582973] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.583023] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.583108] hub 6-0:1.0: hub_suspend [ 19.583172] usb usb6: bus auto-suspend, wakeup 1 [ 19.583187] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.583194] usb usb6: suspend raced with wakeup event [ 19.583202] usb usb6: usb auto-resume [ 19.587772] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.597837] hub 6-0:1.0: hub_resume [ 19.597884] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.597896] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.598067] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.598120] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.598224] hub 6-0:1.0: hub_suspend [ 19.598294] usb usb6: bus auto-suspend, wakeup 1 [ 19.598313] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.598332] usb usb6: suspend raced with wakeup event [ 19.598341] usb usb6: usb auto-resume [ 19.602751] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.615547] hub 6-0:1.0: hub_resume [ 19.615596] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.615608] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.615777] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.615833] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.615919] hub 6-0:1.0: hub_suspend [ 19.615994] usb usb6: bus auto-suspend, wakeup 1 [ 19.616013] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.616022] usb usb6: suspend raced with wakeup event [ 19.616029] usb usb6: usb auto-resume [ 19.617766] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.627954] hub 6-0:1.0: hub_resume [ 19.627988] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.627997] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.628284] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.628338] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.628425] hub 6-0:1.0: hub_suspend [ 19.628494] usb usb6: bus auto-suspend, wakeup 1 [ 19.628514] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.628523] usb usb6: suspend raced with wakeup event [ 19.628530] usb usb6: usb auto-resume [ 19.632755] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.642827] hub 6-0:1.0: hub_resume [ 19.642866] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.642876] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.642988] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.643044] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.643129] hub 6-0:1.0: hub_suspend [ 19.643191] usb usb6: bus auto-suspend, wakeup 1 [ 19.643207] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.643215] usb usb6: suspend raced with wakeup event [ 19.643222] usb usb6: usb auto-resume [ 19.647748] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.657846] hub 6-0:1.0: hub_resume [ 19.657889] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.657900] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.658119] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.658175] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.658278] hub 6-0:1.0: hub_suspend [ 19.658337] usb usb6: bus auto-suspend, wakeup 1 [ 19.658356] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.658363] usb usb6: suspend raced with wakeup event [ 19.658370] usb usb6: usb auto-resume [ 19.662764] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.672849] hub 6-0:1.0: hub_resume [ 19.672892] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.672902] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.673097] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.673161] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.673325] hub 6-0:1.0: hub_suspend [ 19.673444] usb usb6: bus auto-suspend, wakeup 1 [ 19.673484] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.673491] usb usb6: suspend raced with wakeup event [ 19.673497] usb usb6: usb auto-resume [ 19.677796] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.687876] hub 6-0:1.0: hub_resume [ 19.687917] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.687929] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.688242] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.688309] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.688406] hub 6-0:1.0: hub_suspend [ 19.688475] usb usb6: bus auto-suspend, wakeup 1 [ 19.688491] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.688500] usb usb6: suspend raced with wakeup event [ 19.688507] usb usb6: usb auto-resume [ 19.692756] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.702809] hub 6-0:1.0: hub_resume [ 19.702845] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.702854] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.703005] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.703059] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.703145] hub 6-0:1.0: hub_suspend [ 19.703210] usb usb6: bus auto-suspend, wakeup 1 [ 19.703228] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.703238] usb usb6: suspend raced with wakeup event [ 19.703244] usb usb6: usb auto-resume [ 19.707751] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.717818] hub 6-0:1.0: hub_resume [ 19.717852] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.717861] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.717982] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.718029] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.718111] hub 6-0:1.0: hub_suspend [ 19.718166] usb usb6: bus auto-suspend, wakeup 1 [ 19.718182] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.718190] usb usb6: suspend raced with wakeup event [ 19.718197] usb usb6: usb auto-resume [ 19.722743] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.732931] hub 6-0:1.0: hub_resume [ 19.732974] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.732985] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.733111] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.733158] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.733231] hub 6-0:1.0: hub_suspend [ 19.733309] usb usb6: bus auto-suspend, wakeup 1 [ 19.733327] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.733337] usb usb6: suspend raced with wakeup event [ 19.733344] usb usb6: usb auto-resume [ 19.737756] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.747836] hub 6-0:1.0: hub_resume [ 19.747876] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.747887] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.747994] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.748047] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.748128] hub 6-0:1.0: hub_suspend [ 19.748195] usb usb6: bus auto-suspend, wakeup 1 [ 19.748212] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.748219] usb usb6: suspend raced with wakeup event [ 19.748227] usb usb6: usb auto-resume [ 19.752756] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.762818] hub 6-0:1.0: hub_resume [ 19.762861] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.762873] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.763022] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.763079] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.763164] hub 6-0:1.0: hub_suspend [ 19.763223] usb usb6: bus auto-suspend, wakeup 1 [ 19.763239] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.763247] usb usb6: suspend raced with wakeup event [ 19.763255] usb usb6: usb auto-resume [ 19.767776] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.777854] hub 6-0:1.0: hub_resume [ 19.777895] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.777906] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.780789] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.780849] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.780928] hub 6-0:1.0: hub_suspend [ 19.780996] usb usb6: bus auto-suspend, wakeup 1 [ 19.781012] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.781020] usb usb6: suspend raced with wakeup event [ 19.781026] usb usb6: usb auto-resume [ 19.782753] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.792857] hub 6-0:1.0: hub_resume [ 19.792894] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.792902] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.793095] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.793147] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.793237] hub 6-0:1.0: hub_suspend [ 19.793292] usb usb6: bus auto-suspend, wakeup 1 [ 19.793311] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.793319] usb usb6: suspend raced with wakeup event [ 19.793325] usb usb6: usb auto-resume [ 19.797778] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.811949] hub 6-0:1.0: hub_resume [ 19.811989] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.811999] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.812110] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.812162] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.812246] hub 6-0:1.0: hub_suspend [ 19.812313] usb usb6: bus auto-suspend, wakeup 1 [ 19.812332] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.812340] usb usb6: suspend raced with wakeup event [ 19.812347] usb usb6: usb auto-resume [ 19.812743] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.822938] hub 6-0:1.0: hub_resume [ 19.822973] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.822983] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.823150] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.823256] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.823345] hub 6-0:1.0: hub_suspend [ 19.823406] usb usb6: bus auto-suspend, wakeup 1 [ 19.823423] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.823431] usb usb6: suspend raced with wakeup event [ 19.823438] usb usb6: usb auto-resume [ 19.827759] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.837910] hub 6-0:1.0: hub_resume [ 19.837948] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.837959] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.838122] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.838176] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.838253] hub 6-0:1.0: hub_suspend [ 19.838318] usb usb6: bus auto-suspend, wakeup 1 [ 19.838332] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.838339] usb usb6: suspend raced with wakeup event [ 19.838345] usb usb6: usb auto-resume [ 19.842752] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.853050] hub 6-0:1.0: hub_resume [ 19.853087] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.853100] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.853217] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.853260] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.853344] hub 6-0:1.0: hub_suspend [ 19.853414] usb usb6: bus auto-suspend, wakeup 1 [ 19.853432] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.853440] usb usb6: suspend raced with wakeup event [ 19.853448] usb usb6: usb auto-resume [ 19.857757] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.867846] hub 6-0:1.0: hub_resume [ 19.867889] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.867898] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.868044] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.868096] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.868166] hub 6-0:1.0: hub_suspend [ 19.868233] usb usb6: bus auto-suspend, wakeup 1 [ 19.868251] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.868260] usb usb6: suspend raced with wakeup event [ 19.868267] usb usb6: usb auto-resume [ 19.872747] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.882852] hub 6-0:1.0: hub_resume [ 19.882889] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.882900] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.883024] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.883069] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.883146] hub 6-0:1.0: hub_suspend [ 19.883208] usb usb6: bus auto-suspend, wakeup 1 [ 19.883228] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.883238] usb usb6: suspend raced with wakeup event [ 19.883245] usb usb6: usb auto-resume [ 19.887757] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.897812] hub 6-0:1.0: hub_resume [ 19.897853] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.897865] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.898057] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.898102] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.898184] hub 6-0:1.0: hub_suspend [ 19.898247] usb usb6: bus auto-suspend, wakeup 1 [ 19.898265] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.898273] usb usb6: suspend raced with wakeup event [ 19.898280] usb usb6: usb auto-resume [ 19.902777] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.912847] hub 6-0:1.0: hub_resume [ 19.912884] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.912896] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.913010] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.913052] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.913141] hub 6-0:1.0: hub_suspend [ 19.913212] usb usb6: bus auto-suspend, wakeup 1 [ 19.913231] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.913239] usb usb6: suspend raced with wakeup event [ 19.913246] usb usb6: usb auto-resume [ 19.917763] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.927800] hub 6-0:1.0: hub_resume [ 19.927838] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.927849] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.927972] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.928024] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.928103] hub 6-0:1.0: hub_suspend [ 19.928161] usb usb6: bus auto-suspend, wakeup 1 [ 19.928179] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.928187] usb usb6: suspend raced with wakeup event [ 19.928194] usb usb6: usb auto-resume [ 19.932758] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.942910] hub 6-0:1.0: hub_resume [ 19.942964] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.942975] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.943112] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.943169] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.943319] hub 6-0:1.0: hub_suspend [ 19.943400] usb usb6: bus auto-suspend, wakeup 1 [ 19.943421] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.943467] usb usb6: suspend raced with wakeup event [ 19.943477] usb usb6: usb auto-resume [ 19.947749] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.958055] hub 6-0:1.0: hub_resume [ 19.958093] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.958104] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.958778] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.958834] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.958934] hub 6-0:1.0: hub_suspend [ 19.959000] usb usb6: bus auto-suspend, wakeup 1 [ 19.959015] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.959024] usb usb6: suspend raced with wakeup event [ 19.959031] usb usb6: usb auto-resume [ 19.962743] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.972841] hub 6-0:1.0: hub_resume [ 19.972883] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.972893] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.973229] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.973287] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.973367] hub 6-0:1.0: hub_suspend [ 19.973423] usb usb6: bus auto-suspend, wakeup 1 [ 19.973439] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.973447] usb usb6: suspend raced with wakeup event [ 19.973455] usb usb6: usb auto-resume [ 19.977754] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.987878] hub 6-0:1.0: hub_resume [ 19.987918] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 19.987930] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 19.988061] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 19.988111] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 19.988200] hub 6-0:1.0: hub_suspend [ 19.988269] usb usb6: bus auto-suspend, wakeup 1 [ 19.988287] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 19.988296] usb usb6: suspend raced with wakeup event [ 19.988302] usb usb6: usb auto-resume [ 19.992771] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 20.002919] hub 6-0:1.0: hub_resume [ 20.002961] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 20.002973] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 20.003070] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 20.003113] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 20.003179] hub 6-0:1.0: hub_suspend [ 20.003245] usb usb6: bus auto-suspend, wakeup 1 [ 20.003262] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 20.003270] usb usb6: suspend raced with wakeup event [ 20.003277] usb usb6: usb auto-resume [ 20.007746] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 20.017896] hub 6-0:1.0: hub_resume [ 20.017937] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 20.017949] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 20.018064] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 20.018107] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 20.018191] hub 6-0:1.0: hub_suspend [ 20.018263] usb usb6: bus auto-suspend, wakeup 1 [ 20.018284] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 20.018291] usb usb6: suspend raced with wakeup event [ 20.018297] usb usb6: usb auto-resume [ 20.022752] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 20.032960] hub 6-0:1.0: hub_resume [ 20.032994] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 20.033003] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 20.033131] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 20.033185] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 20.033264] hub 6-0:1.0: hub_suspend [ 20.033321] usb usb6: bus auto-suspend, wakeup 1 [ 20.033337] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 20.033345] usb usb6: suspend raced with wakeup event [ 20.033351] usb usb6: usb auto-resume [ 20.037752] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 20.047834] hub 6-0:1.0: hub_resume [ 20.047877] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 20.047889] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 20.048075] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 20.048125] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 20.048636] hub 6-0:1.0: hub_suspend [ 20.048719] usb usb6: bus auto-suspend, wakeup 1 [ 20.048739] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 20.048748] usb usb6: suspend raced with wakeup event [ 20.048756] usb usb6: usb auto-resume [ 20.052762] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 20.062965] hub 6-0:1.0: hub_resume [ 20.063005] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 20.063014] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 20.063133] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 20.063181] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 20.063258] hub 6-0:1.0: hub_suspend [ 20.063322] usb usb6: bus auto-suspend, wakeup 1 [ 20.063342] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 20.063351] usb usb6: suspend raced with wakeup event [ 20.063358] usb usb6: usb auto-resume [ 20.067774] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 20.077876] hub 6-0:1.0: hub_resume [ 20.077913] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 20.077922] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 20.078035] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 20.078088] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 20.078175] hub 6-0:1.0: hub_suspend [ 20.078239] usb usb6: bus auto-suspend, wakeup 1 [ 20.078257] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 20.078265] usb usb6: suspend raced with wakeup event [ 20.078272] usb usb6: usb auto-resume [ 20.082738] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 20.092881] hub 6-0:1.0: hub_resume [ 20.092923] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 20.092934] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 20.093065] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 20.093110] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 20.093176] hub 6-0:1.0: hub_suspend [ 20.093230] usb usb6: bus auto-suspend, wakeup 1 [ 20.093244] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 20.093252] usb usb6: suspend raced with wakeup event [ 20.093258] usb usb6: usb auto-resume [ 20.097753] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 20.107842] hub 6-0:1.0: hub_resume [ 20.107881] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 20.107903] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 20.108031] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 20.108080] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 20.108153] hub 6-0:1.0: hub_suspend [ 20.108208] usb usb6: bus auto-suspend, wakeup 1 [ 20.108224] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 20.108233] usb usb6: suspend raced with wakeup event [ 20.108241] usb usb6: usb auto-resume [ 20.112763] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 20.122850] hub 6-0:1.0: hub_resume [ 20.122926] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 20.122936] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 20.123101] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 20.123155] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 20.123251] hub 6-0:1.0: hub_suspend [ 20.123306] usb usb6: bus auto-suspend, wakeup 1 [ 20.123322] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 20.123329] usb usb6: suspend raced with wakeup event [ 20.123335] usb usb6: usb auto-resume [ 20.127752] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 20.139547] hub 6-0:1.0: hub_resume [ 20.139588] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 20.139598] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 20.142889] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 20.142938] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 20.143014] hub 6-0:1.0: hub_suspend [ 20.143187] usb usb6: bus auto-suspend, wakeup 1 [ 20.143206] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 20.143214] usb usb6: suspend raced with wakeup event [ 20.143221] usb usb6: usb auto-resume [ 20.147769] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 20.162847] hub 6-0:1.0: hub_resume [ 20.162891] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 20.162904] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 20.163019] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 20.163066] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 20.163162] hub 6-0:1.0: hub_suspend [ 20.163311] usb usb6: bus auto-suspend, wakeup 1 [ 20.163333] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 20.163341] usb usb6: suspend raced with wakeup event [ 20.163348] usb usb6: usb auto-resume [ 20.167756] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 20.177831] hub 6-0:1.0: hub_resume [ 20.177871] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 20.177883] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 20.178013] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 20.178060] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 20.178133] hub 6-0:1.0: hub_suspend [ 20.178202] usb usb6: bus auto-suspend, wakeup 1 [ 20.178219] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 20.178226] usb usb6: suspend raced with wakeup event [ 20.178233] usb usb6: usb auto-resume [ 20.182769] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 20.192864] hub 6-0:1.0: hub_resume [ 20.192896] xhci-hcd xhci-hcd.0.auto: get port status, actual port 0 status = 0x400340 [ 20.192907] xhci-hcd xhci-hcd.0.auto: Get port status returned 0x400340 [ 20.193025] hub 6-0:1.0: state 7 ports 1 chg 0000 evt 0000 [ 20.193076] xhci-hcd xhci-hcd.0.auto: set port remote wake mask, actual port 0 status = 0xe400340 [ 20.193164] hub 6-0:1.0: hub_suspend [ 20.193230] usb usb6: bus auto-suspend, wakeup 1 [ 20.193247] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0 [ 20.193255] usb usb6: suspend raced with wakeup event [ 20.193263] usb usb6: usb auto-resume [ 20.197769] xhci-hcd xhci-hcd.0.auto: portsc 0xa400340, port_c_suspend:0, resume_done:0