NB: This is an updated version of https://bugzilla.kernel.org/show_bug.cgi?id=97131. I'm reposting here by the request of that bug's assignee. In this update I've added the output of some more diagnostic commands (at the end of the post). The list of diagnostic commands run is now this: $ cat /proc/version $ /usr/lib/linux-kbuild-3.2/scripts/ver_linux $ cat /proc/cpuinfo $ cat /proc/modules $ cat /proc/ioports $ cat /proc/iomem $ lspci -vvv $ lspci -nn $ cat /proc/scsi/scsi $ lsusb -v $ dmesg $ cat /etc/rc.local $ cat /proc/interrupts $ dpkg -l | grep "$(uname -r)" ================================================================================ DESCRIPTION =========== My new computer (Dell Precision T1700) works fine until the system goes to sleep for the first time after booting. After waking, the cursor on the screen lags so much behind the physical motion of the mouse that the latter is basically unusable. This mouse malfunction persists until the system is rebooted. The only new log messages I see when I bring the system back from its first post-boot sleep is this (both in /var/log/kern.log and /var/log/syslog, and part of it also in /var/log/messages): Apr 22 09:21:00 capitan kernel: [ 67.832836] irq 16: nobody cared (try booting with the "irqpoll" option) Apr 22 09:21:00 capitan kernel: [ 67.832848] Pid: 0, comm: swapper/0 Not tainted 3.2.0-4-amd64 #1 Debian 3.2.65-1+deb7u2 Apr 22 09:21:00 capitan kernel: [ 67.832853] Call Trace: Apr 22 09:21:00 capitan kernel: [ 67.832856] <IRQ> [<ffffffff81092ddd>] ? __report_bad_irq+0x2c/0xb5 Apr 22 09:21:00 capitan kernel: [ 67.832878] [<ffffffff810931e2>] ? note_interrupt+0x1b8/0x23a Apr 22 09:21:00 capitan kernel: [ 67.832886] [<ffffffff81091554>] ? handle_irq_event_percpu+0x15f/0x17d Apr 22 09:21:00 capitan kernel: [ 67.832893] [<ffffffff810915a6>] ? handle_irq_event+0x34/0x52 Apr 22 09:21:00 capitan kernel: [ 67.832903] [<ffffffff8106c305>] ? arch_local_irq_save+0x11/0x17 Apr 22 09:21:00 capitan kernel: [ 67.832911] [<ffffffff81093959>] ? handle_fasteoi_irq+0x7c/0xaf Apr 22 09:21:00 capitan kernel: [ 67.832921] [<ffffffff8100fa51>] ? handle_irq+0x1d/0x21 Apr 22 09:21:00 capitan kernel: [ 67.832929] [<ffffffff8100f62a>] ? do_IRQ+0x42/0x98 Apr 22 09:21:00 capitan kernel: [ 67.832939] [<ffffffff813511ae>] ? common_interrupt+0x6e/0x6e Apr 22 09:21:00 capitan kernel: [ 67.832943] <EOI> [<ffffffff81024404>] ? lapic_next_event+0xe/0x13 Apr 22 09:21:00 capitan kernel: [ 67.832977] [<ffffffffa01dc35b>] ? arch_local_irq_enable+0x7/0x8 [processor] Apr 22 09:21:00 capitan kernel: [ 67.832991] [<ffffffffa01dd0b3>] ? acpi_idle_enter_c1+0x8d/0xb3 [processor] Apr 22 09:21:00 capitan kernel: [ 67.833002] [<ffffffff8127180d>] ? cpuidle_idle_call+0xec/0x179 Apr 22 09:21:00 capitan kernel: [ 67.833010] [<ffffffff8100d242>] ? cpu_idle+0xa5/0xf2 Apr 22 09:21:00 capitan kernel: [ 67.833020] [<ffffffff816aab3b>] ? start_kernel+0x3bd/0x3c8 Apr 22 09:21:00 capitan kernel: [ 67.833029] [<ffffffff816aa140>] ? early_idt_handlers+0x140/0x140 Apr 22 09:21:00 capitan kernel: [ 67.833037] [<ffffffff816aa3c4>] ? x86_64_start_kernel+0x104/0x111 Apr 22 09:21:00 capitan kernel: [ 67.833041] handlers: Apr 22 09:21:00 capitan kernel: [ 67.833059] [<ffffffffa00a9216>] usb_hcd_irq Apr 22 09:21:00 capitan kernel: [ 67.833067] [<ffffffffa0295cbd>] azx_interrupt Apr 22 09:21:00 capitan kernel: [ 67.833072] Disabling IRQ #16 I figure that it is the disabling of IRQ #16 (last line) that is responsible for the subsequent malfunctioning of the mouse. The driver associated with this interrupt is # grep '^ 16:' /proc/interrupts 16: 1211 0 0 0 IR-IO-APIC-fasteoi ehci_hcd:usb1 (When I first looked into this problem, the IRQ 16 line was actually like this: # grep '^ 16:' /proc/interrupts 16: 1210 0 0 0 IR-IO-APIC-fasteoi ehci_hcd:usb1, snd_hda_intel Since snd_hda_intel was being loaded twice at boot time (e.g. it showed up also in the line for IRQ 45), I tried to fix the problem with the mouse by disabling this instance of snd_hda_intel. For details, see the content of my /etc/rc.local file further below. As it turned out, even though snd_hda_intel no longer appears in the IRQ 16 line, the unhandled IRQ 16 error keeps happening, and the problem with the mouse persists.) ================================================================================ A few more observations, for what they're worth: 1. I don't see this problem at all if I reboot the machine into Windows 7 (mouse works the same before and after sleep). 2. the mouse does not seem to be the source of the problem, because the both the unhandled interrupt and the subsequent problems with the mouse occur even if I: 1. disconnect the mouse; 2. reboot the machine (into Debian); 3. put the system to sleep (with `sleep 0.1; xset dpms force off` ); 4. wake the system; 5. connect the mouse 3. the problem also occurs if, instead of putting the system to sleep (as described in step (2.3) above), I simply turn off the monitor. ================================================================================ I'm looking for some work-arounds (other than disabling sleep/power-saving altogether) to avoid having to reboot after every time the system goes to sleep. ================================================================================ DIAGNOSTICS =========== Below are the outputs of the following diagnostic commands: $ cat /proc/version $ /usr/lib/linux-kbuild-3.2/scripts/ver_linux $ cat /proc/cpuinfo $ cat /proc/modules $ cat /proc/ioports $ cat /proc/iomem $ lspci -vvv $ lspci -nn $ cat /proc/scsi/scsi $ lsusb -v $ dmesg $ cat /etc/rc.local $ cat /proc/interrupts $ dpkg -l | grep "$(uname -r)" Search for the string "$$$" to skip to the output of the next command. The command ran is in the first non-empty line of each section (preceded by " $ "). So, to skip to the section for for command `foo bar`, say, it should be enough to search for the string "foo bar". Before running these commands, I ran $ aptitude update $ aptitude upgrade and rebooted the system. I ran the diagnostic commands right after the reboot, with the exception of the last one (`dpkg -l` ...). ================================================================================ Thu Apr 23 07:24:46 EDT 2015 $$$ ============================================================================ $ cat /proc/version Linux version 3.2.0-4-amd64 (debian-kernel@xxxxxxxxxxxxxxxx) (gcc version 4.6.3 (Debian 4.6.3-14) ) #1 SMP Debian 3.2.65-1+deb7u2 $$$ ============================================================================ $ /usr/lib/linux-kbuild-3.2/scripts/ver_linux If some fields are empty or look unusual you may have an old version. Compare to the current minimal requirements in Documentation/Changes. Linux capitan 3.2.0-4-amd64 #1 SMP Debian 3.2.65-1+deb7u2 x86_64 GNU/Linux Gnu C 4.7 Gnu make 3.81 binutils 2.22 util-linux 2.20.1 mount support module-init-tools 9 e2fsprogs 1.42.5 pcmciautils 018 PPP 2.4.5 Linux C Library 2.13 Dynamic linker (ldd) 2.13 Procps 3.3.3 Net-tools 1.60 Console-tools 0.2.3 Sh-utils 8.13 wireless-tools 30 Modules Loaded bnep parport_pc ppdev lp parport rfcomm bluetooth rfkill binfmt_misc uinput nfsd nfs nfs_acl auth_rpcgss fscache lockd sunrpc fuse loop snd_hda_codec_realtek coretemp crc32c_intel ghash_clmulni_intel aesni_intel aes_x86_64 aes_generic cryptd evdev dcdbas snd_hda_intel snd_hda_codec snd_hwdep snd_pcm snd_page_alloc snd_seq snd_seq_device snd_timer wmi acpi_cpufreq mperf iTCO_wdt iTCO_vendor_support pcspkr psmouse i2c_i801 video i2c_core snd serio_raw button processor soundcore ext4 crc16 jbd2 mbcache usbhid hid usb_storage sg sr_mod sd_mod cdrom crc_t10dif xhci_hcd thermal thermal_sys ahci libahci e1000e ehci_hcd libata scsi_mod usbcore usb_common $$$ ============================================================================ $ cat /proc/cpuinfo processor : 0 vendor_id : GenuineIntel cpu family : 6 model : 60 model name : Intel(R) Core(TM) i5-4690 CPU @ 3.50GHz stepping : 3 microcode : 0x1c cpu MHz : 3501.000 cache size : 6144 KB physical id : 0 siblings : 4 core id : 0 cpu cores : 4 apicid : 0 initial apicid : 0 fpu : yes fpu_exception : yes cpuid level : 13 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms bogomips : 6983.95 clflush size : 64 cache_alignment : 64 address sizes : 39 bits physical, 48 bits virtual power management: processor : 1 vendor_id : GenuineIntel cpu family : 6 model : 60 model name : Intel(R) Core(TM) i5-4690 CPU @ 3.50GHz stepping : 3 microcode : 0x1c cpu MHz : 2700.000 cache size : 6144 KB physical id : 0 siblings : 4 core id : 1 cpu cores : 4 apicid : 2 initial apicid : 2 fpu : yes fpu_exception : yes cpuid level : 13 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms bogomips : 6983.76 clflush size : 64 cache_alignment : 64 address sizes : 39 bits physical, 48 bits virtual power management: processor : 2 vendor_id : GenuineIntel cpu family : 6 model : 60 model name : Intel(R) Core(TM) i5-4690 CPU @ 3.50GHz stepping : 3 microcode : 0x1c cpu MHz : 1800.000 cache size : 6144 KB physical id : 0 siblings : 4 core id : 2 cpu cores : 4 apicid : 4 initial apicid : 4 fpu : yes fpu_exception : yes cpuid level : 13 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms bogomips : 6983.85 clflush size : 64 cache_alignment : 64 address sizes : 39 bits physical, 48 bits virtual power management: processor : 3 vendor_id : GenuineIntel cpu family : 6 model : 60 model name : Intel(R) Core(TM) i5-4690 CPU @ 3.50GHz stepping : 3 microcode : 0x1c cpu MHz : 1400.000 cache size : 6144 KB physical id : 0 siblings : 4 core id : 3 cpu cores : 4 apicid : 6 initial apicid : 6 fpu : yes fpu_exception : yes cpuid level : 13 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms bogomips : 6983.76 clflush size : 64 cache_alignment : 64 address sizes : 39 bits physical, 48 bits virtual power management: $$$ ============================================================================ $ cat /proc/modules bnep 17567 2 - Live 0xffffffffa0440000 parport_pc 22364 0 - Live 0xffffffffa03db000 ppdev 12763 0 - Live 0xffffffffa0364000 lp 17149 0 - Live 0xffffffffa03d5000 parport 31858 3 parport_pc,ppdev,lp, Live 0xffffffffa035b000 rfcomm 33700 0 - Live 0xffffffffa03cb000 bluetooth 119455 10 bnep,rfcomm, Live 0xffffffffa041b000 rfkill 19012 2 bluetooth, Live 0xffffffffa02d5000 binfmt_misc 12957 1 - Live 0xffffffffa0276000 uinput 17440 1 - Live 0xffffffffa026a000 nfsd 216181 2 - Live 0xffffffffa03e5000 nfs 308353 0 - Live 0xffffffffa037e000 nfs_acl 12511 2 nfsd,nfs, Live 0xffffffffa010e000 auth_rpcgss 37143 2 nfsd,nfs, Live 0xffffffffa01f3000 fscache 36739 1 nfs, Live 0xffffffffa02ba000 lockd 67306 2 nfsd,nfs, Live 0xffffffffa036c000 sunrpc 173730 6 nfsd,nfs,nfs_acl,auth_rpcgss,lockd, Live 0xffffffffa032a000 fuse 62012 5 - Live 0xffffffffa0319000 loop 22641 0 - Live 0xffffffffa01e7000 snd_hda_codec_realtek 188851 1 - Live 0xffffffffa02e9000 coretemp 12898 0 - Live 0xffffffffa01ee000 crc32c_intel 12747 0 - Live 0xffffffffa01dc000 ghash_clmulni_intel 13130 0 - Live 0xffffffffa01cd000 aesni_intel 50667 0 - Live 0xffffffffa02db000 aes_x86_64 16843 1 aesni_intel, Live 0xffffffffa0142000 aes_generic 33026 2 aesni_intel,aes_x86_64, Live 0xffffffffa0201000 cryptd 14517 2 ghash_clmulni_intel,aesni_intel, Live 0xffffffffa01e2000 evdev 17562 10 - Live 0xffffffffa01d3000 dcdbas 13307 0 - Live 0xffffffffa028d000 snd_hda_intel 26259 4 - Live 0xffffffffa02c7000 snd_hda_codec 78031 2 snd_hda_codec_realtek,snd_hda_intel, Live 0xffffffffa02a5000 snd_hwdep 13186 1 snd_hda_codec, Live 0xffffffffa0288000 snd_pcm 68083 4 snd_hda_intel,snd_hda_codec, Live 0xffffffffa0293000 snd_page_alloc 13003 2 snd_hda_intel,snd_pcm, Live 0xffffffffa0271000 snd_seq 45126 0 - Live 0xffffffffa027b000 snd_seq_device 13176 1 snd_seq, Live 0xffffffffa021e000 snd_timer 22917 2 snd_pcm,snd_seq, Live 0xffffffffa0263000 wmi 13243 0 - Live 0xffffffffa025a000 acpi_cpufreq 12935 0 - Live 0xffffffffa0219000 mperf 12453 1 acpi_cpufreq, Live 0xffffffffa0255000 iTCO_wdt 17081 0 - Live 0xffffffffa024f000 iTCO_vendor_support 12704 1 iTCO_wdt, Live 0xffffffffa024a000 pcspkr 12579 0 - Live 0xffffffffa022f000 psmouse 69265 0 - Live 0xffffffffa0234000 i2c_i801 16870 0 - Live 0xffffffffa0223000 video 17683 0 - Live 0xffffffffa0229000 i2c_core 23876 1 i2c_i801, Live 0xffffffffa014a000 snd 52893 14 snd_hda_codec_realtek,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_seq,snd_seq_device,snd_timer, Live 0xffffffffa020b000 serio_raw 12931 0 - Live 0xffffffffa00fd000 button 12937 0 - Live 0xffffffffa00e5000 processor 28149 5 acpi_cpufreq, Live 0xffffffffa00f5000 soundcore 13065 1 snd, Live 0xffffffffa00c7000 ext4 350804 1 - Live 0xffffffffa0176000 crc16 12343 2 bluetooth,ext4, Live 0xffffffffa002d000 jbd2 62115 1 ext4, Live 0xffffffffa0165000 mbcache 13114 1 ext4, Live 0xffffffffa00ac000 usbhid 36418 0 - Live 0xffffffffa00eb000 hid 81372 1 usbhid, Live 0xffffffffa00d0000 usb_storage 43870 0 - Live 0xffffffffa00bb000 sg 25874 0 - Live 0xffffffffa006c000 sr_mod 21899 0 - Live 0xffffffffa00b1000 sd_mod 36136 6 - Live 0xffffffffa00a2000 cdrom 35401 1 sr_mod, Live 0xffffffffa0062000 crc_t10dif 12348 1 sd_mod, Live 0xffffffffa0028000 xhci_hcd 73352 0 - Live 0xffffffffa0152000 thermal 17383 0 - Live 0xffffffffa013c000 thermal_sys 18040 3 video,processor,thermal, Live 0xffffffffa0033000 ahci 24997 4 - Live 0xffffffffa009a000 libahci 22941 1 ahci, Live 0xffffffffa0135000 e1000e 133833 0 - Live 0xffffffffa0113000 ehci_hcd 40249 0 - Live 0xffffffffa0103000 libata 140630 2 ahci,libahci, Live 0xffffffffa0076000 scsi_mod 162321 5 usb_storage,sg,sr_mod,sd_mod,libata, Live 0xffffffffa0039000 usbcore 128741 5 usbhid,usb_storage,xhci_hcd,ehci_hcd, Live 0xffffffffa0007000 usb_common 12354 1 usbcore, Live 0xffffffffa0000000 $$$ ============================================================================ $ cat /proc/ioports 0000-0cf7 : PCI Bus 0000:00 0000-001f : dma1 0020-0021 : pic1 0040-0043 : timer0 0050-0053 : timer1 0060-0060 : keyboard 0064-0064 : keyboard 0070-0077 : rtc0 0080-008f : dma page reg 00a0-00a1 : pic2 00b2-00b2 : APEI ERST 00c0-00df : dma2 00f0-00ff : fpu 03c0-03df : vga+ 03f8-03ff : serial 04d0-04d1 : pnp 00:0a 0680-069f : pnp 00:06 0a00-0a0f : pnp 00:09 0cf8-0cff : PCI conf1 0d00-ffff : PCI Bus 0000:00 164e-164f : pnp 00:06 1800-18fe : pnp 00:06 1800-1803 : ACPI PM1a_EVT_BLK 1804-1805 : ACPI PM1a_CNT_BLK 1808-180b : ACPI PM_TMR 1810-1815 : ACPI CPU throttle 1820-182f : ACPI GPE0_BLK 1830-1833 : iTCO_wdt 1850-1850 : ACPI PM2_CNT_BLK 1854-1857 : pnp 00:08 1860-187f : iTCO_wdt 1c00-1cfe : pnp 00:06 1d00-1dfe : pnp 00:06 1e00-1efe : pnp 00:06 1f00-1ffe : pnp 00:06 2000-2fff : PCI Bus 0000:02 f000-f03f : 0000:00:02.0 f040-f05f : 0000:00:1f.3 f060-f07f : 0000:00:1f.2 f060-f07f : ahci f080-f09f : 0000:00:19.0 f0a0-f0a3 : 0000:00:1f.2 f0a0-f0a3 : ahci f0b0-f0b7 : 0000:00:1f.2 f0b0-f0b7 : ahci f0c0-f0c3 : 0000:00:1f.2 f0c0-f0c3 : ahci f0d0-f0d7 : 0000:00:1f.2 f0d0-f0d7 : ahci ffff-ffff : pnp 00:06 ffff-ffff : pnp 00:06 ffff-ffff : pnp 00:06 $$$ ============================================================================ $ cat /proc/iomem 00000000-0000ffff : reserved 00010000-000917ff : System RAM 00091800-0009ffff : reserved 000a0000-000bffff : PCI Bus 0000:00 000c0000-000cfdff : Video ROM 000d0000-000d9dff : Adapter ROM 000da000-000dafff : Adapter ROM 000db000-000dbfff : Adapter ROM 000dc000-000dffff : PCI Bus 0000:00 000e0000-000fffff : reserved 000e0000-000e3fff : PCI Bus 0000:00 000e4000-000e7fff : PCI Bus 0000:00 000f0000-000fffff : System ROM 00100000-d2291fff : System RAM 01000000-0135a8a5 : Kernel code 0135a8a6-01694eff : Kernel data 01729000-01807fff : Kernel bss d2292000-d2298fff : ACPI Non-volatile Storage d2299000-d26cafff : System RAM d26cb000-d2b5bfff : reserved d2b5c000-d7edafff : System RAM d7edb000-d7ffffff : reserved d8000000-d875ffff : System RAM d8760000-d87fffff : reserved d8800000-d8fadfff : System RAM d8fae000-d8ffffff : ACPI Tables d9000000-da71cfff : System RAM da71d000-da7fffff : ACPI Non-volatile Storage da800000-dbb05fff : System RAM dbb06000-dbffffff : reserved dbc73018-dbc7303e : APEI ERST dbc7303f-dbc7503e : APEI ERST dd000000-df1fffff : reserved df200000-feafffff : PCI Bus 0000:00 df200000-df3fffff : PCI Bus 0000:02 df400000-df5fffff : PCI Bus 0000:02 e0000000-efffffff : 0000:00:02.0 f7800000-f7bfffff : 0000:00:02.0 f7c00000-f7c1ffff : 0000:00:19.0 f7c00000-f7c1ffff : e1000e f7c20000-f7c2ffff : 0000:00:14.0 f7c20000-f7c2ffff : xhci_hcd f7c30000-f7c33fff : 0000:00:1b.0 f7c30000-f7c33fff : ICH HD audio f7c39000-f7c390ff : 0000:00:1f.3 f7c3a000-f7c3a7ff : 0000:00:1f.2 f7c3a000-f7c3a7ff : ahci f7c3b000-f7c3b3ff : 0000:00:1d.0 f7c3b000-f7c3b3ff : ehci_hcd f7c3c000-f7c3c3ff : 0000:00:1a.0 f7c3c000-f7c3c3ff : ehci_hcd f7c3d000-f7c3dfff : 0000:00:19.0 f7c3d000-f7c3dfff : e1000e f7c40000-f7c4000f : 0000:00:16.0 f7fd0000-f7fdffff : pnp 00:0c f7fee000-f7feefff : pnp 00:0c f8000000-fbffffff : PCI MMCONFIG 0000 [bus 00-3f] f8000000-fbffffff : reserved f8000000-fbffffff : pnp 00:0c fec00000-fec00fff : reserved fec00000-fec003ff : IOAPIC 0 fed00000-fed03fff : reserved fed00000-fed003ff : HPET 0 fed10000-fed17fff : pnp 00:0c fed18000-fed18fff : pnp 00:0c fed19000-fed19fff : pnp 00:0c fed1c000-fed1ffff : reserved fed1c000-fed1ffff : pnp 00:0c fed20000-fed3ffff : pnp 00:0c fed40000-fed44fff : pnp 00:01 fed45000-fed8ffff : pnp 00:0c fed90000-fed93fff : pnp 00:0c fee00000-fee00fff : Local APIC fee00000-fee00fff : reserved ff000000-ffffffff : reserved ff000000-ffffffff : pnp 00:0c 100000000-81edfffff : System RAM 81ee00000-81fffffff : RAM buffer $$$ ============================================================================ $ lspci -vvv 00:00.0 Host bridge: Intel Corporation Haswell DRAM Controller (rev 06) Subsystem: Dell Device 05a6 Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ >SERR- <PERR- INTx- Latency: 0 Capabilities: [e0] Vendor Specific Information: Len=0c <?> 00:02.0 VGA compatible controller: Intel Corporation Haswell Integrated Graphics Controller (rev 06) (prog-if 00 [VGA controller]) Subsystem: Dell Device 05a6 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 11 Region 0: Memory at f7800000 (64-bit, non-prefetchable) [size=4M] Region 2: Memory at e0000000 (64-bit, prefetchable) [size=256M] Region 4: I/O ports at f000 [size=64] Expansion ROM at <unassigned> [disabled] Capabilities: [90] MSI: Enable- Count=1/1 Maskable- 64bit- Address: 00000000 Data: 0000 Capabilities: [d0] Power Management version 2 Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-) Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME- Capabilities: [a4] PCI Advanced Features AFCap: TP+ FLR+ AFCtrl: FLR- AFStatus: TP- 00:14.0 USB controller: Intel Corporation Lynx Point USB xHCI Host Controller (rev 04) (prog-if 30 [XHCI]) Subsystem: Dell Device 05a6 Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+ Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 44 Region 0: Memory at f7c20000 (64-bit, non-prefetchable) [size=64K] Capabilities: [70] Power Management version 2 Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0-,D1-,D2-,D3hot+,D3cold+) Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME- Capabilities: [80] MSI: Enable+ Count=1/8 Maskable- 64bit+ Address: 00000000fee00318 Data: 0000 Kernel driver in use: xhci_hcd 00:16.0 Communication controller: Intel Corporation Lynx Point MEI Controller #1 (rev 04) Subsystem: Dell Device 05a6 Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 11 Region 0: Memory at f7c40000 (64-bit, non-prefetchable) [size=16] Capabilities: [50] Power Management version 3 Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+) Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME- Capabilities: [8c] MSI: Enable- Count=1/1 Maskable- 64bit+ Address: 0000000000000000 Data: 0000 00:19.0 Ethernet controller: Intel Corporation Ethernet Connection I217-LM (rev 04) Subsystem: Dell Device 05a6 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+ Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 42 Region 0: Memory at f7c00000 (32-bit, non-prefetchable) [size=128K] Region 1: Memory at f7c3d000 (32-bit, non-prefetchable) [size=4K] Region 2: I/O ports at f080 [size=32] Capabilities: [c8] Power Management version 2 Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+) Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=1 PME- Capabilities: [d0] MSI: Enable+ Count=1/1 Maskable- 64bit+ Address: 00000000fee002b8 Data: 0000 Capabilities: [e0] PCI Advanced Features AFCap: TP+ FLR+ AFCtrl: FLR- AFStatus: TP- Kernel driver in use: e1000e 00:1a.0 USB controller: Intel Corporation Lynx Point USB Enhanced Host Controller #2 (rev 04) (prog-if 20 [EHCI]) Subsystem: Dell Device 05a6 Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 16 Region 0: Memory at f7c3c000 (32-bit, non-prefetchable) [size=1K] Capabilities: [50] Power Management version 2 Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold+) Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME- Capabilities: [58] Debug port: BAR=1 offset=00a0 Capabilities: [98] PCI Advanced Features AFCap: TP+ FLR+ AFCtrl: FLR- AFStatus: TP- Kernel driver in use: ehci_hcd 00:1b.0 Audio device: Intel Corporation Lynx Point High Definition Audio Controller (rev 04) Subsystem: Dell Device 05a6 Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+ Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 64 bytes Interrupt: pin A routed to IRQ 45 Region 0: Memory at f7c30000 (64-bit, non-prefetchable) [size=16K] Capabilities: [50] Power Management version 2 Flags: PMEClk- DSI- D1- D2- AuxCurrent=55mA PME(D0+,D1-,D2-,D3hot+,D3cold+) Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME- Capabilities: [60] MSI: Enable+ Count=1/1 Maskable- 64bit+ Address: 00000000fee00378 Data: 0000 Capabilities: [70] Express (v1) Root Complex Integrated Endpoint, MSI 00 DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us ExtTag- RBE- FLReset+ DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported- RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop- MaxPayload 128 bytes, MaxReadReq 128 bytes DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend- LnkCap: Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us ClockPM- Surprise- LLActRep- BwNot- LnkCtl: ASPM Disabled; Disabled- Retrain- CommClk- ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt- LnkSta: Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt- Capabilities: [100 v1] Virtual Channel Caps: LPEVC=0 RefClk=100ns PATEntryBits=1 Arb: Fixed- WRR32- WRR64- WRR128- Ctrl: ArbSelect=Fixed Status: InProgress- VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans- Arb: Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256- Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=01 Status: NegoPending- InProgress- VC1: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans- Arb: Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256- Ctrl: Enable+ ID=2 ArbSelect=Fixed TC/VC=04 Status: NegoPending- InProgress- Kernel driver in use: snd_hda_intel 00:1c.0 PCI bridge: Intel Corporation Lynx Point PCI Express Root Port #1 (rev d4) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 64 bytes Bus: primary=00, secondary=01, subordinate=01, sec-latency=0 I/O behind bridge: 0000f000-00000fff Memory behind bridge: fff00000-000fffff Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: [40] Express (v2) Root Port (Slot-), MSI 00 DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us ExtTag- RBE+ FLReset- DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported- RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop- MaxPayload 128 bytes, MaxReadReq 128 bytes DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend- LnkCap: Port #1, Speed 5GT/s, Width x1, ASPM L0s L1, Latency L0 <1us, L1 <4us ClockPM- Surprise- LLActRep+ BwNot+ LnkCtl: ASPM L0s L1 Enabled; RCB 64 bytes Disabled- Retrain- CommClk- ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt- LnkSta: Speed 2.5GT/s, Width x0, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt- RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible- RootCap: CRSVisible- RootSta: PME ReqID 0000, PMEStatus- PMEPending- DevCap2: Completion Timeout: Range ABC, TimeoutDis+ ARIFwd- DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd- LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS- Compliance De-emphasis: -6dB LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1- EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest- Capabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit- Address: 00000000 Data: 0000 Capabilities: [90] Subsystem: Dell Device 05a6 Capabilities: [a0] Power Management version 3 Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+) Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME- Kernel driver in use: pcieport 00:1c.4 PCI bridge: Intel Corporation Lynx Point PCI Express Root Port #5 (rev d4) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 64 bytes Bus: primary=00, secondary=02, subordinate=02, sec-latency=0 I/O behind bridge: 00002000-00002fff Memory behind bridge: df200000-df3fffff Prefetchable memory behind bridge: 00000000df400000-00000000df5fffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: [40] Express (v2) Root Port (Slot+), MSI 00 DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us ExtTag- RBE+ FLReset- DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported- RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop- MaxPayload 128 bytes, MaxReadReq 128 bytes DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend- LnkCap: Port #5, Speed 5GT/s, Width x4, ASPM L0s L1, Latency L0 <1us, L1 <16us ClockPM- Surprise- LLActRep+ BwNot+ LnkCtl: ASPM L0s L1 Enabled; RCB 64 bytes Disabled- Retrain- CommClk- ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt- LnkSta: Speed 2.5GT/s, Width x0, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt- SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Slot #4, PowerLimit 25.000W; Interlock- NoCompl+ SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg- Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock- SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock- Changed: MRL- PresDet- LinkState- RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible- RootCap: CRSVisible- RootSta: PME ReqID 0000, PMEStatus- PMEPending- DevCap2: Completion Timeout: Range ABC, TimeoutDis+ ARIFwd- DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd- LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS- Compliance De-emphasis: -6dB LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1- EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest- Capabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit- Address: 00000000 Data: 0000 Capabilities: [90] Subsystem: Dell Device 05a6 Capabilities: [a0] Power Management version 3 Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+) Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME- Kernel driver in use: pcieport 00:1d.0 USB controller: Intel Corporation Lynx Point USB Enhanced Host Controller #1 (rev 04) (prog-if 20 [EHCI]) Subsystem: Dell Device 05a6 Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 23 Region 0: Memory at f7c3b000 (32-bit, non-prefetchable) [size=1K] Capabilities: [50] Power Management version 2 Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold+) Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME- Capabilities: [58] Debug port: BAR=1 offset=00a0 Capabilities: [98] PCI Advanced Features AFCap: TP+ FLR+ AFCtrl: FLR- AFStatus: TP- Kernel driver in use: ehci_hcd 00:1f.0 ISA bridge: Intel Corporation Lynx Point LPC Controller (rev 04) Subsystem: Dell Device 05a6 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Capabilities: [e0] Vendor Specific Information: Len=0c <?> 00:1f.2 RAID bus controller: Intel Corporation 82801 SATA Controller [RAID mode] (rev 04) Subsystem: Dell Device 05a6 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+ Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin B routed to IRQ 43 Region 0: I/O ports at f0d0 [size=8] Region 1: I/O ports at f0c0 [size=4] Region 2: I/O ports at f0b0 [size=8] Region 3: I/O ports at f0a0 [size=4] Region 4: I/O ports at f060 [size=32] Region 5: Memory at f7c3a000 (32-bit, non-prefetchable) [size=2K] Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit- Address: fee002f8 Data: 0000 Capabilities: [70] Power Management version 3 Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot+,D3cold-) Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME- Capabilities: [a8] SATA HBA v1.0 BAR4 Offset=00000004 Kernel driver in use: ahci 00:1f.3 SMBus: Intel Corporation Lynx Point SMBus Controller (rev 04) Subsystem: Dell Device 05a6 Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Interrupt: pin C routed to IRQ 18 Region 0: Memory at f7c39000 (64-bit, non-prefetchable) [size=256] Region 4: I/O ports at f040 [size=32] $$$ ============================================================================ $ lspci -nn 00:00.0 Host bridge [0600]: Intel Corporation Haswell DRAM Controller [8086:0c00] (rev 06) 00:02.0 VGA compatible controller [0300]: Intel Corporation Haswell Integrated Graphics Controller [8086:0412] (rev 06) 00:14.0 USB controller [0c03]: Intel Corporation Lynx Point USB xHCI Host Controller [8086:8c31] (rev 04) 00:16.0 Communication controller [0780]: Intel Corporation Lynx Point MEI Controller #1 [8086:8c3a] (rev 04) 00:19.0 Ethernet controller [0200]: Intel Corporation Ethernet Connection I217-LM [8086:153a] (rev 04) 00:1a.0 USB controller [0c03]: Intel Corporation Lynx Point USB Enhanced Host Controller #2 [8086:8c2d] (rev 04) 00:1b.0 Audio device [0403]: Intel Corporation Lynx Point High Definition Audio Controller [8086:8c20] (rev 04) 00:1c.0 PCI bridge [0604]: Intel Corporation Lynx Point PCI Express Root Port #1 [8086:8c10] (rev d4) 00:1c.4 PCI bridge [0604]: Intel Corporation Lynx Point PCI Express Root Port #5 [8086:8c18] (rev d4) 00:1d.0 USB controller [0c03]: Intel Corporation Lynx Point USB Enhanced Host Controller #1 [8086:8c26] (rev 04) 00:1f.0 ISA bridge [0601]: Intel Corporation Lynx Point LPC Controller [8086:8c56] (rev 04) 00:1f.2 RAID bus controller [0104]: Intel Corporation 82801 SATA Controller [RAID mode] [8086:2822] (rev 04) 00:1f.3 SMBus [0c05]: Intel Corporation Lynx Point SMBus Controller [8086:8c22] (rev 04) $$$ ============================================================================ $ cat /proc/scsi/scsi cat: /proc/scsi/scsi: No such file or directory $$$ ============================================================================ $ lsusb -v Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 2.00 bDeviceClass 9 Hub bDeviceSubClass 0 Unused bDeviceProtocol 0 Full speed (or root) hub bMaxPacketSize0 64 idVendor 0x1d6b Linux Foundation idProduct 0x0002 2.0 root hub bcdDevice 3.02 iManufacturer 3 Linux 3.2.0-4-amd64 ehci_hcd iProduct 2 EHCI Host Controller iSerial 1 0000:00:1a.0 bNumConfigurations 1 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 25 bNumInterfaces 1 bConfigurationValue 1 iConfiguration 0 bmAttributes 0xe0 Self Powered Remote Wakeup MaxPower 0mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 0 bNumEndpoints 1 bInterfaceClass 9 Hub bInterfaceSubClass 0 Unused bInterfaceProtocol 0 Full speed (or root) hub iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0004 1x 4 bytes bInterval 12 Hub Descriptor: bLength 9 bDescriptorType 41 nNbrPorts 2 wHubCharacteristic 0x000a No power switching (usb 1.0) Per-port overcurrent protection bPwrOn2PwrGood 10 * 2 milli seconds bHubContrCurrent 0 milli Ampere DeviceRemovable 0x00 PortPwrCtrlMask 0xff Hub Port Status: Port 1: 0000.0503 highspeed power enable connect Port 2: 0000.0100 power Device Status: 0x0001 Self Powered Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 2.00 bDeviceClass 9 Hub bDeviceSubClass 0 Unused bDeviceProtocol 0 Full speed (or root) hub bMaxPacketSize0 64 idVendor 0x1d6b Linux Foundation idProduct 0x0002 2.0 root hub bcdDevice 3.02 iManufacturer 3 Linux 3.2.0-4-amd64 ehci_hcd iProduct 2 EHCI Host Controller iSerial 1 0000:00:1d.0 bNumConfigurations 1 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 25 bNumInterfaces 1 bConfigurationValue 1 iConfiguration 0 bmAttributes 0xe0 Self Powered Remote Wakeup MaxPower 0mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 0 bNumEndpoints 1 bInterfaceClass 9 Hub bInterfaceSubClass 0 Unused bInterfaceProtocol 0 Full speed (or root) hub iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0004 1x 4 bytes bInterval 12 Hub Descriptor: bLength 9 bDescriptorType 41 nNbrPorts 2 wHubCharacteristic 0x000a No power switching (usb 1.0) Per-port overcurrent protection bPwrOn2PwrGood 10 * 2 milli seconds bHubContrCurrent 0 milli Ampere DeviceRemovable 0x00 PortPwrCtrlMask 0xff Hub Port Status: Port 1: 0000.0503 highspeed power enable connect Port 2: 0000.0100 power Device Status: 0x0001 Self Powered Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 2.00 bDeviceClass 9 Hub bDeviceSubClass 0 Unused bDeviceProtocol 1 Single TT bMaxPacketSize0 64 idVendor 0x1d6b Linux Foundation idProduct 0x0002 2.0 root hub bcdDevice 3.02 iManufacturer 3 Linux 3.2.0-4-amd64 xhci_hcd iProduct 2 xHCI Host Controller iSerial 1 0000:00:14.0 bNumConfigurations 1 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 25 bNumInterfaces 1 bConfigurationValue 1 iConfiguration 0 bmAttributes 0xe0 Self Powered Remote Wakeup MaxPower 0mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 0 bNumEndpoints 1 bInterfaceClass 9 Hub bInterfaceSubClass 0 Unused bInterfaceProtocol 0 Full speed (or root) hub iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0004 1x 4 bytes bInterval 12 Hub Descriptor: bLength 11 bDescriptorType 41 nNbrPorts 15 wHubCharacteristic 0x000a No power switching (usb 1.0) Per-port overcurrent protection TT think time 8 FS bits bPwrOn2PwrGood 10 * 2 milli seconds bHubContrCurrent 0 milli Ampere DeviceRemovable 0x00 0x00 PortPwrCtrlMask 0xff 0xff Hub Port Status: Port 1: 0000.0100 power Port 2: 0000.0100 power Port 3: 0000.0100 power Port 4: 0000.0100 power Port 5: 0000.0100 power Port 6: 0000.0100 power Port 7: 0000.0100 power Port 8: 0000.0100 power Port 9: 0000.0100 power Port 10: 0000.0100 power Port 11: 0000.0100 power Port 12: 0000.0100 power Port 13: 0000.0100 power Port 14: 0000.0100 power Port 15: 0000.0100 power Device Status: 0x0001 Self Powered Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 3.00 bDeviceClass 9 Hub bDeviceSubClass 0 Unused bDeviceProtocol 3 bMaxPacketSize0 9 idVendor 0x1d6b Linux Foundation idProduct 0x0003 3.0 root hub bcdDevice 3.02 iManufacturer 3 Linux 3.2.0-4-amd64 xhci_hcd iProduct 2 xHCI Host Controller iSerial 1 0000:00:14.0 bNumConfigurations 1 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 31 bNumInterfaces 1 bConfigurationValue 1 iConfiguration 0 bmAttributes 0xe0 Self Powered Remote Wakeup MaxPower 0mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 0 bNumEndpoints 1 bInterfaceClass 9 Hub bInterfaceSubClass 0 Unused bInterfaceProtocol 0 Full speed (or root) hub iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0004 1x 4 bytes bInterval 12 bMaxBurst 0 Hub Descriptor: bLength 12 bDescriptorType 42 nNbrPorts 6 wHubCharacteristic 0x000a No power switching (usb 1.0) Per-port overcurrent protection bPwrOn2PwrGood 10 * 2 milli seconds bHubContrCurrent 0 milli Ampere bHubDecLat 0.0 micro seconds wHubDelay 0 nano seconds DeviceRemovable 0x00 Hub Port Status: Port 1: 0000.02a0 5Gbps power Rx.Detect Port 2: 0000.02a0 5Gbps power Rx.Detect Port 3: 0000.02a0 5Gbps power Rx.Detect Port 4: 0000.02a0 5Gbps power Rx.Detect Port 5: 0000.02a0 5Gbps power Rx.Detect Port 6: 0000.0203 5Gbps power U0 enable connect Binary Object Store Descriptor: bLength 5 bDescriptorType 15 wTotalLength 15 bNumDeviceCaps 1 SuperSpeed USB Device Capability: bLength 10 bDescriptorType 16 bDevCapabilityType 3 bmAttributes 0x00 Latency Tolerance Messages (LTM) Supported wSpeedsSupported 0x0008 Device can operate at SuperSpeed (5Gbps) bFunctionalitySupport 3 Lowest fully-functional device speed is SuperSpeed (5Gbps) bU1DevExitLat 10 micro seconds bU2DevExitLat 512 micro seconds Device Status: 0x0001 Self Powered Bus 001 Device 002: ID 8087:8008 Intel Corp. Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 2.00 bDeviceClass 9 Hub bDeviceSubClass 0 Unused bDeviceProtocol 1 Single TT bMaxPacketSize0 64 idVendor 0x8087 Intel Corp. idProduct 0x8008 bcdDevice 0.04 iManufacturer 0 iProduct 0 iSerial 0 bNumConfigurations 1 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 25 bNumInterfaces 1 bConfigurationValue 1 iConfiguration 0 bmAttributes 0xe0 Self Powered Remote Wakeup MaxPower 0mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 0 bNumEndpoints 1 bInterfaceClass 9 Hub bInterfaceSubClass 0 Unused bInterfaceProtocol 0 Full speed (or root) hub iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0001 1x 1 bytes bInterval 12 Hub Descriptor: bLength 9 bDescriptorType 41 nNbrPorts 6 wHubCharacteristic 0x0009 Per-port power switching Per-port overcurrent protection TT think time 8 FS bits bPwrOn2PwrGood 0 * 2 milli seconds bHubContrCurrent 0 milli Ampere DeviceRemovable 0x00 PortPwrCtrlMask 0xff Hub Port Status: Port 1: 0000.0100 power Port 2: 0000.0100 power Port 3: 0000.0503 highspeed power enable connect Port 4: 0000.0303 lowspeed power enable connect Port 5: 0000.0100 power Port 6: 0000.0100 power Device Qualifier (for other device speed): bLength 10 bDescriptorType 6 bcdUSB 2.00 bDeviceClass 9 Hub bDeviceSubClass 0 Unused bDeviceProtocol 0 Full speed (or root) hub bMaxPacketSize0 64 bNumConfigurations 1 Device Status: 0x0001 Self Powered Bus 002 Device 002: ID 8087:8000 Intel Corp. Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 2.00 bDeviceClass 9 Hub bDeviceSubClass 0 Unused bDeviceProtocol 1 Single TT bMaxPacketSize0 64 idVendor 0x8087 Intel Corp. idProduct 0x8000 bcdDevice 0.04 iManufacturer 0 iProduct 0 iSerial 0 bNumConfigurations 1 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 25 bNumInterfaces 1 bConfigurationValue 1 iConfiguration 0 bmAttributes 0xe0 Self Powered Remote Wakeup MaxPower 0mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 0 bNumEndpoints 1 bInterfaceClass 9 Hub bInterfaceSubClass 0 Unused bInterfaceProtocol 0 Full speed (or root) hub iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0002 1x 2 bytes bInterval 12 Hub Descriptor: bLength 11 bDescriptorType 41 nNbrPorts 8 wHubCharacteristic 0x0009 Per-port power switching Per-port overcurrent protection TT think time 8 FS bits bPwrOn2PwrGood 0 * 2 milli seconds bHubContrCurrent 0 milli Ampere DeviceRemovable 0x00 0x00 PortPwrCtrlMask 0xff 0xff Hub Port Status: Port 1: 0000.0100 power Port 2: 0000.0100 power Port 3: 0000.0100 power Port 4: 0000.0503 highspeed power enable connect Port 5: 0000.0303 lowspeed power enable connect Port 6: 0000.0100 power Port 7: 0000.0100 power Port 8: 0000.0100 power Device Qualifier (for other device speed): bLength 10 bDescriptorType 6 bcdUSB 2.00 bDeviceClass 9 Hub bDeviceSubClass 0 Unused bDeviceProtocol 0 Full speed (or root) hub bMaxPacketSize0 64 bNumConfigurations 1 Device Status: 0x0001 Self Powered Bus 004 Device 002: ID 0451:8046 Texas Instruments, Inc. Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 3.00 bDeviceClass 9 Hub bDeviceSubClass 0 Unused bDeviceProtocol 3 bMaxPacketSize0 9 idVendor 0x0451 Texas Instruments, Inc. idProduct 0x8046 bcdDevice 1.00 iManufacturer 0 iProduct 0 iSerial 0 bNumConfigurations 1 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 31 bNumInterfaces 1 bConfigurationValue 1 iConfiguration 0 bmAttributes 0xe0 Self Powered Remote Wakeup MaxPower 0mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 0 bNumEndpoints 1 bInterfaceClass 9 Hub bInterfaceSubClass 0 Unused bInterfaceProtocol 0 Full speed (or root) hub iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 19 Transfer Type Interrupt Synch Type None Usage Type Feedback wMaxPacketSize 0x0002 1x 2 bytes bInterval 8 bMaxBurst 0 Hub Descriptor: bLength 12 bDescriptorType 42 nNbrPorts 3 wHubCharacteristic 0x0009 Per-port power switching Per-port overcurrent protection bPwrOn2PwrGood 0 * 2 milli seconds bHubContrCurrent 0 milli Ampere bHubDecLat 0.3 micro seconds wHubDelay 3203 nano seconds DeviceRemovable 0x00 Hub Port Status: Port 1: 0000.06a0 Unknown Speed power Rx.Detect Port 2: 0000.06a0 Unknown Speed power Rx.Detect Port 3: 0000.0203 5Gbps power U0 enable connect Binary Object Store Descriptor: bLength 5 bDescriptorType 15 wTotalLength 42 bNumDeviceCaps 3 USB 2.0 Extension Device Capability: bLength 7 bDescriptorType 16 bDevCapabilityType 2 bmAttributes 0x00000002 Link Power Management (LPM) Supported SuperSpeed USB Device Capability: bLength 10 bDescriptorType 16 bDevCapabilityType 3 bmAttributes 0x00 Latency Tolerance Messages (LTM) Supported wSpeedsSupported 0x000e Device can operate at Full Speed (12Mbps) Device can operate at High Speed (480Mbps) Device can operate at SuperSpeed (5Gbps) bFunctionalitySupport 1 Lowest fully-functional device speed is Full Speed (12Mbps) bU1DevExitLat 10 micro seconds bU2DevExitLat 2047 micro seconds Container ID Device Capability: bLength 20 bDescriptorType 16 bDevCapabilityType 4 bReserved 0 ContainerID {00801541-0045-7278-1315-bbc2b6c9d000} Device Status: 0x0001 Self Powered Bus 001 Device 003: ID 0930:6544 Toshiba Corp. Kingston DataTraveler 2.0 Stick (2GB) Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 2.00 bDeviceClass 0 (Defined at Interface level) bDeviceSubClass 0 bDeviceProtocol 0 bMaxPacketSize0 64 idVendor 0x0930 Toshiba Corp. idProduct 0x6544 Kingston DataTraveler 2.0 Stick (2GB) bcdDevice 1.00 iManufacturer 1 Kingston iProduct 2 DataTraveler 2.0 iSerial 3 C86000BDBA11CE806A2A80EF bNumConfigurations 1 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 32 bNumInterfaces 1 bConfigurationValue 1 iConfiguration 0 bmAttributes 0x80 (Bus Powered) MaxPower 200mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 0 bNumEndpoints 2 bInterfaceClass 8 Mass Storage bInterfaceSubClass 6 SCSI bInterfaceProtocol 80 Bulk-Only iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0200 1x 512 bytes bInterval 255 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x02 EP 2 OUT bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0200 1x 512 bytes bInterval 255 Device Qualifier (for other device speed): bLength 10 bDescriptorType 6 bcdUSB 2.00 bDeviceClass 0 (Defined at Interface level) bDeviceSubClass 0 bDeviceProtocol 0 bMaxPacketSize0 64 bNumConfigurations 1 Device Status: 0x0000 (Bus Powered) Bus 001 Device 004: ID 046d:c404 Logitech, Inc. TrackMan Wheel Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 1.10 bDeviceClass 0 (Defined at Interface level) bDeviceSubClass 0 bDeviceProtocol 0 bMaxPacketSize0 8 idVendor 0x046d Logitech, Inc. idProduct 0xc404 TrackMan Wheel bcdDevice 2.20 iManufacturer 1 Logitech iProduct 2 Trackball iSerial 0 bNumConfigurations 1 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 34 bNumInterfaces 1 bConfigurationValue 1 iConfiguration 0 bmAttributes 0xa0 (Bus Powered) Remote Wakeup MaxPower 100mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 0 bNumEndpoints 1 bInterfaceClass 3 Human Interface Device bInterfaceSubClass 1 Boot Interface Subclass bInterfaceProtocol 2 Mouse iInterface 0 HID Device Descriptor: bLength 9 bDescriptorType 33 bcdHID 1.10 bCountryCode 0 Not supported bNumDescriptors 1 bDescriptorType 34 Report wDescriptorLength 103 Report Descriptors: ** UNAVAILABLE ** Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0008 1x 8 bytes bInterval 10 Device Status: 0x0000 (Bus Powered) Bus 002 Device 003: ID 0451:8044 Texas Instruments, Inc. Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 2.10 bDeviceClass 9 Hub bDeviceSubClass 0 Unused bDeviceProtocol 2 TT per port bMaxPacketSize0 64 idVendor 0x0451 Texas Instruments, Inc. idProduct 0x8044 bcdDevice 1.00 iManufacturer 0 iProduct 0 iSerial 1 46000841CE89 bNumConfigurations 1 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 41 bNumInterfaces 1 bConfigurationValue 1 iConfiguration 0 bmAttributes 0xe0 Self Powered Remote Wakeup MaxPower 0mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 0 bNumEndpoints 1 bInterfaceClass 9 Hub bInterfaceSubClass 0 Unused bInterfaceProtocol 1 Single TT iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0001 1x 1 bytes bInterval 12 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 1 bNumEndpoints 1 bInterfaceClass 9 Hub bInterfaceSubClass 0 Unused bInterfaceProtocol 2 TT per port iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0001 1x 1 bytes bInterval 12 Hub Descriptor: bLength 9 bDescriptorType 41 nNbrPorts 3 wHubCharacteristic 0x0009 Per-port power switching Per-port overcurrent protection TT think time 8 FS bits bPwrOn2PwrGood 0 * 2 milli seconds bHubContrCurrent 0 milli Ampere DeviceRemovable 0x00 PortPwrCtrlMask 0xff Hub Port Status: Port 1: 0000.0100 power Port 2: 0000.0100 power Port 3: 0000.0503 highspeed power enable connect Device Status: 0x0001 Self Powered Bus 002 Device 004: ID 413c:2107 Dell Computer Corp. Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 1.10 bDeviceClass 0 (Defined at Interface level) bDeviceSubClass 0 bDeviceProtocol 0 bMaxPacketSize0 8 idVendor 0x413c Dell Computer Corp. idProduct 0x2107 bcdDevice 1.15 iManufacturer 1 Dell iProduct 2 Dell USB Entry Keyboard iSerial 0 bNumConfigurations 1 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 34 bNumInterfaces 1 bConfigurationValue 1 iConfiguration 0 bmAttributes 0xa0 (Bus Powered) Remote Wakeup MaxPower 100mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 0 bNumEndpoints 1 bInterfaceClass 3 Human Interface Device bInterfaceSubClass 1 Boot Interface Subclass bInterfaceProtocol 1 Keyboard iInterface 0 HID Device Descriptor: bLength 9 bDescriptorType 33 bcdHID 1.10 bCountryCode 0 Not supported bNumDescriptors 1 bDescriptorType 34 Report wDescriptorLength 65 Report Descriptors: ** UNAVAILABLE ** Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0008 1x 8 bytes bInterval 10 Device Status: 0x0000 (Bus Powered) Bus 004 Device 003: ID 0451:8046 Texas Instruments, Inc. Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 3.00 bDeviceClass 9 Hub bDeviceSubClass 0 Unused bDeviceProtocol 3 bMaxPacketSize0 9 idVendor 0x0451 Texas Instruments, Inc. idProduct 0x8046 bcdDevice 1.00 iManufacturer 0 iProduct 0 iSerial 0 bNumConfigurations 1 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 31 bNumInterfaces 1 bConfigurationValue 1 iConfiguration 0 bmAttributes 0xe0 Self Powered Remote Wakeup MaxPower 0mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 0 bNumEndpoints 1 bInterfaceClass 9 Hub bInterfaceSubClass 0 Unused bInterfaceProtocol 0 Full speed (or root) hub iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 19 Transfer Type Interrupt Synch Type None Usage Type Feedback wMaxPacketSize 0x0002 1x 2 bytes bInterval 8 bMaxBurst 0 Hub Descriptor: bLength 12 bDescriptorType 42 nNbrPorts 3 wHubCharacteristic 0x0009 Per-port power switching Per-port overcurrent protection bPwrOn2PwrGood 50 * 2 milli seconds bHubContrCurrent 0 milli Ampere bHubDecLat 0.3 micro seconds wHubDelay 3203 nano seconds DeviceRemovable 0x00 Hub Port Status: Port 1: 0000.06a0 Unknown Speed power Rx.Detect Port 2: 0000.06a0 Unknown Speed power Rx.Detect Port 3: 0000.06a0 Unknown Speed power Rx.Detect Binary Object Store Descriptor: bLength 5 bDescriptorType 15 wTotalLength 42 bNumDeviceCaps 3 USB 2.0 Extension Device Capability: bLength 7 bDescriptorType 16 bDevCapabilityType 2 bmAttributes 0x00000002 Link Power Management (LPM) Supported SuperSpeed USB Device Capability: bLength 10 bDescriptorType 16 bDevCapabilityType 3 bmAttributes 0x00 Latency Tolerance Messages (LTM) Supported wSpeedsSupported 0x000e Device can operate at Full Speed (12Mbps) Device can operate at High Speed (480Mbps) Device can operate at SuperSpeed (5Gbps) bFunctionalitySupport 1 Lowest fully-functional device speed is Full Speed (12Mbps) bU1DevExitLat 10 micro seconds bU2DevExitLat 2047 micro seconds Container ID Device Capability: bLength 20 bDescriptorType 16 bDevCapabilityType 4 bReserved 0 ContainerID {00801541-009d-e5f1-1315-bbc2b6c9d000} Device Status: 0x0001 Self Powered Bus 002 Device 005: ID 0451:8044 Texas Instruments, Inc. Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 2.10 bDeviceClass 9 Hub bDeviceSubClass 0 Unused bDeviceProtocol 2 TT per port bMaxPacketSize0 64 idVendor 0x0451 Texas Instruments, Inc. idProduct 0x8044 bcdDevice 1.00 iManufacturer 0 iProduct 0 iSerial 1 83050871CE89 bNumConfigurations 1 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 41 bNumInterfaces 1 bConfigurationValue 1 iConfiguration 0 bmAttributes 0xe0 Self Powered Remote Wakeup MaxPower 0mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 0 bNumEndpoints 1 bInterfaceClass 9 Hub bInterfaceSubClass 0 Unused bInterfaceProtocol 1 Single TT iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0001 1x 1 bytes bInterval 12 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 1 bNumEndpoints 1 bInterfaceClass 9 Hub bInterfaceSubClass 0 Unused bInterfaceProtocol 2 TT per port iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0001 1x 1 bytes bInterval 12 Hub Descriptor: bLength 9 bDescriptorType 41 nNbrPorts 3 wHubCharacteristic 0x0009 Per-port power switching Per-port overcurrent protection TT think time 8 FS bits bPwrOn2PwrGood 50 * 2 milli seconds bHubContrCurrent 0 milli Ampere DeviceRemovable 0x00 PortPwrCtrlMask 0xff Hub Port Status: Port 1: 0000.0100 power Port 2: 0000.0100 power Port 3: 0000.0503 highspeed power enable connect Device Status: 0x0001 Self Powered Bus 002 Device 006: ID 0bda:0307 Realtek Semiconductor Corp. Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 2.10 bDeviceClass 0 (Defined at Interface level) bDeviceSubClass 0 bDeviceProtocol 0 bMaxPacketSize0 64 idVendor 0x0bda Realtek Semiconductor Corp. idProduct 0x0307 bcdDevice 1.63 iManufacturer 1 Realtek iProduct 2 USB3.0 Card Reader iSerial 3 412180079901 bNumConfigurations 1 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 32 bNumInterfaces 1 bConfigurationValue 1 iConfiguration 4 CARD READER bmAttributes 0x80 (Bus Powered) MaxPower 500mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 0 bNumEndpoints 2 bInterfaceClass 8 Mass Storage bInterfaceSubClass 6 SCSI bInterfaceProtocol 80 Bulk-Only iInterface 5 Bulk-In, Bulk-Out, Interface Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x01 EP 1 OUT bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0200 1x 512 bytes bInterval 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x82 EP 2 IN bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0200 1x 512 bytes bInterval 0 Device Status: 0x0000 (Bus Powered) $$$ ============================================================================ $ dmesg [ 0.000000] Initializing cgroup subsys cpuset [ 0.000000] Initializing cgroup subsys cpu [ 0.000000] Linux version 3.2.0-4-amd64 (debian-kernel@xxxxxxxxxxxxxxxx) (gcc version 4.6.3 (Debian 4.6.3-14) ) #1 SMP Debian 3.2.65-1+deb7u2 [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-4-amd64 root=UUID=ecf847b1-3b6a-423d-8596-f055ed5317e9 ro initrd=/install/gtk/initrd.gz quiet [ 0.000000] BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: 0000000000000000 - 0000000000091800 (usable) [ 0.000000] BIOS-e820: 0000000000091800 - 00000000000a0000 (reserved) [ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved) [ 0.000000] BIOS-e820: 0000000000100000 - 00000000d2292000 (usable) [ 0.000000] BIOS-e820: 00000000d2292000 - 00000000d2299000 (ACPI NVS) [ 0.000000] BIOS-e820: 00000000d2299000 - 00000000d26cb000 (usable) [ 0.000000] BIOS-e820: 00000000d26cb000 - 00000000d2b5c000 (reserved) [ 0.000000] BIOS-e820: 00000000d2b5c000 - 00000000d7edb000 (usable) [ 0.000000] BIOS-e820: 00000000d7edb000 - 00000000d8000000 (reserved) [ 0.000000] BIOS-e820: 00000000d8000000 - 00000000d8760000 (usable) [ 0.000000] BIOS-e820: 00000000d8760000 - 00000000d8800000 (reserved) [ 0.000000] BIOS-e820: 00000000d8800000 - 00000000d8fae000 (usable) [ 0.000000] BIOS-e820: 00000000d8fae000 - 00000000d9000000 (ACPI data) [ 0.000000] BIOS-e820: 00000000d9000000 - 00000000da71d000 (usable) [ 0.000000] BIOS-e820: 00000000da71d000 - 00000000da800000 (ACPI NVS) [ 0.000000] BIOS-e820: 00000000da800000 - 00000000dbb06000 (usable) [ 0.000000] BIOS-e820: 00000000dbb06000 - 00000000dc000000 (reserved) [ 0.000000] BIOS-e820: 00000000dd000000 - 00000000df200000 (reserved) [ 0.000000] BIOS-e820: 00000000f8000000 - 00000000fc000000 (reserved) [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved) [ 0.000000] BIOS-e820: 00000000fed00000 - 00000000fed04000 (reserved) [ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed20000 (reserved) [ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) [ 0.000000] BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved) [ 0.000000] BIOS-e820: 0000000100000000 - 000000081ee00000 (usable) [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] SMBIOS 2.7 present. [ 0.000000] DMI: Dell Inc. Precision T1700/0TDG4V, BIOS A13 12/19/2014 [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) [ 0.000000] No AGP bridge found [ 0.000000] last_pfn = 0x81ee00 max_arch_pfn = 0x400000000 [ 0.000000] MTRR default type: uncachable [ 0.000000] MTRR fixed ranges enabled: [ 0.000000] 00000-9FFFF write-back [ 0.000000] A0000-BFFFF uncachable [ 0.000000] C0000-DBFFF write-protect [ 0.000000] DC000-E7FFF uncachable [ 0.000000] E8000-FFFFF write-protect [ 0.000000] MTRR variable ranges enabled: [ 0.000000] 0 base 0000000000 mask 7800000000 write-back [ 0.000000] 1 base 0800000000 mask 7FE0000000 write-back [ 0.000000] 2 base 00E0000000 mask 7FE0000000 uncachable [ 0.000000] 3 base 00DE000000 mask 7FFE000000 uncachable [ 0.000000] 4 base 00DD000000 mask 7FFF000000 uncachable [ 0.000000] 5 base 081F000000 mask 7FFF000000 uncachable [ 0.000000] 6 base 081EE00000 mask 7FFFE00000 uncachable [ 0.000000] 7 disabled [ 0.000000] 8 disabled [ 0.000000] 9 disabled [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 [ 0.000000] e820 update range: 00000000dd000000 - 0000000100000000 (usable) ==> (reserved) [ 0.000000] last_pfn = 0xdbb06 max_arch_pfn = 0x400000000 [ 0.000000] found SMP MP-table at [ffff8800000fd930] fd930 [ 0.000000] initial memory mapped : 0 - 20000000 [ 0.000000] Base memory trampoline at [ffff88000008c000] 8c000 size 20480 [ 0.000000] Using GB pages for direct mapping [ 0.000000] init_memory_mapping: 0000000000000000-00000000dbb06000 [ 0.000000] 0000000000 - 00c0000000 page 1G [ 0.000000] 00c0000000 - 00dba00000 page 2M [ 0.000000] 00dba00000 - 00dbb06000 page 4k [ 0.000000] kernel direct mapping tables up to dbb06000 @ 1fffd000-20000000 [ 0.000000] init_memory_mapping: 0000000100000000-000000081ee00000 [ 0.000000] 0100000000 - 0800000000 page 1G [ 0.000000] 0800000000 - 081ee00000 page 2M [ 0.000000] kernel direct mapping tables up to 81ee00000 @ dbb04000-dbb06000 [ 0.000000] RAMDISK: 36bee000 - 375ef000 [ 0.000000] ACPI: RSDP 00000000000f0490 00024 (v02 DELL ) [ 0.000000] ACPI: XSDT 00000000d8fed0a0 000BC (v01 DELL CBX3 01072009 AMI 00010013) [ 0.000000] ACPI: FACP 00000000d8ff8d20 0010C (v05 DELL CBX3 01072009 AMI 00010013) [ 0.000000] ACPI Warning: FADT (revision 5) is longer than ACPI 2.0 version, truncating length 268 to 244 (20110623/tbfadt-288) [ 0.000000] ACPI: DSDT 00000000d8fed1e8 0BB35 (v02 DELL CBX3 00000014 INTL 20091112) [ 0.000000] ACPI: FACS 00000000da7fe080 00040 [ 0.000000] ACPI: APIC 00000000d8ff8e30 00072 (v03 DELL CBX3 01072009 AMI 00010013) [ 0.000000] ACPI: FPDT 00000000d8ff8ea8 00044 (v01 DELL CBX3 01072009 AMI 00010013) [ 0.000000] ACPI: SLIC 00000000d8ff8ef0 00176 (v03 DELL CBX3 01072009 MSFT 00010013) [ 0.000000] ACPI: LPIT 00000000d8ff9068 0005C (v01 DELL CBX3 00000000 AMI. 00000005) [ 0.000000] ACPI: SSDT 00000000d8ff90c8 00539 (v01 PmRef Cpu0Ist 00003000 INTL 20120711) [ 0.000000] ACPI: SSDT 00000000d8ff9608 00AD8 (v01 PmRef CpuPm 00003000 INTL 20120711) [ 0.000000] ACPI: SSDT 00000000d8ffa0e0 001C7 (v01 PmRef LakeTiny 00003000 INTL 20120711) [ 0.000000] ACPI: HPET 00000000d8ffa2a8 00038 (v01 DELL CBX3 01072009 AMI. 00000005) [ 0.000000] ACPI: SSDT 00000000d8ffa2e0 0036D (v01 SataRe SataTabl 00001000 INTL 20120711) [ 0.000000] ACPI: MCFG 00000000d8ffa650 0003C (v01 DELL CBX3 01072009 MSFT 00000097) [ 0.000000] ACPI: SSDT 00000000d8ffa690 034D6 (v01 SaSsdt SaSsdt 00003000 INTL 20091112) [ 0.000000] ACPI: ASF! 00000000d8ffdb68 000A5 (v32 INTEL HCG 00000001 TFSM 000F4240) [ 0.000000] ACPI: MSDM 00000000d8ffdc10 00055 (v03 DELL CBX3 06222004 AMI 00010013) [ 0.000000] ACPI: DMAR 00000000d8ffdc68 000B8 (v01 INTEL HSW 00000001 INTL 00000001) [ 0.000000] ACPI: EINJ 00000000d8ffdd20 00130 (v01 AMI AMI EINJ 00000000 00000000) [ 0.000000] ACPI: ERST 00000000d8ffde50 00230 (v01 AMIER AMI ERST 00000000 00000000) [ 0.000000] ACPI: HEST 00000000d8ffe080 000A8 (v01 AMI AMI HEST 00000000 00000000) [ 0.000000] ACPI: BERT 00000000d8ffe128 00030 (v01 AMI AMI BERT 00000000 00000000) [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] No NUMA configuration found [ 0.000000] Faking a node at 0000000000000000-000000081ee00000 [ 0.000000] Initmem setup node 0 0000000000000000-000000081ee00000 [ 0.000000] NODE_DATA [000000081edfb000 - 000000081edfffff] [ 0.000000] [ffffea0000000000-ffffea001c7fffff] PMD -> [ffff8807fe400000-ffff88081a5fffff] on node 0 [ 0.000000] Zone PFN ranges: [ 0.000000] DMA 0x00000010 -> 0x00001000 [ 0.000000] DMA32 0x00001000 -> 0x00100000 [ 0.000000] Normal 0x00100000 -> 0x0081ee00 [ 0.000000] Movable zone start PFN for each node [ 0.000000] early_node_map[9] active PFN ranges [ 0.000000] 0: 0x00000010 -> 0x00000091 [ 0.000000] 0: 0x00000100 -> 0x000d2292 [ 0.000000] 0: 0x000d2299 -> 0x000d26cb [ 0.000000] 0: 0x000d2b5c -> 0x000d7edb [ 0.000000] 0: 0x000d8000 -> 0x000d8760 [ 0.000000] 0: 0x000d8800 -> 0x000d8fae [ 0.000000] 0: 0x000d9000 -> 0x000da71d [ 0.000000] 0: 0x000da800 -> 0x000dbb06 [ 0.000000] 0: 0x00100000 -> 0x0081ee00 [ 0.000000] On node 0 totalpages: 8364277 [ 0.000000] DMA zone: 56 pages used for memmap [ 0.000000] DMA zone: 5 pages reserved [ 0.000000] DMA zone: 3908 pages, LIFO batch:0 [ 0.000000] DMA32 zone: 14280 pages used for memmap [ 0.000000] DMA32 zone: 879532 pages, LIFO batch:31 [ 0.000000] Normal zone: 102081 pages used for memmap [ 0.000000] Normal zone: 7364415 pages, LIFO batch:31 [ 0.000000] ACPI: PM-Timer IO Port: 0x1808 [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled) [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1]) [ 0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0]) [ 0.000000] IOAPIC[0]: apic_id 8, version 32, 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 9 global_irq 9 high level) [ 0.000000] ACPI: IRQ0 used by override. [ 0.000000] ACPI: IRQ2 used by override. [ 0.000000] ACPI: IRQ9 used by override. [ 0.000000] Using ACPI (MADT) for SMP configuration information [ 0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000 [ 0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs [ 0.000000] nr_irqs_gsi: 40 [ 0.000000] PM: Registered nosave memory: 0000000000091000 - 0000000000092000 [ 0.000000] PM: Registered nosave memory: 0000000000092000 - 00000000000a0000 [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000 [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000 [ 0.000000] PM: Registered nosave memory: 00000000d2292000 - 00000000d2299000 [ 0.000000] PM: Registered nosave memory: 00000000d26cb000 - 00000000d2b5c000 [ 0.000000] PM: Registered nosave memory: 00000000d7edb000 - 00000000d8000000 [ 0.000000] PM: Registered nosave memory: 00000000d8760000 - 00000000d8800000 [ 0.000000] PM: Registered nosave memory: 00000000d8fae000 - 00000000d9000000 [ 0.000000] PM: Registered nosave memory: 00000000da71d000 - 00000000da800000 [ 0.000000] PM: Registered nosave memory: 00000000dbb06000 - 00000000dc000000 [ 0.000000] PM: Registered nosave memory: 00000000dc000000 - 00000000dd000000 [ 0.000000] PM: Registered nosave memory: 00000000dd000000 - 00000000df200000 [ 0.000000] PM: Registered nosave memory: 00000000df200000 - 00000000f8000000 [ 0.000000] PM: Registered nosave memory: 00000000f8000000 - 00000000fc000000 [ 0.000000] PM: Registered nosave memory: 00000000fc000000 - 00000000fec00000 [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000 [ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed00000 [ 0.000000] PM: Registered nosave memory: 00000000fed00000 - 00000000fed04000 [ 0.000000] PM: Registered nosave memory: 00000000fed04000 - 00000000fed1c000 [ 0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000 [ 0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000 [ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000 [ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ff000000 [ 0.000000] PM: Registered nosave memory: 00000000ff000000 - 0000000100000000 [ 0.000000] Allocating PCI resources starting at df200000 (gap: df200000:18e00000) [ 0.000000] Booting paravirtualized kernel on bare hardware [ 0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:4 nr_node_ids:1 [ 0.000000] PERCPU: Embedded 27 pages/cpu @ffff88081ea00000 s78848 r8192 d23552 u524288 [ 0.000000] pcpu-alloc: s78848 r8192 d23552 u524288 alloc=1*2097152 [ 0.000000] pcpu-alloc: [0] 0 1 2 3 [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 8247855 [ 0.000000] Policy zone: Normal [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-4-amd64 root=UUID=ecf847b1-3b6a-423d-8596-f055ed5317e9 ro initrd=/install/gtk/initrd.gz quiet [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) [ 0.000000] xsave/xrstor: enabled xstate_bv 0x7, cntxt size 0x340 [ 0.000000] Checking aperture... [ 0.000000] No AGP bridge found [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! [ 0.000000] Memory: 32911036k/34060288k available (3434k kernel code, 603180k absent, 546072k reserved, 3305k data, 576k init) [ 0.000000] Hierarchical RCU implementation. [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. [ 0.000000] NR_IRQS:33024 nr_irqs:712 16 [ 0.000000] Extended CMOS year: 2000 [ 0.000000] spurious 8259A interrupt: IRQ7. [ 0.000000] Console: colour VGA+ 80x25 [ 0.000000] console [tty0] enabled [ 0.000000] hpet clockevent registered [ 0.000000] Fast TSC calibration using PIT [ 0.004000] Detected 3491.975 MHz processor. [ 0.000001] Calibrating delay loop (skipped), value calculated using timer frequency.. 6983.95 BogoMIPS (lpj=13967900) [ 0.000003] pid_max: default: 32768 minimum: 301 [ 0.000028] Security Framework initialized [ 0.000030] AppArmor: AppArmor disabled by boot time parameter [ 0.001092] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes) [ 0.004779] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes) [ 0.006351] Mount-cache hash table entries: 256 [ 0.006413] Initializing cgroup subsys cpuacct [ 0.006415] Initializing cgroup subsys memory [ 0.006421] Initializing cgroup subsys devices [ 0.006422] Initializing cgroup subsys freezer [ 0.006423] Initializing cgroup subsys net_cls [ 0.006425] Initializing cgroup subsys blkio [ 0.006428] Initializing cgroup subsys perf_event [ 0.006447] CPU: Physical Processor ID: 0 [ 0.006447] CPU: Processor Core ID: 0 [ 0.006450] ENERGY_PERF_BIAS: Set to 'normal', was 'performance' [ 0.006451] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8) [ 0.007152] mce: CPU supports 9 MCE banks [ 0.007162] CPU0: Thermal monitoring enabled (TM1) [ 0.007168] using mwait in idle threads. [ 0.007392] ACPI: Core revision 20110623 [ 0.012517] DMAR: Host address width 39 [ 0.012518] DMAR: DRHD base: 0x000000fed90000 flags: 0x0 [ 0.012522] IOMMU 0: reg_base_addr fed90000 ver 1:0 cap c0000020660462 ecap f0101a [ 0.012523] DMAR: DRHD base: 0x000000fed91000 flags: 0x1 [ 0.012527] IOMMU 1: reg_base_addr fed91000 ver 1:0 cap d2008020660462 ecap f010da [ 0.012528] DMAR: RMRR base: 0x000000dbc76000 end: 0x000000dbc83fff [ 0.012529] DMAR: RMRR base: 0x000000dd000000 end: 0x000000df1fffff [ 0.012598] IOAPIC id 8 under DRHD base 0xfed91000 IOMMU 1 [ 0.012599] HPET id 0 under DRHD base 0xfed91000 [ 0.012703] Enabled IRQ remapping in x2apic mode [ 0.012704] Enabling x2apic [ 0.012705] Enabled x2apic [ 0.012714] Switched APIC routing to cluster x2apic. [ 0.013135] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 [ 0.052785] CPU0: Intel(R) Core(TM) i5-4690 CPU @ 3.50GHz stepping 03 [ 0.157108] Performance Events: no PEBS fmt2+, generic architected perfmon, Intel PMU driver. [ 0.157113] ... version: 3 [ 0.157113] ... bit width: 48 [ 0.157114] ... generic registers: 8 [ 0.157115] ... value mask: 0000ffffffffffff [ 0.157116] ... max period: 000000007fffffff [ 0.157116] ... fixed-purpose events: 3 [ 0.157117] ... event mask: 00000007000000ff [ 0.157190] NMI watchdog enabled, takes one hw-pmu counter. [ 0.157250] Booting Node 0, Processors #1 [ 0.157251] smpboot cpu 1: start_ip = 8c000 [ 0.265832] NMI watchdog enabled, takes one hw-pmu counter. [ 0.265892] #2 [ 0.265892] smpboot cpu 2: start_ip = 8c000 [ 0.373775] NMI watchdog enabled, takes one hw-pmu counter. [ 0.373833] #3 Ok. [ 0.373834] smpboot cpu 3: start_ip = 8c000 [ 0.481614] NMI watchdog enabled, takes one hw-pmu counter. [ 0.481632] Brought up 4 CPUs [ 0.481633] Total of 4 processors activated (27935.32 BogoMIPS). [ 0.484020] devtmpfs: initialized [ 0.486025] PM: Registering ACPI NVS region at d2292000 (28672 bytes) [ 0.486026] PM: Registering ACPI NVS region at da71d000 (929792 bytes) [ 0.486116] print_constraints: dummy: [ 0.486149] NET: Registered protocol family 16 [ 0.486199] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it [ 0.486201] ACPI: bus type pci registered [ 0.486240] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000) [ 0.486241] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820 [ 0.488659] PCI: Using configuration type 1 for base access [ 0.488664] dmi type 0xB1 record - unknown flag [ 0.489304] bio: create slab <bio-0> at 0 [ 0.489354] ACPI: Added _OSI(Module Device) [ 0.489355] ACPI: Added _OSI(Processor Device) [ 0.489356] ACPI: Added _OSI(3.0 _SCP Extensions) [ 0.489357] ACPI: Added _OSI(Processor Aggregator Device) [ 0.490411] ACPI: EC: Look up EC in DSDT [ 0.491561] ACPI: Executed 1 blocks of module-level executable AML code [ 0.493406] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored [ 0.493620] \_SB_:_OSC invalid UUID [ 0.493621] _OSC request data:1 17 [ 0.504904] ACPI: SSDT 00000000dbff4c18 003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20120711) [ 0.505182] ACPI: Dynamic OEM Table Load: [ 0.505183] ACPI: SSDT (null) 003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20120711) [ 0.516973] ACPI: SSDT 00000000dbff4618 005AA (v01 PmRef ApIst 00003000 INTL 20120711) [ 0.517305] ACPI: Dynamic OEM Table Load: [ 0.517306] ACPI: SSDT (null) 005AA (v01 PmRef ApIst 00003000 INTL 20120711) [ 0.528866] ACPI: SSDT 00000000dbff3d98 00119 (v01 PmRef ApCst 00003000 INTL 20120711) [ 0.529140] ACPI: Dynamic OEM Table Load: [ 0.529141] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20120711) [ 0.541158] ACPI: Interpreter enabled [ 0.541161] ACPI: (supports S0 S3 S4 S5) [ 0.541180] ACPI: Using IOAPIC for interrupt routing [ 0.615439] ACPI: No dock devices found. [ 0.615456] HEST: Table parsing has been initialized. [ 0.615458] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 0.615649] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e]) [ 0.615943] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] [ 0.615944] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] [ 0.615945] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] [ 0.615946] pci_root PNP0A08:00: host bridge window [mem 0x000dc000-0x000dffff] [ 0.615947] pci_root PNP0A08:00: host bridge window [mem 0x000e0000-0x000e3fff] [ 0.615948] pci_root PNP0A08:00: host bridge window [mem 0x000e4000-0x000e7fff] [ 0.615950] pci_root PNP0A08:00: host bridge window [mem 0xdf200000-0xfeafffff] [ 0.615957] pci 0000:00:00.0: [8086:0c00] type 0 class 0x000600 [ 0.615992] pci 0000:00:02.0: [8086:0412] type 0 class 0x000300 [ 0.615999] pci 0000:00:02.0: reg 10: [mem 0xf7800000-0xf7bfffff 64bit] [ 0.616003] pci 0000:00:02.0: reg 18: [mem 0xe0000000-0xefffffff 64bit pref] [ 0.616006] pci 0000:00:02.0: reg 20: [io 0xf000-0xf03f] [ 0.616025] pci 0000:00:03.0: [8086:0c0c] type 0 class 0x000403 [ 0.616030] pci 0000:00:03.0: reg 10: [mem 0xf7c34000-0xf7c37fff 64bit] [ 0.616079] pci 0000:00:14.0: [8086:8c31] type 0 class 0x000c03 [ 0.616095] pci 0000:00:14.0: reg 10: [mem 0xf7c20000-0xf7c2ffff 64bit] [ 0.616145] pci 0000:00:14.0: PME# supported from D3hot D3cold [ 0.616162] pci 0000:00:16.0: [8086:8c3a] type 0 class 0x000780 [ 0.616178] pci 0000:00:16.0: reg 10: [mem 0xf7c40000-0xf7c4000f 64bit] [ 0.616231] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold [ 0.616255] pci 0000:00:19.0: [8086:153a] type 0 class 0x000200 [ 0.616269] pci 0000:00:19.0: reg 10: [mem 0xf7c00000-0xf7c1ffff] [ 0.616276] pci 0000:00:19.0: reg 14: [mem 0xf7c3d000-0xf7c3dfff] [ 0.616283] pci 0000:00:19.0: reg 18: [io 0xf080-0xf09f] [ 0.616332] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold [ 0.616353] pci 0000:00:1a.0: [8086:8c2d] type 0 class 0x000c03 [ 0.616370] pci 0000:00:1a.0: reg 10: [mem 0xf7c3c000-0xf7c3c3ff] [ 0.616445] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold [ 0.616466] pci 0000:00:1b.0: [8086:8c20] type 0 class 0x000403 [ 0.616478] pci 0000:00:1b.0: reg 10: [mem 0xf7c30000-0xf7c33fff 64bit] [ 0.616531] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold [ 0.616548] pci 0000:00:1c.0: [8086:8c10] type 1 class 0x000604 [ 0.616603] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold [ 0.616624] pci 0000:00:1c.4: [8086:8c18] type 1 class 0x000604 [ 0.616684] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold [ 0.616710] pci 0000:00:1d.0: [8086:8c26] type 0 class 0x000c03 [ 0.616730] pci 0000:00:1d.0: reg 10: [mem 0xf7c3b000-0xf7c3b3ff] [ 0.616805] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold [ 0.616827] pci 0000:00:1f.0: [8086:8c56] type 0 class 0x000601 [ 0.616930] pci 0000:00:1f.2: [8086:2822] type 0 class 0x000104 [ 0.616943] pci 0000:00:1f.2: reg 10: [io 0xf0d0-0xf0d7] [ 0.616949] pci 0000:00:1f.2: reg 14: [io 0xf0c0-0xf0c3] [ 0.616955] pci 0000:00:1f.2: reg 18: [io 0xf0b0-0xf0b7] [ 0.616961] pci 0000:00:1f.2: reg 1c: [io 0xf0a0-0xf0a3] [ 0.616967] pci 0000:00:1f.2: reg 20: [io 0xf060-0xf07f] [ 0.616973] pci 0000:00:1f.2: reg 24: [mem 0xf7c3a000-0xf7c3a7ff] [ 0.617003] pci 0000:00:1f.2: PME# supported from D3hot [ 0.617016] pci 0000:00:1f.3: [8086:8c22] type 0 class 0x000c05 [ 0.617028] pci 0000:00:1f.3: reg 10: [mem 0xf7c39000-0xf7c390ff 64bit] [ 0.617045] pci 0000:00:1f.3: reg 20: [io 0xf040-0xf05f] [ 0.617095] pci 0000:00:1c.0: PCI bridge to [bus 01-01] [ 0.617136] pci 0000:00:1c.4: PCI bridge to [bus 02-02] [ 0.617151] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] [ 0.617220] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT] [ 0.617241] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP05._PRT] [ 0.617323] pci0000:00: Requesting ACPI _OSC control (0x1d) [ 0.617441] pci0000:00: ACPI _OSC control (0x18) granted [ 0.620579] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15) [ 0.620616] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled. [ 0.620647] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 *10 11 12 14 15) [ 0.620677] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *10 11 12 14 15) [ 0.620714] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 *5 6 10 11 12 14 15) [ 0.620749] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled. [ 0.620780] ACPI: PCI Interrupt Link [LNKG] (IRQs *3 4 5 6 10 11 12 14 15) [ 0.620809] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 *11 12 14 15) [ 0.620862] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none [ 0.620865] vgaarb: loaded [ 0.620866] vgaarb: bridge control possible 0000:00:02.0 [ 0.620885] PCI: Using ACPI for IRQ routing [ 0.622090] PCI: pci_cache_line_size set to 64 bytes [ 0.622134] reserve RAM buffer: 0000000000091800 - 000000000009ffff [ 0.622135] reserve RAM buffer: 00000000d2292000 - 00000000d3ffffff [ 0.622136] reserve RAM buffer: 00000000d26cb000 - 00000000d3ffffff [ 0.622137] reserve RAM buffer: 00000000d7edb000 - 00000000d7ffffff [ 0.622138] reserve RAM buffer: 00000000d8760000 - 00000000dbffffff [ 0.622139] reserve RAM buffer: 00000000d8fae000 - 00000000dbffffff [ 0.622141] reserve RAM buffer: 00000000da71d000 - 00000000dbffffff [ 0.622142] reserve RAM buffer: 00000000dbb06000 - 00000000dbffffff [ 0.622143] reserve RAM buffer: 000000081ee00000 - 000000081fffffff [ 0.622206] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0 [ 0.622209] hpet0: 8 comparators, 64-bit 14.318180 MHz counter [ 0.624221] Switching to clocksource hpet [ 0.625253] pnp: PnP ACPI init [ 0.625259] ACPI: bus type pnp registered [ 0.625412] pnp 00:00: [bus 00-3e] [ 0.625413] pnp 00:00: [io 0x0000-0x0cf7 window] [ 0.625414] pnp 00:00: [io 0x0cf8-0x0cff] [ 0.625415] pnp 00:00: [io 0x0d00-0xffff window] [ 0.625416] pnp 00:00: [mem 0x000a0000-0x000bffff window] [ 0.625417] pnp 00:00: [mem 0x000c0000-0x000c3fff window] [ 0.625418] pnp 00:00: [mem 0x000c4000-0x000c7fff window] [ 0.625419] pnp 00:00: [mem 0x000c8000-0x000cbfff window] [ 0.625420] pnp 00:00: [mem 0x000cc000-0x000cffff window] [ 0.625421] pnp 00:00: [mem 0x000d0000-0x000d3fff window] [ 0.625422] pnp 00:00: [mem 0x000d4000-0x000d7fff window] [ 0.625423] pnp 00:00: [mem 0x000d8000-0x000dbfff window] [ 0.625424] pnp 00:00: [mem 0x000dc000-0x000dffff window] [ 0.625425] pnp 00:00: [mem 0x000e0000-0x000e3fff window] [ 0.625426] pnp 00:00: [mem 0x000e4000-0x000e7fff window] [ 0.625427] pnp 00:00: [mem 0x000e8000-0x000ebfff window] [ 0.625428] pnp 00:00: [mem 0x000ec000-0x000effff window] [ 0.625429] pnp 00:00: [mem 0x000f0000-0x000fffff window] [ 0.625430] pnp 00:00: [mem 0xdf200000-0xfeafffff window] [ 0.625458] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active) [ 0.625469] pnp 00:01: [mem 0xfed40000-0xfed44fff] [ 0.625488] system 00:01: [mem 0xfed40000-0xfed44fff] has been reserved [ 0.625489] system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active) [ 0.625495] pnp 00:02: [io 0x0000-0x001f] [ 0.625496] pnp 00:02: [io 0x0081-0x0091] [ 0.625497] pnp 00:02: [io 0x0093-0x009f] [ 0.625497] pnp 00:02: [io 0x00c0-0x00df] [ 0.625499] pnp 00:02: [dma 4] [ 0.625509] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active) [ 0.625513] pnp 00:03: [mem 0xff000000-0xffffffff] [ 0.625523] pnp 00:03: Plug and Play ACPI device, IDs INT0800 (active) [ 0.625580] pnp 00:04: [mem 0xfed00000-0xfed003ff] [ 0.625591] pnp 00:04: Plug and Play ACPI device, IDs PNP0103 (active) [ 0.625611] pnp 00:05: [io 0x00f0] [ 0.625623] pnp 00:05: [irq 13] [ 0.625634] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active) [ 0.625681] pnp 00:06: [io 0x002e-0x002f] [ 0.625682] pnp 00:06: [io 0x004e-0x004f] [ 0.625683] pnp 00:06: [io 0x0061] [ 0.625683] pnp 00:06: [io 0x0063] [ 0.625684] pnp 00:06: [io 0x0065] [ 0.625685] pnp 00:06: [io 0x0067] [ 0.625686] pnp 00:06: [io 0x0070] [ 0.625686] pnp 00:06: [io 0x0080] [ 0.625687] pnp 00:06: [io 0x0092] [ 0.625688] pnp 00:06: [io 0x00b2-0x00b3] [ 0.625689] pnp 00:06: [io 0x0680-0x069f] [ 0.625690] pnp 00:06: [io 0xffff] [ 0.625690] pnp 00:06: [io 0xffff] [ 0.625691] pnp 00:06: [io 0xffff] [ 0.625692] pnp 00:06: [io 0x1c00-0x1cfe] [ 0.625693] pnp 00:06: [io 0x1d00-0x1dfe] [ 0.625694] pnp 00:06: [io 0x1e00-0x1efe] [ 0.625694] pnp 00:06: [io 0x1f00-0x1ffe] [ 0.625695] pnp 00:06: [io 0x1800-0x18fe] [ 0.625697] pnp 00:06: [io 0x164e-0x164f] [ 0.625717] system 00:06: [io 0x0680-0x069f] has been reserved [ 0.625718] system 00:06: [io 0xffff] has been reserved [ 0.625719] system 00:06: [io 0xffff] has been reserved [ 0.625720] system 00:06: [io 0xffff] has been reserved [ 0.625722] system 00:06: [io 0x1c00-0x1cfe] has been reserved [ 0.625723] system 00:06: [io 0x1d00-0x1dfe] has been reserved [ 0.625724] system 00:06: [io 0x1e00-0x1efe] has been reserved [ 0.625725] system 00:06: [io 0x1f00-0x1ffe] has been reserved [ 0.625726] system 00:06: [io 0x1800-0x18fe] has been reserved [ 0.625727] system 00:06: [io 0x164e-0x164f] has been reserved [ 0.625729] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.625733] pnp 00:07: [io 0x0070-0x0077] [ 0.625743] pnp 00:07: [irq 8] [ 0.625754] pnp 00:07: Plug and Play ACPI device, IDs PNP0b00 (active) [ 0.625769] pnp 00:08: [io 0x1854-0x1857] [ 0.625786] system 00:08: [io 0x1854-0x1857] has been reserved [ 0.625787] system 00:08: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active) [ 0.625830] pnp 00:09: [io 0x0000-0xffffffffffffffff disabled] [ 0.625832] pnp 00:09: [io 0x0a00-0x0a0f] [ 0.625833] pnp 00:09: [io 0x0a40-0x0a3f disabled] [ 0.625850] system 00:09: [io 0x0a00-0x0a0f] has been reserved [ 0.625851] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.625862] pnp 00:0a: [io 0x0010-0x001f] [ 0.625863] pnp 00:0a: [io 0x0022-0x003f] [ 0.625864] pnp 00:0a: [io 0x0044-0x005f] [ 0.625865] pnp 00:0a: [io 0x0062-0x0063] [ 0.625865] pnp 00:0a: [io 0x0065-0x006f] [ 0.625866] pnp 00:0a: [io 0x0072-0x007f] [ 0.625867] pnp 00:0a: [io 0x0080] [ 0.625868] pnp 00:0a: [io 0x0084-0x0086] [ 0.625869] pnp 00:0a: [io 0x0088] [ 0.625869] pnp 00:0a: [io 0x008c-0x008e] [ 0.625870] pnp 00:0a: [io 0x0090-0x009f] [ 0.625871] pnp 00:0a: [io 0x00a2-0x00bf] [ 0.625872] pnp 00:0a: [io 0x00e0-0x00ef] [ 0.625873] pnp 00:0a: [io 0x04d0-0x04d1] [ 0.625890] system 00:0a: [io 0x04d0-0x04d1] has been reserved [ 0.625892] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.626367] pnp 00:0b: [io 0x03f8-0x03ff] [ 0.626377] pnp 00:0b: [irq 4] [ 0.626378] pnp 00:0b: [dma 0 disabled] [ 0.626407] pnp 00:0b: Plug and Play ACPI device, IDs PNP0501 (active) [ 0.626717] pnp 00:0c: [mem 0xfed1c000-0xfed1ffff] [ 0.626718] pnp 00:0c: [mem 0xfed10000-0xfed17fff] [ 0.626719] pnp 00:0c: [mem 0xfed18000-0xfed18fff] [ 0.626720] pnp 00:0c: [mem 0xfed19000-0xfed19fff] [ 0.626721] pnp 00:0c: [mem 0xf8000000-0xfbffffff] [ 0.626722] pnp 00:0c: [mem 0xfed20000-0xfed3ffff] [ 0.626723] pnp 00:0c: [mem 0xfed90000-0xfed93fff] [ 0.626724] pnp 00:0c: [mem 0xfed45000-0xfed8ffff] [ 0.626725] pnp 00:0c: [mem 0xff000000-0xffffffff] [ 0.626726] pnp 00:0c: [mem 0xfee00000-0xfeefffff] [ 0.626727] pnp 00:0c: [mem 0xf7fee000-0xf7feefff] [ 0.626727] pnp 00:0c: [mem 0xf7fd0000-0xf7fdffff] [ 0.626756] system 00:0c: [mem 0xfed1c000-0xfed1ffff] has been reserved [ 0.626757] system 00:0c: [mem 0xfed10000-0xfed17fff] has been reserved [ 0.626758] system 00:0c: [mem 0xfed18000-0xfed18fff] has been reserved [ 0.626759] system 00:0c: [mem 0xfed19000-0xfed19fff] has been reserved [ 0.626760] system 00:0c: [mem 0xf8000000-0xfbffffff] has been reserved [ 0.626762] system 00:0c: [mem 0xfed20000-0xfed3ffff] has been reserved [ 0.626763] system 00:0c: [mem 0xfed90000-0xfed93fff] has been reserved [ 0.626764] system 00:0c: [mem 0xfed45000-0xfed8ffff] has been reserved [ 0.626765] system 00:0c: [mem 0xff000000-0xffffffff] has been reserved [ 0.626767] system 00:0c: [mem 0xfee00000-0xfeefffff] could not be reserved [ 0.626768] system 00:0c: [mem 0xf7fee000-0xf7feefff] has been reserved [ 0.626769] system 00:0c: [mem 0xf7fd0000-0xf7fdffff] has been reserved [ 0.626771] system 00:0c: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.626926] pnp: PnP ACPI: found 13 devices [ 0.626927] ACPI: ACPI bus type pnp unregistered [ 0.632962] PCI: max bus depth: 1 pci_try_num: 2 [ 0.632978] pci 0000:00:1c.4: BAR 14: assigned [mem 0xdf200000-0xdf3fffff] [ 0.632980] pci 0000:00:1c.4: BAR 15: assigned [mem 0xdf400000-0xdf5fffff 64bit pref] [ 0.632982] pci 0000:00:1c.4: BAR 13: assigned [io 0x2000-0x2fff] [ 0.632983] pci 0000:00:1c.0: PCI bridge to [bus 01-01] [ 0.632997] pci 0000:00:1c.4: PCI bridge to [bus 02-02] [ 0.632999] pci 0000:00:1c.4: bridge window [io 0x2000-0x2fff] [ 0.633003] pci 0000:00:1c.4: bridge window [mem 0xdf200000-0xdf3fffff] [ 0.633007] pci 0000:00:1c.4: bridge window [mem 0xdf400000-0xdf5fffff 64bit pref] [ 0.633022] pci 0000:00:1c.0: setting latency timer to 64 [ 0.633029] pci 0000:00:1c.4: setting latency timer to 64 [ 0.633032] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7] [ 0.633033] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff] [ 0.633034] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff] [ 0.633035] pci_bus 0000:00: resource 7 [mem 0x000dc000-0x000dffff] [ 0.633036] pci_bus 0000:00: resource 8 [mem 0x000e0000-0x000e3fff] [ 0.633037] pci_bus 0000:00: resource 9 [mem 0x000e4000-0x000e7fff] [ 0.633038] pci_bus 0000:00: resource 10 [mem 0xdf200000-0xfeafffff] [ 0.633039] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff] [ 0.633040] pci_bus 0000:02: resource 1 [mem 0xdf200000-0xdf3fffff] [ 0.633041] pci_bus 0000:02: resource 2 [mem 0xdf400000-0xdf5fffff 64bit pref] [ 0.633091] NET: Registered protocol family 2 [ 0.634403] IP route cache hash table entries: 524288 (order: 10, 4194304 bytes) [ 0.634943] TCP established hash table entries: 524288 (order: 11, 8388608 bytes) [ 0.635735] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) [ 0.635828] TCP: Hash tables configured (established 524288 bind 65536) [ 0.635830] TCP reno registered [ 0.635850] UDP hash table entries: 16384 (order: 7, 524288 bytes) [ 0.635916] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes) [ 0.636029] NET: Registered protocol family 1 [ 0.636036] pci 0000:00:02.0: Boot video device [ 0.636330] pci 0000:00:14.0: power state changed by ACPI to D0 [ 0.636342] pci 0000:00:14.0: power state changed by ACPI to D0 [ 0.676202] PCI: CLS 64 bytes, default 64 [ 0.676228] Unpacking initramfs... [ 0.797859] Freeing initrd memory: 10244k freed [ 0.798449] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) [ 0.798451] Placing 64MB software IO TLB between ffff8800d3edb000 - ffff8800d7edb000 [ 0.798452] software IO TLB at phys 0xd3edb000 - 0xd7edb000 [ 0.798813] audit: initializing netlink socket (disabled) [ 0.798819] type=2000 audit(1429773874.640:1): initialized [ 0.807725] HugeTLB registered 2 MB page size, pre-allocated 0 pages [ 0.809597] VFS: Disk quotas dquot_6.5.2 [ 0.809620] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 0.809666] msgmni has been set to 32768 [ 0.809775] alg: No test for stdrng (krng) [ 0.809794] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) [ 0.809796] io scheduler noop registered [ 0.809796] io scheduler deadline registered [ 0.809810] io scheduler cfq registered (default) [ 0.809940] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 [ 0.809950] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 [ 0.809951] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [ 0.810098] acpiphp: Slot [1] registered [ 0.810136] acpiphp: Slot [1-1] registered [ 0.810198] intel_idle: does not run on family 6 model 60 [ 0.810232] ERST: Error Record Serialization Table (ERST) support is initialized. [ 0.810287] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC. [ 0.810323] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled [ 0.830879] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A [ 1.044580] 00:0b: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A [ 1.044808] Linux agpgart interface v0.103 [ 1.044872] i8042: PNP: No PS/2 controller found. Probing ports directly. [ 1.047609] serio: i8042 KBD port at 0x60,0x64 irq 1 [ 1.047612] serio: i8042 AUX port at 0x60,0x64 irq 12 [ 1.047687] mousedev: PS/2 mouse device common for all mice [ 1.047719] rtc_cmos 00:07: RTC can wake from S4 [ 1.047805] rtc_cmos 00:07: rtc core: registered rtc_cmos as rtc0 [ 1.047832] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs [ 1.047838] cpuidle: using governor ladder [ 1.047838] cpuidle: using governor menu [ 1.047940] TCP cubic registered [ 1.047993] NET: Registered protocol family 10 [ 1.048230] Mobile IPv6 [ 1.048231] NET: Registered protocol family 17 [ 1.048233] Registering the dns_resolver key type [ 1.048316] PM: Hibernation image not present or could not be loaded. [ 1.048321] registered taskstats version 1 [ 1.049374] rtc_cmos 00:07: setting system clock to 2015-04-23 07:24:35 UTC (1429773875) [ 1.049414] Initializing network drop monitor service [ 1.049984] Freeing unused kernel memory: 576k freed [ 1.050017] Write protecting the kernel read-only data: 6144k [ 1.051248] Freeing unused kernel memory: 644k freed [ 1.052558] Freeing unused kernel memory: 688k freed [ 1.058320] udevd[57]: starting version 175 [ 1.067444] usbcore: registered new interface driver usbfs [ 1.067458] usbcore: registered new interface driver hub [ 1.070368] SCSI subsystem initialized [ 1.077312] usbcore: registered new device driver usb [ 1.077522] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 1.077563] ehci_hcd 0000:00:1a.0: setting latency timer to 64 [ 1.077565] ehci_hcd 0000:00:1a.0: EHCI Host Controller [ 1.077578] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1 [ 1.077608] ehci_hcd 0000:00:1a.0: debug port 2 [ 1.077880] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k [ 1.077882] e1000e: Copyright(c) 1999 - 2013 Intel Corporation. [ 1.078043] libata version 3.00 loaded. [ 1.081507] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported [ 1.082945] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xf7c3c000 [ 1.085335] ACPI: Invalid active0 threshold [ 1.085383] thermal LNXTHERM:00: registered as thermal_zone0 [ 1.085385] ACPI: Thermal Zone [TZ00] (28 C) [ 1.085466] thermal LNXTHERM:01: registered as thermal_zone1 [ 1.085467] ACPI: Thermal Zone [TZ01] (30 C) [ 1.095884] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00 [ 1.095906] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002 [ 1.095907] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.095908] usb usb1: Product: EHCI Host Controller [ 1.095909] usb usb1: Manufacturer: Linux 3.2.0-4-amd64 ehci_hcd [ 1.095910] usb usb1: SerialNumber: 0000:00:1a.0 [ 1.095983] hub 1-0:1.0: USB hub found [ 1.095985] hub 1-0:1.0: 2 ports detected [ 1.096064] ehci_hcd 0000:00:1d.0: setting latency timer to 64 [ 1.096067] ehci_hcd 0000:00:1d.0: EHCI Host Controller [ 1.096071] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2 [ 1.096098] ehci_hcd 0000:00:1d.0: debug port 2 [ 1.099982] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported [ 1.099993] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xf7c3b000 [ 1.115820] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00 [ 1.115834] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002 [ 1.115836] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.115837] usb usb2: Product: EHCI Host Controller [ 1.115837] usb usb2: Manufacturer: Linux 3.2.0-4-amd64 ehci_hcd [ 1.115838] usb usb2: SerialNumber: 0000:00:1d.0 [ 1.115900] hub 2-0:1.0: USB hub found [ 1.115902] hub 2-0:1.0: 2 ports detected [ 1.115968] e1000e 0000:00:19.0: setting latency timer to 64 [ 1.116010] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode [ 1.116039] e1000e 0000:00:19.0: irq 42 for MSI/MSI-X [ 1.286766] e1000e 0000:00:19.0: eth0: (PCI Express:2.5GT/s:Width x1) 98:90:96:99:75:8a [ 1.286768] e1000e 0000:00:19.0: eth0: Intel(R) PRO/1000 Network Connection [ 1.286822] e1000e 0000:00:19.0: eth0: MAC: 11, PHY: 12, PBA No: FFFFFF-0FF [ 1.286834] ahci 0000:00:1f.2: version 3.0 [ 1.286882] ahci 0000:00:1f.2: irq 43 for MSI/MSI-X [ 1.286924] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x7 impl RAID mode [ 1.286925] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part ems apst [ 1.286928] ahci 0000:00:1f.2: setting latency timer to 64 [ 1.299907] scsi0 : ahci [ 1.299973] scsi1 : ahci [ 1.300005] scsi2 : ahci [ 1.300042] scsi3 : ahci [ 1.300076] scsi4 : ahci [ 1.300108] scsi5 : ahci [ 1.300355] ata1: SATA max UDMA/133 abar m2048@0xf7c3a000 port 0xf7c3a100 irq 43 [ 1.300357] ata2: SATA max UDMA/133 abar m2048@0xf7c3a000 port 0xf7c3a180 irq 43 [ 1.300360] ata3: SATA max UDMA/133 abar m2048@0xf7c3a000 port 0xf7c3a200 irq 43 [ 1.300361] ata4: DUMMY [ 1.300361] ata5: DUMMY [ 1.300362] ata6: DUMMY [ 1.300380] xhci_hcd 0000:00:14.0: power state changed by ACPI to D0 [ 1.300383] xhci_hcd 0000:00:14.0: power state changed by ACPI to D0 [ 1.300402] xhci_hcd 0000:00:14.0: setting latency timer to 64 [ 1.300405] xhci_hcd 0000:00:14.0: xHCI Host Controller [ 1.300411] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3 [ 1.300491] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported [ 1.300528] xhci_hcd 0000:00:14.0: irq 44 for MSI/MSI-X [ 1.300565] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002 [ 1.300566] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.300567] usb usb3: Product: xHCI Host Controller [ 1.300568] usb usb3: Manufacturer: Linux 3.2.0-4-amd64 xhci_hcd [ 1.300569] usb usb3: SerialNumber: 0000:00:14.0 [ 1.300615] xHCI xhci_add_endpoint called for root hub [ 1.300616] xHCI xhci_check_bandwidth called for root hub [ 1.300631] hub 3-0:1.0: USB hub found [ 1.300650] hub 3-0:1.0: 15 ports detected [ 1.300711] xhci_hcd 0000:00:14.0: xHCI Host Controller [ 1.300713] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4 [ 1.300731] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003 [ 1.300732] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.300733] usb usb4: Product: xHCI Host Controller [ 1.300734] usb usb4: Manufacturer: Linux 3.2.0-4-amd64 xhci_hcd [ 1.300735] usb usb4: SerialNumber: 0000:00:14.0 [ 1.300775] xHCI xhci_add_endpoint called for root hub [ 1.300776] xHCI xhci_check_bandwidth called for root hub [ 1.300788] hub 4-0:1.0: USB hub found [ 1.300802] hub 4-0:1.0: 6 ports detected [ 1.407572] usb 1-1: new high-speed USB device number 2 using ehci_hcd [ 1.539868] usb 1-1: New USB device found, idVendor=8087, idProduct=8008 [ 1.539870] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 [ 1.540004] hub 1-1:1.0: USB hub found [ 1.540112] hub 1-1:1.0: 6 ports detected [ 1.619400] ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300) [ 1.619415] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) [ 1.619429] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300) [ 1.620393] ata3.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded [ 1.620395] ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out [ 1.620396] ata3.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out [ 1.620535] ata3.00: ATA-9: MKNSSDRE1TB, N1007C, max UDMA/133 [ 1.620536] ata3.00: 1953525168 sectors, multi 1: LBA48 NCQ (depth 31/32), AA [ 1.620781] ata3.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded [ 1.620783] ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out [ 1.620784] ata3.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out [ 1.620916] ata3.00: configured for UDMA/133 [ 1.623626] ata2.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded [ 1.623628] ata2.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out [ 1.623629] ata2.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out [ 1.625533] ata2.00: ATAPI: HL-DT-ST DVD+/-RW GTA0N, A1B0, max UDMA/100 [ 1.628962] ata1.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded [ 1.628963] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out [ 1.628965] ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out [ 1.629282] ata2.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded [ 1.629287] ata2.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out [ 1.629289] ata2.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out [ 1.631213] ata2.00: configured for UDMA/100 [ 1.651361] usb 2-1: new high-speed USB device number 2 using ehci_hcd [ 1.655198] ata1.00: ATA-8: ST500LM021-1KJ152, 0002SDM1, max UDMA/133 [ 1.655200] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32) [ 1.677120] ata1.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded [ 1.677121] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out [ 1.677123] ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out [ 1.703356] ata1.00: configured for UDMA/133 [ 1.703434] scsi 0:0:0:0: Direct-Access ATA ST500LM021-1KJ15 0002 PQ: 0 ANSI: 5 [ 1.705237] scsi 1:0:0:0: CD-ROM HL-DT-ST DVD+-RW GTA0N A1B0 PQ: 0 ANSI: 5 [ 1.705332] scsi 2:0:0:0: Direct-Access ATA MKNSSDRE1TB N100 PQ: 0 ANSI: 5 [ 1.707297] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB) [ 1.707298] sd 0:0:0:0: [sda] 4096-byte physical blocks [ 1.707338] sd 2:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB) [ 1.707358] sd 2:0:0:0: [sdb] Write Protect is off [ 1.707360] sd 2:0:0:0: [sdb] Mode Sense: 00 3a 00 00 [ 1.707366] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 1.707627] sd 0:0:0:0: [sda] Write Protect is off [ 1.707629] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 1.707646] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 1.707755] sdb: sdb1 sdb2 < sdb5 > [ 1.707936] sd 2:0:0:0: [sdb] Attached SCSI disk [ 1.709925] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray [ 1.709926] cdrom: Uniform CD-ROM driver Revision: 3.20 [ 1.709985] sr 1:0:0:0: Attached scsi CD-ROM sr0 [ 1.724071] sd 0:0:0:0: Attached scsi generic sg0 type 0 [ 1.724118] sr 1:0:0:0: Attached scsi generic sg1 type 5 [ 1.724141] sd 2:0:0:0: Attached scsi generic sg2 type 0 [ 1.731847] sda: sda1 sda2 sda3 [ 1.732039] sd 0:0:0:0: [sda] Attached SCSI disk [ 1.783654] usb 2-1: New USB device found, idVendor=8087, idProduct=8000 [ 1.783656] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 [ 1.783801] hub 2-1:1.0: USB hub found [ 1.783902] hub 2-1:1.0: 8 ports detected [ 1.795237] Refined TSC clocksource calibration: 3491.913 MHz. [ 1.795240] Switching to clocksource tsc [ 1.895173] usb 4-6: new SuperSpeed USB device number 2 using xhci_hcd [ 1.911351] usb 4-6: New USB device found, idVendor=0451, idProduct=8046 [ 1.911353] usb 4-6: New USB device strings: Mfr=0, Product=0, SerialNumber=0 [ 1.911602] hub 4-6:1.0: USB hub found [ 1.911631] hub 4-6:1.0: 3 ports detected [ 1.983240] usb 1-1.3: new high-speed USB device number 3 using ehci_hcd [ 2.077174] usb 1-1.3: New USB device found, idVendor=0930, idProduct=6544 [ 2.077176] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 2.077177] usb 1-1.3: Product: DataTraveler 2.0 [ 2.077178] usb 1-1.3: Manufacturer: Kingston [ 2.077179] usb 1-1.3: SerialNumber: C86000BDBA11CE806A2A80EF [ 2.091262] Initializing USB Mass Storage driver... [ 2.091307] scsi6 : usb-storage 1-1.3:1.0 [ 2.091346] usbcore: registered new interface driver usb-storage [ 2.091347] USB Mass Storage support registered. [ 2.146975] usb 1-1.4: new low-speed USB device number 4 using ehci_hcd [ 2.244137] usb 1-1.4: New USB device found, idVendor=046d, idProduct=c404 [ 2.244139] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 2.244141] usb 1-1.4: Product: Trackball [ 2.244142] usb 1-1.4: Manufacturer: Logitech [ 2.249733] input: Logitech Trackball as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/input/input0 [ 2.249771] generic-usb 0003:046D:C404.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech Trackball] on usb-0000:00:1a.0-1.4/input0 [ 2.249779] usbcore: registered new interface driver usbhid [ 2.249780] usbhid: USB HID core driver [ 2.306198] PM: Starting manual resume from disk [ 2.306200] PM: Hibernation image partition 8:21 present [ 2.306201] PM: Looking for hibernation image. [ 2.306348] PM: Image not found (code -22) [ 2.306349] PM: Hibernation image not present or could not be loaded. [ 2.314829] usb 2-1.4: new high-speed USB device number 3 using ehci_hcd [ 2.346164] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null) [ 2.407626] usb 2-1.4: New USB device found, idVendor=0451, idProduct=8044 [ 2.407628] usb 2-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=1 [ 2.407630] usb 2-1.4: SerialNumber: 46000841CE89 [ 2.407765] hub 2-1.4:1.0: USB hub found [ 2.407879] hub 2-1.4:1.0: 3 ports detected [ 2.478823] usb 2-1.5: new low-speed USB device number 4 using ehci_hcd [ 2.570236] udevd[392]: starting version 175 [ 2.577855] usb 2-1.5: New USB device found, idVendor=413c, idProduct=2107 [ 2.577857] usb 2-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 2.577859] usb 2-1.5: Product: Dell USB Entry Keyboard [ 2.577860] usb 2-1.5: Manufacturer: Dell [ 2.581579] input: Dell Dell USB Entry Keyboard as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5/2-1.5:1.0/input/input1 [ 2.581616] generic-usb 0003:413C:2107.0002: input,hidraw1: USB HID v1.10 Keyboard [Dell Dell USB Entry Keyboard] on usb-0000:00:1d.0-1.5/input0 [ 2.602841] ACPI: Requesting acpi_cpufreq [ 2.603066] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2 [ 2.603070] ACPI: Power Button [PWRB] [ 2.606917] Monitor-Mwait will be used to enter C-1 state [ 2.606923] Monitor-Mwait will be used to enter C-2 state [ 2.606929] ACPI: acpi_idle registered with cpuidle [ 2.607619] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3 [ 2.607623] ACPI: Power Button [PWRF] [ 2.611063] ACPI: resource 0000:00:1f.3 [io 0xf040-0xf05f] conflicts with ACPI region SMBI [io 0xf040-0xf04f] [ 2.611065] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver [ 2.611166] input: PC Speaker as /devices/platform/pcspkr/input/input4 [ 2.611174] iTCO_vendor_support: vendor-support=0 [ 2.611912] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.07 [ 2.611958] iTCO_wdt: Found a Lynx Point TCO device (Version=2, TCOBASE=0x1860) [ 2.611994] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0) [ 2.616075] wmi: Mapper loaded [ 2.624804] snd_hda_intel 0000:00:03.0: irq 45 for MSI/MSI-X [ 2.624818] snd_hda_intel 0000:00:03.0: setting latency timer to 64 [ 2.635754] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2) [ 2.649226] alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni) [ 2.650991] usb 4-6.3: new SuperSpeed USB device number 3 using xhci_hcd [ 2.666745] usb 4-6.3: New USB device found, idVendor=0451, idProduct=8046 [ 2.666747] usb 4-6.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0 [ 2.667047] hub 4-6.3:1.0: USB hub found [ 2.667076] hub 4-6.3:1.0: 3 ports detected [ 2.738680] usb 2-1.4.3: new high-speed USB device number 5 using ehci_hcd [ 2.831865] usb 2-1.4.3: New USB device found, idVendor=0451, idProduct=8044 [ 2.831874] usb 2-1.4.3: New USB device strings: Mfr=0, Product=0, SerialNumber=1 [ 2.831880] usb 2-1.4.3: SerialNumber: 83050871CE89 [ 2.832440] hub 2-1.4.3:1.0: USB hub found [ 2.832581] hub 2-1.4.3:1.0: 3 ports detected [ 3.102368] usb 2-1.4.3.3: new high-speed USB device number 6 using ehci_hcd [ 3.106432] scsi 6:0:0:0: Direct-Access Kingston DataTraveler 2.0 1.00 PQ: 0 ANSI: 4 [ 3.108375] sd 6:0:0:0: Attached scsi generic sg3 type 0 [ 3.109099] sd 6:0:0:0: [sdc] 15148608 512-byte logical blocks: (7.75 GB/7.22 GiB) [ 3.109721] sd 6:0:0:0: [sdc] Write Protect is off [ 3.109730] sd 6:0:0:0: [sdc] Mode Sense: 45 00 00 00 [ 3.110398] sd 6:0:0:0: [sdc] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [ 3.117191] sdc: sdc1 [ 3.119333] sd 6:0:0:0: [sdc] Attached SCSI removable disk [ 3.290843] usb 2-1.4.3.3: New USB device found, idVendor=0bda, idProduct=0307 [ 3.290853] usb 2-1.4.3.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 3.290858] usb 2-1.4.3.3: Product: USB3.0 Card Reader [ 3.290863] usb 2-1.4.3.3: Manufacturer: Realtek [ 3.290866] usb 2-1.4.3.3: SerialNumber: 412180079901 [ 3.296872] scsi7 : usb-storage 2-1.4.3.3:1.0 [ 4.299966] scsi 7:0:0:0: Direct-Access Generic- SD/MMC/MS/MSPRO 1.00 PQ: 0 ANSI: 4 [ 4.301609] sd 7:0:0:0: Attached scsi generic sg4 type 0 [ 4.311591] sd 7:0:0:0: [sdd] Attached SCSI removable disk [ 5.652015] hda-intel: azx_get_response timeout, switching to polling mode: last cmd=0x000f0000 [ 6.655164] hda-intel: No response from codec, disabling MSI: last cmd=0x000f0000 [ 7.658322] hda-intel: Codec #0 probe error; disabling it... [ 8.677445] hda_intel: azx_get_response timeout, switching to single_cmd mode: last cmd=0x000f0001 [ 8.683053] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X [ 8.683114] snd_hda_intel 0000:00:1b.0: setting latency timer to 64 [ 8.736971] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input5 [ 9.196695] Adding 39519228k swap on /dev/sdb5. Priority:-1 extents:1 across:39519228k SS [ 9.225301] EXT4-fs (sdb1): re-mounted. Opts: (null) [ 9.377956] EXT4-fs (sdb1): re-mounted. Opts: errors=remount-ro [ 9.410137] loop: module loaded [ 9.951881] fuse init (API version 7.17) [ 10.654638] RPC: Registered named UNIX socket transport module. [ 10.654645] RPC: Registered udp transport module. [ 10.654649] RPC: Registered tcp transport module. [ 10.654652] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 10.662677] FS-Cache: Loaded [ 10.674215] FS-Cache: Netfs 'nfs' registered for caching [ 10.682168] Installing knfsd (copyright (C) 1996 okir@xxxxxxxxxxxx). [ 11.153334] Bluetooth: Core ver 2.16 [ 11.153344] NET: Registered protocol family 31 [ 11.153345] Bluetooth: HCI device and connection manager initialized [ 11.153347] Bluetooth: HCI socket layer initialized [ 11.153347] Bluetooth: L2CAP socket layer initialized [ 11.153350] Bluetooth: SCO socket layer initialized [ 11.155012] Bluetooth: RFCOMM TTY layer initialized [ 11.155015] Bluetooth: RFCOMM socket layer initialized [ 11.155016] Bluetooth: RFCOMM ver 1.11 [ 11.170710] lp: driver loaded but no devices found [ 11.172568] ppdev: user-space parallel port driver [ 11.186086] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 [ 11.186088] Bluetooth: BNEP filters: protocol multicast [ 11.344511] e1000e 0000:00:19.0: irq 42 for MSI/MSI-X [ 11.447097] e1000e 0000:00:19.0: irq 42 for MSI/MSI-X [ 11.447729] ADDRCONF(NETDEV_UP): eth0: link is not ready [ 12.066139] input: ACPI Virtual Keyboard Device as /devices/virtual/input/input6 $$$ ============================================================================ $ cat /etc/rc.local #!/bin/sh -e # # rc.local # # This script is executed at the end of each multiuser runlevel. # Make sure that the script will "exit 0" on success or any other # value on error. # # In order to enable or disable this script just change the execution # bits. # # By default this script does nothing. echo 1 > /sys/devices/pci0000:00/0000:00:03.0/remove exit 0 $$$ ============================================================================ $ cat /proc/interrupts CPU0 CPU1 CPU2 CPU3 0: 42 0 0 0 IR-IO-APIC-edge timer 1: 3 0 0 0 IR-IO-APIC-edge i8042 7: 5 0 0 0 IR-IO-APIC-edge 8: 1 0 0 0 IR-IO-APIC-edge rtc0 9: 0 0 0 0 IR-IO-APIC-fasteoi acpi 12: 4 0 0 0 IR-IO-APIC-edge i8042 16: 1248 0 0 0 IR-IO-APIC-fasteoi ehci_hcd:usb1 23: 299 0 0 0 IR-IO-APIC-fasteoi ehci_hcd:usb2 40: 0 0 0 0 DMAR_MSI-edge dmar0 41: 0 0 0 0 DMAR_MSI-edge dmar1 42: 2 0 0 0 IR-PCI-MSI-edge eth0 43: 8419 0 0 0 IR-PCI-MSI-edge ahci 44: 78 0 0 0 IR-PCI-MSI-edge xhci_hcd 45: 231 0 0 0 IR-PCI-MSI-edge snd_hda_intel NMI: 2 1 1 1 Non-maskable interrupts LOC: 1910 1711 1719 1634 Local timer interrupts SPU: 0 0 0 0 Spurious interrupts PMI: 2 1 1 1 Performance monitoring interrupts IWI: 0 0 0 0 IRQ work interrupts RES: 2905 4303 4452 3507 Rescheduling interrupts CAL: 364 642 658 627 Function call interrupts TLB: 685 839 829 689 TLB shootdowns TRM: 0 0 0 0 Thermal event interrupts THR: 0 0 0 0 Threshold APIC interrupts MCE: 0 0 0 0 Machine check exceptions MCP: 2 2 2 2 Machine check polls ERR: 5 MIS: 0 $$$ ============================================================================ $ dpkg -l | grep "$(uname -r)" ii linux-headers-3.2.0-4-amd64 3.2.65-1+deb7u2 amd64 Header files for Linux 3.2.0-4-amd64 ii linux-image-3.2.0-4-amd64 3.2.65-1+deb7u2 amd64 Linux 3.2 for 64-bit PCs -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html