It looks scary. And it looks like acm_disconnect called after the acm_rx_tasklet has seen the NULL end-point pointer: [ 54.269030] acm_rx_tasklet: enter [ 54.269033] acm_rx_tasklet: leave, usb_submit_urb failed? [ 54.269048] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d046cc0 ep3in-bulk [ 54.269051] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d046240 ep3in-bulk [ 54.269054] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d016300 ep3in-bulk [ 54.269057] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d016e40 ep3in-bulk [ 54.269060] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d016240 ep3in-bulk [ 54.269063] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d0169c0 ep3in-bulk [ 54.269065] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d0163c0 ep3in-bulk [ 54.269068] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d016600 ep3in-bulk [ 54.269071] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d016840 ep3in-bulk [ 54.269074] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d046b40 ep3in-bulk [ 54.269077] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d046a80 ep3in-bulk [ 54.269080] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d046780 ep3in-bulk [ 54.269083] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d0469c0 ep3in-bulk [ 54.269086] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d046600 ep3in-bulk [ 54.269089] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d046e40 ep3in-bulk [ 54.274842] acm_rx_tasklet: enter [ 54.274845] acm_rx_tasklet: ep == NULL [ 54.274846] acm_rx_tasklet: leave [ 54.274863] usb 5-1: unregistering interface 5-1:1.0 [ 54.275123] acm_disconnect: enter [ 54.275125] acm_disconnect: before mutex_lock(&open_mutex) [ 54.275195] acm_disconnect: after acm->dev = NULL [ 54.275368] acm_disconnect: enter [ 54.275370] acm_disconnect: leave (!acm) [ 54.275490] acm_disconnect: after mutex_unlock(&open_mutex) [ 54.275496] acm_disconnect: leave The instrumentation patch: diff --git a/drivers/usb/class/cdc-acm.c b/drivers/usb/class/cdc-acm.c index e1f8941..ab3e155 100644 --- a/drivers/usb/class/cdc-acm.c +++ b/drivers/usb/class/cdc-acm.c @@ -51,8 +51,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#undef DEBUG -#undef VERBOSE_DEBUG +//#undef DEBUG +//#undef VERBOSE_DEBUG #include <linux/kernel.h> #include <linux/errno.h> @@ -391,6 +391,7 @@ static void acm_rx_tasklet(unsigned long _acm) dbg("Entering acm_rx_tasklet"); + printk("%s: enter\n", __func__); if (!ACM_READY(acm)) { dbg("acm_rx_tasklet: ACM not ready"); return; @@ -450,6 +451,8 @@ urbs: if (list_empty(&acm->spare_read_urbs)) { acm->processing = 0; spin_unlock_irqrestore(&acm->read_lock, flags); + printk(KERN_EMERG "%s: leave: acm->processing = 0\n", + __func__); return; } rcv = list_entry(acm->spare_read_urbs.next, @@ -489,6 +492,8 @@ urbs: list_add(&rcv->list, &acm->spare_read_urbs); acm->processing = 0; spin_unlock_irqrestore(&acm->read_lock, flags); + printk(KERN_EMERG "%s: leave, usb_submit_urb failed?\n", + __func__); return; } else { spin_unlock_irqrestore(&acm->read_lock, flags); @@ -498,6 +503,7 @@ urbs: spin_lock_irqsave(&acm->read_lock, flags); acm->processing = 0; spin_unlock_irqrestore(&acm->read_lock, flags); + printk(KERN_EMERG "%s: leave\n", __func__); } /* data interface wrote those outgoing bytes */ @@ -1347,10 +1353,14 @@ static void acm_disconnect(struct usb_interface *intf) struct usb_device *usb_dev = interface_to_usbdev(intf); struct tty_struct *tty; + printk(KERN_EMERG "%s: enter\n", __func__); /* sibling interface is already cleaning up */ - if (!acm) + if (!acm) { + printk(KERN_EMERG "%s: leave (!acm)\n", __func__); return; + } + printk(KERN_EMERG "%s: before mutex_lock(&open_mutex)\n", __func__); mutex_lock(&open_mutex); if (acm->country_codes) { device_remove_file(&acm->control->dev, @@ -1360,6 +1370,7 @@ static void acm_disconnect(struct usb_interface *intf) } device_remove_file(&acm->control->dev, &dev_attr_bmCapabilities); acm->dev = NULL; + printk(KERN_EMERG "%s: after acm->dev = NULL\n", __func__); usb_set_intfdata(acm->control, NULL); usb_set_intfdata(acm->data, NULL); @@ -1377,15 +1388,19 @@ static void acm_disconnect(struct usb_interface *intf) if (acm->port.count == 0) { acm_tty_unregister(acm); mutex_unlock(&open_mutex); + printk(KERN_EMERG "%s: after mutex_unlock(&open_mutex), " + "port.count == 0\n", __func__); return; } mutex_unlock(&open_mutex); + printk(KERN_EMERG "%s: after mutex_unlock(&open_mutex)\n", __func__); tty = tty_port_tty_get(&acm->port); if (tty) { tty_hangup(tty); tty_kref_put(tty); } + printk(KERN_EMERG "%s: leave\n", __func__); } #ifdef CONFIG_PM
[ 0.000000] Linux version 2.6.31-rc5-t (raa@blimp) (gcc version 4.3.3 (Ubuntu 4.3.3-5ubuntu4) ) #114 SMP Mon Aug 3 20:42:43 CEST 2009 [ 0.000000] Command line: ro root=/dev/sda2 resume=/dev/sda3 snd-hda-intel.model=dell-3stack loglevel=7 rootfstype=ext4 no_console_suspend init=/boot/linuxrc-t [ 0.000000] KERNEL supported cpus: [ 0.000000] Intel GenuineIntel [ 0.000000] AMD AuthenticAMD [ 0.000000] Centaur CentaurHauls [ 0.000000] BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f000 (usable) [ 0.000000] BIOS-e820: 000000000009f000 - 00000000000a0000 (reserved) [ 0.000000] BIOS-e820: 0000000000100000 - 000000007f66d800 (usable) [ 0.000000] BIOS-e820: 000000007f66d800 - 0000000080000000 (reserved) [ 0.000000] BIOS-e820: 00000000f8000000 - 00000000fc000000 (reserved) [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved) [ 0.000000] BIOS-e820: 00000000fed18000 - 00000000fed1c000 (reserved) [ 0.000000] BIOS-e820: 00000000fed20000 - 00000000fed90000 (reserved) [ 0.000000] BIOS-e820: 00000000feda0000 - 00000000feda6000 (reserved) [ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee10000 (reserved) [ 0.000000] BIOS-e820: 00000000ffe00000 - 0000000100000000 (reserved) [ 0.000000] DMI 2.4 present. [ 0.000000] last_pfn = 0x7f66d 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-CFFFF write-protect [ 0.000000] D0000-EFFFF uncachable [ 0.000000] F0000-FFFFF write-protect [ 0.000000] MTRR variable ranges enabled: [ 0.000000] 0 base 000000000 mask F80000000 write-back [ 0.000000] 1 base 07F800000 mask FFF800000 uncachable [ 0.000000] 2 base 07F700000 mask FFFF00000 uncachable [ 0.000000] 3 disabled [ 0.000000] 4 disabled [ 0.000000] 5 disabled [ 0.000000] 6 disabled [ 0.000000] 7 disabled [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 [ 0.000000] initial memory mapped : 0 - 20000000 [ 0.000000] init_memory_mapping: 0000000000000000-000000007f66d000 [ 0.000000] 0000000000 - 007f600000 page 2M [ 0.000000] 007f600000 - 007f66d000 page 4k [ 0.000000] kernel direct mapping tables up to 7f66d000 @ 8000-c000 [ 0.000000] ACPI: RSDP 00000000000fbc00 00024 (v02 DELL ) [ 0.000000] ACPI: XSDT 000000007f66f200 00054 (v01 DELL M08 27D80B13 ASL 00000061) [ 0.000000] ACPI: FACP 000000007f66f09c 000F4 (v04 DELL M08 27D80B13 ASL 00000061) [ 0.000000] ACPI: DSDT 000000007f66f800 05733 (v02 INT430 SYSFexxx 00001001 INTL 20050624) [ 0.000000] ACPI: FACS 000000007f67e000 00040 [ 0.000000] ACPI: HPET 000000007f66f300 00038 (v01 DELL M08 00000001 ASL 00000061) [ 0.000000] ACPI: APIC 000000007f66f400 00068 (v01 DELL M08 27D80B13 ASL 00000047) [ 0.000000] ACPI: MCFG 000000007f66f3c0 0003E (v16 DELL M08 27D80B13 ASL 00000061) [ 0.000000] ACPI: BOOT 000000007f66efc0 00028 (v01 DELL M08 27D80B13 ASL 00000061) [ 0.000000] ACPI: SSDT 000000007f66d9b8 004CC (v01 PmRef CpuPm 00003000 INTL 20050624) [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] (6 early reservations) ==> bootmem [0000000000 - 007f66d000] [ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] [ 0.000000] #1 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000] [ 0.000000] #2 [0001000000 - 0001f7ceb0] TEXT DATA BSS ==> [0001000000 - 0001f7ceb0] [ 0.000000] #3 [000009f000 - 0000100000] BIOS reserved ==> [000009f000 - 0000100000] [ 0.000000] #4 [0001f7d000 - 0001f7d1ec] BRK ==> [0001f7d000 - 0001f7d1ec] [ 0.000000] #5 [0000008000 - 000000a000] PGTABLE ==> [0000008000 - 000000a000] [ 0.000000] [ffffea0000000000-ffffea0001bfffff] PMD -> [ffff880002400000-ffff880003ffffff] on node 0 [ 0.000000] Zone PFN ranges: [ 0.000000] DMA 0x00000000 -> 0x00001000 [ 0.000000] DMA32 0x00001000 -> 0x00100000 [ 0.000000] Normal 0x00100000 -> 0x00100000 [ 0.000000] Movable zone start PFN for each node [ 0.000000] early_node_map[2] active PFN ranges [ 0.000000] 0: 0x00000000 -> 0x0000009f [ 0.000000] 0: 0x00000100 -> 0x0007f66d [ 0.000000] On node 0 totalpages: 521740 [ 0.000000] DMA zone: 56 pages used for memmap [ 0.000000] DMA zone: 102 pages reserved [ 0.000000] DMA zone: 3841 pages, LIFO batch:0 [ 0.000000] DMA32 zone: 7079 pages used for memmap [ 0.000000] DMA32 zone: 510662 pages, LIFO batch:31 [ 0.000000] ACPI: PM-Timer IO Port: 0x1008 [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) [ 0.000000] IOAPIC[0]: apic_id 2, 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: 0x8086a201 base: 0xfed00000 [ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs [ 0.000000] nr_irqs_gsi: 24 [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 0000000000100000 [ 0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:78000000) [ 0.000000] NR_CPUS:2 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1 [ 0.000000] PERCPU: Embedded 29 pages at ffff880001fa2000, static data 87072 bytes [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 514503 [ 0.000000] Kernel command line: ro root=/dev/sda2 resume=/dev/sda3 snd-hda-intel.model=dell-3stack loglevel=7 rootfstype=ext4 no_console_suspend init=/boot/linuxrc-t [ 0.000000] PID hash table entries: 4096 (order: 12, 32768 bytes) [ 0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) [ 0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) [ 0.000000] Initializing CPU#0 [ 0.000000] Checking aperture... [ 0.000000] No AGP bridge found [ 0.000000] Memory: 2038228k/2087348k available (4247k kernel code, 388k absent, 48068k reserved, 2438k data, 396k init) [ 0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 [ 0.000000] NR_IRQS:320 [ 0.000000] Extended CMOS year: 2000 [ 0.000000] Fast TSC calibration using PIT [ 0.000000] Detected 1995.172 MHz processor. [ 0.002159] Console: colour VGA+ 80x25 [ 0.002174] console [tty0] enabled [ 0.003333] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar [ 0.003333] ... MAX_LOCKDEP_SUBCLASSES: 8 [ 0.003333] ... MAX_LOCK_DEPTH: 48 [ 0.003333] ... MAX_LOCKDEP_KEYS: 8191 [ 0.003333] ... CLASSHASH_SIZE: 4096 [ 0.003333] ... MAX_LOCKDEP_ENTRIES: 16384 [ 0.003333] ... MAX_LOCKDEP_CHAINS: 32768 [ 0.003333] ... CHAINHASH_SIZE: 16384 [ 0.003333] memory used by lock dependency info: 5695 kB [ 0.003333] per task-struct memory footprint: 1920 bytes [ 0.003333] hpet clockevent registered [ 0.003333] HPET: 3 timers in total, 0 timers will be used for per-cpu timer [ 0.003333] Calibrating delay loop (skipped), value calculated using timer frequency.. 3991.60 BogoMIPS (lpj=6650573) [ 0.003333] Security Framework initialized [ 0.003333] Mount-cache hash table entries: 256 [ 0.003333] CPU: L1 I cache: 32K, L1 D cache: 32K [ 0.003333] CPU: L2 cache: 2048K [ 0.003333] CPU: Physical Processor ID: 0 [ 0.003333] CPU: Processor Core ID: 0 [ 0.003333] mce: CPU supports 6 MCE banks [ 0.003333] CPU0: Thermal monitoring enabled (TM2) [ 0.003333] using mwait in idle threads. [ 0.003333] Performance Counters: Core2 events, Intel PMU driver. [ 0.003333] ... version: 2 [ 0.003333] ... bit width: 40 [ 0.003333] ... generic counters: 2 [ 0.003333] ... value mask: 000000ffffffffff [ 0.003333] ... max period: 000000007fffffff [ 0.003333] ... fixed-purpose counters: 3 [ 0.003333] ... counter mask: 0000000700000003 [ 0.003333] ACPI: Core revision 20090521 [ 0.013482] Setting APIC routing to flat [ 0.013924] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 [ 0.047411] CPU0: Intel(R) Core(TM)2 Duo CPU T7250 @ 2.00GHz stepping 0d [ 0.049999] lockdep: fixing up alternatives. [ 0.049999] Booting processor 1 APIC 0x1 ip 0x6000 [ 0.003333] Initializing CPU#1 [ 0.003333] Calibrating delay using timer specific routine.. 3991.23 BogoMIPS (lpj=6649975) [ 0.003333] CPU: L1 I cache: 32K, L1 D cache: 32K [ 0.003333] CPU: L2 cache: 2048K [ 0.003333] CPU: Physical Processor ID: 0 [ 0.003333] CPU: Processor Core ID: 1 [ 0.003333] mce: CPU supports 6 MCE banks [ 0.003333] CPU1: Thermal monitoring enabled (TM2) [ 0.003333] x86 PAT enabled: cpu 1, old 0x7040600070406, new 0x7010600070106 [ 0.141331] CPU1: Intel(R) Core(TM)2 Duo CPU T7250 @ 2.00GHz stepping 0d [ 0.141592] checking TSC synchronization [CPU#0 -> CPU#1]: passed. [ 0.143399] Brought up 2 CPUs [ 0.143424] Total of 2 processors activated (7983.84 BogoMIPS). [ 0.143560] CPU0 attaching sched-domain: [ 0.143563] domain 0: span 0-1 level MC [ 0.143566] groups: 0 1 [ 0.143586] CPU1 attaching sched-domain: [ 0.143588] domain 0: span 0-1 level MC [ 0.143591] groups: 1 0 [ 0.146771] NET: Registered protocol family 16 [ 0.146865] ACPI: bus type pci registered [ 0.146865] PCI: MCFG configuration 0: base f8000000 segment 0 buses 0 - 63 [ 0.146865] PCI: MCFG area at f8000000 reserved in E820 [ 0.148225] PCI: Using MMCONFIG at f8000000 - fbffffff [ 0.148250] PCI: Using configuration type 1 for base access [ 0.156790] bio: create slab <bio-0> at 0 [ 0.162364] ACPI: EC: Look up EC in DSDT [ 0.179989] ACPI: SSDT 000000007f67e080 00043 (v01 LMPWR DELLLOM 00001001 INTL 20050624) [ 0.198657] ACPI: Interpreter enabled [ 0.198682] ACPI: (supports S0 S3 S4 S5) [ 0.201292] ACPI: Using IOAPIC for interrupt routing [ 0.253756] ACPI: No dock devices found. [ 0.277090] ACPI: PCI Root Bridge [PCI0] (0000:00) [ 0.277227] pci 0000:00:02.0: reg 10 64bit mmio: [0xf6e00000-0xf6efffff] [ 0.277227] pci 0000:00:02.0: reg 18 64bit mmio: [0xe0000000-0xefffffff] [ 0.277227] pci 0000:00:02.0: reg 20 io port: [0xeff8-0xefff] [ 0.277227] pci 0000:00:02.1: reg 10 64bit mmio: [0xf6f00000-0xf6ffffff] [ 0.277227] pci 0000:00:1a.0: reg 20 io port: [0x6f20-0x6f3f] [ 0.277227] pci 0000:00:1a.1: reg 20 io port: [0x6f00-0x6f1f] [ 0.277320] pci 0000:00:1a.7: reg 10 32bit mmio: [0xfed1c400-0xfed1c7ff] [ 0.277406] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold [ 0.277438] pci 0000:00:1a.7: PME# disabled [ 0.277534] pci 0000:00:1b.0: reg 10 64bit mmio: [0xf6dfc000-0xf6dfffff] [ 0.277617] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold [ 0.277648] pci 0000:00:1b.0: PME# disabled [ 0.277785] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold [ 0.277815] pci 0000:00:1c.0: PME# disabled [ 0.277956] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold [ 0.277987] pci 0000:00:1c.1: PME# disabled [ 0.278131] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold [ 0.278161] pci 0000:00:1c.3: PME# disabled [ 0.278307] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold [ 0.278337] pci 0000:00:1c.5: PME# disabled [ 0.278445] pci 0000:00:1d.0: reg 20 io port: [0x6f80-0x6f9f] [ 0.278535] pci 0000:00:1d.1: reg 20 io port: [0x6f60-0x6f7f] [ 0.278624] pci 0000:00:1d.2: reg 20 io port: [0x6f40-0x6f5f] [ 0.278725] pci 0000:00:1d.7: reg 10 32bit mmio: [0xfed1c000-0xfed1c3ff] [ 0.278811] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold [ 0.278841] pci 0000:00:1d.7: PME# disabled [ 0.279088] pci 0000:00:1f.0: quirk: region 1000-107f claimed by ICH6 ACPI/GPIO/TCO [ 0.279129] pci 0000:00:1f.0: quirk: region 1080-10bf claimed by ICH6 GPIO [ 0.279159] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0900 (mask 007f) [ 0.279202] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 0c80 (mask 003f) [ 0.279309] pci 0000:00:1f.1: reg 10 io port: [0x1f0-0x1f7] [ 0.279320] pci 0000:00:1f.1: reg 14 io port: [0x3f4-0x3f7] [ 0.279330] pci 0000:00:1f.1: reg 18 io port: [0x170-0x177] [ 0.279340] pci 0000:00:1f.1: reg 1c io port: [0x374-0x377] [ 0.279351] pci 0000:00:1f.1: reg 20 io port: [0x6fa0-0x6faf] [ 0.280059] pci 0000:00:1f.2: reg 10 io port: [0x6eb0-0x6eb7] [ 0.280069] pci 0000:00:1f.2: reg 14 io port: [0x6eb8-0x6ebb] [ 0.280080] pci 0000:00:1f.2: reg 18 io port: [0x6ec0-0x6ec7] [ 0.280090] pci 0000:00:1f.2: reg 1c io port: [0x6ec8-0x6ecb] [ 0.280100] pci 0000:00:1f.2: reg 20 io port: [0x6ee0-0x6eff] [ 0.280111] pci 0000:00:1f.2: reg 24 32bit mmio: [0xf6dfb800-0xf6dfbfff] [ 0.280169] pci 0000:00:1f.2: PME# supported from D3hot [ 0.280198] pci 0000:00:1f.2: PME# disabled [ 0.280265] pci 0000:00:1f.3: reg 10 32bit mmio: [0xf6dfb700-0xf6dfb7ff] [ 0.280299] pci 0000:00:1f.3: reg 20 io port: [0x10c0-0x10df] [ 0.280666] pci 0000:0c:00.0: reg 10 32bit mmio: [0xf6cff000-0xf6cfffff] [ 0.280933] pci 0000:0c:00.0: PME# supported from D0 D3hot D3cold [ 0.280971] pci 0000:0c:00.0: PME# disabled [ 0.281150] pci 0000:0c:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force' [ 0.281473] pci 0000:00:1c.1: bridge 32bit mmio: [0xf6c00000-0xf6cfffff] [ 0.281595] pci 0000:00:1c.3: bridge io port: [0xd000-0xdfff] [ 0.281601] pci 0000:00:1c.3: bridge 32bit mmio: [0xf6a00000-0xf6bfffff] [ 0.281612] pci 0000:00:1c.3: bridge 64bit mmio pref: [0xf0000000-0xf01fffff] [ 0.281827] pci 0000:09:00.0: reg 10 64bit mmio: [0xf69f0000-0xf69fffff] [ 0.282091] pci 0000:09:00.0: PME# supported from D3hot D3cold [ 0.282128] pci 0000:09:00.0: PME# disabled [ 0.282749] pci 0000:00:1c.5: bridge 32bit mmio: [0xf6900000-0xf69fffff] [ 0.282821] pci 0000:03:01.0: reg 10 32bit mmio: [0xf68ff800-0xf68fffff] [ 0.282903] pci 0000:03:01.0: supports D1 D2 [ 0.282905] pci 0000:03:01.0: PME# supported from D0 D1 D2 D3hot D3cold [ 0.282936] pci 0000:03:01.0: PME# disabled [ 0.283016] pci 0000:03:01.1: reg 10 32bit mmio: [0xf68ff500-0xf68ff5ff] [ 0.283098] pci 0000:03:01.1: supports D1 D2 [ 0.283100] pci 0000:03:01.1: PME# supported from D0 D1 D2 D3hot D3cold [ 0.283340] pci 0000:03:01.1: PME# disabled [ 0.283421] pci 0000:03:01.2: reg 10 32bit mmio: [0xf68ff600-0xf68ff6ff] [ 0.283503] pci 0000:03:01.2: supports D1 D2 [ 0.283505] pci 0000:03:01.2: PME# supported from D0 D1 D2 D3hot D3cold [ 0.283536] pci 0000:03:01.2: PME# disabled [ 0.283617] pci 0000:03:01.3: reg 10 32bit mmio: [0xf68ff700-0xf68ff7ff] [ 0.283700] pci 0000:03:01.3: supports D1 D2 [ 0.283702] pci 0000:03:01.3: PME# supported from D0 D1 D2 D3hot D3cold [ 0.283733] pci 0000:03:01.3: PME# disabled [ 0.283878] pci 0000:00:1e.0: transparent bridge [ 0.283911] pci 0000:00:1e.0: bridge 32bit mmio: [0xf6800000-0xf68fffff] [ 0.283962] pci_bus 0000:00: on NUMA node 0 [ 0.283969] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] [ 0.284551] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIE._PRT] [ 0.284824] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT] [ 0.284949] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT] [ 0.286680] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT] [ 0.286813] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP06._PRT] [ 0.310217] ACPI: PCI Interrupt Link [LNKA] (IRQs 9 10 *11) [ 0.310466] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 7) *10 [ 0.310713] ACPI: PCI Interrupt Link [LNKC] (IRQs 9 10 11) *4 [ 0.310968] ACPI: PCI Interrupt Link [LNKD] (IRQs *5 7 9 10 11) [ 0.311230] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 *10 11 12 14 15) [ 0.311549] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 *9 10 11 12 14 15) [ 0.311867] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 *7 9 10 11 12 14 15) [ 0.312160] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled. [ 0.313460] SCSI subsystem initialized [ 0.313460] libata version 3.00 loaded. [ 0.313460] usbcore: registered new interface driver usbfs [ 0.313460] usbcore: registered new interface driver hub [ 0.313460] usbcore: registered new device driver usb [ 0.313460] PCI: Using ACPI for IRQ routing [ 0.376715] cfg80211: Using static regulatory domain info [ 0.376723] cfg80211: Regulatory domain: US [ 0.376746] (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) [ 0.376784] (2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2700 mBm) [ 0.376812] (5170000 KHz - 5190000 KHz @ 40000 KHz), (600 mBi, 2300 mBm) [ 0.376840] (5190000 KHz - 5210000 KHz @ 40000 KHz), (600 mBi, 2300 mBm) [ 0.376868] (5210000 KHz - 5230000 KHz @ 40000 KHz), (600 mBi, 2300 mBm) [ 0.376895] (5230000 KHz - 5330000 KHz @ 40000 KHz), (600 mBi, 2300 mBm) [ 0.376923] (5735000 KHz - 5835000 KHz @ 40000 KHz), (600 mBi, 3000 mBm) [ 0.377036] cfg80211: Calling CRDA for country: US [ 0.377147] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0 [ 0.377147] hpet0: 3 comparators, 64-bit 14.318180 MHz counter [ 0.400010] pnp: PnP ACPI init [ 0.400072] ACPI: bus type pnp registered [ 0.424281] pnp 00:09: io resource (0x1000-0x1005) overlaps 0000:00:1f.0 BAR 7 (0x1000-0x107f), disabling [ 0.424324] pnp 00:09: io resource (0x1008-0x100f) overlaps 0000:00:1f.0 BAR 7 (0x1000-0x107f), disabling [ 0.424592] pnp 00:0a: io resource (0x1006-0x1007) overlaps 0000:00:1f.0 BAR 7 (0x1000-0x107f), disabling [ 0.424633] pnp 00:0a: io resource (0x100a-0x1059) overlaps 0000:00:1f.0 BAR 7 (0x1000-0x107f), disabling [ 0.424675] pnp 00:0a: io resource (0x1060-0x107f) overlaps 0000:00:1f.0 BAR 7 (0x1000-0x107f), disabling [ 0.424716] pnp 00:0a: io resource (0x1010-0x102f) overlaps 0000:00:1f.0 BAR 7 (0x1000-0x107f), disabling [ 0.450898] pnp: PnP ACPI: found 12 devices [ 0.450924] ACPI: ACPI bus type pnp unregistered [ 0.450967] system 00:05: ioport range 0xc80-0xcff could not be reserved [ 0.451005] system 00:08: iomem range 0xfed00000-0xfed003ff has been reserved [ 0.451042] system 00:09: ioport range 0x900-0x97f has been reserved [ 0.451071] system 00:09: ioport range 0x4d0-0x4d1 has been reserved [ 0.451107] system 00:0a: ioport range 0xf400-0xf4fe has been reserved [ 0.451135] system 00:0a: ioport range 0x1080-0x10bf has been reserved [ 0.451163] system 00:0a: ioport range 0x10c0-0x10df has been reserved [ 0.451191] system 00:0a: ioport range 0x809-0x809 has been reserved [ 0.451227] system 00:0b: iomem range 0x0-0x9efff could not be reserved [ 0.451256] system 00:0b: iomem range 0x9f000-0x9ffff could not be reserved [ 0.451285] system 00:0b: iomem range 0xc0000-0xcffff has been reserved [ 0.451313] system 00:0b: iomem range 0xe0000-0xfffff has been reserved [ 0.451342] system 00:0b: iomem range 0x100000-0x7f66d7ff could not be reserved [ 0.451380] system 00:0b: iomem range 0x7f66d800-0x7f6fffff has been reserved [ 0.451409] system 00:0b: iomem range 0x7f700000-0x7f7fffff has been reserved [ 0.451438] system 00:0b: iomem range 0x7f700000-0x7fefffff could not be reserved [ 0.451477] system 00:0b: iomem range 0xffe00000-0xffffffff has been reserved [ 0.451506] system 00:0b: iomem range 0xffa00000-0xffbfffff has been reserved [ 0.451535] system 00:0b: iomem range 0xfec00000-0xfec0ffff could not be reserved [ 0.451574] system 00:0b: iomem range 0xfee00000-0xfee0ffff has been reserved [ 0.451603] system 00:0b: iomem range 0xfed20000-0xfed8ffff has been reserved [ 0.451632] system 00:0b: iomem range 0xfeda0000-0xfeda3fff has been reserved [ 0.451661] system 00:0b: iomem range 0xfeda4000-0xfeda4fff has been reserved [ 0.451690] system 00:0b: iomem range 0xfeda5000-0xfeda5fff has been reserved [ 0.451719] system 00:0b: iomem range 0xfeda6000-0xfeda6fff has been reserved [ 0.451748] system 00:0b: iomem range 0xfed18000-0xfed1bfff has been reserved [ 0.451777] system 00:0b: iomem range 0xf8000000-0xfbffffff has been reserved [ 0.457473] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:0b [ 0.457500] pci 0000:00:1c.0: IO window: disabled [ 0.457531] pci 0000:00:1c.0: MEM window: disabled [ 0.457559] pci 0000:00:1c.0: PREFETCH window: disabled [ 0.457589] pci 0000:00:1c.1: PCI bridge, secondary bus 0000:0c [ 0.457614] pci 0000:00:1c.1: IO window: disabled [ 0.457645] pci 0000:00:1c.1: MEM window: 0xf6c00000-0xf6cfffff [ 0.457675] pci 0000:00:1c.1: PREFETCH window: disabled [ 0.457705] pci 0000:00:1c.3: PCI bridge, secondary bus 0000:0d [ 0.457733] pci 0000:00:1c.3: IO window: 0xd000-0xdfff [ 0.457764] pci 0000:00:1c.3: MEM window: 0xf6a00000-0xf6bfffff [ 0.457795] pci 0000:00:1c.3: PREFETCH window: 0x000000f0000000-0x000000f01fffff [ 0.457841] pci 0000:00:1c.5: PCI bridge, secondary bus 0000:09 [ 0.457866] pci 0000:00:1c.5: IO window: disabled [ 0.457897] pci 0000:00:1c.5: MEM window: 0xf6900000-0xf69fffff [ 0.457927] pci 0000:00:1c.5: PREFETCH window: disabled [ 0.457956] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:03 [ 0.457982] pci 0000:00:1e.0: IO window: disabled [ 0.458013] pci 0000:00:1e.0: MEM window: 0xf6800000-0xf68fffff [ 0.458043] pci 0000:00:1e.0: PREFETCH window: disabled [ 0.458089] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 [ 0.458122] pci 0000:00:1c.0: setting latency timer to 64 [ 0.458137] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 [ 0.458168] pci 0000:00:1c.1: setting latency timer to 64 [ 0.458183] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19 [ 0.458214] pci 0000:00:1c.3: setting latency timer to 64 [ 0.458226] pci 0000:00:1c.5: PCI INT B -> GSI 17 (level, low) -> IRQ 17 [ 0.458257] pci 0000:00:1c.5: setting latency timer to 64 [ 0.458268] pci 0000:00:1e.0: setting latency timer to 64 [ 0.458274] pci_bus 0000:00: resource 0 io: [0x00-0xffff] [ 0.458277] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff] [ 0.458280] pci_bus 0000:0c: resource 1 mem: [0xf6c00000-0xf6cfffff] [ 0.458283] pci_bus 0000:0d: resource 0 io: [0xd000-0xdfff] [ 0.458286] pci_bus 0000:0d: resource 1 mem: [0xf6a00000-0xf6bfffff] [ 0.458289] pci_bus 0000:0d: resource 2 pref mem [0xf0000000-0xf01fffff] [ 0.458291] pci_bus 0000:09: resource 1 mem: [0xf6900000-0xf69fffff] [ 0.458294] pci_bus 0000:03: resource 1 mem: [0xf6800000-0xf68fffff] [ 0.458297] pci_bus 0000:03: resource 3 io: [0x00-0xffff] [ 0.458300] pci_bus 0000:03: resource 4 mem: [0x000000-0xffffffffffffffff] [ 0.458376] NET: Registered protocol family 2 [ 0.458645] IP route cache hash table entries: 65536 (order: 7, 524288 bytes) [ 0.459565] TCP established hash table entries: 262144 (order: 10, 4194304 bytes) [ 0.461573] TCP bind hash table entries: 65536 (order: 9, 3670016 bytes) [ 0.467988] TCP: Hash tables configured (established 262144 bind 65536) [ 0.468070] TCP reno registered [ 0.468327] NET: Registered protocol family 1 [ 0.468719] Simple Boot Flag at 0x79 set to 0x1 [ 0.471793] cpu0(2) debug files 152 [ 0.474696] cpu1(2) debug files 152 [ 0.483227] msgmni has been set to 3982 [ 0.484074] alg: No test for stdrng (krng) [ 0.484126] io scheduler noop registered [ 0.484166] io scheduler cfq registered (default) [ 0.484206] pci 0000:00:02.0: Boot video device [ 0.484221] pci 0000:00:1a.0: uhci_check_and_reset_hc: cmd = 0x0080 [ 0.484223] pci 0000:00:1a.0: Performing full reset [ 0.484248] pci 0000:00:1a.1: uhci_check_and_reset_hc: cmd = 0x0080 [ 0.484250] pci 0000:00:1a.1: Performing full reset [ 0.484316] pci 0000:00:1d.0: uhci_check_and_reset_hc: cmd = 0x0080 [ 0.484319] pci 0000:00:1d.0: Performing full reset [ 0.484341] pci 0000:00:1d.1: uhci_check_and_reset_hc: cmd = 0x0080 [ 0.484343] pci 0000:00:1d.1: Performing full reset [ 0.484366] pci 0000:00:1d.2: uhci_check_and_reset_hc: cmd = 0x0080 [ 0.484369] pci 0000:00:1d.2: Performing full reset [ 0.484783] pcieport-driver 0000:00:1c.0: irq 24 for MSI/MSI-X [ 0.484799] pcieport-driver 0000:00:1c.0: setting latency timer to 64 [ 0.485306] pcieport-driver 0000:00:1c.1: irq 25 for MSI/MSI-X [ 0.485321] pcieport-driver 0000:00:1c.1: setting latency timer to 64 [ 0.485722] pcieport-driver 0000:00:1c.3: irq 26 for MSI/MSI-X [ 0.485737] pcieport-driver 0000:00:1c.3: setting latency timer to 64 [ 0.486125] pcieport-driver 0000:00:1c.5: irq 27 for MSI/MSI-X [ 0.486140] pcieport-driver 0000:00:1c.5: setting latency timer to 64 [ 0.486570] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 [ 0.487048] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 [ 0.487076] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [ 0.487261] acpiphp_glue: can't get bus number, assuming 0 [ 0.487682] decode_hpp: Could not get hotplug parameters. Use defaults [ 0.488070] acpiphp: Slot [1] registered [ 0.488286] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [ 0.488430] Platform driver 'platform-lcd' needs updating - please use dev_pm_ops [ 0.489086] ACPI: AC Adapter [AC] (on-line) [ 0.489482] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0 [ 0.490033] ACPI: Lid Switch [LID] [ 0.490201] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1 [ 0.490245] ACPI: Power Button [PBTN] [ 0.490421] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input2 [ 0.490461] ACPI: Sleep Button [SBTN] [ 0.491279] ACPI: SSDT 000000007f66e4ee 00286 (v01 PmRef Cpu0Ist 00003000 INTL 20050624) [ 0.492277] ACPI: SSDT 000000007f66de84 005E5 (v01 PmRef Cpu0Cst 00003001 INTL 20050624) [ 0.493150] Monitor-Mwait will be used to enter C-1 state [ 0.493203] Monitor-Mwait will be used to enter C-2 state [ 0.493240] Monitor-Mwait will be used to enter C-3 state [ 0.493250] Marking TSC unstable due to TSC halts in idle [ 0.493416] Switched to high resolution mode on CPU 0 [ 0.493922] ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3]) [ 0.494180] processor LNXCPU:00: registered as cooling_device0 [ 0.494211] ACPI: Processor [CPU0] (supports 8 throttling states) [ 0.494787] ACPI: SSDT 000000007f66e774 000C4 (v01 PmRef Cpu1Ist 00003000 INTL 20050624) [ 0.495003] Switched to high resolution mode on CPU 1 [ 0.495617] ACPI: SSDT 000000007f66e469 00085 (v01 PmRef Cpu1Cst 00003000 INTL 20050624) [ 0.496731] ACPI: CPU1 (power states: C1[C1] C2[C2] C3[C3]) [ 0.496874] processor LNXCPU:01: registered as cooling_device1 [ 0.496905] ACPI: Processor [CPU1] (supports 8 throttling states) [ 0.506608] thermal LNXTHERM:01: registered as thermal_zone0 [ 0.506653] ACPI: Thermal Zone [THM] (58 C) [ 0.506943] ACPI: Battery Slot [BAT0] (battery absent) [ 0.513599] Linux agpgart interface v0.103 [ 0.513650] agpgart-intel 0000:00:00.0: Intel 965GM Chipset [ 0.514337] agpgart-intel 0000:00:00.0: detected 7676K stolen memory [ 0.516891] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xe0000000 [ 0.517122] [drm] Initialized drm 1.1.0 20060810 [ 0.517175] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 [ 0.517206] i915 0000:00:02.0: setting latency timer to 64 [ 0.526559] i915 0000:00:02.0: irq 28 for MSI/MSI-X [ 1.411477] [drm] LVDS-8: set mode 1280x800 10 [ 2.034636] Console: switching to colour frame buffer device 160x50 [ 2.037668] [drm] fb0: inteldrmfb frame buffer device [ 2.053817] acpi device:37: registered as cooling_device2 [ 2.054496] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A03:00/device:34/input/input3 [ 2.054575] ACPI: Video Device [VID1] (multi-head: yes rom: no post: no) [ 2.054696] ACPI Warning: \_SB_.PCI0.VID2._DOD: Return Package has no elements (empty) 20090521 nspredef-434 [ 2.054922] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A03:00/device:39/input/input4 [ 2.054978] ACPI: Video Device [VID2] (multi-head: yes rom: no post: no) [ 2.055100] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0 [ 2.055578] ahci 0000:00:1f.2: version 3.0 [ 2.055594] ahci 0000:00:1f.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17 [ 2.055689] ahci 0000:00:1f.2: irq 29 for MSI/MSI-X [ 2.055774] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 3 ports 3 Gbps 0x5 impl SATA mode [ 2.055823] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems [ 2.055870] ahci 0000:00:1f.2: setting latency timer to 64 [ 2.060927] scsi0 : ahci [ 2.061382] scsi1 : ahci [ 2.061611] scsi2 : ahci [ 2.062110] ata1: SATA max UDMA/133 irq_stat 0x00400040, connection status changed irq 29 [ 2.062153] ata2: DUMMY [ 2.062171] ata3: SATA max UDMA/133 abar m2048@0xf6dfb800 port 0xf6dfba00 irq 29 [ 2.062426] ata_piix 0000:00:1f.1: version 2.13 [ 2.062437] ata_piix 0000:00:1f.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16 [ 2.062530] ata_piix 0000:00:1f.1: setting latency timer to 64 [ 2.062646] scsi3 : ata_piix [ 2.062884] scsi4 : ata_piix [ 2.063878] ata4: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x6fa0 irq 14 [ 2.063916] ata5: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x6fa8 irq 15 [ 2.064087] tg3.c:v3.99 (April 20, 2009) [ 2.064147] tg3 0000:09:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 [ 2.065111] tg3 0000:09:00.0: setting latency timer to 64 [ 2.065416] ata5: port disabled. ignoring. [ 2.070881] tg3 0000:09:00.0: PME# disabled [ 2.223765] ata4.00: ATAPI: HL-DT-ST DVDRW GSA-S10N, A100, max UDMA/33 [ 2.236975] ata4.00: configured for UDMA/33 [ 2.328551] eth0: Tigon3 [partno(BCM95906) rev c002] (PCI Express) MAC address 00:1d:09:35:87:70 [ 2.329624] eth0: attached PHY is 5906 (10/100Base-TX Ethernet) (WireSpeed[0]) [ 2.330740] eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[0] [ 2.331928] eth0: dma_rwctrl[76180000] dma_mask[64-bit] [ 2.333166] iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, 1.2.26ks [ 2.334406] iwl3945: Copyright(c) 2003-2009 Intel Corporation [ 2.335755] iwl3945 0000:0c:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 [ 2.337052] iwl3945 0000:0c:00.0: setting latency timer to 64 [ 2.380083] ata3: SATA link down (SStatus 0 SControl 300) [ 2.408143] iwl3945 0000:0c:00.0: Tunable channels: 13 802.11bg, 23 802.11a channels [ 2.409490] iwl3945 0000:0c:00.0: Detected Intel Wireless WiFi Link 3945ABG [ 2.411051] iwl3945 0000:0c:00.0: irq 30 for MSI/MSI-X [ 2.413079] phy0: Selected rate control algorithm 'iwl-3945-rs' [ 2.414148] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 2.415570] ehci_hcd: block sizes: qh 192 qtd 96 itd 192 sitd 96 [ 2.415615] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 22 (level, low) -> IRQ 22 [ 2.417080] ehci_hcd 0000:00:1a.7: setting latency timer to 64 [ 2.417085] ehci_hcd 0000:00:1a.7: EHCI Host Controller [ 2.418678] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1 [ 2.420182] ehci_hcd 0000:00:1a.7: reset hcs_params 0x102204 dbg=1 cc=2 pcc=2 ordered !ppc ports=4 [ 2.420187] ehci_hcd 0000:00:1a.7: reset hcc_params 6871 thresh 7 uframes 1024 64 bit addr [ 2.420228] ehci_hcd 0000:00:1a.7: reset command 000002 (park)=0 ithresh=0 period=1024 Reset HALT [ 2.424111] ehci_hcd 0000:00:1a.7: debug port 1 [ 2.425633] ehci_hcd 0000:00:1a.7: cache line size of 32 is not supported [ 2.425635] ehci_hcd 0000:00:1a.7: supports USB remote wakeup [ 2.425663] ehci_hcd 0000:00:1a.7: irq 22, io mem 0xfed1c400 [ 2.427193] ehci_hcd 0000:00:1a.7: reset command 080002 (park)=0 ithresh=8 period=1024 Reset HALT [ 2.431089] ehci_hcd 0000:00:1a.7: init command 010001 (park)=0 ithresh=1 period=1024 RUN [ 2.440865] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00 [ 2.442545] usb usb1: default language 0x0409 [ 2.442562] usb usb1: udev 1, busnum 1, minor = 0 [ 2.442565] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002 [ 2.444160] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.445785] usb usb1: Product: EHCI Host Controller [ 2.447414] usb usb1: Manufacturer: Linux 2.6.31-rc5-t ehci_hcd [ 2.449058] usb usb1: SerialNumber: 0000:00:1a.7 [ 2.450975] usb usb1: uevent [ 2.451150] usb usb1: usb_probe_device [ 2.451153] usb usb1: configuration #1 chosen from 1 choice [ 2.452890] usb usb1: adding 1-0:1.0 (config #1, interface 0) [ 2.452928] usb 1-0:1.0: uevent [ 2.453045] hub 1-0:1.0: usb_probe_interface [ 2.453048] hub 1-0:1.0: usb_probe_interface - got id [ 2.453051] hub 1-0:1.0: USB hub found [ 2.454702] hub 1-0:1.0: 4 ports detected [ 2.456280] hub 1-0:1.0: standalone hub [ 2.456282] hub 1-0:1.0: no power switching (usb 1.0) [ 2.456284] hub 1-0:1.0: individual port over-current protection [ 2.456286] hub 1-0:1.0: power on to power good time: 20ms [ 2.456419] hub 1-0:1.0: local power source is good [ 2.456422] hub 1-0:1.0: trying to enable port power on non-switchable hub [ 2.457061] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 20 (level, low) -> IRQ 20 [ 2.458668] ehci_hcd 0000:00:1d.7: setting latency timer to 64 [ 2.458673] ehci_hcd 0000:00:1d.7: EHCI Host Controller [ 2.460262] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2 [ 2.461833] ehci_hcd 0000:00:1d.7: reset hcs_params 0x103206 dbg=1 cc=3 pcc=2 ordered !ppc ports=6 [ 2.461838] ehci_hcd 0000:00:1d.7: reset hcc_params 6871 thresh 7 uframes 1024 64 bit addr [ 2.461863] ehci_hcd 0000:00:1d.7: reset command 000002 (park)=0 ithresh=0 period=1024 Reset HALT [ 2.465768] ehci_hcd 0000:00:1d.7: debug port 1 [ 2.467294] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported [ 2.467296] ehci_hcd 0000:00:1d.7: supports USB remote wakeup [ 2.467322] ehci_hcd 0000:00:1d.7: irq 20, io mem 0xfed1c000 [ 2.468853] ehci_hcd 0000:00:1d.7: reset command 080002 (park)=0 ithresh=8 period=1024 Reset HALT [ 2.472745] ehci_hcd 0000:00:1d.7: init command 010001 (park)=0 ithresh=1 period=1024 RUN [ 2.480852] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00 [ 2.482397] usb usb2: default language 0x0409 [ 2.482414] usb usb2: udev 1, busnum 2, minor = 128 [ 2.482416] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002 [ 2.483919] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.485438] usb usb2: Product: EHCI Host Controller [ 2.486915] usb usb2: Manufacturer: Linux 2.6.31-rc5-t ehci_hcd [ 2.488415] usb usb2: SerialNumber: 0000:00:1d.7 [ 2.490015] usb usb2: uevent [ 2.490082] usb usb2: usb_probe_device [ 2.490085] usb usb2: configuration #1 chosen from 1 choice [ 2.491583] usb usb2: adding 2-0:1.0 (config #1, interface 0) [ 2.491621] usb 2-0:1.0: uevent [ 2.491706] hub 2-0:1.0: usb_probe_interface [ 2.491709] hub 2-0:1.0: usb_probe_interface - got id [ 2.491712] hub 2-0:1.0: USB hub found [ 2.493181] hub 2-0:1.0: 6 ports detected [ 2.494660] hub 2-0:1.0: standalone hub [ 2.494662] hub 2-0:1.0: no power switching (usb 1.0) [ 2.494664] hub 2-0:1.0: individual port over-current protection [ 2.494666] hub 2-0:1.0: power on to power good time: 20ms [ 2.494678] hub 2-0:1.0: local power source is good [ 2.494680] hub 2-0:1.0: trying to enable port power on non-switchable hub [ 2.494954] uhci_hcd: USB Universal Host Controller Interface driver [ 2.496585] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 [ 2.498059] uhci_hcd 0000:00:1a.0: setting latency timer to 64 [ 2.498063] uhci_hcd 0000:00:1a.0: UHCI Host Controller [ 2.499540] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3 [ 2.501017] uhci_hcd 0000:00:1a.0: detected 2 ports [ 2.502475] uhci_hcd 0000:00:1a.0: uhci_check_and_reset_hc: cmd = 0x0000 [ 2.502478] uhci_hcd 0000:00:1a.0: Performing full reset [ 2.502495] uhci_hcd 0000:00:1a.0: supports USB remote wakeup [ 2.502509] uhci_hcd 0000:00:1a.0: irq 20, io base 0x00006f20 [ 2.504005] usb usb3: default language 0x0409 [ 2.504022] usb usb3: udev 1, busnum 3, minor = 256 [ 2.504024] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001 [ 2.505478] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.506932] usb usb3: Product: UHCI Host Controller [ 2.508396] usb usb3: Manufacturer: Linux 2.6.31-rc5-t uhci_hcd [ 2.509841] usb usb3: SerialNumber: 0000:00:1a.0 [ 2.511374] usb usb3: uevent [ 2.511439] usb usb3: usb_probe_device [ 2.511442] usb usb3: configuration #1 chosen from 1 choice [ 2.512832] usb usb3: adding 3-0:1.0 (config #1, interface 0) [ 2.512870] usb 3-0:1.0: uevent [ 2.512937] hub 3-0:1.0: usb_probe_interface [ 2.512940] hub 3-0:1.0: usb_probe_interface - got id [ 2.512943] hub 3-0:1.0: USB hub found [ 2.514372] hub 3-0:1.0: 2 ports detected [ 2.515722] hub 3-0:1.0: standalone hub [ 2.515724] hub 3-0:1.0: no power switching (usb 1.0) [ 2.515726] hub 3-0:1.0: individual port over-current protection [ 2.515729] hub 3-0:1.0: power on to power good time: 2ms [ 2.515763] hub 3-0:1.0: local power source is good [ 2.515765] hub 3-0:1.0: trying to enable port power on non-switchable hub [ 2.515987] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21 [ 2.517373] uhci_hcd 0000:00:1a.1: setting latency timer to 64 [ 2.517378] uhci_hcd 0000:00:1a.1: UHCI Host Controller [ 2.518764] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4 [ 2.520117] uhci_hcd 0000:00:1a.1: detected 2 ports [ 2.521459] uhci_hcd 0000:00:1a.1: uhci_check_and_reset_hc: cmd = 0x0000 [ 2.521462] uhci_hcd 0000:00:1a.1: Performing full reset [ 2.521479] uhci_hcd 0000:00:1a.1: supports USB remote wakeup [ 2.521514] uhci_hcd 0000:00:1a.1: irq 21, io base 0x00006f00 [ 2.522903] usb usb4: default language 0x0409 [ 2.522920] usb usb4: udev 1, busnum 4, minor = 384 [ 2.522923] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001 [ 2.524274] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.525578] usb usb4: Product: UHCI Host Controller [ 2.526901] usb usb4: Manufacturer: Linux 2.6.31-rc5-t uhci_hcd [ 2.528213] usb usb4: SerialNumber: 0000:00:1a.1 [ 2.529601] usb usb4: uevent [ 2.529689] usb usb4: usb_probe_device [ 2.529692] usb usb4: configuration #1 chosen from 1 choice [ 2.531000] usb usb4: adding 4-0:1.0 (config #1, interface 0) [ 2.531041] usb 4-0:1.0: uevent [ 2.531105] hub 4-0:1.0: usb_probe_interface [ 2.531108] hub 4-0:1.0: usb_probe_interface - got id [ 2.531111] hub 4-0:1.0: USB hub found [ 2.532412] hub 4-0:1.0: 2 ports detected [ 2.533687] hub 4-0:1.0: standalone hub [ 2.533689] hub 4-0:1.0: no power switching (usb 1.0) [ 2.533691] hub 4-0:1.0: individual port over-current protection [ 2.533693] hub 4-0:1.0: power on to power good time: 2ms [ 2.533704] hub 4-0:1.0: local power source is good [ 2.533707] hub 4-0:1.0: trying to enable port power on non-switchable hub [ 2.533904] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 [ 2.535231] uhci_hcd 0000:00:1d.0: setting latency timer to 64 [ 2.535235] uhci_hcd 0000:00:1d.0: UHCI Host Controller [ 2.536571] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5 [ 2.537894] uhci_hcd 0000:00:1d.0: detected 2 ports [ 2.539204] uhci_hcd 0000:00:1d.0: uhci_check_and_reset_hc: cmd = 0x0000 [ 2.539206] uhci_hcd 0000:00:1d.0: Performing full reset [ 2.539223] uhci_hcd 0000:00:1d.0: supports USB remote wakeup [ 2.539236] uhci_hcd 0000:00:1d.0: irq 20, io base 0x00006f80 [ 2.540599] usb usb5: default language 0x0409 [ 2.540616] usb usb5: udev 1, busnum 5, minor = 512 [ 2.540618] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001 [ 2.541937] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.543251] usb usb5: Product: UHCI Host Controller [ 2.544584] usb usb5: Manufacturer: Linux 2.6.31-rc5-t uhci_hcd [ 2.545892] usb usb5: SerialNumber: 0000:00:1d.0 [ 2.547270] usb usb5: uevent [ 2.547336] usb usb5: usb_probe_device [ 2.547339] usb usb5: configuration #1 chosen from 1 choice [ 2.548655] usb usb5: adding 5-0:1.0 (config #1, interface 0) [ 2.548693] usb 5-0:1.0: uevent [ 2.548761] hub 5-0:1.0: usb_probe_interface [ 2.548763] hub 5-0:1.0: usb_probe_interface - got id [ 2.548766] hub 5-0:1.0: USB hub found [ 2.550058] hub 5-0:1.0: 2 ports detected [ 2.551359] hub 5-0:1.0: standalone hub [ 2.551361] hub 5-0:1.0: no power switching (usb 1.0) [ 2.551363] hub 5-0:1.0: individual port over-current protection [ 2.551366] hub 5-0:1.0: power on to power good time: 2ms [ 2.551377] hub 5-0:1.0: local power source is good [ 2.551380] hub 5-0:1.0: trying to enable port power on non-switchable hub [ 2.551573] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21 [ 2.552909] uhci_hcd 0000:00:1d.1: setting latency timer to 64 [ 2.552914] uhci_hcd 0000:00:1d.1: UHCI Host Controller [ 2.554408] hub 1-0:1.0: state 7 ports 4 chg 0000 evt 0000 [ 2.554436] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6 [ 2.555772] uhci_hcd 0000:00:1d.1: detected 2 ports [ 2.557078] uhci_hcd 0000:00:1d.1: uhci_check_and_reset_hc: cmd = 0x0000 [ 2.557081] uhci_hcd 0000:00:1d.1: Performing full reset [ 2.557098] uhci_hcd 0000:00:1d.1: supports USB remote wakeup [ 2.557109] uhci_hcd 0000:00:1d.1: irq 21, io base 0x00006f60 [ 2.558478] usb usb6: default language 0x0409 [ 2.558494] usb usb6: udev 1, busnum 6, minor = 640 [ 2.558496] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001 [ 2.559807] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.561137] usb usb6: Product: UHCI Host Controller [ 2.562452] usb usb6: Manufacturer: Linux 2.6.31-rc5-t uhci_hcd [ 2.563777] usb usb6: SerialNumber: 0000:00:1d.1 [ 2.565204] usb usb6: uevent [ 2.565269] usb usb6: usb_probe_device [ 2.565272] usb usb6: configuration #1 chosen from 1 choice [ 2.566580] usb usb6: adding 6-0:1.0 (config #1, interface 0) [ 2.566618] usb 6-0:1.0: uevent [ 2.566682] hub 6-0:1.0: usb_probe_interface [ 2.566685] hub 6-0:1.0: usb_probe_interface - got id [ 2.566688] hub 6-0:1.0: USB hub found [ 2.567999] hub 6-0:1.0: 2 ports detected [ 2.569276] hub 6-0:1.0: standalone hub [ 2.569278] hub 6-0:1.0: no power switching (usb 1.0) [ 2.569280] hub 6-0:1.0: individual port over-current protection [ 2.569283] hub 6-0:1.0: power on to power good time: 2ms [ 2.569294] hub 6-0:1.0: local power source is good [ 2.569296] hub 6-0:1.0: trying to enable port power on non-switchable hub [ 2.569494] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 22 (level, low) -> IRQ 22 [ 2.570827] uhci_hcd 0000:00:1d.2: setting latency timer to 64 [ 2.570845] uhci_hcd 0000:00:1d.2: UHCI Host Controller [ 2.572175] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7 [ 2.573505] uhci_hcd 0000:00:1d.2: detected 2 ports [ 2.574840] uhci_hcd 0000:00:1d.2: uhci_check_and_reset_hc: cmd = 0x0000 [ 2.574843] uhci_hcd 0000:00:1d.2: Performing full reset [ 2.574860] uhci_hcd 0000:00:1d.2: supports USB remote wakeup [ 2.574872] uhci_hcd 0000:00:1d.2: irq 22, io base 0x00006f40 [ 2.576243] usb usb7: default language 0x0409 [ 2.576260] usb usb7: udev 1, busnum 7, minor = 768 [ 2.576263] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001 [ 2.577576] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.578897] usb usb7: Product: UHCI Host Controller [ 2.580204] usb usb7: Manufacturer: Linux 2.6.31-rc5-t uhci_hcd [ 2.581547] usb usb7: SerialNumber: 0000:00:1d.2 [ 2.582948] usb usb7: uevent [ 2.583013] usb usb7: usb_probe_device [ 2.583016] usb usb7: configuration #1 chosen from 1 choice [ 2.584334] usb usb7: adding 7-0:1.0 (config #1, interface 0) [ 2.584372] usb 7-0:1.0: uevent [ 2.584438] hub 7-0:1.0: usb_probe_interface [ 2.584441] hub 7-0:1.0: usb_probe_interface - got id [ 2.584444] hub 7-0:1.0: USB hub found [ 2.585750] hub 7-0:1.0: 2 ports detected [ 2.587032] hub 7-0:1.0: standalone hub [ 2.587034] hub 7-0:1.0: no power switching (usb 1.0) [ 2.587036] hub 7-0:1.0: individual port over-current protection [ 2.587039] hub 7-0:1.0: power on to power good time: 2ms [ 2.587050] hub 7-0:1.0: local power source is good [ 2.587053] hub 7-0:1.0: trying to enable port power on non-switchable hub [ 2.587316] Initializing USB Mass Storage driver... [ 2.588733] usbcore: registered new interface driver usb-storage [ 2.590042] USB Mass Storage support registered. [ 2.591624] usbcore: registered new interface driver libusual [ 2.593016] usbcore: registered new interface driver ums-alauda [ 2.594375] ehci_hcd 0000:00:1d.7: GetStatus port 6 status 001803 POWER sig=j CSC CONNECT [ 2.594381] hub 2-0:1.0: port 6: status 0501 change 0001 [ 2.594502] usbcore: registered new interface driver ums-cypress [ 2.595859] usbcore: registered new interface driver ums-datafab [ 2.597193] usbcore: registered new interface driver ums-freecom [ 2.598658] usbcore: registered new interface driver ums-isd200 [ 2.599958] usbcore: registered new interface driver ums-jumpshot [ 2.601272] usbcore: registered new interface driver ums-karma [ 2.602551] usbcore: registered new interface driver ums-sddr09 [ 2.603806] usbcore: registered new interface driver ums-sddr55 [ 2.605084] usbcore: registered new interface driver ums-usbat [ 2.606395] PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:PS2M] at 0x60,0x64 irq 1,12 [ 2.607597] Platform driver 'i8042' needs updating - please use dev_pm_ops [ 2.612313] serio: i8042 KBD port at 0x60,0x64 irq 1 [ 2.613547] serio: i8042 AUX port at 0x60,0x64 irq 12 [ 2.614227] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 2.614887] mice: PS/2 mouse device common for all mice [ 2.617012] rtc_cmos 00:03: RTC can wake from S4 [ 2.618398] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 [ 2.619606] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs [ 2.620925] i2c /dev entries driver [ 2.622505] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input5 [ 2.624562] i801_smbus 0000:00:1f.3: PCI INT B -> GSI 17 (level, low) -> IRQ 17 [ 2.626530] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.05 [ 2.628214] iTCO_wdt: Found a ICH8M TCO device (Version=2, TCOBASE=0x1060) [ 2.629577] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0) [ 2.630816] iTCO_vendor_support: vendor-support=0 [ 2.630884] hub 4-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 2.632739] cpuidle: using governor ladder [ 2.635206] cpuidle: using governor menu [ 2.636468] sdhci: Secure Digital Host Controller Interface driver [ 2.637701] sdhci: Copyright(c) Pierre Ossman [ 2.638956] sdhci-pci 0000:03:01.1: SDHCI controller found [1180:0822] (rev 22) [ 2.640304] sdhci-pci 0000:03:01.1: PCI INT B -> GSI 18 (level, low) -> IRQ 18 [ 2.643912] Registered led device: mmc0:: [ 2.646389] mmc0: SDHCI controller on PCI [0000:03:01.1] using DMA [ 2.647825] ricoh-mmc: Ricoh MMC Controller disabling driver [ 2.649072] ricoh-mmc: Copyright(c) Philip Langdale [ 2.650656] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2) [ 2.652040] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 2.654797] usbcore: registered new interface driver hiddev [ 2.656171] usbcore: registered new interface driver usbhid [ 2.657461] usbhid: v2.6:USB HID core driver [ 2.660945] Advanced Linux Sound Architecture Driver Version 1.0.20. [ 2.662819] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21 [ 2.664211] HDA Intel 0000:00:1b.0: setting latency timer to 64 [ 2.667650] hub 6-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 2.684255] uhci_hcd 0000:00:1d.2: port 2 portsc 0082,00 [ 2.694228] hub 2-0:1.0: state 7 ports 6 chg 0040 evt 0000 [ 2.694257] hub 2-0:1.0: port 6, status 0501, change 0000, 480 Mb/s [ 2.722152] mmc0: new high speed SD card at address 0002 [ 2.723979] mmcblk0: mmc0:0002 00000 1.88 GiB [ 2.725548] mmcblk0: p1 [ 2.747899] ehci_hcd 0000:00:1d.7: port 6 high speed [ 2.747904] ehci_hcd 0000:00:1d.7: GetStatus port 6 status 001005 POWER sig=se0 PE CONNECT [ 2.790089] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300) [ 2.800106] usb 2-6: new high speed USB device using ehci_hcd and address 2 [ 2.841922] ata1.00: ATA-8: WDC WD1200BEVS-75UST0, 01.01A01, max UDMA/133 [ 2.843293] ata1.00: 234441648 sectors, multi 8: LBA48 NCQ (depth 31/32) [ 2.845559] ata1.00: configured for UDMA/133 [ 2.853649] ehci_hcd 0000:00:1d.7: port 6 high speed [ 2.853653] ehci_hcd 0000:00:1d.7: GetStatus port 6 status 001005 POWER sig=se0 PE CONNECT [ 2.860556] scsi 0:0:0:0: Direct-Access ATA WDC WD1200BEVS-7 01.0 PQ: 0 ANSI: 5 [ 2.862903] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/111 GiB) [ 2.864389] sd 0:0:0:0: [sda] Write Protect is off [ 2.865796] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 2.865843] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 2.867618] sda: [ 2.868253] sd 0:0:0:0: Attached scsi generic sg0 type 0 [ 2.870978] sda1 sda2 sda3 sda4 < [ 2.874453] scsi 3:0:0:0: CD-ROM HL-DT-ST DVDRW GSA-S10N A100 PQ: 0 ANSI: 5 [ 2.886494] sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda caddy [ 2.886702] sda5 [ 2.888137] Uniform CD-ROM driver Revision: 3.20 [ 2.891876] sr 3:0:0:0: Attached scsi CD-ROM sr0 [ 2.892135] sr 3:0:0:0: Attached scsi generic sg1 type 5 [ 2.893308] sda6 > [ 2.896210] sd 0:0:0:0: [sda] Attached SCSI disk [ 2.928197] usb 2-6: skipped 2 descriptors after configuration [ 2.928202] usb 2-6: skipped 7 descriptors after interface [ 2.928208] usb 2-6: skipped 1 descriptor after endpoint [ 2.928213] usb 2-6: skipped 15 descriptors after interface [ 2.928444] usb 2-6: default language 0x0409 [ 2.929446] usb 2-6: udev 2, busnum 2, minor = 129 [ 2.929450] usb 2-6: New USB device found, idVendor=05a9, idProduct=7670 [ 2.931130] usb 2-6: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 2.932730] usb 2-6: Product: Laptop Integrated Webcam [ 2.934346] usb 2-6: Manufacturer: OmniVision Technologies, Inc. -7670-07.09.28.1 [ 2.936078] usb 2-6: uevent [ 2.936196] usb 2-6: usb_probe_device [ 2.936199] usb 2-6: configuration #1 chosen from 1 choice [ 2.938081] usb 2-6: adding 2-6:1.0 (config #1, interface 0) [ 2.938627] usb 2-6:1.0: uevent [ 2.938767] usb 2-6: adding 2-6:1.1 (config #1, interface 1) [ 2.938809] usb 2-6:1.1: uevent [ 2.939060] hub 7-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 3.000066] Clocksource tsc unstable (delta = -83710696 ns) [ 3.017222] input: HDA Intel Line In at Ext Rear Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6 [ 3.019111] input: HDA Intel Mic at Ext Front Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7 [ 3.021006] input: HDA Intel Mic at Ext Rear Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8 [ 3.022887] input: HDA Intel Speaker at Ext Rear Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9 [ 3.024797] input: HDA Intel Speaker at Ext Rear Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10 [ 3.026683] input: HDA Intel Speaker at Ext Rear Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11 [ 3.028520] input: HDA Intel Speaker at Ext Rear Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12 [ 3.030366] input: HDA Intel HP Out at Ext Front Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13 [ 3.033220] ALSA device list: [ 3.034781] #0: HDA Intel at 0xf6dfc000 irq 21 [ 3.036374] nf_conntrack version 0.5.0 (16384 buckets, 65536 max) [ 3.038559] CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use [ 3.040133] nf_conntrack.acct=1 kernel parameter, acct=1 nf_conntrack module option or [ 3.041704] sysctl net.netfilter.nf_conntrack_acct=1 to enable it. [ 3.044470] ip_tables: (C) 2000-2006 Netfilter Core Team [ 3.046042] TCP cubic registered [ 3.048284] NET: Registered protocol family 10 [ 3.051242] lo: Disabled Privacy Extensions [ 3.055593] ip6_tables: (C) 2000-2006 Netfilter Core Team [ 3.057169] NET: Registered protocol family 17 [ 3.058752] lib80211: common routines for IEEE802.11 drivers [ 3.060324] lib80211_crypt: registered algorithm 'NULL' [ 3.077186] rtc_cmos 00:03: setting system clock to 2009-08-03 18:43:35 UTC (1249325015) [ 3.080666] BIOS EDD facility v0.16 2004-Jun-25, 1 devices found [ 3.084675] Initalizing network drop monitor service [ 3.280767] Synaptics Touchpad, model: 1, fw: 6.3, id: 0x1c0b1, caps: 0xa04753/0x200000 [ 3.322945] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input14 [ 3.370219] EXT4-fs (sda2): barriers enabled [ 3.394786] kjournald2 starting: pid 825, dev sda2:8, commit interval 5 seconds [ 3.395050] EXT4-fs (sda2): delayed allocation enabled [ 3.395495] EXT4-fs: mballoc enabled [ 3.395757] EXT4-fs (sda2): mounted filesystem with ordered data mode [ 3.396055] VFS: Mounted root (ext4 filesystem) readonly on device 8:2. [ 3.396134] Freeing unused kernel memory: 396k freed [ 3.396503] Write protecting the kernel read-only data: 6088k [ 3.596848] usb usb3: suspend_rh (auto-stop) [ 3.596890] usb usb4: suspend_rh (auto-stop) [ 3.596925] usb usb5: suspend_rh (auto-stop) [ 3.596960] usb usb6: suspend_rh (auto-stop) [ 3.846847] usb usb7: suspend_rh (auto-stop) [ 5.338073] hub 1-0:1.0: hub_suspend [ 5.338295] usb usb1: bus auto-suspend [ 5.338302] ehci_hcd 0000:00:1a.7: suspend root hub [ 5.338526] hub 3-0:1.0: hub_suspend [ 5.338542] usb usb3: bus auto-suspend [ 5.338572] usb usb3: suspend_rh [ 5.338606] hub 4-0:1.0: hub_suspend [ 5.338619] usb usb4: bus auto-suspend [ 5.338625] usb usb4: suspend_rh [ 5.338658] hub 5-0:1.0: hub_suspend [ 5.338672] usb usb5: bus auto-suspend [ 5.338678] usb usb5: suspend_rh [ 5.338709] hub 6-0:1.0: hub_suspend [ 5.338722] usb usb6: bus auto-suspend [ 5.338728] usb usb6: suspend_rh [ 5.346906] hub 7-0:1.0: hub_suspend [ 5.346931] usb usb7: bus auto-suspend [ 5.346939] usb usb7: suspend_rh [ 5.570892] usb usb3: uevent [ 5.570982] usb 3-0:1.0: uevent [ 5.571397] usb usb4: uevent [ 5.571482] usb 4-0:1.0: uevent [ 5.571738] usb usb1: uevent [ 5.571826] usb 1-0:1.0: uevent [ 5.604225] usb usb3: uevent [ 5.616157] usb usb1: uevent [ 5.618269] usb usb4: uevent [ 5.619163] usb usb5: uevent [ 5.619252] usb 5-0:1.0: uevent [ 5.619515] usb usb6: uevent [ 5.619602] usb 6-0:1.0: uevent [ 5.619866] usb usb7: uevent [ 5.619953] usb 7-0:1.0: uevent [ 5.620212] usb usb2: uevent [ 5.620298] usb 2-0:1.0: uevent [ 5.620393] usb 2-6: uevent [ 5.620485] usb 2-6:1.0: uevent [ 5.620573] usb 2-6:1.1: uevent [ 5.627999] usb usb5: uevent [ 5.632447] usb usb6: uevent [ 5.639802] usb usb7: uevent [ 5.687741] usb usb2: uevent [ 5.688735] usb 2-6: uevent [ 6.342085] Linux video capture interface: v2.00 [ 6.358911] ACPI: WMI: Mapper loaded [ 6.397190] ohci1394 0000:03:01.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 [ 6.432161] uvcvideo 2-6:1.0: usb_probe_interface [ 6.432170] uvcvideo 2-6:1.0: usb_probe_interface - got id [ 6.432838] uvcvideo: Found UVC 1.00 device Laptop Integrated Webcam (05a9:7670) [ 6.436229] uvcvideo: UVC non compliance - GET_DEF(PROBE) not supported. Enabling workaround. [ 6.440978] input: Laptop Integrated Webcam as /devices/pci0000:00/0000:00:1d.7/usb2/2-6/2-6:1.0/input/input15 [ 6.445195] usbcore: registered new interface driver uvcvideo [ 6.448327] USB Video Class driver (v0.1.0) [ 6.456460] ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[19] MMIO=[f68ff800-f68fffff] Max Packet=[2048] IR/IT contexts=[4/4] [ 6.497396] usb 2-6:1.0: uevent [ 6.497859] usb 2-6: uevent [ 6.501930] usb 2-6:1.0: uevent [ 6.502323] usb 2-6: uevent [ 6.832800] SysRq : Changing Loglevel [ 6.834180] Loglevel set to 9 [ 6.904269] Adding 4096564k swap on /dev/sda3. Priority:-1 extents:1 across:4096564k [ 7.732648] ieee1394: Host added: ID:BUS[0-00:1023] GUID[354fc000321a4870] [ 23.525697] hub 2-0:1.0: state 7 ports 6 chg 0000 evt 0002 [ 23.528650] ehci_hcd 0000:00:1d.7: GetStatus port 1 status 001803 POWER sig=j CSC CONNECT [ 23.531645] hub 2-0:1.0: port 1, status 0501, change 0001, 480 Mb/s [ 23.653558] hub 2-0:1.0: debounce: port 1: total 100ms stable 100ms status 0x501 [ 23.710406] ehci_hcd 0000:00:1d.7: port 1 full speed --> companion [ 23.713325] ehci_hcd 0000:00:1d.7: GetStatus port 1 status 003801 POWER OWNER sig=j CONNECT [ 23.716330] hub 2-0:1.0: port 1 not reset yet, waiting 50ms [ 23.716846] usb usb5: usb resume [ 23.716858] usb usb5: wakeup_rh [ 23.750119] hub 5-0:1.0: hub_resume [ 23.753119] uhci_hcd 0000:00:1d.0: port 1 portsc 0082,00 [ 23.766946] ehci_hcd 0000:00:1d.7: GetStatus port 1 status 001002 POWER sig=se0 CSC [ 23.770078] hub 2-0:1.0: unable to enumerate USB device on port 1 [ 23.773161] hub 2-0:1.0: state 7 ports 6 chg 0000 evt 0002 [ 23.856981] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 24.624741] hub 2-0:1.0: state 7 ports 6 chg 0000 evt 0002 [ 24.627874] ehci_hcd 0000:00:1d.7: GetStatus port 1 status 001803 POWER sig=j CSC CONNECT [ 24.631085] hub 2-0:1.0: port 1, status 0501, change 0001, 480 Mb/s [ 24.753550] hub 2-0:1.0: debounce: port 1: total 100ms stable 100ms status 0x501 [ 24.810278] ehci_hcd 0000:00:1d.7: port 1 full speed --> companion [ 24.813396] ehci_hcd 0000:00:1d.7: GetStatus port 1 status 003801 POWER OWNER sig=j CONNECT [ 24.817103] hub 2-0:1.0: port 1 not reset yet, waiting 50ms [ 24.870123] ehci_hcd 0000:00:1d.7: GetStatus port 1 status 003002 POWER OWNER sig=se0 CSC [ 24.873681] hub 2-0:1.0: state 7 ports 6 chg 0000 evt 0002 [ 24.877302] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0002 [ 24.879012] uhci_hcd 0000:00:1d.0: port 1 portsc 0093,00 [ 24.880574] hub 5-0:1.0: port 1, status 0101, change 0001, 12 Mb/s [ 25.000238] hub 5-0:1.0: debounce: port 1: total 100ms stable 100ms status 0x101 [ 25.110946] usb 5-1: new full speed USB device using uhci_hcd and address 2 [ 25.240215] usb 5-1: ep0 maxpacket = 16 [ 25.260181] usb 5-1: skipped 4 descriptors after interface [ 25.263674] usb 5-1: skipped 1 descriptor after interface [ 25.279059] usb 5-1: skipped 4 descriptors after interface [ 25.283160] usb 5-1: default language 0x0409 [ 25.305164] usb 5-1: udev 2, busnum 5, minor = 513 [ 25.308406] usb 5-1: New USB device found, idVendor=1457, idProduct=5119 [ 25.311688] usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 25.314987] usb 5-1: Product: Neo1973 Bootloader U-Boot 1.3.2-rc2 [ 25.318292] usb 5-1: Manufacturer: OpenMoko, Inc [ 25.321598] usb 5-1: SerialNumber: 0000000 [ 25.325114] usb 5-1: uevent [ 25.330393] usb 5-1: usb_probe_device [ 25.331821] usb 5-1: configuration #1 chosen from 2 choices [ 25.339138] usb 5-1: adding 5-1:1.0 (config #1, interface 0) [ 25.343056] usb 5-1:1.0: uevent [ 25.350535] usb 5-1: adding 5-1:1.1 (config #1, interface 1) [ 25.356199] usb 5-1:1.1: uevent [ 25.359857] usb 5-1: adding 5-1:1.2 (config #1, interface 2) [ 25.365067] usb 5-1:1.2: uevent [ 25.376906] usb 5-1: uevent [ 25.443779] cdc_acm 5-1:1.0: usb_probe_interface [ 25.446819] cdc_acm 5-1:1.0: usb_probe_interface - got id [ 25.449811] cdc_acm 5-1:1.0: This device cannot do calls on its own. It is not a modem. [ 25.452893] cdc_acm 5-1:1.0: ttyACM0: USB ACM device [ 25.458872] usbcore: registered new interface driver cdc_acm [ 25.461884] cdc_acm: v0.26:USB Abstract Control Model driver for USB modems and ISDN adapters [ 25.482693] usb 5-1:1.0: uevent [ 25.486155] usb 5-1: uevent [ 25.519147] uhci_hcd 0000:00:1d.0: reserve dev 2 ep81-INT, period 128, phase 0, 23 us [ 25.524152] acm_rx_tasklet: enter [ 25.527541] acm_rx_tasklet: leave [ 26.211149] acm_rx_tasklet: enter [ 26.214356] acm_rx_tasklet: leave [ 26.214409] acm_rx_tasklet: enter [ 26.214409] acm_rx_tasklet: leave [ 26.316203] acm_rx_tasklet: enter [ 26.319117] acm_rx_tasklet: leave [ 26.321904] acm_rx_tasklet: enter [ 26.324675] acm_rx_tasklet: leave [ 27.679191] acm_rx_tasklet: enter [ 27.681882] acm_rx_tasklet: leave [ 27.684474] acm_rx_tasklet: enter [ 27.687042] acm_rx_tasklet: leave [ 29.680199] acm_rx_tasklet: enter [ 29.682791] acm_rx_tasklet: leave [ 29.685136] acm_rx_tasklet: enter [ 29.687471] acm_rx_tasklet: leave [ 31.679150] acm_rx_tasklet: enter [ 31.681460] acm_rx_tasklet: leave [ 31.683669] acm_rx_tasklet: enter [ 31.685855] acm_rx_tasklet: leave [ 31.687977] acm_rx_tasklet: enter [ 31.690094] acm_rx_tasklet: leave [ 34.581108] uhci_hcd 0000:00:1d.0: release dev 2 ep81-INT, period 128, phase 0, 23 us *** Starting minicom and switching the device off *** [ 36.622399] uhci_hcd 0000:00:1d.0: reserve dev 2 ep81-INT, period 128, phase 0, 23 us [ 36.624095] acm_rx_tasklet: enter [ 36.624279] acm_rx_tasklet: leave [ 53.970194] hub 2-0:1.0: state 7 ports 6 chg 0000 evt 0002 [ 53.972382] ehci_hcd 0000:00:1d.7: GetStatus port 1 status 001803 POWER sig=j CSC CONNECT [ 53.974581] usb 5-1: uhci_result_common: failed with status 440000 [ 53.976866] acm_rx_tasklet: enter [ 53.979067] usb 5-1: uhci_result_common: failed with status 440000 [ 53.981381] acm_rx_tasklet: leave [ 53.982025] usb 5-1: uhci_result_common: failed with status 440000 [ 53.985877] usb 5-1: uhci_result_common: failed with status 440000 [ 53.988160] acm_rx_tasklet: enter [ 53.989023] usb 5-1: uhci_result_common: failed with status 440000 [ 53.992650] usb 5-1: uhci_result_common: failed with status 440000 [ 53.994899] acm_rx_tasklet: leave [ 53.997141] usb 5-1: uhci_result_common: failed with status 440000 [ 53.999410] acm_rx_tasklet: enter [ 53.999485] hub 2-0:1.0: port 1, status 0501, change 0001, 480 Mb/s [ 54.004068] usb 5-1: uhci_result_common: failed with status 440000 [ 54.006468] acm_rx_tasklet: leave [ 54.008752] usb 5-1: uhci_result_common: failed with status 440000 [ 54.011065] acm_rx_tasklet: enter [ 54.013261] usb 5-1: uhci_result_common: failed with status 440000 [ 54.015579] acm_rx_tasklet: leave [ 54.017813] usb 5-1: uhci_result_common: failed with status 440000 [ 54.020074] acm_rx_tasklet: enter [ 54.021021] usb 5-1: uhci_result_common: failed with status 440000 [ 54.024637] usb 5-1: uhci_result_common: failed with status 440000 [ 54.027025] acm_rx_tasklet: leave [ 54.029358] usb 5-1: uhci_result_common: failed with status 440000 [ 54.031807] acm_rx_tasklet: enter [ 54.033046] usb 5-1: uhci_result_common: failed with status 440000 [ 54.034189] acm_rx_tasklet: leave [ 54.035345] usb 5-1: uhci_result_common: failed with status 440000 [ 54.036523] acm_rx_tasklet: enter [ 54.037016] usb 5-1: uhci_result_common: failed with status 440000 [ 54.037994] usb 5-1: uhci_result_common: failed with status 440000 [ 54.040181] usb 5-1: uhci_result_common: failed with status 440000 [ 54.041648] acm_rx_tasklet: leave [ 54.041995] usb 5-1: uhci_result_common: failed with status 440000 [ 54.045118] usb 5-1: uhci_result_common: failed with status 440000 [ 54.046874] acm_rx_tasklet: enter [ 54.048166] usb 5-1: uhci_result_common: failed with status 440000 [ 54.049439] acm_rx_tasklet: leave [ 54.050014] usb 5-1: uhci_result_common: failed with status 440000 [ 54.051014] usb 5-1: uhci_result_common: failed with status 440000 [ 54.053380] usb 5-1: uhci_result_common: failed with status 440000 [ 54.054683] acm_rx_tasklet: enter [ 54.055015] usb 5-1: uhci_result_common: failed with status 440000 [ 54.057399] usb 5-1: uhci_result_common: failed with status 440000 [ 54.058725] acm_rx_tasklet: leave [ 54.060052] usb 5-1: uhci_result_common: failed with status 440000 [ 54.061972] acm_rx_tasklet: enter [ 54.063332] usb 5-1: uhci_result_common: failed with status 440000 [ 54.064704] acm_rx_tasklet: leave [ 54.066004] usb 5-1: uhci_result_common: failed with status 440000 [ 54.067302] acm_rx_tasklet: enter [ 54.069023] usb 5-1: uhci_result_common: failed with status 440000 [ 54.070898] acm_rx_tasklet: leave [ 54.072747] usb 5-1: uhci_result_common: failed with status 440000 [ 54.074707] acm_rx_tasklet: enter [ 54.076614] usb 5-1: uhci_result_common: failed with status 440000 [ 54.078528] acm_rx_tasklet: leave [ 54.080468] usb 5-1: uhci_result_common: failed with status 440000 [ 54.082425] acm_rx_tasklet: enter [ 54.083839] usb 5-1: uhci_result_common: failed with status 440000 [ 54.085217] acm_rx_tasklet: leave [ 54.086539] usb 5-1: uhci_result_common: failed with status 440000 [ 54.087890] acm_rx_tasklet: enter [ 54.089202] usb 5-1: uhci_result_common: failed with status 440000 [ 54.090574] acm_rx_tasklet: leave [ 54.091902] usb 5-1: uhci_result_common: failed with status 440000 [ 54.093225] acm_rx_tasklet: enter [ 54.094016] usb 5-1: uhci_result_common: failed with status 440000 [ 54.094994] usb 5-1: uhci_result_common: failed with status 440000 [ 54.097322] usb 5-1: uhci_result_common: failed with status 440000 [ 54.098662] acm_rx_tasklet: leave [ 54.098994] usb 5-1: uhci_result_common: failed with status 440000 [ 54.101347] usb 5-1: uhci_result_common: failed with status 440000 [ 54.102666] acm_rx_tasklet: enter [ 54.103993] usb 5-1: uhci_result_common: failed with status 440000 [ 54.105301] acm_rx_tasklet: leave [ 54.106572] usb 5-1: uhci_result_common: failed with status 440000 [ 54.107872] acm_rx_tasklet: enter [ 54.109130] usb 5-1: uhci_result_common: failed with status 440000 [ 54.110435] acm_rx_tasklet: leave [ 54.111738] usb 5-1: uhci_result_common: failed with status 440000 [ 54.113071] acm_rx_tasklet: enter [ 54.114423] usb 5-1: uhci_result_common: failed with status 440000 [ 54.115781] acm_rx_tasklet: leave [ 54.116015] usb 5-1: uhci_result_common: failed with status 440000 [ 54.117014] usb 5-1: uhci_result_common: failed with status 440000 [ 54.119852] usb 5-1: uhci_result_common: failed with status 440000 [ 54.121205] acm_rx_tasklet: enter [ 54.122015] usb 5-1: uhci_result_common: failed with status 440000 [ 54.123931] usb 5-1: uhci_result_common: failed with status 440000 [ 54.125329] acm_rx_tasklet: leave [ 54.126695] usb 5-1: uhci_result_common: failed with status 440000 [ 54.128087] acm_rx_tasklet: enter [ 54.129447] usb 5-1: uhci_result_common: failed with status 440000 [ 54.129459] acm_rx_tasklet: leave [ 54.129461] acm_rx_tasklet: enter [ 54.129464] acm_rx_tasklet: leave [ 54.130850] usb 5-1: uhci_result_common: failed with status 440000 [ 54.130866] acm_rx_tasklet: enter [ 54.130871] acm_rx_tasklet: leave [ 54.138773] usb 5-1: uhci_result_common: failed with status 440000 [ 54.138792] acm_rx_tasklet: enter [ 54.138797] acm_rx_tasklet: leave [ 54.139020] usb 5-1: uhci_result_common: failed with status 440000 [ 54.139026] acm_rx_tasklet: enter [ 54.139032] acm_rx_tasklet: leave [ 54.142718] usb 5-1: uhci_result_common: failed with status 440000 [ 54.142724] acm_rx_tasklet: enter [ 54.142729] acm_rx_tasklet: leave [ 54.150163] usb 5-1: uhci_result_common: failed with status 440000 [ 54.150178] acm_rx_tasklet: enter [ 54.150183] acm_rx_tasklet: leave [ 54.151015] usb 5-1: uhci_result_common: failed with status 440000 [ 54.151021] acm_rx_tasklet: enter [ 54.151026] acm_rx_tasklet: leave [ 54.153898] usb 5-1: uhci_result_common: failed with status 440000 [ 54.153904] acm_rx_tasklet: enter [ 54.153909] acm_rx_tasklet: leave [ 54.160922] usb 5-1: uhci_result_common: failed with status 440000 [ 54.160936] acm_rx_tasklet: enter [ 54.160941] acm_rx_tasklet: leave [ 54.160980] hub 2-0:1.0: debounce: port 1: total 100ms stable 100ms status 0x501 [ 54.162015] usb 5-1: uhci_result_common: failed with status 440000 [ 54.162021] acm_rx_tasklet: enter [ 54.162027] acm_rx_tasklet: leave [ 54.164585] usb 5-1: uhci_result_common: failed with status 440000 [ 54.164591] acm_rx_tasklet: enter [ 54.164596] acm_rx_tasklet: leave [ 54.173137] usb 5-1: uhci_result_common: failed with status 440000 [ 54.173151] acm_rx_tasklet: enter [ 54.173156] acm_rx_tasklet: leave [ 54.176657] usb 5-1: uhci_result_common: failed with status 440000 [ 54.176663] acm_rx_tasklet: enter [ 54.176674] acm_rx_tasklet: leave [ 54.180106] usb 5-1: uhci_result_common: failed with status 440000 [ 54.180113] acm_rx_tasklet: enter [ 54.180118] acm_rx_tasklet: leave [ 54.183659] usb 5-1: uhci_result_common: failed with status 440000 [ 54.183665] acm_rx_tasklet: enter [ 54.183669] acm_rx_tasklet: leave [ 54.187153] usb 5-1: uhci_result_common: failed with status 440000 [ 54.187159] acm_rx_tasklet: enter [ 54.187163] acm_rx_tasklet: leave [ 54.190608] usb 5-1: uhci_result_common: failed with status 440000 [ 54.190615] acm_rx_tasklet: enter [ 54.190620] acm_rx_tasklet: leave [ 54.194090] usb 5-1: uhci_result_common: failed with status 440000 [ 54.194095] acm_rx_tasklet: enter [ 54.194100] acm_rx_tasklet: leave [ 54.197540] usb 5-1: uhci_result_common: failed with status 440000 [ 54.197545] acm_rx_tasklet: enter [ 54.197550] acm_rx_tasklet: leave [ 54.201011] usb 5-1: uhci_result_common: failed with status 440000 [ 54.201017] acm_rx_tasklet: enter [ 54.201022] acm_rx_tasklet: leave [ 54.204476] usb 5-1: uhci_result_common: failed with status 440000 [ 54.204482] acm_rx_tasklet: enter [ 54.204486] acm_rx_tasklet: leave [ 54.207994] usb 5-1: uhci_result_common: failed with status 440000 [ 54.208000] acm_rx_tasklet: enter [ 54.208005] acm_rx_tasklet: leave [ 54.211459] usb 5-1: uhci_result_common: failed with status 440000 [ 54.211465] acm_rx_tasklet: enter [ 54.211470] acm_rx_tasklet: leave [ 54.214980] usb 5-1: uhci_result_common: failed with status 440000 [ 54.214986] acm_rx_tasklet: enter [ 54.214990] acm_rx_tasklet: leave [ 54.216906] ehci_hcd 0000:00:1d.7: port 1 full speed --> companion [ 54.216910] ehci_hcd 0000:00:1d.7: GetStatus port 1 status 003001 POWER OWNER sig=se0 CONNECT [ 54.216916] hub 2-0:1.0: port 1 not reset yet, waiting 50ms [ 54.218466] usb 5-1: uhci_result_common: failed with status 440000 [ 54.218472] acm_rx_tasklet: enter [ 54.218477] acm_rx_tasklet: leave [ 54.225508] usb 5-1: uhci_result_common: failed with status 440000 [ 54.225522] acm_rx_tasklet: enter [ 54.225528] acm_rx_tasklet: leave [ 54.226014] usb 5-1: uhci_result_common: failed with status 440000 [ 54.226020] acm_rx_tasklet: enter [ 54.226026] acm_rx_tasklet: leave [ 54.227014] usb 5-1: uhci_result_common: failed with status 440000 [ 54.227021] acm_rx_tasklet: enter [ 54.227026] acm_rx_tasklet: leave [ 54.229059] usb 5-1: uhci_result_common: failed with status 440000 [ 54.229072] acm_rx_tasklet: enter [ 54.229077] acm_rx_tasklet: leave [ 54.230015] usb 5-1: uhci_result_common: failed with status 440000 [ 54.230021] acm_rx_tasklet: enter [ 54.230026] acm_rx_tasklet: leave [ 54.231014] usb 5-1: uhci_result_common: failed with status 440000 [ 54.231020] acm_rx_tasklet: enter [ 54.231025] acm_rx_tasklet: leave [ 54.239403] usb 5-1: uhci_result_common: failed with status 440000 [ 54.239408] usb 5-1: uhci_result_common: failed with status 440000 [ 54.239422] acm_rx_tasklet: enter [ 54.239427] acm_rx_tasklet: leave [ 54.240015] usb 5-1: uhci_result_common: failed with status 440000 [ 54.240021] acm_rx_tasklet: enter [ 54.240026] acm_rx_tasklet: leave [ 54.241014] usb 5-1: uhci_result_common: failed with status 440000 [ 54.241020] acm_rx_tasklet: enter [ 54.241026] acm_rx_tasklet: leave [ 54.250957] usb 5-1: uhci_result_common: failed with status 440000 [ 54.250972] acm_rx_tasklet: enter [ 54.250977] acm_rx_tasklet: leave [ 54.252014] usb 5-1: uhci_result_common: failed with status 440000 [ 54.252021] acm_rx_tasklet: enter [ 54.252026] acm_rx_tasklet: leave [ 54.261170] usb 5-1: uhci_result_common: failed with status 440000 [ 54.261184] acm_rx_tasklet: enter [ 54.261190] acm_rx_tasklet: leave [ 54.262015] usb 5-1: uhci_result_common: failed with status 440000 [ 54.262021] acm_rx_tasklet: enter [ 54.262026] acm_rx_tasklet: leave [ 54.267946] usb 5-1: uhci_result_common: failed with status 440000 [ 54.267961] acm_rx_tasklet: enter [ 54.267966] acm_rx_tasklet: leave [ 54.268002] ehci_hcd 0000:00:1d.7: GetStatus port 1 status 001002 POWER sig=se0 CSC [ 54.268029] hub 2-0:1.0: unable to enumerate USB device on port 1 [ 54.268042] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0002 [ 54.268056] uhci_hcd 0000:00:1d.0: port 1 portsc 008a,00 [ 54.268076] hub 5-0:1.0: port 1, status 0100, change 0003, 12 Mb/s [ 54.268079] usb 5-1: USB disconnect, address 2 [ 54.268081] usb 5-1: unregistering device [ 54.268083] usb 5-1: usb_disable_device nuking all URBs [ 54.268092] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d046480 ep1in-intr [ 54.269021] uhci_hcd 0000:00:1d.0: release dev 2 ep81-INT, period 128, phase 0, 23 us [ 54.269024] usb 5-1: uhci_result_common: failed with status 440000 [ 54.269030] acm_rx_tasklet: enter [ 54.269033] acm_rx_tasklet: leave, usb_submit_urb failed? [ 54.269048] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d046cc0 ep3in-bulk [ 54.269051] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d046240 ep3in-bulk [ 54.269054] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d016300 ep3in-bulk [ 54.269057] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d016e40 ep3in-bulk [ 54.269060] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d016240 ep3in-bulk [ 54.269063] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d0169c0 ep3in-bulk [ 54.269065] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d0163c0 ep3in-bulk [ 54.269068] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d016600 ep3in-bulk [ 54.269071] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d016840 ep3in-bulk [ 54.269074] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d046b40 ep3in-bulk [ 54.269077] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d046a80 ep3in-bulk [ 54.269080] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d046780 ep3in-bulk [ 54.269083] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d0469c0 ep3in-bulk [ 54.269086] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d046600 ep3in-bulk [ 54.269089] uhci_hcd 0000:00:1d.0: shutdown urb ffff88007d046e40 ep3in-bulk [ 54.274842] acm_rx_tasklet: enter [ 54.274845] acm_rx_tasklet: ep == NULL [ 54.274846] acm_rx_tasklet: leave [ 54.274863] usb 5-1: unregistering interface 5-1:1.0 [ 54.275123] acm_disconnect: enter [ 54.275125] acm_disconnect: before mutex_lock(&open_mutex) [ 54.275195] acm_disconnect: after acm->dev = NULL [ 54.275368] acm_disconnect: enter [ 54.275370] acm_disconnect: leave (!acm) [ 54.275490] acm_disconnect: after mutex_unlock(&open_mutex) [ 54.275496] acm_disconnect: leave [ 54.275731] usb 5-1:1.0: uevent [ 54.276886] usb 5-1: unregistering interface 5-1:1.1 [ 54.277021] usb 5-1:1.1: uevent [ 54.277101] usb 5-1: unregistering interface 5-1:1.2 [ 54.277163] usb 5-1:1.2: uevent [ 54.281461] usb 5-1: uevent [ 54.309520] tty_port_close_start: count = -1 [ 54.396870] hub 5-0:1.0: debounce: port 1: total 100ms stable 100ms status 0x100 [ 54.398945] hub 2-0:1.0: state 7 ports 6 chg 0000 evt 0002 [ 55.069408] hub 2-0:1.0: state 7 ports 6 chg 0000 evt 0002 [ 55.071534] ehci_hcd 0000:00:1d.7: GetStatus port 1 status 001803 POWER sig=j CSC CONNECT [ 55.073643] hub 2-0:1.0: port 1, status 0501, change 0001, 480 Mb/s [ 55.103520] ehci_hcd 0000:00:1d.7: GetStatus port 1 status 001002 POWER sig=se0 CSC [ 55.223568] hub 2-0:1.0: debounce: port 1: total 125ms stable 100ms status 0x100 [ 55.225739] hub 2-0:1.0: state 7 ports 6 chg 0000 evt 0002 [ 55.324872] tty_port_close_start: count = -1 [ 55.325834] BUG: unable to handle kernel NULL pointer dereference at 00000000000002db [ 55.326867] IP: [<ffffffff812acb9b>] usb_autopm_do_interface+0x35/0xeb [ 55.326883] PGD 7d1a4067 PUD 7c355067 PMD 0 [ 55.326892] Oops: 0000 [#1] [ 55.326896] CR2: 00000000000002db [ 55.326924] ---[ end trace ceb0bb7251e36f02 ]--- [ 55.347715] usb usb5: suspend_rh (auto-stop) [ 57.346847] hub 5-0:1.0: hub_suspend [ 57.348982] usb usb5: bus auto-suspend [ 57.351136] usb usb5: suspend_rh