ItemStateChanged not always called in ComboboxEditor

Hi all,
I have implemented a custom JTable Cell editor which extends AbstractCellEditor. Most of the time everything works fine but sometimes when I add new rows to the table and then attempt to make a new selection in the combobox I cannot. When I drop down the combo and select something itemStateChanged is not fired. Its only for the new row. The combobox in the other rows continues to work. HOWEVER, if I dropdown the combo, and hold the mouse button down and move it over the desired item and release the mouse button itemstateChanged IS fired and the selection is made??????? My editor includes the following method implementations.
/** Creates a new instance of oaJComboBoxTableEditor */
public oaJComboBoxTableEditor() {
_combo = new oaJComboBox();
_combo.getEditor().getEditorComponent().addKeyListener(this);
_combo.getEditor().getEditorComponent().addFocusListener(this);
_combo.addFocusListener(this);
_combo.addItemListener(this);
_combo.addPopupMenuListener(this);
public boolean startCellEditing(EventObject anEvent) {
System.out.println("startCellEditing");
_combo.addItemListener(this);
_combo.addPopupMenuListener(this);
return true;
public void focusGained(FocusEvent e) {
System.out.println("oaJComboboxTableEditor::focusGained");
_combo.addItemListener(this);
_combo.addPopupMenuListener(this);
startCellEditing(new EventObject(this));
public void focusLost(FocusEvent e) {
System.out.println("oaJComboboxTableEditor::focusLost");
stopCellEditing();
public void popupMenuWillBecomeInvisible(PopupMenuEvent e) {
System.out.println("oaJComboboxTableEditor::popupMenuWillBecomeInvisible");
// need this to let the popup close gracefully
SwingUtilities.invokeLater(new Runnable() {
public void run() {
stopCellEditing();
public boolean stopCellEditing() {
_combo.removeItemListener(this);
_combo.removePopupMenuListener(this);
fireEditingStopped();
return true;
}

See my offer at the link shown below:
http://forum.java.sun.com/thread.jsp?forum=57&thread=408335
;o)
V.V.

Similar Messages

  • IDBase_UI_Dialog::Destructor not always called when dialog exits?

    Hi,
    We're having an intermittent issue with one of our dialogs on CC 2014 on Mac 10.8.  It's a Moveable Modal dialog and sometimes when it is closed, the next time it opens the dialog come up but IDialog::Open returns immediately rather than blocking as you would expect for a Modal dialog.
    Having used the trace, what appears to be happening is that when the dialog is closed, when it works properly the last thing that InDesign does is:
    DVModalDialogWindow::Destructor
    DVWindow::ReleaseWindow deleting drover OS_Window for 3b50e600
    IDBase_UI_Dialog::Destructor
    but when it doesn't work, these three lines do not appear in the trace.  Could we be doing something that would cause this?
    Can anyone shed some light on this?
    Thanks,
    Dan Tate

    I have found a workaround for this: when the IDialog::Open returns immediately, the IDialog::IsOpen returns true, so I can trap it.  If I then call IDialog::SetDeleteOnClose(true) and then IDialog::Close, then the dialog does close properly and opens correctly the next time.
    I'd still like to know why I am getting into this state in the first place though.
    For further information, this seems to happen less frequently (if at all) on CC 2014 10.1, but happens fairly regularly on 10.0 - was anything changed in this area between the two versions?
    Thanks,
    Dan Tate

  • Setter is not always called for a h:inputText

    It is really very strange beahvioure in a JSF componenet <h:inputText ..../>.
    Sometimes the entered value is mapped to its corresponding field in the bean (value="#{mybean.someproperty}") and sometime it negelects the user data and keep the value is "" ? even if the user entered data to that text box ?
    There is no validation for that component.
    Any idea or help is greatly appreciated

    Thanks a lot BalusC for offering continous help;
    Actaully I found the probelm !
    I have 20 tables in a JSF page, each table represents a single Service.
    so I have Service1,Service2,......Service20
    <table width="100%"  border="0" cellspacing="0" cellpadding="0" class="eBasicInfoTB">                                   
                                       <tr class="cnt_tabl_bg">
                                            <td colspan="4" class="cnt_title_bg">
                                                 <div align="left">
                                                 <h:selectBooleanCheckbox id="service1" binding="#{approvalManagementBean.selectBooleanService1}"></h:selectBooleanCheckbox>
                                                 Service #1</div>
                                            </td>
                                       </tr>
                                       <tr class="cnt_tabl_bg">
                                            <td width="25%" class="td_alr">Service Date</td>
                                            <td width="24%">
                                                 <table    border="0" cellspacing="0" cellpadding="0" class="ClaTB">
                                                      <tr>
                                                           <td width="100%"><h:outputText id="service1_date" value="#{approvalManagementBean.service1.serviceDateStr}" styleClass="fieldNormalClassDBlue"></h:outputText></td>
                                                      </tr>
                                                 </table>
                                            </td>
                                            <td width="25%" class="td_alr">Service Code</td>
                                            <td width="26%"><h:outputText id="service1_code" value="#{approvalManagementBean.service1.serviceCode}" styleClass="fieldNormalClassDBlue"></h:outputText>
                                            </td>
                                       </tr>
                                       <tr class="cnt_tabl_bg">
                                            <td class="td_alr">Service Description</td>
                                            <td colspan="3"><h:outputText id="service1_desc" value="#{approvalManagementBean.service1.serviceDesc}" styleClass="fieldNormalClassDBlue"></h:outputText>
                                            </td>
                                       </tr>
                                       <tr class="cnt_tabl_bg">
                                            <td class="td_alr">Unit Price</td>
                                            <td><h:outputText id="service1_unitPrice" value="#{approvalManagementBean.service1.unitPrice}" styleClass="fieldNormalClassDBlue"></h:outputText>
                                            </td>
                                            <td class="td_alr"> Unit Type</td>
                                            <td>
                                                 <h:outputText id="service1_unitType" value="#{approvalManagementBean.service1.unitType}" styleClass="fieldNormalClassDBlue"></h:outputText>                                             
                                            </td>
                                       </tr>
                                       <tr class="cnt_tabl_bg">
                                            <td class="td_alr">Quantity</td>
                                            <td><h:outputText id="service1_reqQty" value="#{approvalManagementBean.service1.reqQuantity}" styleClass="fieldNormalClassDBlue"></h:outputText></td>
                                            <td class="td_alr"> Requested Cost</td>
                                            <td><h:outputText id="service1_reqCost" value="#{approvalManagementBean.service1.reqCost}" styleClass="fieldNormalClassDBlue"></h:outputText></td>
                                       </tr>
                                       <tr class="cnt_tabl_bg">
                                            <td class="td_alr">Provider Service Comments</td>
                                            <td colspan="3"><h:outputText id="service1_provComments" value="#{approvalManagementBean.service1.provComments}" styleClass="fieldNormalClassDBlue"></h:outputText></td>
                                       </tr>
                                  </table>The field that had the bug was the field Requested Cost
    value="#{approvalManagementBean.service1.reqCost}"I found that Service No19 aslo has
    value="#{approvalManagementBean.service1.reqCost}"which was overrides the first value if it left empty :)
    Thanks again our Expert

  • [svn] 2260: Fix for version checking code not always detecting calls to newer functions .

    Revision: 2260
    Author: [email protected]
    Date: 2008-06-26 12:42:39 -0700 (Thu, 26 Jun 2008)
    Log Message:
    Fix for version checking code not always detecting calls to newer functions.
    flex checkintests pass
    Modified Paths:
    flex/sdk/trunk/modules/asc/src/java/macromedia/asc/semantics/ConstantEvaluator.java
    flex/sdk/trunk/modules/asc/src/java/macromedia/asc/semantics/ReferenceValue.java

    Revision: 2260
    Author: [email protected]
    Date: 2008-06-26 12:42:39 -0700 (Thu, 26 Jun 2008)
    Log Message:
    Fix for version checking code not always detecting calls to newer functions.
    flex checkintests pass
    Modified Paths:
    flex/sdk/trunk/modules/asc/src/java/macromedia/asc/semantics/ConstantEvaluator.java
    flex/sdk/trunk/modules/asc/src/java/macromedia/asc/semantics/ReferenceValue.java

  • Whenever i dial hash in last its always calling not requesting. i had upgraded to ios 7.   i cant get the balance please help me

    please help me.    whenever i dial hash i.e *1111#   insted of requesting its always calling.....

    Yes, I did.
    It restored everything [incl. photos] but phone contacts.
    And, after restoration the iOS was still 7.
    I tried twice but still no phone contacts.
    Please help me to get my phone contacts back!

  • Trackpoint in Thinkpad X121e not always working

    Hi,
    my Lenovo Thinkpad X121e runs with ArchLinux x86_64 and all packages updated (no testing versions). All worked fine, but since a while i have the problem, that the trackpoint sometimes does not work. This occurs randomly at startup. Sometimes it works, sometimes not. If it works, it keeps working all the time the machine is running. If it is not running, after a reboot it will most likely work. This problem seems to occur randomly at about every tenth start of the machine. I remember that the trackpoint did work without problems in the past, but some update in the last few months has killed it. I currently cannot figure out, why this happens.
    I attached the dmesg and lsmod output for the working and non-working state of the trackpoint. If you need more info, please ask. I hope someone can help me :-)
    Thanks.
    Edit: Added also the Xorg.0.logs for working and non-working states.
    dmesg with a working trackpoint:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.3.8-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.0 20120505 (prerelease) (GCC) ) #1 SMP PREEMPT Tue Jun 5 15:20:32 CEST 2012
    [ 0.000000] Command line: root=/dev/sda3 ro
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009d800 (usable)
    [ 0.000000] BIOS-e820: 000000000009d800 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 00000000c6efd000 (usable)
    [ 0.000000] BIOS-e820: 00000000c6efd000 - 00000000c730d000 (reserved)
    [ 0.000000] BIOS-e820: 00000000c730d000 - 00000000c738d000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000c738d000 - 00000000c73ed000 (ACPI data)
    [ 0.000000] BIOS-e820: 00000000c73ed000 - 00000000c7e00000 (usable)
    [ 0.000000] BIOS-e820: 00000000c7e00000 - 00000000c8000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fed00000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed80000 - 00000000fed81000 (reserved)
    [ 0.000000] BIOS-e820: 00000000ffe00000 - 0000000100000000 (reserved)
    [ 0.000000] BIOS-e820: 0000000100000000 - 000000011f000000 (usable)
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI 2.6 present.
    [ 0.000000] DMI: LENOVO 30515QG/30515QG, BIOS 8RET26WW (1.08 ) 06/20/2011
    [ 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 = 0x11f000 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-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F80000000 write-back
    [ 0.000000] 1 base 080000000 mask FC0000000 write-back
    [ 0.000000] 2 base 0C0000000 mask FF8000000 write-back
    [ 0.000000] 3 base 0FFF90000 mask FFFFF0000 uncachable
    [ 0.000000] 4 base 0FED80000 mask FFFFFF000 uncachable
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 base 0FFE00000 mask FFFE00000 write-protect
    [ 0.000000] TOM2: 000000011f000000 aka 4592M
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] last_pfn = 0xc7e00 max_arch_pfn = 0x400000000
    [ 0.000000] initial memory mapped : 0 - 20000000
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 20480
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000c7e00000
    [ 0.000000] 0000000000 - 00c0000000 page 1G
    [ 0.000000] 00c0000000 - 00c7e00000 page 2M
    [ 0.000000] kernel direct mapping tables up to c7e00000 @ 1fffe000-20000000
    [ 0.000000] init_memory_mapping: 0000000100000000-000000011f000000
    [ 0.000000] 0100000000 - 011f000000 page 2M
    [ 0.000000] kernel direct mapping tables up to 11f000000 @ c7dfe000-c7e00000
    [ 0.000000] RAMDISK: 37d69000 - 37ff0000
    [ 0.000000] ACPI: RSDP 00000000000f00e0 00024 (v04 LENOVO)
    [ 0.000000] ACPI: XSDT 00000000c73ec120 00074 (v01 LENOVO TP-8R 00000003 PTEC 00000002)
    [ 0.000000] ACPI: FACP 00000000c73da000 000F4 (v04 LENOVO TP-8R 00001080 PTL 00000002)
    [ 0.000000] ACPI: DSDT 00000000c73dc000 0EAF9 (v01 LENOVO TP-8R 00001000 PTEC 00001080)
    [ 0.000000] ACPI: FACS 00000000c7378000 00040
    [ 0.000000] ACPI: SLIC 00000000c73eb000 00176 (v01 LENOVO TP-8R 00001080 PTEC 00000001)
    [ 0.000000] ACPI: HPET 00000000c73d9000 00038 (v01 LENOVO TP-8R 00001080 PTL 00000002)
    [ 0.000000] ACPI: APIC 00000000c73d8000 0005E (v02 LENOVO TP-8R 00001080 PTL 00000002)
    [ 0.000000] ACPI: MCFG 00000000c73d7000 0003C (v01 LENOVO TP-8R 00001080 PTL 00000002)
    [ 0.000000] ACPI: UEFI 00000000c73d6000 0003E (v01 LENOVO TP-8R 00001080 PTL 00000002)
    [ 0.000000] ACPI: UEFI 00000000c73d5000 00042 (v01 PTL COMBUF 00000001 PTL 00000001)
    [ 0.000000] ACPI: SSDT 00000000c73d4000 003DE (v01 AMD POWERNOW 00000001 AMD 00000001)
    [ 0.000000] ACPI: SSDT 00000000c73d2000 012FA (v02 AMD ALIB 00000001 MSFT 04000000)
    [ 0.000000] ACPI: UEFI 00000000c73d1000 0013E (v01 LENOVO TP-8R 00001080 PTL 00000002)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at 0000000000000000-000000011f000000
    [ 0.000000] Initmem setup node 0 0000000000000000-000000011f000000
    [ 0.000000] NODE_DATA [000000011effb000 - 000000011effffff]
    [ 0.000000] [ffffea0000000000-ffffea00047fffff] PMD -> [ffff88011ac00000-ffff88011e5fffff] on node 0
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] DMA32 0x00001000 -> 0x00100000
    [ 0.000000] Normal 0x00100000 -> 0x0011f000
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] Early memory PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009d
    [ 0.000000] 0: 0x00000100 -> 0x000c6efd
    [ 0.000000] 0: 0x000c73ed -> 0x000c7e00
    [ 0.000000] 0: 0x00100000 -> 0x0011f000
    [ 0.000000] On node 0 totalpages: 944285
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 5 pages reserved
    [ 0.000000] DMA zone: 3912 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 16320 pages used for memmap
    [ 0.000000] DMA32 zone: 797008 pages, LIFO batch:31
    [ 0.000000] Normal zone: 1984 pages used for memmap
    [ 0.000000] Normal zone: 124992 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x808
    [ 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 33, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 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: 0x43538210 base: 0xfed00000
    [ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
    [ 0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 00000000c6efd000 - 00000000c730d000
    [ 0.000000] PM: Registered nosave memory: 00000000c730d000 - 00000000c738d000
    [ 0.000000] PM: Registered nosave memory: 00000000c738d000 - 00000000c73ed000
    [ 0.000000] PM: Registered nosave memory: 00000000c7e00000 - 00000000c8000000
    [ 0.000000] PM: Registered nosave memory: 00000000c8000000 - 00000000fec00000
    [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fed00000
    [ 0.000000] PM: Registered nosave memory: 00000000fed00000 - 00000000fed80000
    [ 0.000000] PM: Registered nosave memory: 00000000fed80000 - 00000000fed81000
    [ 0.000000] PM: Registered nosave memory: 00000000fed81000 - 00000000ffe00000
    [ 0.000000] PM: Registered nosave memory: 00000000ffe00000 - 0000000100000000
    [ 0.000000] Allocating PCI resources starting at c8000000 (gap: c8000000:36c00000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:2 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88011ec00000 s82176 r8192 d24320 u1048576
    [ 0.000000] pcpu-alloc: s82176 r8192 d24320 u1048576 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 925912
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: root=/dev/sda3 ro
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 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: 3637724k/4702208k available (4496k kernel code, 925068k absent, 139416k reserved, 4326k data, 732k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Verbose stalled-CPUs detection is disabled.
    [ 0.000000] NR_IRQS:4352 nr_irqs:512 16
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 15204352 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] Fast TSC calibration using PIT
    [ 0.000000] Detected 1596.524 MHz processor.
    [ 0.003338] Calibrating delay loop (skipped), value calculated using timer frequency.. 3194.09 BogoMIPS (lpj=5321746)
    [ 0.003347] pid_max: default: 32768 minimum: 301
    [ 0.003396] Security Framework initialized
    [ 0.003405] AppArmor: AppArmor disabled by boot time parameter
    [ 0.004113] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.007521] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.008760] Mount-cache hash table entries: 256
    [ 0.009042] Initializing cgroup subsys cpuacct
    [ 0.009050] Initializing cgroup subsys memory
    [ 0.009069] Initializing cgroup subsys devices
    [ 0.009073] Initializing cgroup subsys freezer
    [ 0.009077] Initializing cgroup subsys net_cls
    [ 0.009080] Initializing cgroup subsys blkio
    [ 0.009143] tseg: 00c7e00000
    [ 0.009147] CPU: Physical Processor ID: 0
    [ 0.009150] CPU: Processor Core ID: 0
    [ 0.009154] mce: CPU supports 6 MCE banks
    [ 0.011336] ACPI: Core revision 20120111
    [ 0.026703] ftrace: allocating 17489 entries in 69 pages
    [ 0.037262] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.071189] CPU0: AMD E-350 Processor stepping 00
    [ 0.073329] Performance Events: AMD PMU driver.
    [ 0.073329] ... version: 0
    [ 0.073329] ... bit width: 48
    [ 0.073329] ... generic registers: 4
    [ 0.073329] ... value mask: 0000ffffffffffff
    [ 0.073329] ... max period: 00007fffffffffff
    [ 0.073329] ... fixed-purpose events: 0
    [ 0.073329] ... event mask: 000000000000000f
    [ 0.090166] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.116773] Booting Node 0, Processors #1 Ok.
    [ 0.116781] smpboot cpu 1: start_ip = 98000
    [ 0.130046] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.136704] Brought up 2 CPUs
    [ 0.136716] Total of 2 processors activated (6388.18 BogoMIPS).
    [ 0.137266] devtmpfs: initialized
    [ 0.140921] PM: Registering ACPI NVS region at c730d000 (524288 bytes)
    [ 0.141584] NET: Registered protocol family 16
    [ 0.141951] ACPI: bus type pci registered
    [ 0.142141] PCI: MMCONFIG for domain 0000 [bus 00-1f] at [mem 0xf8000000-0xf9ffffff] (base 0xf8000000)
    [ 0.142147] PCI: not using MMCONFIG
    [ 0.142150] PCI: Using configuration type 1 for base access
    [ 0.142153] PCI: Using configuration type 1 for extended access
    [ 0.143469] bio: create slab <bio-0> at 0
    [ 0.143469] ACPI: Added _OSI(Module Device)
    [ 0.143469] ACPI: Added _OSI(Processor Device)
    [ 0.143469] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.143469] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.146754] ACPI: EC: Look up EC in DSDT
    [ 0.157302] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.161305] ACPI: Interpreter enabled
    [ 0.161305] ACPI: (supports S0 S3 S4 S5)
    [ 0.161305] ACPI: Using IOAPIC for interrupt routing
    [ 0.161305] PCI: MMCONFIG for domain 0000 [bus 00-1f] at [mem 0xf8000000-0xf9ffffff] (base 0xf8000000)
    [ 0.163624] PCI: MMCONFIG at [mem 0xf8000000-0xf9ffffff] reserved in ACPI motherboard resources
    [ 0.169819] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
    [ 0.175499] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
    [ 0.177428] ACPI: EC: GPE = 0x3, I/O: command/status = 0x66, data = 0x62
    [ 0.177818] ACPI: No dock devices found.
    [ 0.177828] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.180145] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.181866] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    [ 0.181872] pci_root PNP0A08:00: host bridge window [mem 0x000c0000-0x000c1fff]
    [ 0.181877] pci_root PNP0A08:00: host bridge window [mem 0x000c2000-0x000c3fff]
    [ 0.181881] pci_root PNP0A08:00: host bridge window [mem 0x000c4000-0x000c5fff]
    [ 0.181885] pci_root PNP0A08:00: host bridge window [mem 0x000c6000-0x000c7fff]
    [ 0.181890] pci_root PNP0A08:00: host bridge window [mem 0x000c8000-0x000c9fff]
    [ 0.181894] pci_root PNP0A08:00: host bridge window [mem 0x000ca000-0x000cbfff]
    [ 0.181898] pci_root PNP0A08:00: host bridge window [mem 0x000cc000-0x000cdfff]
    [ 0.181902] pci_root PNP0A08:00: host bridge window [mem 0x000ce000-0x000cffff]
    [ 0.181906] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000d1fff]
    [ 0.181910] pci_root PNP0A08:00: host bridge window [mem 0x000d2000-0x000d3fff]
    [ 0.181915] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d5fff]
    [ 0.181919] pci_root PNP0A08:00: host bridge window [mem 0x000d6000-0x000d7fff]
    [ 0.181923] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000d9fff]
    [ 0.181927] pci_root PNP0A08:00: host bridge window [mem 0x000da000-0x000dbfff]
    [ 0.181931] pci_root PNP0A08:00: host bridge window [mem 0x000dc000-0x000ddfff]
    [ 0.181935] pci_root PNP0A08:00: host bridge window [mem 0x000de000-0x000dffff]
    [ 0.181940] pci_root PNP0A08:00: host bridge window [mem 0x000e0000-0x000e1fff]
    [ 0.181944] pci_root PNP0A08:00: host bridge window [mem 0x000e2000-0x000e3fff]
    [ 0.181948] pci_root PNP0A08:00: host bridge window [mem 0x000e4000-0x000e5fff]
    [ 0.181952] pci_root PNP0A08:00: host bridge window [mem 0x000e6000-0x000e7fff]
    [ 0.181956] pci_root PNP0A08:00: host bridge window [mem 0x000e8000-0x000e9fff]
    [ 0.181960] pci_root PNP0A08:00: host bridge window [mem 0x000ea000-0x000ebfff]
    [ 0.181964] pci_root PNP0A08:00: host bridge window [mem 0x000ec000-0x000edfff]
    [ 0.181968] pci_root PNP0A08:00: host bridge window [mem 0x000ee000-0x000effff]
    [ 0.181973] pci_root PNP0A08:00: host bridge window [mem 0xe0000000-0xf7ffffff]
    [ 0.181977] pci_root PNP0A08:00: host bridge window [mem 0xf8000000-0xffffffff]
    [ 0.181981] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
    [ 0.181985] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
    [ 0.182002] pci_root PNP0A08:00: ignoring host bridge window [mem 0x000ce000-0x000cffff] (conflicts with Video ROM [mem 0x000c0000-0x000ce3ff])
    [ 0.182081] PCI host bridge to bus 0000:00
    [ 0.182085] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.182090] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c1fff]
    [ 0.182094] pci_bus 0000:00: root bus resource [mem 0x000c2000-0x000c3fff]
    [ 0.182098] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c5fff]
    [ 0.182102] pci_bus 0000:00: root bus resource [mem 0x000c6000-0x000c7fff]
    [ 0.182106] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000c9fff]
    [ 0.182110] pci_bus 0000:00: root bus resource [mem 0x000ca000-0x000cbfff]
    [ 0.182114] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cdfff]
    [ 0.182117] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d1fff]
    [ 0.182121] pci_bus 0000:00: root bus resource [mem 0x000d2000-0x000d3fff]
    [ 0.182125] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d5fff]
    [ 0.182129] pci_bus 0000:00: root bus resource [mem 0x000d6000-0x000d7fff]
    [ 0.182133] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000d9fff]
    [ 0.182137] pci_bus 0000:00: root bus resource [mem 0x000da000-0x000dbfff]
    [ 0.182141] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000ddfff]
    [ 0.182144] pci_bus 0000:00: root bus resource [mem 0x000de000-0x000dffff]
    [ 0.182148] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e1fff]
    [ 0.182152] pci_bus 0000:00: root bus resource [mem 0x000e2000-0x000e3fff]
    [ 0.182156] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e5fff]
    [ 0.182160] pci_bus 0000:00: root bus resource [mem 0x000e6000-0x000e7fff]
    [ 0.182164] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000e9fff]
    [ 0.182168] pci_bus 0000:00: root bus resource [mem 0x000ea000-0x000ebfff]
    [ 0.182172] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000edfff]
    [ 0.182176] pci_bus 0000:00: root bus resource [mem 0x000ee000-0x000effff]
    [ 0.182180] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xf7ffffff]
    [ 0.182184] pci_bus 0000:00: root bus resource [mem 0xf8000000-0xffffffff]
    [ 0.182187] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.182191] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.182208] pci 0000:00:00.0: [1022:1510] type 0 class 0x000600
    [ 0.182268] pci 0000:00:01.0: [1002:9802] type 0 class 0x000300
    [ 0.182283] pci 0000:00:01.0: reg 10: [mem 0xe0000000-0xefffffff pref]
    [ 0.182294] pci 0000:00:01.0: reg 14: [io 0x4000-0x40ff]
    [ 0.182304] pci 0000:00:01.0: reg 18: [mem 0xf0300000-0xf033ffff]
    [ 0.182367] pci 0000:00:01.0: supports D1 D2
    [ 0.182392] pci 0000:00:01.1: [1002:1314] type 0 class 0x000403
    [ 0.182405] pci 0000:00:01.1: reg 10: [mem 0xf0344000-0xf0347fff]
    [ 0.182478] pci 0000:00:01.1: supports D1 D2
    [ 0.182559] pci 0000:00:05.0: [1022:1513] type 1 class 0x000604
    [ 0.182638] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
    [ 0.182671] pci 0000:00:06.0: [1022:1514] type 1 class 0x000604
    [ 0.182749] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
    [ 0.182845] pci 0000:00:11.0: [1002:4391] type 0 class 0x000106
    [ 0.182872] pci 0000:00:11.0: reg 10: [io 0x4118-0x411f]
    [ 0.182886] pci 0000:00:11.0: reg 14: [io 0x4124-0x4127]
    [ 0.182900] pci 0000:00:11.0: reg 18: [io 0x4110-0x4117]
    [ 0.182915] pci 0000:00:11.0: reg 1c: [io 0x4120-0x4123]
    [ 0.182929] pci 0000:00:11.0: reg 20: [io 0x4100-0x410f]
    [ 0.182943] pci 0000:00:11.0: reg 24: [mem 0xf034a000-0xf034a3ff]
    [ 0.183027] pci 0000:00:12.0: [1002:4397] type 0 class 0x000c03
    [ 0.183047] pci 0000:00:12.0: reg 10: [mem 0xf0349000-0xf0349fff]
    [ 0.183144] pci 0000:00:12.2: [1002:4396] type 0 class 0x000c03
    [ 0.183171] pci 0000:00:12.2: reg 10: [mem 0xf034a500-0xf034a5ff]
    [ 0.183281] pci 0000:00:12.2: supports D1 D2
    [ 0.183285] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    [ 0.183337] pci 0000:00:13.0: [1002:4397] type 0 class 0x000c03
    [ 0.183357] pci 0000:00:13.0: reg 10: [mem 0xf0348000-0xf0348fff]
    [ 0.183455] pci 0000:00:13.2: [1002:4396] type 0 class 0x000c03
    [ 0.183481] pci 0000:00:13.2: reg 10: [mem 0xf034a400-0xf034a4ff]
    [ 0.183591] pci 0000:00:13.2: supports D1 D2
    [ 0.183594] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
    [ 0.183629] pci 0000:00:14.0: [1002:4385] type 0 class 0x000c05
    [ 0.183736] pci 0000:00:14.2: [1002:4383] type 0 class 0x000403
    [ 0.183767] pci 0000:00:14.2: reg 10: [mem 0xf0340000-0xf0343fff 64bit]
    [ 0.183855] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    [ 0.183879] pci 0000:00:14.3: [1002:439d] type 0 class 0x000601
    [ 0.183982] pci 0000:00:14.4: [1002:4384] type 1 class 0x000604
    [ 0.184052] pci 0000:00:18.0: [1022:1700] type 0 class 0x000600
    [ 0.184102] pci 0000:00:18.1: [1022:1701] type 0 class 0x000600
    [ 0.184146] pci 0000:00:18.2: [1022:1702] type 0 class 0x000600
    [ 0.184192] pci 0000:00:18.3: [1022:1703] type 0 class 0x000600
    [ 0.184251] pci 0000:00:18.4: [1022:1704] type 0 class 0x000600
    [ 0.184295] pci 0000:00:18.5: [1022:1718] type 0 class 0x000600
    [ 0.184339] pci 0000:00:18.6: [1022:1716] type 0 class 0x000600
    [ 0.184383] pci 0000:00:18.7: [1022:1719] type 0 class 0x000600
    [ 0.184555] pci 0000:01:00.0: [10ec:8176] type 0 class 0x000280
    [ 0.184577] pci 0000:01:00.0: reg 10: [io 0x3000-0x30ff]
    [ 0.184612] pci 0000:01:00.0: reg 18: [mem 0xf0200000-0xf0203fff 64bit]
    [ 0.184714] pci 0000:01:00.0: supports D1 D2
    [ 0.184718] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.190067] pci 0000:00:05.0: PCI bridge to [bus 01-01]
    [ 0.190089] pci 0000:00:05.0: bridge window [io 0x3000-0x3fff]
    [ 0.190101] pci 0000:00:05.0: bridge window [mem 0xf0200000-0xf02fffff]
    [ 0.190192] pci 0000:02:00.0: [1969:1083] type 0 class 0x000200
    [ 0.190224] pci 0000:02:00.0: reg 10: [mem 0xf0100000-0xf013ffff 64bit]
    [ 0.190239] pci 0000:02:00.0: reg 18: [io 0x2000-0x207f]
    [ 0.190356] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.196733] pci 0000:00:06.0: PCI bridge to [bus 02-02]
    [ 0.196755] pci 0000:00:06.0: bridge window [io 0x2000-0x2fff]
    [ 0.196767] pci 0000:00:06.0: bridge window [mem 0xf0100000-0xf01fffff]
    [ 0.196860] pci 0000:00:14.4: PCI bridge to [bus 04-04] (subtractive decode)
    [ 0.196875] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.196881] pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000c1fff] (subtractive decode)
    [ 0.196885] pci 0000:00:14.4: bridge window [mem 0x000c2000-0x000c3fff] (subtractive decode)
    [ 0.196890] pci 0000:00:14.4: bridge window [mem 0x000c4000-0x000c5fff] (subtractive decode)
    [ 0.196894] pci 0000:00:14.4: bridge window [mem 0x000c6000-0x000c7fff] (subtractive decode)
    [ 0.196899] pci 0000:00:14.4: bridge window [mem 0x000c8000-0x000c9fff] (subtractive decode)
    [ 0.196903] pci 0000:00:14.4: bridge window [mem 0x000ca000-0x000cbfff] (subtractive decode)
    [ 0.196921] pci 0000:00:14.4: bridge window [mem 0x000cc000-0x000cdfff] (subtractive decode)
    [ 0.196925] pci 0000:00:14.4: bridge window [mem 0x000d0000-0x000d1fff] (subtractive decode)
    [ 0.196930] pci 0000:00:14.4: bridge window [mem 0x000d2000-0x000d3fff] (subtractive decode)
    [ 0.196935] pci 0000:00:14.4: bridge window [mem 0x000d4000-0x000d5fff] (subtractive decode)
    [ 0.196939] pci 0000:00:14.4: bridge window [mem 0x000d6000-0x000d7fff] (subtractive decode)
    [ 0.196944] pci 0000:00:14.4: bridge window [mem 0x000d8000-0x000d9fff] (subtractive decode)
    [ 0.196948] pci 0000:00:14.4: bridge window [mem 0x000da000-0x000dbfff] (subtractive decode)
    [ 0.196953] pci 0000:00:14.4: bridge window [mem 0x000dc000-0x000ddfff] (subtractive decode)
    [ 0.196957] pci 0000:00:14.4: bridge window [mem 0x000de000-0x000dffff] (subtractive decode)
    [ 0.196962] pci 0000:00:14.4: bridge window [mem 0x000e0000-0x000e1fff] (subtractive decode)
    [ 0.196966] pci 0000:00:14.4: bridge window [mem 0x000e2000-0x000e3fff] (subtractive decode)
    [ 0.196971] pci 0000:00:14.4: bridge window [mem 0x000e4000-0x000e5fff] (subtractive decode)
    [ 0.196975] pci 0000:00:14.4: bridge window [mem 0x000e6000-0x000e7fff] (subtractive decode)
    [ 0.196980] pci 0000:00:14.4: bridge window [mem 0x000e8000-0x000e9fff] (subtractive decode)
    [ 0.196984] pci 0000:00:14.4: bridge window [mem 0x000ea000-0x000ebfff] (subtractive decode)
    [ 0.196989] pci 0000:00:14.4: bridge window [mem 0x000ec000-0x000edfff] (subtractive decode)
    [ 0.196993] pci 0000:00:14.4: bridge window [mem 0x000ee000-0x000effff] (subtractive decode)
    [ 0.196998] pci 0000:00:14.4: bridge window [mem 0xe0000000-0xf7ffffff] (subtractive decode)
    [ 0.197002] pci 0000:00:14.4: bridge window [mem 0xf8000000-0xffffffff] (subtractive decode)
    [ 0.197007] pci 0000:00:14.4: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.197011] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.197091] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.197382] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB5_._PRT]
    [ 0.197462] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB6_._PRT]
    [ 0.197622] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT]
    [ 0.197990] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.198396] pci0000:00: ACPI _OSC control (0x1d) granted
    [ 0.207341] ACPI: PCI Interrupt Link [LNKA] (IRQs 10 11) *0
    [ 0.207552] ACPI: PCI Interrupt Link [LNKB] (IRQs 10 11) *0
    [ 0.207715] ACPI: PCI Interrupt Link [LNKC] (IRQs 10 11) *0
    [ 0.207830] ACPI: PCI Interrupt Link [LNKD] (IRQs 10 11) *0
    [ 0.207926] ACPI: PCI Interrupt Link [LNKE] (IRQs 10 11) *0
    [ 0.208048] ACPI: PCI Interrupt Link [LNKF] (IRQs 10 11) *0
    [ 0.208177] ACPI: PCI Interrupt Link [LNKG] (IRQs 10 11) *0
    [ 0.208300] ACPI: PCI Interrupt Link [LNKH] (IRQs 10 11) *0
    [ 0.208426] vgaarb: device added: PCI:0000:00:01.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.208426] vgaarb: loaded
    [ 0.208426] vgaarb: bridge control possible 0000:00:01.0
    [ 0.208426] PCI: Using ACPI for IRQ routing
    [ 0.210067] PCI: pci_cache_line_size set to 64 bytes
    [ 0.210205] reserve RAM buffer: 000000000009d800 - 000000000009ffff
    [ 0.210210] reserve RAM buffer: 00000000c6efd000 - 00000000c7ffffff
    [ 0.210215] reserve RAM buffer: 00000000c7e00000 - 00000000c7ffffff
    [ 0.210219] reserve RAM buffer: 000000011f000000 - 000000011fffffff
    [ 0.210416] NetLabel: Initializing
    [ 0.210420] NetLabel: domain hash size = 128
    [ 0.210422] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.210446] NetLabel: unlabeled traffic allowed by default
    [ 0.210504] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [ 0.210511] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
    [ 0.212540] Switching to clocksource hpet
    [ 0.225756] pnp: PnP ACPI init
    [ 0.225801] ACPI: bus type pnp registered
    [ 0.226870] pnp 00:00: [bus 00-ff]
    [ 0.226876] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.226881] pnp 00:00: [mem 0x000c0000-0x000c1fff window]
    [ 0.226885] pnp 00:00: [mem 0x000c2000-0x000c3fff window]
    [ 0.226889] pnp 00:00: [mem 0x000c4000-0x000c5fff window]
    [ 0.226893] pnp 00:00: [mem 0x000c6000-0x000c7fff window]
    [ 0.226897] pnp 00:00: [mem 0x000c8000-0x000c9fff window]
    [ 0.226901] pnp 00:00: [mem 0x000ca000-0x000cbfff window]
    [ 0.226904] pnp 00:00: [mem 0x000cc000-0x000cdfff window]
    [ 0.226908] pnp 00:00: [mem 0x000ce000-0x000cffff window]
    [ 0.226912] pnp 00:00: [mem 0x000d0000-0x000d1fff window]
    [ 0.226920] pnp 00:00: [mem 0x000d2000-0x000d3fff window]
    [ 0.226924] pnp 00:00: [mem 0x000d4000-0x000d5fff window]
    [ 0.226927] pnp 00:00: [mem 0x000d6000-0x000d7fff window]
    [ 0.226931] pnp 00:00: [mem 0x000d8000-0x000d9fff window]
    [ 0.226935] pnp 00:00: [mem 0x000da000-0x000dbfff window]
    [ 0.226938] pnp 00:00: [mem 0x000dc000-0x000ddfff window]
    [ 0.226942] pnp 00:00: [mem 0x000de000-0x000dffff window]
    [ 0.226946] pnp 00:00: [mem 0x000e0000-0x000e1fff window]
    [ 0.226950] pnp 00:00: [mem 0x000e2000-0x000e3fff window]
    [ 0.226953] pnp 00:00: [mem 0x000e4000-0x000e5fff window]
    [ 0.226957] pnp 00:00: [mem 0x000e6000-0x000e7fff window]
    [ 0.226961] pnp 00:00: [mem 0x000e8000-0x000e9fff window]
    [ 0.226964] pnp 00:00: [mem 0x000ea000-0x000ebfff window]
    [ 0.226968] pnp 00:00: [mem 0x000ec000-0x000edfff window]
    [ 0.226972] pnp 00:00: [mem 0x000ee000-0x000effff window]
    [ 0.226976] pnp 00:00: [mem 0xe0000000-0xf7ffffff window]
    [ 0.226979] pnp 00:00: [mem 0xf8000000-0xffffffff window]
    [ 0.226984] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.226987] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.226991] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.227102] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    [ 0.227189] pnp 00:01: [io 0x0f50-0x0f51]
    [ 0.227194] pnp 00:01: [mem 0xfec00000-0xfec00fff]
    [ 0.227198] pnp 00:01: [mem 0xfee00000-0xfee00fff]
    [ 0.227201] pnp 00:01: [mem 0xf8000000-0xf9ffffff]
    [ 0.227291] system 00:01: [io 0x0f50-0x0f51] has been reserved
    [ 0.227298] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.227303] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.227308] system 00:01: [mem 0xf8000000-0xf9ffffff] has been reserved
    [ 0.227314] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.228056] pnp 00:02: [io 0x0000-0x001f]
    [ 0.228060] pnp 00:02: [io 0x0081-0x008f]
    [ 0.228063] pnp 00:02: [io 0x00c0-0x00de]
    [ 0.228066] pnp 00:02: [io 0x040b]
    [ 0.228069] pnp 00:02: [io 0x04d6]
    [ 0.228073] pnp 00:02: [dma 4]
    [ 0.228138] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.228155] pnp 00:03: [io 0x00f0-0x00fe]
    [ 0.228221] pnp 00:03: [irq 13]
    [ 0.228286] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.228306] pnp 00:04: [io 0x0070-0x0071]
    [ 0.228361] pnp 00:04: [irq 8]
    [ 0.228418] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.228434] pnp 00:05: [io 0x0061]
    [ 0.228496] pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.228516] pnp 00:06: [io 0x0060]
    [ 0.228519] pnp 00:06: [io 0x0064]
    [ 0.228528] pnp 00:06: [irq 1]
    [ 0.228598] pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.228686] pnp 00:07: [irq 12]
    [ 0.228746] pnp 00:07: Plug and Play ACPI device, IDs LEN0026 PNP0f13 (active)
    [ 0.228772] pnp 00:08: [io 0x0022-0x0023]
    [ 0.228775] pnp 00:08: [io 0x002e-0x002f]
    [ 0.228779] pnp 00:08: [io 0x0072-0x0073]
    [ 0.228785] pnp 00:08: [io 0x0080]
    [ 0.228789] pnp 00:08: [io 0x0092]
    [ 0.228792] pnp 00:08: [io 0x00b0-0x00b1]
    [ 0.228795] pnp 00:08: [io 0x00b2]
    [ 0.228798] pnp 00:08: [io 0x00b8]
    [ 0.228801] pnp 00:08: [io 0x00bc]
    [ 0.228804] pnp 00:08: [io 0x00f0]
    [ 0.228807] pnp 00:08: [io 0x04d0-0x04d1]
    [ 0.228810] pnp 00:08: [io 0x0530-0x0537]
    [ 0.228813] pnp 00:08: [io 0x0800-0x0827]
    [ 0.228817] pnp 00:08: [io 0x0830]
    [ 0.228820] pnp 00:08: [io 0x0840-0x0847]
    [ 0.228823] pnp 00:08: [io 0x0b00-0x0b1f]
    [ 0.228826] pnp 00:08: [io 0x0b20-0x0b3f]
    [ 0.228829] pnp 00:08: [io 0x0c00-0x0c01]
    [ 0.228832] pnp 00:08: [io 0x0c14]
    [ 0.228835] pnp 00:08: [io 0x0c50-0x0c52]
    [ 0.228839] pnp 00:08: [io 0x0cd0-0x0cd1]
    [ 0.228842] pnp 00:08: [io 0x0cd2-0x0cd3]
    [ 0.228845] pnp 00:08: [io 0x0cd4-0x0cd5]
    [ 0.228848] pnp 00:08: [io 0x0cd6-0x0cd7]
    [ 0.228851] pnp 00:08: [io 0x0cd8-0x0cdf]
    [ 0.228854] pnp 00:08: [io 0x0cf9]
    [ 0.228858] pnp 00:08: [io 0x8100-0x81ff window]
    [ 0.228862] pnp 00:08: [io 0x8200-0x82ff window]
    [ 0.228977] system 00:08: [io 0x04d0-0x04d1] has been reserved
    [ 0.228982] system 00:08: [io 0x0530-0x0537] has been reserved
    [ 0.228987] system 00:08: [io 0x0800-0x0827] has been reserved
    [ 0.228991] system 00:08: [io 0x0830] has been reserved
    [ 0.228996] system 00:08: [io 0x0840-0x0847] has been reserved
    [ 0.229000] system 00:08: [io 0x0b00-0x0b1f] has been reserved
    [ 0.229005] system 00:08: [io 0x0b20-0x0b3f] has been reserved
    [ 0.229009] system 00:08: [io 0x0c00-0x0c01] has been reserved
    [ 0.229014] system 00:08: [io 0x0c14] has been reserved
    [ 0.229018] system 00:08: [io 0x0c50-0x0c52] has been reserved
    [ 0.229023] system 00:08: [io 0x0cd0-0x0cd1] has been reserved
    [ 0.229027] system 00:08: [io 0x0cd2-0x0cd3] has been reserved
    [ 0.229032] system 00:08: [io 0x0cd4-0x0cd5] has been reserved
    [ 0.229036] system 00:08: [io 0x0cd6-0x0cd7] has been reserved
    [ 0.229041] system 00:08: [io 0x0cd8-0x0cdf] has been reserved
    [ 0.229045] system 00:08: [io 0x0cf9] could not be reserved
    [ 0.229050] system 00:08: [io 0x8100-0x81ff window] has been reserved
    [ 0.229055] system 00:08: [io 0x8200-0x82ff window] has been reserved
    [ 0.229061] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.229217] pnp 00:09: [mem 0x000e0000-0x000fffff]
    [ 0.229221] pnp 00:09: [mem 0xffe00000-0xffffffff]
    [ 0.229225] pnp 00:09: [mem 0x00000000-0xffffffffffffffff disabled]
    [ 0.229229] pnp 00:09: [mem 0xfec10000-0xfec1001f]
    [ 0.229233] pnp 00:09: [mem 0xfed00000-0xfed003ff]
    [ 0.229236] pnp 00:09: [mem 0xfed61000-0xfed613ff]
    [ 0.229240] pnp 00:09: [mem 0xfed80000-0xfed80fff]
    [ 0.229272] pnp 00:09: [Firmware Bug]: [mem 0x00000000-0xffffffffffffffff disabled] covers only part of AMD MMCONFIG area [mem 0xf8000000-0xf9ffffff]; adding more reservations
    [ 0.229345] system 00:09: [mem 0x000e0000-0x000fffff] could not be reserved
    [ 0.229351] system 00:09: [mem 0xffe00000-0xffffffff] has been reserved
    [ 0.229356] system 00:09: [mem 0xfec10000-0xfec1001f] has been reserved
    [ 0.229360] system 00:09: [mem 0xfed00000-0xfed003ff] has been reserved
    [ 0.229365] system 00:09: [mem 0xfed61000-0xfed613ff] has been reserved
    [ 0.229370] system 00:09: [mem 0xfed80000-0xfed80fff] has been reserved
    [ 0.229376] system 00:09: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.229807] pnp: PnP ACPI: found 10 devices
    [ 0.229815] ACPI: ACPI bus type pnp unregistered
    [ 0.242341] PCI: max bus depth: 1 pci_try_num: 2
    [ 0.242430] pci 0000:00:05.0: PCI bridge to [bus 01-01]
    [ 0.242437] pci 0000:00:05.0: bridge window [io 0x3000-0x3fff]
    [ 0.242445] pci 0000:00:05.0: bridge window [mem 0xf0200000-0xf02fffff]
    [ 0.242455] pci 0000:00:06.0: PCI bridge to [bus 02-02]
    [ 0.242461] pci 0000:00:06.0: bridge window [io 0x2000-0x2fff]
    [ 0.242467] pci 0000:00:06.0: bridge window [mem 0xf0100000-0xf01fffff]
    [ 0.242477] pci 0000:00:14.4: PCI bridge to [bus 04-04]
    [ 0.242564] pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff]
    [ 0.242569] pci_bus 0000:00: resource 5 [mem 0x000c0000-0x000c1fff]
    [ 0.242573] pci_bus 0000:00: resource 6 [mem 0x000c2000-0x000c3fff]
    [ 0.242578] pci_bus 0000:00: resource 7 [mem 0x000c4000-0x000c5fff]
    [ 0.242582] pci_bus 0000:00: resource 8 [mem 0x000c6000-0x000c7fff]
    [ 0.242586] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000c9fff]
    [ 0.242590] pci_bus 0000:00: resource 10 [mem 0x000ca000-0x000cbfff]
    [ 0.242594] pci_bus 0000:00: resource 11 [mem 0x000cc000-0x000cdfff]
    [ 0.242598] pci_bus 0000:00: resource 12 [mem 0x000d0000-0x000d1fff]
    [ 0.242602] pci_bus 0000:00: resource 13 [mem 0x000d2000-0x000d3fff]
    [ 0.242606] pci_bus 0000:00: resource 14 [mem 0x000d4000-0x000d5fff]
    [ 0.242610] pci_bus 0000:00: resource 15 [mem 0x000d6000-0x000d7fff]
    [ 0.242614] pci_bus 0000:00: resource 16 [mem 0x000d8000-0x000d9fff]
    [ 0.242618] pci_bus 0000:00: resource 17 [mem 0x000da000-0x000dbfff]
    [ 0.242622] pci_bus 0000:00: resource 18 [mem 0x000dc000-0x000ddfff]
    [ 0.242626] pci_bus 0000:00: resource 19 [mem 0x000de000-0x000dffff]
    [ 0.242629] pci_bus 0000:00: resource 20 [mem 0x000e0000-0x000e1fff]
    [ 0.242633] pci_bus 0000:00: resource 21 [mem 0x000e2000-0x000e3fff]
    [ 0.242637] pci_bus 0000:00: resource 22 [mem 0x000e4000-0x000e5fff]
    [ 0.242641] pci_bus 0000:00: resource 23 [mem 0x000e6000-0x000e7fff]
    [ 0.242645] pci_bus 0000:00: resource 24 [mem 0x000e8000-0x000e9fff]
    [ 0.242649] pci_bus 0000:00: resource 25 [mem 0x000ea000-0x000ebfff]
    [ 0.242653] pci_bus 0000:00: resource 26 [mem 0x000ec000-0x000edfff]
    [ 0.242657] pci_bus 0000:00: resource 27 [mem 0x000ee000-0x000effff]
    [ 0.242661] pci_bus 0000:00: resource 28 [mem 0xe0000000-0xf7ffffff]
    [ 0.242665] pci_bus 0000:00: resource 29 [mem 0xf8000000-0xffffffff]
    [ 0.242669] pci_bus 0000:00: resource 30 [io 0x0000-0x0cf7]
    [ 0.242673] pci_bus 0000:00: resource 31 [io 0x0d00-0xffff]
    [ 0.242677] pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
    [ 0.242681] pci_bus 0000:01: resource 1 [mem 0xf0200000-0xf02fffff]
    [ 0.242685] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff]
    [ 0.242689] pci_bus 0000:02: resource 1 [mem 0xf0100000-0xf01fffff]
    [ 0.242694] pci_bus 0000:04: resource 4 [mem 0x000a0000-0x000bffff]
    [ 0.242698] pci_bus 0000:04: resource 5 [mem 0x000c0000-0x000c1fff]
    [ 0.242702] pci_bus 0000:04: resource 6 [mem 0x000c2000-0x000c3fff]
    [ 0.242706] pci_bus 0000:04: resource 7 [mem 0x000c4000-0x000c5fff]
    [ 0.242711] pci_bus 0000:04: resource 8 [mem 0x000c6000-0x000c7fff]
    [ 0.242715] pci_bus 0000:04: resource 9 [mem 0x000c8000-0x000c9fff]
    [ 0.242719] pci_bus 0000:04: resource 10 [mem 0x000ca000-0x000cbfff]
    [ 0.242723] pci_bus 0000:04: resource 11 [mem 0x000cc000-0x000cdfff]
    [ 0.242727] pci_bus 0000:04: resource 12 [mem 0x000d0000-0x000d1fff]
    [ 0.242731] pci_bus 0000:04: resource 13 [mem 0x000d2000-0x000d3fff]
    [ 0.242735] pci_bus 0000:04: resource 14 [mem 0x000d4000-0x000d5fff]
    [ 0.242739] pci_bus 0000:04: resource 15 [mem 0x000d6000-0x000d7fff]
    [ 0.242743] pci_bus 0000:04: resource 16 [mem 0x000d8000-0x000d9fff]
    [ 0.242746] pci_bus 0000:04: resource 17 [mem 0x000da000-0x000dbfff]
    [ 0.242750] pci_bus 0000:04: resource 18 [mem 0x000dc000-0x000ddfff]
    [ 0.242755] pci_bus 0000:04: resource 19 [mem 0x000de000-0x000dffff]
    [ 0.242759] pci_bus 0000:04: resource 20 [mem 0x000e0000-0x000e1fff]
    [ 0.242763] pci_bus 0000:04: resource 21 [mem 0x000e2000-0x000e3fff]
    [ 0.242767] pci_bus 0000:04: resource 22 [mem 0x000e4000-0x000e5fff]
    [ 0.242771] pci_bus 0000:04: resource 23 [mem 0x000e6000-0x000e7fff]
    [ 0.242775] pci_bus 0000:04: resource 24 [mem 0x000e8000-0x000e9fff]
    [ 0.242779] pci_bus 0000:04: resource 25 [mem 0x000ea000-0x000ebfff]
    [ 0.242783] pci_bus 0000:04: resource 26 [mem 0x000ec000-0x000edfff]
    [ 0.242787] pci_bus 0000:04: resource 27 [mem 0x000ee000-0x000effff]
    [ 0.242791] pci_bus 0000:04: resource 28 [mem 0xe0000000-0xf7ffffff]
    [ 0.242795] pci_bus 0000:04: resource 29 [mem 0xf8000000-0xffffffff]
    [ 0.242799] pci_bus 0000:04: resource 30 [io 0x0000-0x0cf7]
    [ 0.242803] pci_bus 0000:04: resource 31 [io 0x0d00-0xffff]
    [ 0.242879] NET: Registered protocol family 2
    [ 0.243147] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.245284] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 0.250181] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.250766] TCP: Hash tables configured (established 524288 bind 65536)
    [ 0.250771] TCP reno registered
    [ 0.250804] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.250858] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.251058] NET: Registered protocol family 1
    [ 0.251088] pci 0000:00:01.0: Boot video device
    [ 0.383864] PCI: CLS 32 bytes, default 64
    [ 0.383965] Unpacking initramfs...
    [ 0.478532] Freeing initrd memory: 2588k freed
    [ 0.480190] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.480198] Placing 64MB software IO TLB between ffff8800c2efd000 - ffff8800c6efd000
    [ 0.480203] software IO TLB at phys 0xc2efd000 - 0xc6efd000
    [ 0.480963] perf: AMD IBS detected (0x000000ff)
    [ 0.481379] audit: initializing netlink socket (disabled)
    [ 0.481404] type=2000 audit(1339340302.479:1): initialized
    [ 0.482558] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.487036] VFS: Disk quotas dquot_6.5.2
    [ 0.487152] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.487326] msgmni has been set to 7109
    [ 0.487931] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 0.488040] io scheduler noop registered
    [ 0.488044] io scheduler deadline registered
    [ 0.488154] io scheduler cfq registered (default)
    [ 0.488395] pcieport 0000:00:05.0: irq 40 for MSI/MSI-X
    [ 0.488550] pcieport 0000:00:06.0: irq 41 for MSI/MSI-X
    [ 0.488682] pcieport 0000:00:05.0: Signaling PME through PCIe PME interrupt
    [ 0.488687] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
    [ 0.488694] pcie_pme 0000:00:05.0:pcie01: service driver pcie_pme loaded
    [ 0.488719] pcieport 0000:00:06.0: Signaling PME through PCIe PME interrupt
    [ 0.488723] pci 0000:02:00.0: Signaling PME through PCIe PME interrupt
    [ 0.488729] pcie_pme 0000:00:06.0:pcie01: service driver pcie_pme loaded
    [ 0.488942] GHES: HEST is not enabled!
    [ 0.489246] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.490367] Linux agpgart interface v0.103
    [ 0.490508] i8042: PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSE0] at 0x60,0x64 irq 1,12
    [ 0.492943] i8042: Detected active multiplexing controller, rev 1.1
    [ 0.496025] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.496088] serio: i8042 AUX0 port at 0x60,0x64 irq 12
    [ 0.496136] serio: i8042 AUX1 port at 0x60,0x64 irq 12
    [ 0.496180] serio: i8042 AUX2 port at 0x60,0x64 irq 12
    [ 0.496225] serio: i8042 AUX3 port at 0x60,0x64 irq 12
    [ 0.496472] mousedev: PS/2 mouse device common for all mice
    [ 0.496667] rtc_cmos 00:04: RTC can wake from S4
    [ 0.497028] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    [ 0.497119] rtc0: alarms up to one month, 114 bytes nvram, hpet irqs
    [ 0.497144] cpuidle: using governor ladder
    [ 0.497148] cpuidle: using governor menu
    [ 0.497476] TCP cubic registered
    [ 0.497700] NET: Registered protocol family 10
    [ 0.498445] NET: Registered protocol family 17
    [ 0.498453] Registering the dns_resolver key type
    [ 0.499372] PM: Hibernation image not present or could not be loaded.
    [ 0.499393] registered taskstats version 1
    [ 0.500327] rtc_cmos 00:04: setting system clock to 2012-06-10 14:58:23 UTC (1339340303)
    [ 0.500417] Initializing network drop monitor service
    [ 0.502828] Freeing unused kernel memory: 732k freed
    [ 0.503217] Write protecting the kernel read-only data: 8192k
    [ 0.513112] Freeing unused kernel memory: 1628k freed
    [ 0.518185] Freeing unused kernel memory: 656k freed
    [ 0.536071] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.539774] udevd[37]: starting version 184
    [ 0.613296] usbcore: registered new interface driver usbfs
    [ 0.613442] usbcore: registered new interface driver hub
    [ 0.619684] usbcore: registered new device driver usb
    [ 0.620711] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.621584] ehci_hcd 0000:00:12.2: EHCI Host Controller
    [ 0.621640] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
    [ 0.621702] ehci_hcd 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 0.621746] QUIRK: Enable AMD PLL fix
    [ 0.621810] ehci_hcd 0000:00:12.2: debug port 1
    [ 0.621850] ehci_hcd 0000:00:12.2: irq 17, io mem 0xf034a500
    [ 0.630117] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
    [ 0.630310] SCSI subsystem initialized
    [ 0.636369] hub 1-0:1.0: USB hub found
    [ 0.636381] hub 1-0:1.0: 5 ports detected
    [ 0.636783] ehci_hcd 0000:00:13.2: EHCI Host Controller
    [ 0.636805] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2
    [ 0.636818] ehci_hcd 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 0.636859] ehci_hcd 0000:00:13.2: debug port 1
    [ 0.636884] ehci_hcd 0000:00:13.2: irq 17, io mem 0xf034a400
    [ 0.637204] libata version 3.00 loaded.
    [ 0.640574] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 0.646781] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
    [ 0.647066] hub 2-0:1.0: USB hub found
    [ 0.647076] hub 2-0:1.0: 5 ports detected
    [ 0.647328] ahci 0000:00:11.0: version 3.0
    [ 0.647600] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 1 ports 3 Gbps 0x1 impl SATA mode
    [ 0.647608] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc
    [ 0.648432] scsi0 : ahci
    [ 0.648735] ata1: SATA max UDMA/133 abar m1024@0xf034a000 port 0xf034a100 irq 19
    [ 0.648890] ohci_hcd 0000:00:12.0: OHCI Host Controller
    [ 0.648918] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 3
    [ 0.649020] ohci_hcd 0000:00:12.0: irq 18, io mem 0xf0349000
    [ 0.704676] hub 3-0:1.0: USB hub found
    [ 0.704691] hub 3-0:1.0: 5 ports detected
    [ 0.706337] ohci_hcd 0000:00:13.0: OHCI Host Controller
    [ 0.706357] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 4
    [ 0.706392] ohci_hcd 0000:00:13.0: irq 18, io mem 0xf0348000
    [ 0.761543] hub 4-0:1.0: USB hub found
    [ 0.761558] hub 4-0:1.0: 5 ports detected
    [ 1.137007] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.138642] ata1.00: ATA-8: HITACHI HTS723232A7A364, EC2ZB70B, max UDMA/100
    [ 1.138651] ata1.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.140067] ata1.00: configured for UDMA/100
    [ 1.140658] scsi 0:0:0:0: Direct-Access ATA HITACHI HTS72323 EC2Z PQ: 0 ANSI: 5
    [ 1.144742] sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
    [ 1.144844] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.144850] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.144893] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.185183] sda: sda1 sda2 sda3 sda4
    [ 1.187123] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.483438] Refined TSC clocksource calibration: 1596.599 MHz.
    [ 1.483459] Switching to clocksource tsc
    [ 1.820777] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    [ 4.075750] udevd[314]: starting version 185
    [ 4.538235] cfg80211: Calling CRDA to update world regulatory domain
    [ 4.618824] Using firmware rtlwifi/rtl8192cfw.bin
    [ 4.664522] ACPI: acpi_idle registered with cpuidle
    [ 4.677193] powernow-k8: Found 1 AMD E-350 Processor (2 cpu cores) (version 2.20.00)
    [ 4.677322] powernow-k8: 0 : pstate 0 (1600 MHz)
    [ 4.677326] powernow-k8: 1 : pstate 1 (1280 MHz)
    [ 4.677329] powernow-k8: 2 : pstate 2 (800 MHz)
    [ 5.014794] ACPI: AC Adapter [ACAD] (on-line)
    [ 5.015426] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
    [ 5.015836] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
    [ 5.016050] ACPI: Power Button [PWRB]
    [ 5.016149] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input2
    [ 5.016283] ACPI: Sleep Button [SLPB]
    [ 5.016405] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input3
    [ 5.033809] ACPI: Lid Switch [LID]
    [ 5.033969] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 5.034129] ACPI: Power Button [PWRF]
    [ 5.047632] acpi device:34: registered as cooling_device2
    [ 5.051373] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input5
    [ 5.051525] ACPI: Video Device [VGA1] (multi-head: yes rom: no post: no)
    [ 5.076994] ACPI: Battery Slot [BAT1] (battery present)
    [ 5.131780] thermal LNXTHERM:00: registered as thermal_zone0
    [ 5.131788] ACPI: Thermal Zone [THZ0] (43 C)
    [ 5.142726] wmi: Mapper loaded
    [ 5.157792] input: PC Speaker as /devices/platform/pcspkr/input/input6
    [ 5.227665] SP5100 TCO timer: SP5100 TCO WatchDog Timer Driver v0.01
    [ 5.227836] SP5100 TCO timer: mmio address 0xb80830 already in use
    [ 5.363443] Non-volatile memory driver v1.3
    [ 5.428563] atl1c 0000:02:00.0: version 1.0.1.0-NAPI
    [ 5.450972] [drm] Initialized drm 1.1.0 20060810
    [ 5.527616] ieee80211 phy0: Selected rate control algorithm 'rtl_rc'
    [ 5.529303] rtlwifi: wireless switch is on
    [ 5.694564] thinkpad_acpi: ThinkPad ACPI Extras v0.24
    [ 5.694576] thinkpad_acpi: http://ibm-acpi.sf.net/
    [ 5.694582] thinkpad_acpi: ThinkPad BIOS 8RET26WW (1.08 ), EC unknown
    [ 5.694590] thinkpad_acpi: Lenovo ThinkPad X120e, model 30515QG
    [ 5.697439] thinkpad_acpi: detected a 8-level brightness capable ThinkPad
    [ 5.698186] thinkpad_acpi: radio switch found; radios are enabled
    [ 5.698221] thinkpad_acpi: possible tablet mode switch found; ThinkPad in laptop mode
    [ 5.700698] Registered led device: tpacpi::power
    [ 5.700736] Registered led device: tpacpi::standby
    [ 5.700775] Registered led device: tpacpi::thinkvantage
    [ 5.702194] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one
    [ 5.703379] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
    [ 5.708361] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input7
    [ 5.766552] ACPI Warning: 0x0000000000000b00-0x0000000000000b07 SystemIO conflicts with Region \_SB_.PCI0.SMB_.SMB0 1 (20120111/utaddress-251)
    [ 5.766583] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 5.767192] snd_hda_intel 0000:00:01.1: irq 42 for MSI/MSI-X
    [ 5.780051] [drm] radeon defaulting to kernel modesetting.
    [ 5.780059] [drm] radeon kernel modesetting enabled.
    [ 5.817461] HDMI status: Codec=0 Pin=3 Presence_Detect=0 ELD_Valid=0
    [ 5.817754] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/sound/card0/input8
    [ 6.023285] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input9
    [ 6.032362] [drm] initializing kernel modesetting (PALM 0x1002:0x9802 0x17AA:0x21EC).
    [ 6.033956] [drm] register mmio base: 0xF0300000
    [ 6.033959] [drm] register mmio size: 262144
    [ 6.034116] ATOM BIOS: Lenovo
    [ 6.034164] radeon 0000:00:01.0: VRAM: 384M 0x0000000000000000 - 0x0000000017FFFFFF (384M used)
    [ 6.034170] radeon 0000:00:01.0: GTT: 512M 0x0000000018000000 - 0x0000000037FFFFFF
    [ 6.034639] [drm] Detected VRAM RAM=384M, BAR=256M
    [ 6.034646] [drm] RAM width 32bits DDR
    [ 6.037931] [TTM] Zone kernel: Available graphics memory: 1821664 kiB.
    [ 6.037938] [TTM] Initializing pool allocator.
    [ 6.037949] [TTM] Initializing DMA pool allocator.
    [ 6.038006] [drm] radeon: 384M of VRAM memory ready
    [ 6.038010] [drm] radeon: 512M of GTT memory ready.
    [ 6.038055] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 6.038059] [drm] Driver supports precise vblank timestamp query.
    [ 6.038123] radeon 0000:00:01.0: irq 43 for MSI/MSI-X
    [ 6.038144] radeon 0000:00:01.0: radeon: using MSI.
    [ 6.038191] [drm] radeon: irq initialized.
    [ 6.038201] [drm] GART: num cpu pages 131072, num gpu pages 131072
    [ 6.041298] [drm] radeon: ib pool ready.
    [ 6.043305] [drm] Loading PALM Microcode
    [ 6.088021] [drm] PCIE GART of 512M enabled (table at 0x0000000000040000).
    [ 6.088318] radeon 0000:00:01.0: WB enabled
    [ 6.088330] [drm] fence driver on ring 0 use gpu addr 0x18000c00 and cpu addr 0xffff880118705c00
    [ 6.110048] [drm] ring test on 0 succeeded in 1 usecs
    [ 6.111109] [drm] ib test on ring 0 succeeded in 0 usecs
    [ 6.111934] [drm] Radeon Display Connectors
    [ 6.111938] [drm] Connector 0:
    [ 6.111940] [drm] LVDS
    [ 6.111943] [drm] HPD1
    [ 6.111947] [drm] DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
    [ 6.111950] [drm] Encoders:
    [ 6.111953] [drm] LCD1: INTERNAL_UNIPHY
    [ 6.111956] [drm] Connector 1:
    [ 6.111958] [drm] HDMI-A
    [ 6.111960] [drm] HPD2
    [ 6.111964] [drm] DDC: 0x6440 0x6440 0x6444 0x6444 0x6448 0x6448 0x644c 0x644c
    [ 6.111967] [drm] Encoders:
    [ 6.111969] [drm] DFP1: INTERNAL_UNIPHY
    [ 6.111971] [drm] Connector 2:
    [ 6.111973] [drm] VGA
    [ 6.111977] [drm] DDC: 0x64d8 0x64d8 0x64dc 0x64dc 0x64e0 0x64e0 0x64e4 0x64e4
    [ 6.111980] [drm] Encoders:
    [ 6.111982] [drm] CRT1: INTERNAL_KLDSCP_DAC1
    [ 6.112043] [drm] Internal thermal controller without fan control
    [ 6.112128] [drm] radeon: power management initialized
    [ 6.151134] psmouse serio4: synaptics: Touchpad model: 1, fw: 8.0, id: 0x1e2b1, caps: 0xd001a3/0x940300/0x121c00
    [ 6.151161] psmouse serio4: synaptics: serio: Synaptics pass-through port at isa0060/serio4/input0
    [ 6.194596] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input10
    [ 6.588128] [drm] fb mappable at 0xE0142000
    [ 6.588135] [drm] vram apper at 0xE0000000
    [ 6.588139] [drm] size 4325376
    [ 6.588142] [drm] fb depth is 24
    [ 6.588145] [drm] pitch is 5632
    [ 6.588616] fbcon: radeondrmfb (fb0) is primary device
    [ 7.109264] Console: switching to colour frame buffer device 170x48
    [ 7.118245] fb0: radeondrmfb frame buffer device
    [ 7.118248] drm: registered panic notifier
    [ 7.118262] [drm] Initialized radeon 2.13.0 20080528 for 0000:00:01.0 on minor 0
    [ 7.852228] EXT4-fs (sda3): re-mounted. Opts: (null)
    [ 7.961705] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
    [ 8.003845] EXT4-fs (sda1): mounting ext2 file system using the ext4 subsystem
    [ 8.011207] EXT4-fs (sda1): mounted filesystem without journal. Opts: (null)
    [ 8.094702] Adding 15623208k swap on /dev/sda2. Priority:-1 extents:1 across:15623208k
    [ 9.918662] atl1c 0000:02:00.0: irq 44 for MSI/MSI-X
    [ 9.999979] ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 12.082650] IBM TrackPoint firmware: 0x0e, buttons: 3/3
    [ 12.315710] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio4/serio5/input/input11
    [ 13.383760] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 15.701075] wlan0: authenticate with 0c:60:76:4a:8c:44 (try 1)
    [ 15.702630] wlan0: authenticated
    [ 15.725379] wlan0: associate with 0c:60:76:4a:8c:44 (try 1)
    [ 15.728291] wlan0: RX AssocResp from 0c:60:76:4a:8c:44 (capab=0x411 status=0 aid=2)
    [ 15.728299] wlan0: associated
    [ 15.728306] wlan0: moving STA 0c:60:76:4a:8c:44 to state 1
    [ 15.728310] wlan0: moving STA 0c:60:76:4a:8c:44 to state 2
    [ 15.729381] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    [ 16.085499] EXT4-fs (sda3): re-mounted. Opts: user_xattr,acl,barrier=1,data=ordered,commit=360
    [ 16.126474] Intel AES-NI instructions are not detected.
    [ 16.133570] EXT4-fs (sda4): re-mounted. Opts: user_xattr,acl,barrier=1,data=ordered,commit=360
    [ 16.140127] wlan0: moving STA 0c:60:76:4a:8c:44 to state 3
    [ 16.184502] EXT4-fs (sda1): re-mounted. Opts: user_xattr,acl,barrier=1
    [ 24.359763] EXT4-fs (sda3): re-mounted. Opts: commit=0
    [ 24.565842] EXT4-fs (sda4): re-mounted. Opts: commit=0
    [ 26.590021] wlan0: no IPv6 routers present
    [ 42.605282] fuse init (API version 7.18)
    dmesg with a non-working trackpoint:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.3.8-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.0 20120505 (prerelease) (GCC) ) #1 SMP PREEMPT Tue Jun 5 15:20:32 CEST 2012
    [ 0.000000] Command line: root=/dev/sda3 ro
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009d800 (usable)
    [ 0.000000] BIOS-e820: 000000000009d800 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 00000000c6efd000 (usable)
    [ 0.000000] BIOS-e820: 00000000c6efd000 - 00000000c730d000 (reserved)
    [ 0.000000] BIOS-e820: 00000000c730d000 - 00000000c738d000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000c738d000 - 00000000c73ed000 (ACPI data)
    [ 0.000000] BIOS-e820: 00000000c73ed000 - 00000000c7e00000 (usable)
    [ 0.000000] BIOS-e820: 00000000c7e00000 - 00000000c8000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fed00000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed80000 - 00000000fed81000 (reserved)
    [ 0.000000] BIOS-e820: 00000000ffe00000 - 0000000100000000 (reserved)
    [ 0.000000] BIOS-e820: 0000000100000000 - 000000011f000000 (usable)
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI 2.6 present.
    [ 0.000000] DMI: LENOVO 30515QG/30515QG, BIOS 8RET26WW (1.08 ) 06/20/2011
    [ 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 = 0x11f000 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-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F80000000 write-back
    [ 0.000000] 1 base 080000000 mask FC0000000 write-back
    [ 0.000000] 2 base 0C0000000 mask FF8000000 write-back
    [ 0.000000] 3 base 0FFF90000 mask FFFFF0000 uncachable
    [ 0.000000] 4 base 0FED80000 mask FFFFFF000 uncachable
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 base 0FFE00000 mask FFFE00000 write-protect
    [ 0.000000] TOM2: 000000011f000000 aka 4592M
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] last_pfn = 0xc7e00 max_arch_pfn = 0x400000000
    [ 0.000000] initial memory mapped : 0 - 20000000
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 20480
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000c7e00000
    [ 0.000000] 0000000000 - 00c0000000 page 1G
    [ 0.000000] 00c0000000 - 00c7e00000 page 2M
    [ 0.000000] kernel direct mapping tables up to c7e00000 @ 1fffe000-20000000
    [ 0.000000] init_memory_mapping: 0000000100000000-000000011f000000
    [ 0.000000] 0100000000 - 011f000000 page 2M
    [ 0.000000] kernel direct mapping tables up to 11f000000 @ c7dfe000-c7e00000
    [ 0.000000] RAMDISK: 37d69000 - 37ff0000
    [ 0.000000] ACPI: RSDP 00000000000f00e0 00024 (v04 LENOVO)
    [ 0.000000] ACPI: XSDT 00000000c73ec120 00074 (v01 LENOVO TP-8R 00000003 PTEC 00000002)
    [ 0.000000] ACPI: FACP 00000000c73da000 000F4 (v04 LENOVO TP-8R 00001080 PTL 00000002)
    [ 0.000000] ACPI: DSDT 00000000c73dc000 0EAF9 (v01 LENOVO TP-8R 00001000 PTEC 00001080)
    [ 0.000000] ACPI: FACS 00000000c7378000 00040
    [ 0.000000] ACPI: SLIC 00000000c73eb000 00176 (v01 LENOVO TP-8R 00001080 PTEC 00000001)
    [ 0.000000] ACPI: HPET 00000000c73d9000 00038 (v01 LENOVO TP-8R 00001080 PTL 00000002)
    [ 0.000000] ACPI: APIC 00000000c73d8000 0005E (v02 LENOVO TP-8R 00001080 PTL 00000002)
    [ 0.000000] ACPI: MCFG 00000000c73d7000 0003C (v01 LENOVO TP-8R 00001080 PTL 00000002)
    [ 0.000000] ACPI: UEFI 00000000c73d6000 0003E (v01 LENOVO TP-8R 00001080 PTL 00000002)
    [ 0.000000] ACPI: UEFI 00000000c73d5000 00042 (v01 PTL COMBUF 00000001 PTL 00000001)
    [ 0.000000] ACPI: SSDT 00000000c73d4000 003DE (v01 AMD POWERNOW 00000001 AMD 00000001)
    [ 0.000000] ACPI: SSDT 00000000c73d2000 012FA (v02 AMD ALIB 00000001 MSFT 04000000)
    [ 0.000000] ACPI: UEFI 00000000c73d1000 0013E (v01 LENOVO TP-8R 00001080 PTL 00000002)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at 0000000000000000-000000011f000000
    [ 0.000000] Initmem setup node 0 0000000000000000-000000011f000000
    [ 0.000000] NODE_DATA [000000011effb000 - 000000011effffff]
    [ 0.000000] [ffffea0000000000-ffffea00047fffff] PMD -> [ffff88011ac00000-ffff88011e5fffff] on node 0
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] DMA32 0x00001000 -> 0x00100000
    [ 0.000000] Normal 0x00100000 -> 0x0011f000
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] Early memory PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009d
    [ 0.000000] 0: 0x00000100 -> 0x000c6efd
    [ 0.000000] 0: 0x000c73ed -> 0x000c7e00
    [ 0.000000] 0: 0x00100000 -> 0x0011f000
    [ 0.000000] On node 0 totalpages: 944285
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 5 pages reserved
    [ 0.000000] DMA zone: 3912 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 16320 pages used for memmap
    [ 0.000000] DMA32 zone: 797008 pages, LIFO batch:31
    [ 0.000000] Normal zone: 1984 pages used for memmap
    [ 0.000000] Normal zone: 124992 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x808
    [ 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 33, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 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: 0x43538210 base: 0xfed00000
    [ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
    [ 0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 00000000c6efd000 - 00000000c730d000
    [ 0.000000] PM: Registered nosave memory: 00000000c730d000 - 00000000c738d000
    [ 0.000000] PM: Registered nosave memory: 00000000c738d000 - 00000000c73ed000
    [ 0.000000] PM: Registered nosave memory: 00000000c7e00000 - 00000000c8000000
    [ 0.000000] PM: Registered nosave memory: 00000000c8000000 - 00000000fec00000
    [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fed00000
    [ 0.000000] PM: Registered nosave memory: 00000000fed00000 - 00000000fed80000
    [ 0.000000] PM: Registered nosave memory: 00000000fed80000 - 00000000fed81000
    [ 0.000000] PM: Registered nosave memory: 00000000fed81000 - 00000000ffe00000
    [ 0.000000] PM: Registered nosave memory: 00000000ffe00000 - 0000000100000000
    [ 0.000000] Allocating PCI resources starting at c8000000 (gap: c8000000:36c00000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:2 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88011ec00000 s82176 r8192 d24320 u1048576
    [ 0.000000] pcpu-alloc: s82176 r8192 d24320 u1048576 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 925912
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: root=/dev/sda3 ro
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 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: 3637724k/4702208k available (4496k kernel code, 925068k absent, 139416k reserved, 4326k data, 732k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Verbose stalled-CPUs detection is disabled.
    [ 0.000000] NR_IRQS:4352 nr_irqs:512 16
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 15204352 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgr

    OK, ignore my last post pointing the finger at udev.
    I poked around in the kernel code; it was actually kinda fun. Now this looks more like either a hardware problem (unlikely) or a driver bug (more likely) to me:
    http://ubuntuforums.org/showthread.php?t=1894892
    Thought I'd pass along what I found.
    During a boot, the kernel will "walk" all the buses looking for devices. The methods used to find them on some buses (like PCI) are well defined, while others are not (like the serial bus). On those buses that aren't well defined the kernel will (probably) literally "probe" the bus trying to not only find a device, but also determine the exact chip installed.
    It's the second case that's involved in your problem. The serio driver found the Synaptics touchpad device (via probing). If you look closely at the kernel log, you'll see it's attached to your i8042 (PS/2) chip.  But... since this touchpad device has a "passthru port", it has to perform extra steps to determine if there's a chip on the "other side" of that touchpad chip. In your case there is, and it's your Trackpoint.
    If it's successful in finding the Trackpoint chip, the drivers/input/mouse/trackpoint.c kernel driver file will put the following in your syslog:
    IBM TrackPoint firmware: 0x0e, buttons: 3/3
    Which is what you see in your logs when it works. Since you don't see it when it fails, then the code probably isn't being executed or it's failing with an error condition.
    Now... when a driver finds a device, it usually (but not always) creates some virtual "files" in the /sys directory... and that's what will happen if that trackpoint.c code is executed...
    input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio4/serio5/input/input11
    So... one question is... "Does it create something in /sys when it fails?". From looking at the code, I highly doubt it.
    Although this looks somewhat improbable, if the error path for this section of the code in the trackpoint_detect function of /drivers/input/mouse/trackpoint.c file is executed then it looks like it might match your error:
    psmouse->private = kzalloc(sizeof(struct trackpoint_data), GFP_KERNEL);
    if (!psmouse->private)
    return -ENOMEM;
    Perhaps you might want to put some sort of printk call in there to see if that's what's happening. Heck, also add one to the top of the function to see if it's even being called.
    Good luck.

  • This method should not be called anymore. The client was already released i

    Hi,
    while configuring Business Packager for Projects 50.3 fo, we made few changes in R/3 side as per the documentation. after that we are getting following error in portal
    "This method should not be called anymore. The client was already released into the pool or the pool entry was deleted"
    all the chages were reverted in R/3 system still we are getting the same error.
    Can any one help on this issue....
    Thanks in advance and for early responce higher marks would be awarded!!!..     
    Regards
    Ravi Sankar Karri

    Hi,
    Well there were errors in how stop works:
    "Stopping a thread with Thread.stop causes it to
    unlock all of the monitors that it has locked (as a
    natural consequence of the unchecked ThreadDeath
    exception propagating up the stack). If any of the
    objects previously protected by these monitors were in
    an inconsistent state, the damaged objects become
    visible to other threads, potentially resulting in
    arbitrary behavior. "
    I do understand that you want to have something like
    killTheTreadIDontCareAboutConcequences-method, but
    it's better to let all your methods that you want to
    be able to terminate take a timeout argument, and deal
    with the termination in the method. (Close the
    sockets/streams etc that you are blocking on).
    /KajThe point is, it is not always possible to make those blocking methods stop, via some magic "timeout" thingamabob. The bottom line is still that the blocking methods were written incorrectly to begin with (to possibly block indefinitely), so one cannot come up with an across-the-board solution, other than getting the root cause fixed in the first place. However, one is not always in control of fixing the root cause.

  • HT1338 My MacBook Pro (running Leopard 10.5.8) won't allow keyboard to type an upper case 'C' using the shift key...works fine with caps lock, or, with my Typinator workaround using double-typed lower case c (not always best). Any ideas?

    My MacBook Pro keyboard won't type an upper case 'C' using the shift key... only with caps lock. Workaround has been to use Typinator by typing a double lower case c, not always the best solution. Mac is a refurbished model, which initially was fine. Apple tech helped me correct the quirk when it first appeared, but now it has returned and refuses fixes. Any ideas?

    I'm willing to bet that this has something to do with iCloud.  I've been facing a frozen computer nearly every time I go into it. 
    In Activity Monitor I have seen two programs associate with iCloud that take up about 2.5 GB of memory (I only have 4 in the computer) -- causing everything to freeze.  One of these is called "iCloud Helper" and the other one is something like "Address Book Sync helper" -- I see parts of these names in the stuff you have posted.
    I am at my wits' end with these and have written to Apple asking them to do away with these or fix them.  To get rid of the Address book sync thing I have gone into system preferences for iCloud and unchecked Contacts -- but then spontaneously it gets rechecked.  And oftentimes after I Force Quit the iCloud helper, it spontaneously turns on again.  My conclusion --- the iCloud is basically unusable.  It turns a Mac into the most useless, clogged, sluggish PC.  If this is happening to a lot of people's computers -- and I see no reason why yours or mine should be an exception -- these programs just might destroy Apple itself. 
    So -- I'm about to completely give up on iCloud, and I suspect that others will too unless this gets fixed.
    Cheers,
    Bob

  • Backing file init method always called for proxy portlets

    Hello,
    We are currently using Weblogic Portal 10 MP1. Deployed within our Portal EAR is a local proxy portlet and attached to this proxy portlet is a backing file, which currently implements the init() and prerender() methods from the backing interface.
    When this is placed in a page that is within a desktop, the init() method is always invoked no matter which page you access within the desktop. As I understand it from the documentation, if you have "tree optimization" turned on, then the init() method will only be called when rendering the actual page the proxy portlet is in. But this doesn't seem to be the case. However, if I define a standard Java portlet within the EAR and attach a backing file, then the init() follows the rules when tree optimization is turned on or off.
    Does anyone know if this is a defect within the portal framework, or is this expected and proxy portlets do not follow this rule?
    And I guess, if it is a defect or known limitation, is there a possible workaround? I assume the simplest workaround will be to move the logic into the prerender() method.
    Regards,
    Jonathan

    Hello Jonathan,
    Tree optimization is a tricky thing- some portlets may still be initialized even when the page they are on isn't visible. The rules for which get initialized and which don't are very complicated and depend on a number of things, so it is just best to not rely on the init() method not getting called.
    By far the best option for your use-case is to have the proxy portlet listen to the "onRefresh" event, and move the logic from the backing file's init() method into an event-handling method in the backing file, then have this method called when the refresh event is received. Here's a sample portion of the .portlet file for doing this:
    <netuix:handlePortalEvent event="onRefresh" eventLabel="onRefreshEvent">
        <netuix:invokeBackingFileMethod method="handleRefreshEvent"/>
    </netuix:handlePortalEvent>The "onRefresh" event is sent to the portlet only when it is visible on the page, so it should work perfectly for your use-case.
    Kevin

  • ITunes sharing on ipad is not always available.

    iTunes sharing on ipad is not always available.  I have a windows pc and shared is enabled in iTunes and iPad.  All signed.  One day I see the share option. Next day, no matter what I do including disabling the firewall, no shared library. Help!
    This worked consistently on OS 4.3 but only once in OS 5.0

    Click once on the sleep/wake button to ignore the caller and the call will eventually
    go to voicemail. Click twice to send the caller directly to email.

  • New (1.5) add(*) method does not always equal to getContentPane().add(*);

    Just came across something people might not be aware of,
    The add(*) method provided in 1.5 does not always produce the same result as getContentPane().add(*)...
    Setting the contentPane (of a JFrame) to a JTabbedPane should mean that when you "add" a component (using the add(somComponent)) you get (according to the documentation) a tab whose text defaults to c.getName(). However, when you call add(someComponent) you get no tab text....changing the call to getContentPane().add(someComponent) brings it back...
    Bit odd....
    Thanks,
    Michael

    I don't use 1.5 so I can't comment, but this months [url http://java.sun.com/developer/JDCTechTips/]Core Java Technology Tech Tip may (or may not) help.

  • MODX_FUNCTION_ACTIVE_CHECK always called before SMOD / CMOD exit?

    Hello,
    am I right to assume that the function module MODX_FUNCTION_ACTIVE_CHECK is always called before a SMOD / CMOD customer exit function module is called?
    I have already searched SDN and SAP Notes and SAP Help, but I could not find a clear statement.
    Kind regards
    Martin
    Edited by: Martin Schlegel on Feb 4, 2008 4:28 PM

    Hello Mike, thank you for your fast answer.
    Like you, I have the impression that this function should be called alle the time before an SMOD/CMOD enhancement EXIT_... Function is called.
    But I would like to be 100% sure.
    Kind regards
    Martin

  • JList bug, not always updates its UI

    I am using JList with a vector containing the data. (have call setListData() for the vector). when i add an element in the vector and call updateUI() method of JList, it updates its UI but not always. 20% of the time it fails to do so. Any Solution?

    Yeah, I have called repaint(), but the result is the same.
    repaint() does not work either. I have tried so many methods.
    like show() hide() repaint() invalidate() etc. etc. and much more but no one is working.
    Asim...

  • Bug: not always staying on top

    Under Edit > Preferences > Advanced > General I checked "Keep MiniPlayer on top of all other windows". However this does not always work for me, and seems that when I listen to streaming music (Radio) and the station needs to rebuffer the stream, when the music resumes the setting doesn't stick (Also annoying is the pop-under nature of the rebuffering window, with no indication in the iTunes MiniPlayer that it's rebuffering). My temporary fix has been to return it to the normal view, then back to the MiniPlayer, after which it sticks again until the next rebuffering.
    I'm on WinXP SP3 with iTunes 7.7.1.11 - haven't tried this with v8.

    Hi all
    In addition to JulieW's excellent suggestion, and this was
    somewhat alluded to by DilbertG, I've had this happen to me from
    time to time. Even though I looked at the timeline, mouse was
    sitting right there on the top layer all big as life and twice as
    natural.
    My fix? - Drag the mouse to the bottom of the timeline
    layers. Now move to a different slide to call it into the editor.
    Then move
    back to the original slide and drag the mouse back to the
    top of the timeline layers.
    Hopefully this helps... Rick

  • Get method of HtmlPanelGrid is not getting called

    Hi,
    I'm creating components dynamically.
    I have a dropdown. Based on the selection of dropdown, the corresponding values are displayed and the get method of HtmlPanelGrid should be called.
    First time the panel grid getmethod is getting called. But when i change the value of drop down, panel grid get method is not getting called and its not rendering.
    This is the code:
    JSF:
    Drop Down
    <h:panelGroup>
    <t:selectOneMenu id="selectProjectTypes" onchange="sbmitform();" immediate="true" valueChangeListener="#{ProjectController.projectTypeChanged}" value="#{ProjectController.project.selectProjectTypes}">
    <f:selectItem itemLabel="--------------------" itemValue="-1"/>
    <f:selectItems value="#{ProjectController.projectTypesList}"/>
    </t:selectOneMenu>
    </h:panelGroup>
    Panel Grid
    <h:panelGrid columns="2" rendered="#{ProjectController.projects}" id="test" binding="#{ProjectController.defaultValues}" columnClasses="hunderadfifty" cellpadding="5" />
    Controller:
    public void projectTypeChanged(ValueChangeEvent event) throws AbortProcessingException,Exception {
    String nodeTypeId = null;
    String selectedValue = (String)event.getNewValue();
    getSessionCache().addValue("test", 0, "1");
    if(selectedValue.equalsIgnoreCase(selectedValue)){
    try
    // this.getDefaultValues().setRendered(true);
    // defaultValues=this.getDefaultValues();
    } catch (Exception e)
    e.printStackTrace();
    FacesContext.getCurrentInstance().renderResponse();
    Panel Grid Method
    *public HtmlPanelGrid getDefaultValues() throws Exception {*
    String devlues = (String)getSessionCache().getValue("test");
    Application app = FacesContext.getCurrentInstance().getApplication();
    labelList = nodeTypeFieldsService.getFixedFields(this.getRpUserData(), this.getAuthUser());
    HtmlPanelGrid panelGrid = (HtmlPanelGrid)app.createComponent(HtmlPanelGrid.COMPONENT_TYPE);
    for(int i = 0; i<labelList.size(); i++)
    HtmlOutputText heading = (HtmlOutputText)app.createComponent(HtmlOutputText.COMPONENT_TYPE);
    HtmlPanelGroup panelGroup = (HtmlPanelGroup)app.createComponent(HtmlPanelGroup.COMPONENT_TYPE);
    HtmlInputText inputText = (HtmlInputText)app.createComponent(HtmlInputText.COMPONENT_TYPE);
    String fieldHeading =((ProjectField)labelList.get(i)).getFieldHeading();
    int fieldLength = ((ProjectField)labelList.get(i)).getFieldLength();
    String fieldDescription = ((ProjectField)labelList.get(i)).getFieldDescription();
    String fieldType = ((ProjectField)labelList.get(i)).getFieldType();
    inputText.setValueBinding("value", (ValueBinding) app.createValueBinding("#{ProjectController.newProj}"));
    if(fieldType.equalsIgnoreCase("3"))
    heading.setValue(fieldHeading);
    heading.setTitle(fieldDescription);
    inputText.setMaxlength(fieldLength);
    inputText.setSize(fieldLength);
    UIRDDialog dialog = (UIRDDialog)app.createComponent(UIRDDialog.COMPONENT_TYPE);
    dialog.setTitle("Object Type Dialog");
    dialog.setHeight("370");
    dialog.setWidth("350");
    dialog.setUrl("searchObjectTypeDialog.jsf");
    UIRDIconButton iconButton = (UIRDIconButton)app.createComponent(UIRDIconButton.COMPONENT_TYPE);
    iconButton.setType("button");
    iconButton.setTitle("Search for Object Types");
    iconButton.setIcon("/image/icon/portalicon_search.gif");
    iconButton.setActivateDialog("searchObjectTypeDialog");
    panelGroup.getChildren().add(inputText);
    panelGroup.getChildren().add(iconButton);
    panelGroup.getChildren().add(dialog);
    panelGrid.getChildren().add(panelGroup);
    }else
    panelGroup.getChildren().add(inputText);
    heading.setValue(fieldHeading);
    inputText.setMaxlength(fieldLength);
    inputText.setSize(fieldLength);
    heading.setTitle(fieldDescription);
    panelGrid.getChildren().add(panelGroup);
    panelGrid.getChildren().add(heading);
    panelGrid.getChildren().add(panelGroup);
    HtmlCommandButton createButton = (HtmlCommandButton)app.createComponent(HtmlCommandButton.COMPONENT_TYPE);
    createButton.setId("create");
    createButton.setTitle("Create");
    createButton.setValue("Skapa");
    createButton.setAction(app.createMethodBinding("#{ProjectController.saveProject}", null));
    HtmlCommandButton backButton = (HtmlCommandButton)app.createComponent(HtmlCommandButton.COMPONENT_TYPE);
    backButton.setId("back");
    backButton.setTitle("Cancel");
    backButton.setValue("Avbryt");
    backButton.setAction(app.createMethodBinding("#{ProjectController.cancel}", null));
    panelGrid.getChildren().add(createButton);
    panelGrid.getChildren().add(backButton);
    return panelGrid;
    /* } else {
    return null;
    kindly help me out.
    regards
    venkatraman.P

    Hi,
    I'm having the exact same problem, and it's freaking me out!!! The setGridPanel method is always called but not the getGridPanel. This one is only called the first time the page is rendered, and when I change a drodpdownlist it never gets the gridPanel again! I'm using an HtmlPanelGrid. Anyone can help please?
    Thanks in advance,
    Raquel

Maybe you are looking for

  • How to get trash folder in finder?

    How to get trash folder in finder?

  • Problem to generate secret field with JHeadstart 10.1.3.1.0

    Hi, I'm experimentig the new version of Jheadstart and I have a problem to generate a JSF page with a secret field using the Oracle JHeadstart 10.1.3 Evaluation Version. In fact when I change the display filed in the jheadstart Application Definition

  • Airport and Apple Script - on and off script

    I've had this problem for a while, trying to turn the airport card in a computer on and off using and apple script. i need it to automatically turn on or off depending on which account if logging into the computer. I did find that a solution can be f

  • LDAPRealm and Microsoft Site Server, server halting at start-up

    I have problem setting up the LDAPRealm in Weblogic Commerce 2.0.1 and Personalisation Server connecting to a Microsoft Site Server. The ldaprealm.properties file is as below: weblogic.security.ldaprealm.url=ldap://localhost:389 weblogic.security.lda

  • OLE - Translate from VB to Abap

    Hi All, I'm writing a program in OLE that creates a Word document with a table inside. I want to change the rows width. I run a macro in Word and I got this VB code : Selection.Tables(1).Rows(3).SetHeight RowHeight:=33.85, HeightRule:= _ wdRowHeightA