>On 11/14/2017 09:25 AM, Juan Zea wrote: 
>> Hi, 
>> 
>> I've been working on the issue. This is what I found about multi-controller 
>> setup: 
>> 
>> The problem comes from the usbip tool trying to connect usb2 devices to usb3 
>> ports, like this: 
>> 
>> - usbip tool asks vhci driver for free port. 
>> - If the first port (usb2) is already occupied, vhci answers with usb3 port 
>> (instead of next controller's usb2 port) 
>> - usbip tool tries to connect usb2 device to usb3 port and fails 
>
>It would be interesting to see how this fails. Can you send me complete 
>dmesg from client and server for this. 

I'm attaching two files for this: dmesg-usbip-server.txt and 
dmesg-usbip-client.txt
Server is my own machine, and dmesg is too long, so I have selected latest 
lines. Hope it's enough.
Client side is a kvm machine I'm using for these tests, so I made a clear boot 
just for this and its complete.


>> - usbip tool asks for the next free port, which is still the same usb3 port. 
>> - Loop the above forever 
>
>That doesn't sound right. 

I'm also attaching usbip attach output with debug option 
(usbip-attach-debug.txt). I think it's interesting to see this for the forever 
loop.

>> 
>> the code at tools/usb/usbip/libsrc/vhci_driver.c : 
>> 329 int usbip_vhci_get_free_port(uint32_t speed) 
>> 330 { 
>> 331 for (int i = 0; i < vhci_driver->nports; i++) { 
>> 332 if (speed == USB_SPEED_SUPER && 
>> 333 vhci_driver->idev[i].hub != HUB_SPEED_SUPER) 
>> 334 continue; 
>> 335 
>> 336 if (vhci_driver->idev[i].status == VDEV_ST_NULL) 
>> 337 return vhci_driver->idev[i].port; 
>> 338 } 
>> 339 
>> 340 return -1; 
>> 341 } 
>> 
>> prevents usb3 devices connecting to usb2 ports, but not the other way 
>> around. 
>
>Connecting usb2 device to usb3 port should work. It would make sense 
>to prevent usb3 devices connecting to usb2 ports, and not the other 
>way round. 
>

Ok, that sounds right, but then... why having usb2 ports at all? Isn't it a 
nuisance to maintain code that duplicates the hubs if usb3 ports can do the job?


>> 
>> I've patched this preventing the opposite, and multi-controller starts 
>> working the way I think it should: 
>> - usb2 devices connect exclusively to usb2 ports 
>> - The above is also true for usb3 devices and ports 
>> - When there is no compatible port for the device in the present controller, 
>> go for the next> 
>> At least, for connecting devices this seems to work, and I can get several 
>> usb2 and usb3 connected to the same machine in different orders. 
>> The question is... is this the way it is supposed to work? 
>
>Unless there is some exception in the usb3 support in the usbip driver 
>that prevent usb2 ports from connecting to 
>> 
>> 
>> Another problem is... some of my test devices don't work. They detonate a 
>> kernel BUG line in the vhci controller: 
>> Nov 14 14:35:29 kernel-tester kernel: [ 229.636543] kernel BUG at 
>> drivers/usb/usbip/vhci_hcd.c:683! 
>> 
>> This is happening even using the vhci module as it is downloaded from Ubuntu 
>> (no intervention on my behalf in this experiment), so it seems they just 
>> stopped working some kernels ago. 
>
>It will be harder to debug that way unless you know which kernel release the 
>Ubuntu module is coming from. What's the kernel release on Ubuntu? 

I'm testing with latest 17.10 release of Ubuntu. It comes with kernel 4.13, but 
I have upgraded it to 4.14 from mainline for these tests.

>
>> I'm still bisecting the kernel for this, but for now I have filed a bug at 
>> bugzilla with the specific device and kernel versions: 
>> https://bugzilla.kernel.org/show_bug.cgi?id=197867 
>
>Will you be able to send me complete dmesg for this. I see excerpts but not 
>the 
>full dmesg. 
>

I'm attaching dmesg for the issue: dmesg-device-bug.txt


>Also, will you be able to revert the usb3 commit 
>1c9de5bf428612458427943b724bea51abde520a 
>
>and see if any of the problems go away. 
>
>thanks, 
>-- Shuah 
>

I'm on it and will send results later.

Thanks,
Juan


Juan Antonio Zea Herranz 
Proyectos y consultoría | Qindel Group 
E: juan....@qindel.com 
T: +34 91 766 24 21 
M: +34 637 74 63 09 
W: qindel.com
Nov 14 14:35:00 kernel-tester kernel: [  200.746942] vhci_hcd vhci_hcd.0: 
pdev(0) rhport(0) sockfd(3)
Nov 14 14:35:00 kernel-tester kernel: [  200.746947] vhci_hcd vhci_hcd.0: 
devid(131081) speed(2) speed_str(full-speed)
Nov 14 14:35:00 kernel-tester kernel: [  200.919770] vhci_hcd: vhci_device 
speed not set
Nov 14 14:35:00 kernel-tester kernel: [  200.973759] usb 1-1: new full-speed 
USB device number 5 using vhci_hcd
Nov 14 14:35:00 kernel-tester kernel: [  201.036783] vhci_hcd: vhci_device 
speed not set
Nov 14 14:35:00 kernel-tester kernel: [  201.090804] usb 1-1: SetAddress 
Request (5) to port 0
Nov 14 14:35:00 kernel-tester kernel: [  201.113992] usb 1-1: New USB device 
found, idVendor=05ba, idProduct=000a
Nov 14 14:35:00 kernel-tester kernel: [  201.113997] usb 1-1: New USB device 
strings: Mfr=1, Product=2, SerialNumber=3
Nov 14 14:35:00 kernel-tester kernel: [  201.113999] usb 1-1: Product: Biokey 
200 Fingerprint Scanner
Nov 14 14:35:00 kernel-tester kernel: [  201.114002] usb 1-1: Manufacturer: 
ZKSoftware Inc.
Nov 14 14:35:00 kernel-tester kernel: [  201.114003] usb 1-1: SerialNumber: 
{E9F8C5A1-50A3-594D-9330-D47F0340DBA6}
Nov 14 14:35:29 kernel-tester kernel: [  229.636538] ------------[ cut here 
]------------
Nov 14 14:35:29 kernel-tester kernel: [  229.636543] kernel BUG at 
drivers/usb/usbip/vhci_hcd.c:683!
Nov 14 14:35:29 kernel-tester kernel: [  229.638499] invalid opcode: 0000 [#1] 
SMP
Nov 14 14:35:29 kernel-tester kernel: [  229.639688] Modules linked in: 
vhci_hcd usbip_core
Nov 14 14:35:29 kernel-tester kernel: [  229.641135] CPU: 0 PID: 6365 Comm: 
fprint_demo Not tainted 4.14.0+ #10
Nov 14 14:35:29 kernel-tester kernel: [  229.643015] Hardware name: QEMU 
Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
Nov 14 14:35:29 kernel-tester kernel: [  229.645875] task: ffff92f3bb29cb00 
task.stack: ffffa39e403bc000
Nov 14 14:35:29 kernel-tester kernel: [  229.647491] RIP: 
0010:vhci_urb_enqueue+0x2f2/0x460 [vhci_hcd]
Nov 14 14:35:29 kernel-tester kernel: [  229.648735] RSP: 0018:ffffa39e403bfc18 
EFLAGS: 00010002
Nov 14 14:35:29 kernel-tester kernel: [  229.649752] RAX: 000000000001b340 RBX: 
0000000000000001 RCX: 0000000000000040
Nov 14 14:35:29 kernel-tester kernel: [  229.651010] RDX: 0000000001080020 RSI: 
ffff92f3b732d0c0 RDI: ffff92f3b7347400
Nov 14 14:35:29 kernel-tester kernel: [  229.651905] RBP: ffffa39e403bfc68 R08: 
000000000001b340 R09: 0000000000000002
Nov 14 14:35:29 kernel-tester kernel: [  229.652837] R10: 0000000000000001 R11: 
0000000000000002 R12: ffff92f3b7347400
Nov 14 14:35:29 kernel-tester kernel: [  229.654147] R13: ffff92f3b7344500 R14: 
ffff92f3b732d0c0 R15: ffff92f3b38d2898
Nov 14 14:35:29 kernel-tester kernel: [  229.655433] FS:  
00007f97adbe0a00(0000) GS:ffff92f3bcc00000(0000) knlGS:0000000000000000
Nov 14 14:35:29 kernel-tester kernel: [  229.656890] CS:  0010 DS: 0000 ES: 
0000 CR0: 0000000080050033
Nov 14 14:35:29 kernel-tester kernel: [  229.657905] CR2: 0000560a37f82000 CR3: 
0000000032ddd000 CR4: 00000000000006f0
Nov 14 14:35:29 kernel-tester kernel: [  229.659260] Call Trace:
Nov 14 14:35:29 kernel-tester kernel: [  229.659838]  
usb_hcd_submit_urb+0x8a/0x950
Nov 14 14:35:29 kernel-tester kernel: [  229.660680]  ? 
alloc_pages_current+0x65/0xd0
Nov 14 14:35:29 kernel-tester kernel: [  229.661623]  ? kmalloc_order+0x13/0x40
Nov 14 14:35:29 kernel-tester kernel: [  229.662415]  ? 
kmalloc_order_trace+0x1f/0xa0
Nov 14 14:35:29 kernel-tester kernel: [  229.663252]  usb_submit_urb+0x21a/0x510
Nov 14 14:35:29 kernel-tester kernel: [  229.664079]  
proc_do_submiturb+0xc20/0xcb0
Nov 14 14:35:29 kernel-tester kernel: [  229.664660]  
usbdev_do_ioctl+0xd4e/0x1120
Nov 14 14:35:29 kernel-tester kernel: [  229.665587]  usbdev_ioctl+0x9/0x10
Nov 14 14:35:29 kernel-tester kernel: [  229.666388]  do_vfs_ioctl+0x8d/0x590
Nov 14 14:35:29 kernel-tester kernel: [  229.667239]  ? 
kvm_clock_get_cycles+0x1e/0x20
Nov 14 14:35:29 kernel-tester kernel: [  229.668257]  ? ktime_get_ts64+0x44/0xe0
Nov 14 14:35:29 kernel-tester kernel: [  229.669171]  SyS_ioctl+0x74/0x80
Nov 14 14:35:29 kernel-tester kernel: [  229.669930]  
entry_SYSCALL_64_fastpath+0x1a/0xa5
Nov 14 14:35:29 kernel-tester kernel: [  229.670990] RIP: 0033:0x7f97a9347ea7
Nov 14 14:35:29 kernel-tester kernel: [  229.671825] RSP: 002b:00007ffc93770108 
EFLAGS: 00000246 ORIG_RAX: 0000000000000010
Nov 14 14:35:29 kernel-tester kernel: [  229.673594] RAX: ffffffffffffffda RBX: 
0000000000000009 RCX: 00007f97a9347ea7
Nov 14 14:35:29 kernel-tester kernel: [  229.675201] RDX: 0000560a37eafe70 RSI: 
000000008038550a RDI: 000000000000000b
Nov 14 14:35:29 kernel-tester kernel: [  229.676605] RBP: 00007ffc937704b0 R08: 
00007f97a9618c20 R09: 0000560a37eafe70
Nov 14 14:35:29 kernel-tester kernel: [  229.677913] R10: 00000000ffffff00 R11: 
0000000000000246 R12: 0000000000000003
Nov 14 14:35:29 kernel-tester kernel: [  229.679188] R13: 00007ffc93770434 R14: 
0000560a37c90358 R15: 00007ffc93770438
Nov 14 14:35:29 kernel-tester kernel: [  229.680512] Code: 4c 89 ef 89 45 c8 e8 
3e 5a 6a f5 8b 45 c8 48 83 c4 28 5b 41 5c 41 5d 41 5e 41 5f 5d c3 8b 86 88 00 
00 00 85 c0 0f 84 52 fd ff ff <0f> 0b 0f b7 49 02 48 c7 c6 08 6d 2e c0 4c 89 ff 
e8 09 37 28 f5 
Nov 14 14:35:29 kernel-tester kernel: [  229.683519] RIP: 
vhci_urb_enqueue+0x2f2/0x460 [vhci_hcd] RSP: ffffa39e403bfc18
Nov 14 14:35:29 kernel-tester kernel: [  229.684422] ---[ end trace 
ab92a614b5d5d462 ]---
root@kernel-tester:~# usbip -d attach -r 10.0.2.2 -b 1-1.3
usbip: debug: usbip.c:141:[run_command] running command: `attach'
libusbip: debug: vhci_driver.c:264:[usbip_vhci_driver_open] available ports: 8
libusbip: debug: vhci_driver.c:275:[usbip_vhci_driver_open] available 
controllers: 4
libusbip: debug: vhci_driver.c:128:[refresh_imported_device_list] controller 0
libusbip: debug: vhci_driver.c:68:[parse_status] hub hs port 0 status 4 speed 0 
devid 0
libusbip: debug: vhci_driver.c:69:[parse_status] socket 0 lbusid 0-0
libusbip: debug: vhci_driver.c:68:[parse_status] hub ss port 1 status 4 speed 0 
devid 0
libusbip: debug: vhci_driver.c:69:[parse_status] socket 0 lbusid 0-0
libusbip: debug: vhci_driver.c:104:[parse_status] exit
libusbip: debug: vhci_driver.c:128:[refresh_imported_device_list] controller 1
libusbip: debug: vhci_driver.c:68:[parse_status] hub hs port 2 status 4 speed 0 
devid 0
libusbip: debug: vhci_driver.c:69:[parse_status] socket 0 lbusid 0-0
libusbip: debug: vhci_driver.c:68:[parse_status] hub ss port 3 status 4 speed 0 
devid 0
libusbip: debug: vhci_driver.c:69:[parse_status] socket 0 lbusid 0-0
libusbip: debug: vhci_driver.c:104:[parse_status] exit
libusbip: debug: vhci_driver.c:128:[refresh_imported_device_list] controller 2
libusbip: debug: vhci_driver.c:68:[parse_status] hub hs port 4 status 4 speed 0 
devid 0
libusbip: debug: vhci_driver.c:69:[parse_status] socket 0 lbusid 0-0
libusbip: debug: vhci_driver.c:68:[parse_status] hub ss port 5 status 4 speed 0 
devid 0
libusbip: debug: vhci_driver.c:69:[parse_status] socket 0 lbusid 0-0
libusbip: debug: vhci_driver.c:104:[parse_status] exit
libusbip: debug: vhci_driver.c:128:[refresh_imported_device_list] controller 3
libusbip: debug: vhci_driver.c:68:[parse_status] hub hs port 6 status 4 speed 0 
devid 0
libusbip: debug: vhci_driver.c:69:[parse_status] socket 0 lbusid 0-0
libusbip: debug: vhci_driver.c:68:[parse_status] hub ss port 7 status 4 speed 0 
devid 0
libusbip: debug: vhci_driver.c:69:[parse_status] socket 0 lbusid 0-0
libusbip: debug: vhci_driver.c:104:[parse_status] exit
usbip: debug: usbip_attach.c:112:[import_device] got free port 0
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 0 3 
65540 2
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:366:[usbip_vhci_attach_device2] attached port: 0
root@kernel-tester:~# usbip -d attach -r 10.0.2.2 -b 1-1.4
usbip: debug: usbip.c:141:[run_command] running command: `attach'
libusbip: debug: vhci_driver.c:264:[usbip_vhci_driver_open] available ports: 8
libusbip: debug: vhci_driver.c:275:[usbip_vhci_driver_open] available 
controllers: 4
libusbip: debug: vhci_driver.c:128:[refresh_imported_device_list] controller 0
libusbip: debug: vhci_driver.c:68:[parse_status] hub hs port 0 status 6 speed 2 
devid 10004
libusbip: debug: vhci_driver.c:69:[parse_status] socket ffff9bb87f5e7400 lbusid 
1-1
libusbip: debug: vhci_driver.c:68:[parse_status] hub ss port 1 status 4 speed 0 
devid 0
libusbip: debug: vhci_driver.c:69:[parse_status] socket 0 lbusid 0-0
libusbip: debug: vhci_driver.c:104:[parse_status] exit
libusbip: debug: vhci_driver.c:128:[refresh_imported_device_list] controller 1
libusbip: debug: vhci_driver.c:68:[parse_status] hub hs port 2 status 4 speed 0 
devid 0
libusbip: debug: vhci_driver.c:69:[parse_status] socket 0 lbusid 0-0
libusbip: debug: vhci_driver.c:68:[parse_status] hub ss port 3 status 4 speed 0 
devid 0
libusbip: debug: vhci_driver.c:69:[parse_status] socket 0 lbusid 0-0
libusbip: debug: vhci_driver.c:104:[parse_status] exit
libusbip: debug: vhci_driver.c:128:[refresh_imported_device_list] controller 2
libusbip: debug: vhci_driver.c:68:[parse_status] hub hs port 4 status 4 speed 0 
devid 0
libusbip: debug: vhci_driver.c:69:[parse_status] socket 0 lbusid 0-0
libusbip: debug: vhci_driver.c:68:[parse_status] hub ss port 5 status 4 speed 0 
devid 0
libusbip: debug: vhci_driver.c:69:[parse_status] socket 0 lbusid 0-0
libusbip: debug: vhci_driver.c:104:[parse_status] exit
libusbip: debug: vhci_driver.c:128:[refresh_imported_device_list] controller 3
libusbip: debug: vhci_driver.c:68:[parse_status] hub hs port 6 status 4 speed 0 
devid 0
libusbip: debug: vhci_driver.c:69:[parse_status] socket 0 lbusid 0-0
libusbip: debug: vhci_driver.c:68:[parse_status] hub ss port 7 status 4 speed 0 
devid 0
libusbip: debug: vhci_driver.c:69:[parse_status] socket 0 lbusid 0-0
libusbip: debug: vhci_driver.c:104:[parse_status] exit
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
usbip: debug: usbip_attach.c:112:[import_device] got free port 1
libusbip: debug: vhci_driver.c:353:[usbip_vhci_attach_device2] writing: 1 3 
65541 3
libusbip: debug: vhci_driver.c:358:[usbip_vhci_attach_device2] attach attribute 
path: /sys/devices/platform/vhci_hcd.0/attach
usbip: debug: sysfs_utils.c:24:[write_sysfs_attribute] error writing to 
attribute /sys/devices/platform/vhci_hcd.0/attach
libusbip: debug: vhci_driver.c:362:[usbip_vhci_attach_device2] 
write_sysfs_attribute failed
[61974.158619] usbip-host 1-1.3: usbip-host: register new device (bus 1 dev 4)
[62193.212679] usbip-host 1-1.3: stub up
[62193.216099] usbip-host 1-1.3: recv a header, 0
[62193.298776] usbip-host 1-1.3: reset full-speed USB device number 4 using 
ehci-pci
[62193.408061] usbip-host 1-1.3: device reset
[62359.180469] usbip-host 1-1.3: stub up
[62364.876452] usbip-host 1-1.4: stub up
[62365.243026] usbip-host 1-1.4: recv a header, 0
[62365.320238] usbip-host 1-1.4: reset high-speed USB device number 5 using 
ehci-pci
[62365.498158] usbip-host 1-1.4: device reset
[    0.000000] Linux version 4.14.0+ (juanan@mercurio) (gcc version 5.4.0 
20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.5)) #11 SMP Wed Nov 15 08:57:35 CET 2017
[    0.000000] Command line: console=ttyS0 root=/dev/vda1 rw selinux=0
[    0.000000] x86/fpu: x87 FPU will use FXSAVE
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdffff] usable
[    0.000000] BIOS-e820: [mem 0x000000003ffe0000-0x000000003fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] random: fast init done
[    0.000000] SMBIOS 2.8 present.
[    0.000000] DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 
Ubuntu-1.8.2-1ubuntu1 04/01/2014
[    0.000000] Hypervisor detected: KVM
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x3ffe0 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: write-back
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0080000000 mask FF80000000 uncachable
[    0.000000]   1 disabled
[    0.000000]   2 disabled
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86/PAT: PAT not supported by CPU.
[    0.000000] x86/PAT: Configuration [0-7]: WB  WT  UC- UC  WB  WT  UC- UC  
[    0.000000] found SMP MP-table at [mem 0x000f6630-0x000f663f] mapped at 
[ffffffffff200630]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff9bb840099000] 99000 size 24576
[    0.000000] BRK [0x29136000, 0x29136fff] PGTABLE
[    0.000000] BRK [0x29137000, 0x29137fff] PGTABLE
[    0.000000] BRK [0x29138000, 0x29138fff] PGTABLE
[    0.000000] BRK [0x29139000, 0x29139fff] PGTABLE
[    0.000000] BRK [0x2913a000, 0x2913afff] PGTABLE
[    0.000000] RAMDISK: [mem 0x3cfc8000-0x3ffdffff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F6450 000014 (v00 BOCHS )
[    0.000000] ACPI: RSDT 0x000000003FFE16EE 000034 (v01 BOCHS  BXPCRSDT 
00000001 BXPC 00000001)
[    0.000000] ACPI: FACP 0x000000003FFE0C14 000074 (v01 BOCHS  BXPCFACP 
00000001 BXPC 00000001)
[    0.000000] ACPI: DSDT 0x000000003FFE0040 000BD4 (v01 BOCHS  BXPCDSDT 
00000001 BXPC 00000001)
[    0.000000] ACPI: FACS 0x000000003FFE0000 000040
[    0.000000] ACPI: SSDT 0x000000003FFE0C88 0009B6 (v01 BOCHS  BXPCSSDT 
00000001 BXPC 00000001)
[    0.000000] ACPI: APIC 0x000000003FFE163E 000078 (v01 BOCHS  BXPCAPIC 
00000001 BXPC 00000001)
[    0.000000] ACPI: HPET 0x000000003FFE16B6 000038 (v01 BOCHS  BXPCHPET 
00000001 BXPC 00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000003ffdffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x3cfc4000-0x3cfc7fff]
[    0.000000] kvm-clock: cpu 0, msr 0:3cfc2001, primary cpu clock
[    0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
[    0.000000] kvm-clock: using sched offset of 8223555708 cycles
[    0.000000] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 
0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x000000003ffdffff]
[    0.000000]   Normal   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000003ffdffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000003ffdffff]
[    0.000000] On node 0 totalpages: 262014
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 21 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 4032 pages used for memmap
[    0.000000]   DMA32 zone: 258016 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x608
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ5 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] ACPI: IRQ10 used by override.
[    0.000000] ACPI: IRQ11 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
[    0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
[    0.000000] e820: [mem 0x40000000-0xfeffbfff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on KVM
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 
0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:1 
nr_node_ids:1
[    0.000000] percpu: Embedded 37 pages/cpu @ffff9bb87cc00000 s111576 r8192 
d31784 u2097152
[    0.000000] pcpu-alloc: s111576 r8192 d31784 u2097152 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 
[    0.000000] KVM setup async PF for cpu 0
[    0.000000] kvm-stealtime: cpu 0, msr 3cc0ca00
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 257897
[    0.000000] Policy zone: DMA32
[    0.000000] Kernel command line: console=ttyS0 root=/dev/vda1 rw selinux=0
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 960304K/1048056K available (9505K kernel code, 1330K 
rwdata, 3064K rodata, 1224K init, 676K bss, 87752K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[    0.001000] Hierarchical RCU implementation.
[    0.001000]  RCU event tracing is enabled.
[    0.001000]  RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=1.
[    0.001000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
[    0.001000] NR_IRQS: 4352, nr_irqs: 256, preallocated irqs: 16
[    0.001000] Console: colour VGA+ 80x25
[    0.001000] console [ttyS0] enabled
[    0.001000] ACPI: Core revision 20170831
[    0.001000] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    0.001000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, 
max_idle_ns: 19112604467 ns
[    0.001000] hpet clockevent registered
[    0.001014] APIC: Switch to symmetric I/O mode setup
[    0.002908] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.003000] tsc: Detected 2393.998 MHz processor
[    0.003009] Calibrating delay loop (skipped) preset value.. 4787.99 BogoMIPS 
(lpj=2393998)
[    0.004003] pid_max: default: 32768 minimum: 301
[    0.005022] Security Framework initialized
[    0.006003] SELinux:  Disabled at boot.
[    0.007214] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.009024] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes)
[    0.010020] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes)
[    0.011011] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes)
[    0.013134] mce: CPU supports 10 MCE banks
[    0.013955] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.014003] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.023733] Freeing SMP alternatives memory: 40K
[    0.025389] smpboot: Max logical packages: 1
[    0.027000] smpboot: CPU0: Intel QEMU Virtual CPU version 2.5+ (family: 0x6, 
model: 0x6, stepping: 0x3)
[    0.027125] Performance Events: PMU not available due to virtualization, 
using software events only.
[    0.028061] Hierarchical SRCU implementation.
[    0.029090] smp: Bringing up secondary CPUs ...
[    0.030003] smp: Brought up 1 node, 1 CPU
[    0.030720] smpboot: Total of 1 processors activated (4787.99 BogoMIPS)
[    0.031180] devtmpfs: initialized
[    0.032237] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, 
max_idle_ns: 1911260446275000 ns
[    0.033014] futex hash table entries: 256 (order: 2, 16384 bytes)
[    0.034145] RTC time:  8:16:47, date: 11/15/17
[    0.035110] NET: Registered protocol family 16
[    0.036190] cpuidle: using governor menu
[    0.037187] ACPI: bus type PCI registered
[    0.038034] kworker/u2:0 (27) used greatest stack depth: 14896 bytes left
[    0.039059] kworker/u2:0 (20) used greatest stack depth: 14344 bytes left
[    0.041166] PCI: Using configuration type 1 for base access
[    0.049668] kworker/u2:1 (135) used greatest stack depth: 14296 bytes left
[    0.056638] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.057273] ACPI: Added _OSI(Module Device)
[    0.058027] ACPI: Added _OSI(Processor Device)
[    0.058846] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.059003] ACPI: Added _OSI(Processor Aggregator Device)
[    0.062074] ACPI: Interpreter enabled
[    0.062827] ACPI: (supports S0 S3 S4 S5)
[    0.063011] ACPI: Using IOAPIC for interrupt routing
[    0.064045] PCI: Using host bridge windows from ACPI; if necessary, use 
"pci=nocrs" and report a bug
[    0.065410] ACPI: Enabled 16 GPEs in block 00 to 0F
[    0.070241] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.071068] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    0.072058] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
[    0.073042] acpi PNP0A03:00: fail to add MMCONFIG information, can't access 
extended PCI configuration space under this bridge.
[    0.074071] PCI host bridge to bus 0000:00
[    0.075024] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.076016] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.077047] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff 
window]
[    0.078010] pci_bus 0000:00: root bus resource [mem 0x40000000-0xfebfffff 
window]
[    0.079010] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.080055] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000
[    0.080498] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100
[    0.081336] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180
[    0.085511] pci 0000:00:01.1: reg 0x20: [io  0xc0c0-0xc0cf]
[    0.087514] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    0.088004] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    0.089004] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    0.090005] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    0.092073] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000
[    0.092446] pci 0000:00:01.3: quirk: [io  0x0600-0x063f] claimed by PIIX4 
ACPI
[    0.093028] pci 0000:00:01.3: quirk: [io  0x0700-0x070f] claimed by PIIX4 SMB
[    0.094301] pci 0000:00:02.0: [1234:1111] type 00 class 0x030000
[    0.096014] pci 0000:00:02.0: reg 0x10: [mem 0xfd000000-0xfdffffff pref]
[    0.100029] pci 0000:00:02.0: reg 0x18: [mem 0xfebf0000-0xfebf0fff]
[    0.108020] pci 0000:00:02.0: reg 0x30: [mem 0xfebe0000-0xfebeffff pref]
[    0.109403] pci 0000:00:03.0: [8086:100e] type 00 class 0x020000
[    0.111006] pci 0000:00:03.0: reg 0x10: [mem 0xfebc0000-0xfebdffff]
[    0.112008] pci 0000:00:03.0: reg 0x14: [io  0xc000-0xc03f]
[    0.122011] pci 0000:00:03.0: reg 0x30: [mem 0xfeb80000-0xfebbffff pref]
[    0.123010] pci 0000:00:04.0: [1af4:1009] type 00 class 0x000200
[    0.124007] pci 0000:00:04.0: reg 0x10: [io  0xc040-0xc07f]
[    0.126006] pci 0000:00:04.0: reg 0x14: [mem 0xfebf1000-0xfebf1fff]
[    0.137117] pci 0000:00:05.0: [1af4:1001] type 00 class 0x010000
[    0.138777] pci 0000:00:05.0: reg 0x10: [io  0xc080-0xc0bf]
[    0.140006] pci 0000:00:05.0: reg 0x14: [mem 0xfebf2000-0xfebf2fff]
[    0.151191] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)
[    0.152246] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11)
[    0.154106] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)
[    0.155137] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11)
[    0.156077] ACPI: PCI Interrupt Link [LNKS] (IRQs *9)
[    0.157339] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.158000] pci 0000:00:02.0: vgaarb: VGA device added: 
decodes=io+mem,owns=io+mem,locks=none
[    0.158005] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.159003] vgaarb: loaded
[    0.160184] SCSI subsystem initialized
[    0.161096] libata version 3.00 loaded.
[    0.161169] ACPI: bus type USB registered
[    0.162063] usbcore: registered new interface driver usbfs
[    0.163150] usbcore: registered new interface driver hub
[    0.164087] usbcore: registered new device driver usb
[    0.165125] pps_core: LinuxPPS API ver. 1 registered
[    0.166008] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo 
Giometti <giome...@linux.it>
[    0.167088] PTP clock support registered
[    0.168070] EDAC MC: Ver: 3.0.0
[    0.169348] Advanced Linux Sound Architecture Driver Initialized.
[    0.170051] PCI: Using ACPI for IRQ routing
[    0.171008] PCI: pci_cache_line_size set to 64 bytes
[    0.171128] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[    0.171130] e820: reserve RAM buffer [mem 0x3ffe0000-0x3fffffff]
[    0.172064] NetLabel: Initializing
[    0.172698] NetLabel:  domain hash size = 128
[    0.173007] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.174042] NetLabel:  unlabeled traffic allowed by default
[    0.175175] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.176028] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.177007] hpet0: 3 comparators, 64-bit 100.000000 MHz counter
[    0.181091] clocksource: Switched to clocksource kvm-clock
[    0.192655] VFS: Disk quotas dquot_6.6.0
[    0.193405] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.194551] pnp: PnP ACPI init
[    0.195217] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.195279] pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.195321] pnp 00:02: Plug and Play ACPI device, IDs PNP0f13 (active)
[    0.195351] pnp 00:03: [dma 2]
[    0.195379] pnp 00:03: Plug and Play ACPI device, IDs PNP0700 (active)
[    0.195458] pnp 00:04: Plug and Play ACPI device, IDs PNP0400 (active)
[    0.195529] pnp 00:05: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.195806] pnp: PnP ACPI: found 6 devices
[    0.203419] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, 
max_idle_ns: 2085701024 ns
[    0.206226] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.206228] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.206229] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.206230] pci_bus 0000:00: resource 7 [mem 0x40000000-0xfebfffff window]
[    0.206289] NET: Registered protocol family 2
[    0.207194] TCP established hash table entries: 8192 (order: 4, 65536 bytes)
[    0.208222] TCP bind hash table entries: 8192 (order: 5, 131072 bytes)
[    0.209114] TCP: Hash tables configured (established 8192 bind 8192)
[    0.210153] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.211201] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.212360] NET: Registered protocol family 1
[    0.213286] RPC: Registered named UNIX socket transport module.
[    0.214310] RPC: Registered udp transport module.
[    0.215132] RPC: Registered tcp transport module.
[    0.215996] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.217188] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    0.218308] pci 0000:00:01.0: PIIX3: Enabling Passive Release
[    0.219352] pci 0000:00:01.0: Activating ISA DMA hang workarounds
[    0.220483] pci 0000:00:02.0: Video device with shadowed ROM at [mem 
0x000c0000-0x000dffff]
[    0.222050] PCI: CLS 0 bytes, default 64
[    0.222106] Unpacking initramfs...
[    1.055370] Freeing initrd memory: 49248K
[    1.056511] Scanning for low memory corruption every 60 seconds
[    1.058166] audit: initializing netlink subsys (disabled)
[    1.059478] audit: type=2000 audit(1510733809.293:1): state=initialized 
audit_enabled=0 res=1
[    1.061079] workingset: timestamp_bits=56 max_order=18 bucket_order=0
[    1.065362] NFS: Registering the id_resolver key type
[    1.067241] Key type id_resolver registered
[    1.067959] Key type id_legacy registered
[    1.068899] 9p: Installing v9fs 9p2000 file system support
[    1.070612] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 
250)
[    1.072018] io scheduler noop registered
[    1.072750] io scheduler deadline registered
[    1.073487] io scheduler cfq registered (default)
[    1.074324] io scheduler mq-deadline registered
[    1.075163] io scheduler kyber registered
[    1.076201] input: Power Button as 
/devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    1.077711] ACPI: Power Button [PWRF]
[    1.098393] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11
[    1.099418] virtio-pci 0000:00:04.0: virtio_pci: leaving for legacy driver
[    1.120972] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 10
[    1.122055] virtio-pci 0000:00:05.0: virtio_pci: leaving for legacy driver
[    1.123645] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.148424] 00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 
16550A
[    1.150587] Non-volatile memory driver v1.3
[    1.151732] Linux agpgart interface v0.103
[    1.154241] loop: module loaded
[    1.156729]  vda: vda1
[    1.157562] ata_piix 0000:00:01.1: version 2.13
[    1.158868] scsi host0: ata_piix
[    1.159618] scsi host1: ata_piix
[    1.160270] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc0c0 irq 14
[    1.161468] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc0c8 irq 15
[    1.163232] e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
[    1.164401] e100: Copyright(c) 1999-2006 Intel Corporation
[    1.165569] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
[    1.166807] e1000: Copyright (c) 1999-2006 Intel Corporation.
[    1.187738] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11
[    1.324072] ata2.01: NODEV after polling detection
[    1.324326] ata2.00: ATAPI: QEMU DVD-ROM, 2.5+, max UDMA/100
[    1.325821] ata2.00: configured for MWDMA2
[    1.327040] scsi 1:0:0:0: CD-ROM            QEMU     QEMU DVD-ROM     2.5+ 
PQ: 0 ANSI: 5
[    1.341244] sr 1:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray
[    1.342415] cdrom: Uniform CD-ROM driver Revision: 3.20
[    1.343435] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    1.343652] sr 1:0:0:0: Attached scsi generic sg0 type 5
[    1.519204] e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 52:54:00:12:34:56
[    1.521487] e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection
[    1.523397] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    1.524767] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    1.526215] sky2: driver version 1.30
[    1.527270] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.528823] ehci-pci: EHCI PCI platform driver
[    1.530041] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.531533] ohci-pci: OHCI PCI platform driver
[    1.532634] uhci_hcd: USB Universal Host Controller Interface driver
[    1.534224] usbcore: registered new interface driver usblp
[    1.535553] usbcore: registered new interface driver usb-storage
[    1.537093] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 
0x60,0x64 irq 1,12
[    1.539706] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.540918] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.542507] input: AT Translated Set 2 keyboard as 
/devices/platform/i8042/serio0/input/input1
[    1.545086] rtc_cmos 00:00: RTC can wake from S4
[    1.546384] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
[    1.549192] rtc_cmos 00:00: alarms up to one day, 114 bytes nvram, hpet irqs
[    1.550671] IR NEC protocol handler initialized
[    1.551372] IR RC5(x/sz) protocol handler initialized
[    1.552153] IR RC6 protocol handler initialized
[    1.552750] IR JVC protocol handler initialized
[    1.553438] IR Sony protocol handler initialized
[    1.554169] IR SANYO protocol handler initialized
[    1.554937] IR Sharp protocol handler initialized
[    1.555713] IR MCE Keyboard/mouse protocol handler initialized
[    1.556641] IR XMP protocol handler initialized
[    1.557442] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: 
dm-de...@redhat.com
[    1.558798] hidraw: raw HID events driver (C) Jiri Kosina
[    1.559977] usbcore: registered new interface driver usbhid
[    1.560773] usbhid: USB HID core driver
[    1.561801] Netfilter messages via NETLINK v0.30.
[    1.562950] nf_conntrack version 0.5.0 (8192 buckets, 32768 max)
[    1.564153] ctnetlink v0.93: registering with nfnetlink.
[    1.564945] ip_tables: (C) 2000-2006 Netfilter Core Team
[    1.565754] Initializing XFRM netlink socket
[    1.566553] NET: Registered protocol family 10
[    1.567550] Segment Routing with IPv6
[    1.568145] ip6_tables: (C) 2000-2006 Netfilter Core Team
[    1.569141] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[    1.570344] NET: Registered protocol family 17
[    1.570968] 9pnet: Installing 9P2000 support
[    1.572208] Key type dns_resolver registered
[    1.572941] sched_clock: Marking stable (1572009795, 0)->(2028543902, 
-456534107)
[    1.574254] registered taskstats version 1
[    1.575116]   Magic number: 9:723:270
[    1.575875] console [netcon0] enabled
[    1.576527] netconsole: network logging started
[    1.577217] ALSA device list:
[    1.577589]   No soundcards found.
[    1.579915] Freeing unused kernel memory: 1224K
[    1.580700] Write protecting the kernel read-only data: 14336k
[    1.582185] Freeing unused kernel memory: 708K
[    1.585470] Freeing unused kernel memory: 1032K
[    1.684351] e1000 0000:00:03.0 enp0s3: renamed from eth0
[    1.731998] ata_id (1051) used greatest stack depth: 14008 bytes left
[    1.736711] systemd-udevd (1046) used greatest stack depth: 13712 bytes left
[    2.080301] tsc: Refined TSC clocksource calibration: 2394.033 MHz
[    2.082949] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 
0x228232ad4ea, max_idle_ns: 440795240328 ns
[    2.170339] input: ImExPS/2 Generic Explorer Mouse as 
/devices/platform/i8042/serio1/input/input3
[    8.158593] EXT4-fs (vda1): mounted filesystem with ordered data mode. Opts: 
(null)
[    8.226081] systemd[1]: systemd 234 running in system mode. (+PAM +AUDIT 
+SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS 
+ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN 
default-hierarchy=hybrid)
[    8.230076] systemd[1]: Detected virtualization kvm.
[    8.231034] systemd[1]: Detected architecture x86-64.
[    8.232861] systemd[1]: Set hostname to <kernel-tester>.
[    8.291839] systemd[1]: Created slice User and Session Slice.
[    8.294110] systemd[1]: Listening on udev Control Socket.
[    8.296125] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    8.298574] systemd[1]: Listening on Journal Socket.
[    8.300578] systemd[1]: Started Dispatch Password Requests to Console 
Directory Watch.
[    8.304460] systemd[1]: Listening on Journal Audit Socket.
[    8.474998] udevadm (1203) used greatest stack depth: 13704 bytes left
[    8.486138] systemd-journald[1197]: Received request to flush runtime 
journal from PID 1
[   15.465265] lsb_release (1301) used greatest stack depth: 13696 bytes left
[   28.178792] IPv6: ADDRCONF(NETDEV_UP): enp0s3: link is not ready
[   28.179282] e1000: enp0s3 NIC Link is Up 1000 Mbps Full Duplex, Flow 
Control: RX
[   28.179709] IPv6: ADDRCONF(NETDEV_CHANGE): enp0s3: link becomes ready
[   28.181080] ip (1323) used greatest stack depth: 13528 bytes left
[   35.953583] vhci_hcd vhci_hcd.0: USB/IP Virtual Host Controller
[   35.953782] vhci_hcd vhci_hcd.0: new USB bus registered, assigned bus number 
1
[   35.953800] vhci_hcd: created sysfs vhci_hcd.0
[   35.953843] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[   35.953845] usb usb1: New USB device strings: Mfr=3, Product=2, 
SerialNumber=1
[   35.953847] usb usb1: Product: USB/IP Virtual Host Controller
[   35.953848] usb usb1: Manufacturer: Linux 4.14.0+ vhci_hcd
[   35.953850] usb usb1: SerialNumber: vhci_hcd.0
[   35.955765] hub 1-0:1.0: USB hub found
[   35.955773] hub 1-0:1.0: 1 port detected
[   35.955881] vhci_hcd vhci_hcd.0: USB/IP Virtual Host Controller
[   35.955962] vhci_hcd vhci_hcd.0: new USB bus registered, assigned bus number 
2
[   35.955975] usb usb2: We don't know the algorithms for LPM for this host, 
disabling LPM.
[   35.955992] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[   35.955993] usb usb2: New USB device strings: Mfr=3, Product=2, 
SerialNumber=1
[   35.955994] usb usb2: Product: USB/IP Virtual Host Controller
[   35.955995] usb usb2: Manufacturer: Linux 4.14.0+ vhci_hcd
[   35.955996] usb usb2: SerialNumber: vhci_hcd.0
[   35.957245] hub 2-0:1.0: USB hub found
[   35.957252] hub 2-0:1.0: 1 port detected
[   35.957610] vhci_hcd vhci_hcd.1: USB/IP Virtual Host Controller
[   35.957642] vhci_hcd vhci_hcd.1: new USB bus registered, assigned bus number 
3
[   35.957753] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[   35.957754] usb usb3: New USB device strings: Mfr=3, Product=2, 
SerialNumber=1
[   35.957755] usb usb3: Product: USB/IP Virtual Host Controller
[   35.957756] usb usb3: Manufacturer: Linux 4.14.0+ vhci_hcd
[   35.957757] usb usb3: SerialNumber: vhci_hcd.1
[   35.957909] hub 3-0:1.0: USB hub found
[   35.957987] hub 3-0:1.0: 1 port detected
[   35.959118] vhci_hcd vhci_hcd.1: USB/IP Virtual Host Controller
[   35.959164] vhci_hcd vhci_hcd.1: new USB bus registered, assigned bus number 
4
[   35.959232] usb usb4: We don't know the algorithms for LPM for this host, 
disabling LPM.
[   35.959247] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[   35.959248] usb usb4: New USB device strings: Mfr=3, Product=2, 
SerialNumber=1
[   35.959249] usb usb4: Product: USB/IP Virtual Host Controller
[   35.959250] usb usb4: Manufacturer: Linux 4.14.0+ vhci_hcd
[   35.959251] usb usb4: SerialNumber: vhci_hcd.1
[   35.960174] hub 4-0:1.0: USB hub found
[   35.960300] hub 4-0:1.0: 1 port detected
[   35.960491] vhci_hcd vhci_hcd.2: USB/IP Virtual Host Controller
[   35.960875] vhci_hcd vhci_hcd.2: new USB bus registered, assigned bus number 
5
[   35.961183] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002
[   35.961185] usb usb5: New USB device strings: Mfr=3, Product=2, 
SerialNumber=1
[   35.961187] usb usb5: Product: USB/IP Virtual Host Controller
[   35.961188] usb usb5: Manufacturer: Linux 4.14.0+ vhci_hcd
[   35.961189] usb usb5: SerialNumber: vhci_hcd.2
[   35.961414] hub 5-0:1.0: USB hub found
[   35.961519] hub 5-0:1.0: 1 port detected
[   35.961640] vhci_hcd vhci_hcd.2: USB/IP Virtual Host Controller
[   35.961705] vhci_hcd vhci_hcd.2: new USB bus registered, assigned bus number 
6
[   35.961810] usb usb6: We don't know the algorithms for LPM for this host, 
disabling LPM.
[   35.961840] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003
[   35.961842] usb usb6: New USB device strings: Mfr=3, Product=2, 
SerialNumber=1
[   35.961843] usb usb6: Product: USB/IP Virtual Host Controller
[   35.961844] usb usb6: Manufacturer: Linux 4.14.0+ vhci_hcd
[   35.961845] usb usb6: SerialNumber: vhci_hcd.2
[   35.962259] hub 6-0:1.0: USB hub found
[   35.962367] hub 6-0:1.0: 1 port detected
[   35.964227] vhci_hcd vhci_hcd.3: USB/IP Virtual Host Controller
[   35.964650] vhci_hcd vhci_hcd.3: new USB bus registered, assigned bus number 
7
[   35.966790] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002
[   35.966793] usb usb7: New USB device strings: Mfr=3, Product=2, 
SerialNumber=1
[   35.966795] usb usb7: Product: USB/IP Virtual Host Controller
[   35.966796] usb usb7: Manufacturer: Linux 4.14.0+ vhci_hcd
[   35.966798] usb usb7: SerialNumber: vhci_hcd.3
[   35.968142] hub 7-0:1.0: USB hub found
[   35.969936] hub 7-0:1.0: 1 port detected
[   35.970188] vhci_hcd vhci_hcd.3: USB/IP Virtual Host Controller
[   35.970246] vhci_hcd vhci_hcd.3: new USB bus registered, assigned bus number 
8
[   35.970267] usb usb8: We don't know the algorithms for LPM for this host, 
disabling LPM.
[   35.970295] usb usb8: New USB device found, idVendor=1d6b, idProduct=0003
[   35.970297] usb usb8: New USB device strings: Mfr=3, Product=2, 
SerialNumber=1
[   35.970298] usb usb8: Product: USB/IP Virtual Host Controller
[   35.970299] usb usb8: Manufacturer: Linux 4.14.0+ vhci_hcd
[   35.970300] usb usb8: SerialNumber: vhci_hcd.3
[   35.970411] hub 8-0:1.0: USB hub found
[   35.970420] hub 8-0:1.0: 1 port detected
[   35.975754] insmod (1342) used greatest stack depth: 13224 bytes left
[   63.163503] vhci_hcd vhci_hcd.0: pdev(0) rhport(0) sockfd(3)
[   63.163507] vhci_hcd vhci_hcd.0: devid(65540) speed(2) speed_str(full-speed)
[   63.335236] vhci_hcd: vhci_device speed not set
[   63.388056] usb 1-1: new full-speed USB device number 2 using vhci_hcd
[   63.451117] vhci_hcd: vhci_device speed not set
[   63.504984] usb 1-1: SetAddress Request (2) to port 0
[   63.521395] usb 1-1: New USB device found, idVendor=138a, idProduct=0008
[   63.521399] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=1
[   63.521401] usb 1-1: SerialNumber: 3710ff331c01
[   68.861463] vhci_hcd vhci_hcd.0: port 0 already used
[   68.864625] vhci_hcd vhci_hcd.0: port 0 already used
[   68.867984] vhci_hcd vhci_hcd.0: port 0 already used
[   68.871498] vhci_hcd vhci_hcd.0: port 0 already used
[   68.874583] vhci_hcd vhci_hcd.0: port 0 already used
[   68.876965] vhci_hcd vhci_hcd.0: port 0 already used
[   68.880432] vhci_hcd vhci_hcd.0: port 0 already used
[   68.883138] vhci_hcd vhci_hcd.0: port 0 already used
[   68.885322] vhci_hcd vhci_hcd.0: port 0 already used
[   68.888961] vhci_hcd vhci_hcd.0: port 0 already used
[   68.892235] vhci_hcd vhci_hcd.0: port 0 already used
[   68.895825] vhci_hcd vhci_hcd.0: port 0 already used
[   68.899163] vhci_hcd vhci_hcd.0: port 0 already used
[   68.902591] vhci_hcd vhci_hcd.0: port 0 already used
[   68.906377] vhci_hcd vhci_hcd.0: port 0 already used
[   68.909566] vhci_hcd vhci_hcd.0: port 0 already used
[   68.912616] vhci_hcd vhci_hcd.0: port 0 already used
[   68.917010] vhci_hcd vhci_hcd.0: port 0 already used
[   68.921173] vhci_hcd vhci_hcd.0: port 0 already used
[   68.924847] vhci_hcd vhci_hcd.0: port 0 already used
[   68.928443] vhci_hcd vhci_hcd.0: port 0 already used
[   68.931598] vhci_hcd vhci_hcd.0: port 0 already used
[   68.935397] vhci_hcd vhci_hcd.0: port 0 already used
[   68.938604] vhci_hcd vhci_hcd.0: port 0 already used
[   68.941440] vhci_hcd vhci_hcd.0: port 0 already used
[   68.945146] vhci_hcd vhci_hcd.0: port 0 already used
[   68.948653] vhci_hcd vhci_hcd.0: port 0 already used
[   68.951136] vhci_hcd vhci_hcd.0: port 0 already used
[   68.953861] vhci_hcd vhci_hcd.0: port 0 already used
[   68.956833] vhci_hcd vhci_hcd.0: port 0 already used
[   68.959823] vhci_hcd vhci_hcd.0: port 0 already used
[   68.963974] vhci_hcd vhci_hcd.0: port 0 already used
[   68.967977] vhci_hcd vhci_hcd.0: port 0 already used
[   68.971460] vhci_hcd vhci_hcd.0: port 0 already used
[   68.974847] vhci_hcd vhci_hcd.0: port 0 already used
[   68.977732] vhci_hcd vhci_hcd.0: port 0 already used
[   68.980386] vhci_hcd vhci_hcd.0: port 0 already used
[   68.983277] vhci_hcd vhci_hcd.0: port 0 already used
[   68.986037] vhci_hcd vhci_hcd.0: port 0 already used
[   68.988273] vhci_hcd vhci_hcd.0: port 0 already used
[   68.991143] vhci_hcd vhci_hcd.0: port 0 already used
[   68.993810] vhci_hcd vhci_hcd.0: port 0 already used
[   68.996765] vhci_hcd vhci_hcd.0: port 0 already used
[   69.000282] vhci_hcd vhci_hcd.0: port 0 already used
[   69.003930] vhci_hcd vhci_hcd.0: port 0 already used
[   69.007087] vhci_hcd vhci_hcd.0: port 0 already used
[   69.009862] vhci_hcd vhci_hcd.0: port 0 already used
[   69.013419] vhci_hcd vhci_hcd.0: port 0 already used
[   69.017506] vhci_hcd vhci_hcd.0: port 0 already used
[   69.021751] vhci_hcd vhci_hcd.0: port 0 already used
[   69.026025] vhci_hcd vhci_hcd.0: port 0 already used
[   69.030395] vhci_hcd vhci_hcd.0: port 0 already used
[   69.033303] vhci_hcd vhci_hcd.0: port 0 already used
[   69.036371] vhci_hcd vhci_hcd.0: port 0 already used
[   69.039446] vhci_hcd vhci_hcd.0: port 0 already used
[   69.041019] vhci_hcd vhci_hcd.0: port 0 already used
[   69.044105] vhci_hcd vhci_hcd.0: port 0 already used
[   69.047090] vhci_hcd vhci_hcd.0: port 0 already used
[   69.050051] vhci_hcd vhci_hcd.0: port 0 already used
[   69.054234] vhci_hcd vhci_hcd.0: port 0 already used
[   69.059324] vhci_hcd vhci_hcd.0: port 0 already used
[   69.063690] vhci_hcd vhci_hcd.0: port 0 already used
[   69.066638] vhci_hcd vhci_hcd.0: port 0 already used
[   69.069481] vhci_hcd vhci_hcd.0: port 0 already used
[   69.072508] vhci_hcd vhci_hcd.0: port 0 already used
[   69.075511] vhci_hcd vhci_hcd.0: port 0 already used
[   69.078339] vhci_hcd vhci_hcd.0: port 0 already used
[   69.081346] vhci_hcd vhci_hcd.0: port 0 already used
[   69.084348] vhci_hcd vhci_hcd.0: port 0 already used
[   69.087514] vhci_hcd vhci_hcd.0: port 0 already used
[   69.090872] vhci_hcd vhci_hcd.0: port 0 already used
[   69.094343] vhci_hcd vhci_hcd.0: port 0 already used
[   69.097257] vhci_hcd vhci_hcd.0: port 0 already used
[   69.100287] vhci_hcd vhci_hcd.0: port 0 already used
[   69.103820] vhci_hcd vhci_hcd.0: port 0 already used
[   69.108210] vhci_hcd vhci_hcd.0: port 0 already used
[   69.111699] vhci_hcd vhci_hcd.0: port 0 already used
[   69.115186] vhci_hcd vhci_hcd.0: port 0 already used
[   69.118794] vhci_hcd vhci_hcd.0: port 0 already used
[   69.121733] vhci_hcd vhci_hcd.0: port 0 already used
[   69.125375] vhci_hcd vhci_hcd.0: port 0 already used
[   69.128827] vhci_hcd vhci_hcd.0: port 0 already used
[   69.131857] vhci_hcd vhci_hcd.0: port 0 already used
[   69.134610] vhci_hcd vhci_hcd.0: port 0 already used
[   69.138218] vhci_hcd vhci_hcd.0: port 0 already used
[   69.142693] vhci_hcd vhci_hcd.0: port 0 already used
[   69.147320] vhci_hcd vhci_hcd.0: port 0 already used
[   69.150740] vhci_hcd vhci_hcd.0: port 0 already used
[   69.154303] vhci_hcd vhci_hcd.0: port 0 already used
[   69.157882] vhci_hcd vhci_hcd.0: port 0 already used
[   69.161197] vhci_hcd vhci_hcd.0: port 0 already used
[   69.164628] vhci_hcd vhci_hcd.0: port 0 already used
[   69.167870] vhci_hcd vhci_hcd.0: port 0 already used
[   69.171202] vhci_hcd vhci_hcd.0: port 0 already used
[   69.174483] vhci_hcd vhci_hcd.0: port 0 already used
[   69.177780] vhci_hcd vhci_hcd.0: port 0 already used
[   69.180978] vhci_hcd vhci_hcd.0: port 0 already used
[   69.184343] vhci_hcd vhci_hcd.0: port 0 already used
[   69.187116] vhci_hcd vhci_hcd.0: port 0 already used
[   69.189685] vhci_hcd vhci_hcd.0: port 0 already used
[   69.192224] vhci_hcd vhci_hcd.0: port 0 already used
[   69.194871] vhci_hcd vhci_hcd.0: port 0 already used
[   69.197399] vhci_hcd vhci_hcd.0: port 0 already used
[   69.200576] vhci_hcd vhci_hcd.0: port 0 already used
[   69.203431] vhci_hcd vhci_hcd.0: port 0 already used
[   69.205876] vhci_hcd vhci_hcd.0: port 0 already used
[   69.208405] vhci_hcd vhci_hcd.0: port 0 already used
[   69.211976] vhci_hcd vhci_hcd.0: port 0 already used
[   69.215068] vhci_hcd vhci_hcd.0: port 0 already used

Reply via email to