Use of RSAU_READ_MASTER_DATA in ncharacteristic routine?

In what case do we use said FM?
I mean if I can directly read  attribute of an infoobject . Why we need a FM to read the same?

Hi,
Some times it is not possible to select Master Data attributes directly using the "Master Data Attribute Value of" option. If this is your requirement, you can get the master data attribute values by writing a simple ABAP Routine in your UR's.
In other words for a more complex master data read or if the characteristic is not available in the communication structure,
you have to implement the master data read yourself in a routine for the specific characteristic.
I also never used, just came across the FM once.
Please goto thru the some of the example on below link, it might clear your doubt:
http://wiki.sdn.sap.com/wiki/display/BI/Useful%20functions%20for%20Data%20Transformation?bc=true
Thanks,
Jitender.

Similar Messages

  • Can we use Perform statement in start routine ,Form and endform.

    Hi,
    Can we use Perform statement in start routine ? Then write the ABAP code between Form and Endform.
    Example : Can I use Perform ABC in start routine. Then define ABC at the end of start routine.
          Form ABC,
          ......<ABAP> code .....
          Endform.

    Hi,
    In BI 7.0 we have start routines defined using Class where you might be able to create your own performs, but in case of BW3.5 Start routines are defined using Form so there I don't think it will allow you to create one more form.
    But you can surely try both the approaches.
    Reards,
    Durgesh.

  • Using MAX in transformations / Start Routine

    Hi,
    I am trying to use MAX function in an ABAP routine (transformation / Start) and it shows following error -
    "Unknown column name "MAX(/BIC/ZQMCOUNT)" until runtime, you cannot specify a field list.". Here is part of my code -
    >>
    data: v_counter(10) type n.
    SELECT MAX(/BIC/ZQMCOUNT)
    INTO v_counter
    FROM /BIC/AZDPM_DS300.
    <<
    Any thoughts please.
    Regards
    Vikash

    Hi there,
    Sometimes you have to put some spaces between the parantehsis in the max, min or count, like this:
    data: v_counter(10) type n.
    SELECT MAX( /BIC/ZQMCOUNT )
    INTO v_counter
    FROM /BIC/AZDPM_DS300.
    Can you try that?
    Diogo.

  • Using user-defined transport recording routine with table maintenance view?

    Hi,
    I have  a table that is maintained through a maintenance view. I need to record the changes to a dedicated transport object (not TABU) with my own recording routine instead of teh standard recording routine.Could someone tell me which/how the events can be used to achieve this?
    Regards
    Rachana

    Hi Rajeev,
    I have changed TMG to choose the option - User defined routine. And I have created a new transport object in SOBJ for the table. Is this enough to record the object to the transport as the object i defined instead of TABU? Do I need to write some subroutine for any view event to achieve this? Do you mean to use the menu option to include the object to a request?
    I have a bigger problem where this view is actually part of a view cluster. Even in that case is teh above steps enough?
    Regards
    Rachana

  • Data transfer process: use values of filter in routine

    Hi,
    I create a filter in the data transfer process (RSA1). There are two infoobjects (ZABC, ZXYZ) in the filter.
    I fill the first select-option (parameter) with the value u2018AAAAu2019. At the second line I create the filter routine:
    form compute_/BIC/ZXYZ
       tables l_t_range structure rssdlrange
       changing p_subrc like sy-subrc.
    In this routine I want to use the value u2018AAAAu2019 of ZABC:
    SELECT SINGLE *
    INTO lw_test
    FROM /BIC/MZXYZ
    WHERE
       /BIC/ZBCA =  (Select-option value from ZABC = u2018AAAAu2019)
    Then I want to make a new entry in l_t_range from lw_test.
    I thought that the Select-option will be in the table l_t_range. But there is only a record when it was also set by an ABAP-Routine but not the manual entries in RSA1.
    How can I use the select-option from the filter?
    Thanks in advance
    Tobias Mattes
    Edited by: Tobias Mattes on Jan 30, 2009 1:33 PM
    Edited by: Tobias Mattes on Jan 30, 2009 1:34 PM

    Can you try to combine them into one routine?  In other words, fill the range for both in the same routine - that way, you'll have all the values available to you.
    For example:
    l_t_range-iobjnm = 'ZABC'.
    l_t_range-fieldname = 'ZABC'.
    l_t_range-sign = 'I'.
    l_t_range-option = 'BT'.
    l_t_range-low = '2006001'.
    l_t_range-high = '2006012'.
    l_t_range-iobjnm = 'ZXYZ'.
    l_t_range-fieldname = 'ZXYZ'.
    l_t_range-sign = 'I'.
    l_t_range-option = 'BT'.
    l_t_range-low = '0101010'.
    l_t_range-high = '0101099'.

  • Where used report for output message routines

    Hi folks,
    we are running a multiclient ERP system and actually we are having many many output message routines created like RV61B961. Is there an easy way to figure out, if this routines are still in use? I need to reduce the amount.
    Thanks for any help, Stefan

    Hi,
       You can get the routines which are in use, from table T683S.
       T683S - KOBED will give you the routines in use against the procedure and application. You can download the list from each client and get the consolidated list.
    Regards,
    AKPT

  • I have several disks with many comedy routines;I want to select a few from each disk and combine them to one disk for my personal use.How?

    I have several disks with many comedy routines;I want to select a few from each disk to make one single disk for my personal use.How?

    Copy the routines into a new folder on your hard drive. Then burn the folder to a new blank disc using Disk Utility.

  • Hi loading last 2 months data using abap routine

    we are planning to write a routine in infopackage level,
    using the option 6-ABAP routine, to select the last 2 month data ,
    we have the time characteristics 0CALMONTH, At present we managing the load by manually changing the selection for last 2 month every time ,
    It would be a great help if anybody can show a sample code to select last 2 month data,
    Thanks,

    Hi,
    data: l_idx like sy-tabix.
    DATA: lv_calmonth LIKE /BI0/SCALMONTH-CALMONTH.
    DATA: lv_day TYPE DATS.
    "previous month
    lv_day = SY-DATUM.
    lv_day+6(2) = '01'.
    lv_day = lv_day - 1.
    lv_calmonth = lv_day(6).
    READ TABLE l_t_range with key fieldname = 'CALMONTH'.
    l_idx = sy-tabix.
    MOVE lv_calmonth TO l_t_range-low.
    MODIFY l_t_range INDEX l_idx.
    "previous month - 1
    lv_day+6(2) = '01'.
    lv_day = lv_day - 1.
    lv_calmonth = lv_day(6).
    MOVE lv_calmonth TO l_t_range-low.
    APPEND l_t_range.
    p_subrc = 0.
    let me know if this works.... not sure about the last append.
    Olivier.

  • Defining a customer method in start routine and using in char-routines

    Hi,
    can I define an own method in start routine and use this method in several routines for characteristics or key-figures?
    If yes, can anybody give me a short description where to define the new method (e.g. in wich section of the start routine), where to implement the new method and how to use the new method in transformation of char or key-figures.
    Thanks for your help
    Thomas

    Hi,
    If you are looking for something like global method it is not possible. But you can create a function module in SE37 and you can use the same wherever you want.
    Regards
    Githen

  • Raising cx_rsrout_abort exception in Start Routine of Transformations

    Hello Abap OO Gurus:
    This is likely a very simple question but I'm brand new to Abap OO and despite reading and searching, I cannot convert some old abap code used in the start routine of business content in BW to be used in the Transformation start routine in SAP BI.
    My Start Routine inside a BI 7.0 transformation rule has a method declared like this:
    <b>METHODS
    start_routine
    IMPORTING
    request type rsrequest
    datapackid type rsdatapid
    EXPORTING
    monitor type rstr_ty_t_monitors
    CHANGING
    SOURCE_PACKAGE type tyt_SC_1
    RAISING
    cx_rsrout_abort.</b>
    The Exception "cx_rsrout_abort" has replaced what used to be a simple ABORT data field. The <u>old code I want to replace was just "abort = 1'.</u>
    But now it seems like I have to use TRY... ENDTRY statement to raise Exception "cx_rsrout_abort". I am inside the abap code of the Method "start routine"
    METHOD start_routine.
    *=== Segments ===
    Could some kind soul educate me as to how to raise the Exception "cx_rsrout_abort" inside the Method start routine?
    thanks in advance, David

    Tx HDev:
    we are almost there...  I have that PDF but never got thru to the rest of the Appendix B as my project is just too crazy...
    When try what Appenix B suggest..
    <u>"raise exception type CX_RSROUT_SKIP_RECORD."</u>
    I get the following Warning msg which makes sense...
    <b>"W:The exception CX_RSROUT_SKIP_RECORD is neither caught nor is it
    declared in the RAISING clause of "START_ROUTINE".</b>
    The METHOD statement in the start routine never declares another exception other than cx_rsrout_abort as seen below:
        METHODS
          start_routine
            IMPORTING
              request                  type rsrequest
              datapackid               type rsdatapid
            EXPORTING
              monitor                  type rstr_ty_t_monitors
            CHANGING
              SOURCE_PACKAGE              type tyt_SC_1
            RAISING
              cx_rsrout_abort.
    Maybe NW2004s has a bug here... I'm hoping that a SAP Developer reads this posting and can enlighten us all... otherwise I'll have to post a OSS msg
    So the mystery is still how to do
    "raise exception type CX_RSROUT_ABORT" and make this equal to ABORT = 1
    which makes the start routine skip a record
    tx again,  David

  • Screen flickering and system freezes when using Nouveau driver.

    I'm testing the Nouveau driver on my computer, I really want to keep this driver installed because it makes XFCE to use less resources than the Nvidia proprietary driver. But when I start some apps like firefox or make changes to the desktop, the system stop responding and then the screen breaks.
    I can't use the computer in that state so I force a shutdown.
    I don't know how to see what is going wrong, because the proprietary driver don't give me these problems, I don't get any errors at dmesg log and Xorg log don't have any helpful information.
    dmesg output:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.8.3-2-ARCH (tobias@testing) (gcc version 4.7.2 (GCC) ) #1 SMP PREEMPT Sun Mar 17 13:38:16 CET 2013
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f3ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009f400-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000057feffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000057ff0000-0x0000000057ff2fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x0000000057ff3000-0x0000000057ffffff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x0000000058000000-0x000000005fffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000ffffffff] reserved
    [ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
    [ 0.000000] SMBIOS 2.3 present.
    [ 0.000000] DMI: Acer Aspire T180/EM61SM/EM61PM , BIOS R01-B4 06/15/2007
    [ 0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] e820: last_pfn = 0x57ff0 max_arch_pfn = 0x100000
    [ 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-C7FFF write-protect
    [ 0.000000] C8000-FFFFF uncachable
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0000000000 mask FFC0000000 write-back
    [ 0.000000] 1 base 0040000000 mask FFE0000000 write-back
    [ 0.000000] 2 disabled
    [ 0.000000] 3 disabled
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] found SMP MP-table at [mem 0x000f3c90-0x000f3c9f] mapped at [c00f3c90]
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x01bfffff]
    [ 0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x377fdfff]
    [ 0.000000] [mem 0x00000000-0x003fffff] page 4k
    [ 0.000000] [mem 0x00400000-0x373fffff] page 2M
    [ 0.000000] [mem 0x37400000-0x377fdfff] page 4k
    [ 0.000000] kernel direct mapping tables up to 0x377fdfff @ [mem 0x01bfa000-0x01bfffff]
    [ 0.000000] RAMDISK: [mem 0x37a46000-0x37d1afff]
    [ 0.000000] Allocated new RAMDISK: [mem 0x37529000-0x377fd69f]
    [ 0.000000] Move RAMDISK from [mem 0x37a46000-0x37d1a69f] to [mem 0x37529000-0x377fd69f]
    [ 0.000000] ACPI: RSDP 000f8370 00014 (v00 ACRSYS)
    [ 0.000000] ACPI: RSDT 57ff3040 0003C (v01 ACRSYS ACRPRDCT 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: FACP 57ff30c0 00074 (v01 ACRSYS ACRPRDCT 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: DSDT 57ff3180 0631A (v01 ACRSYS AWRDACPI 00001000 MSFT 0100000E)
    [ 0.000000] ACPI: FACS 57ff0000 00040
    [ 0.000000] ACPI: SSDT 57ff95c0 001C4 (v01 PTLTD POWERNOW 00000001 LTP 00000001)
    [ 0.000000] ACPI: HPET 57ff9800 00038 (v01 ACRSYS ACRPRDCT 42302E31 AWRD 00000098)
    [ 0.000000] ACPI: SLIC 57ff9880 00176 (v01 ACRSYS ACRPRDCT 42302E31 AWRD 00000001)
    [ 0.000000] ACPI: MCFG 57ff9a40 0003C (v01 ACRSYS ACRPRDCT 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: APIC 57ff9500 0007C (v01 ACRSYS ACRPRDCT 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] 519MB HIGHMEM available.
    [ 0.000000] 887MB LOWMEM available.
    [ 0.000000] mapped low ram: 0 - 377fe000
    [ 0.000000] low ram: 0 - 377fe000
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00010000-0x00ffffff]
    [ 0.000000] Normal [mem 0x01000000-0x377fdfff]
    [ 0.000000] HighMem [mem 0x377fe000-0x57feffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00010000-0x0009efff]
    [ 0.000000] node 0: [mem 0x00100000-0x57feffff]
    [ 0.000000] On node 0 totalpages: 360319
    [ 0.000000] free_area_init_node: node 0, pgdat c15ab3c0, node_mem_map f6a28200
    [ 0.000000] DMA zone: 32 pages used for memmap
    [ 0.000000] DMA zone: 0 pages reserved
    [ 0.000000] DMA zone: 3951 pages, LIFO batch:0
    [ 0.000000] Normal zone: 1744 pages used for memmap
    [ 0.000000] Normal zone: 221486 pages, LIFO batch:31
    [ 0.000000] HighMem zone: 1040 pages used for memmap
    [ 0.000000] HighMem zone: 132066 pages, LIFO batch:31
    [ 0.000000] Using APIC driver default
    [ 0.000000] Detected use of extended apic ids on hypertransport bus
    [ 0.000000] ACPI: PM-Timer IO Port: 0x1008
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] ACPI: IRQ14 used by override.
    [ 0.000000] ACPI: IRQ15 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x10de8201 base: 0xfeff0000
    [ 0.000000] smpboot: Allowing 2 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
    [ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
    [ 0.000000] e820: [mem 0x60000000-0xefffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 13 pages/cpu @f6a05000 s32640 r0 d20608 u53248
    [ 0.000000] pcpu-alloc: s32640 r0 d20608 u53248 alloc=13*4096
    [ 0.000000] pcpu-alloc: [0] 0 [0] 1
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 357503
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=bb82c8c9-614f-4ce3-85f2-3597507c391d ro quiet
    [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
    [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    [ 0.000000] __ex_table already sorted, skipping sort
    [ 0.000000] Initializing CPU#0
    [ 0.000000] allocated 2883328 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] Initializing HighMem for node 0 (000377fe:00057ff0)
    [ 0.000000] Memory: 1415956k/1441728k available (4184k kernel code, 25320k reserved, 1679k data, 560k init, 532424k highmem)
    [ 0.000000] virtual kernel memory layout:
    fixmap : 0xfff15000 - 0xfffff000 ( 936 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    .init : 0xc15ba000 - 0xc1646000 ( 560 kB)
    .data : 0xc141613e - 0xc15b9d80 (1679 kB)
    .text : 0xc1000000 - 0xc141613e (4184 kB)
    [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
    [ 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] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2.
    [ 0.000000] NR_IRQS:2304 nr_irqs:512 16
    [ 0.000000] CPU 0 irqstacks, hard=f6008000 soft=f600a000
    [ 0.000000] spurious 8259A interrupt: IRQ7.
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.000000] tsc: Detected 1908.551 MHz processor
    [ 0.000000] tsc: Marking TSC unstable due to TSCs unsynchronized
    [ 0.003338] Calibrating delay loop (skipped), value calculated using timer frequency.. 3818.14 BogoMIPS (lpj=6361836)
    [ 0.003343] pid_max: default: 32768 minimum: 301
    [ 0.003404] Security Framework initialized
    [ 0.003415] AppArmor: AppArmor disabled by boot time parameter
    [ 0.003432] Mount-cache hash table entries: 512
    [ 0.006819] Initializing cgroup subsys cpuacct
    [ 0.006822] Initializing cgroup subsys memory
    [ 0.006834] Initializing cgroup subsys devices
    [ 0.006837] Initializing cgroup subsys freezer
    [ 0.006840] Initializing cgroup subsys net_cls
    [ 0.006842] Initializing cgroup subsys blkio
    [ 0.006879] CPU: Physical Processor ID: 0
    [ 0.006882] CPU: Processor Core ID: 0
    [ 0.006885] mce: CPU supports 5 MCE banks
    [ 0.006896] LVT offset 0 assigned for vector 0xf9
    [ 0.006902] process: using AMD E400 aware idle routine
    [ 0.006911] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 4
    Last level dTLB entries: 4KB 512, 2MB 8, 4MB 4
    tlb_flushall_shift: 4
    [ 0.007021] Freeing SMP alternatives: 16k freed
    [ 0.007977] ACPI: Core revision 20121018
    [ 0.015366] ftrace: allocating 18273 entries in 36 pages
    [ 0.023490] Enabling APIC mode: Flat. Using 1 I/O APICs
    [ 0.024036] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.059250] smpboot: CPU0: AMD Athlon(tm) 64 X2 Dual Core Processor 3600+ (fam: 0f, model: 6b, stepping: 01)
    [ 0.059999] Performance Events: AMD PMU driver.
    [ 0.059999] ... version: 0
    [ 0.059999] ... bit width: 48
    [ 0.059999] ... generic registers: 4
    [ 0.059999] ... value mask: 0000ffffffffffff
    [ 0.059999] ... max period: 00007fffffffffff
    [ 0.059999] ... fixed-purpose events: 0
    [ 0.059999] ... event mask: 000000000000000f
    [ 0.078439] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.083409] CPU 1 irqstacks, hard=f60ba000 soft=f60bc000
    [ 0.083412] smpboot: Booting Node 0, Processors #1 OK
    [ 0.006666] Initializing CPU#1
    [ 0.176732] Brought up 2 CPUs
    [ 0.176736] smpboot: Total of 2 processors activated (7637.24 BogoMIPS)
    [ 0.177423] devtmpfs: initialized
    [ 0.177423] PM: Registering ACPI NVS region [mem 0x57ff0000-0x57ff2fff] (12288 bytes)
    [ 0.178162] RTC time: 21:06:38, date: 03/21/13
    [ 0.178225] NET: Registered protocol family 16
    [ 0.178397] node 0 link 0: io port [8000, ffff]
    [ 0.178401] TOM: 0000000060000000 aka 1536M
    [ 0.178404] node 0 link 0: mmio [a0000, bffff]
    [ 0.178408] node 0 link 0: mmio [60000000, efffffff]
    [ 0.178411] node 0 link 0: mmio [f4000000, fe02ffff]
    [ 0.178414] node 0 link 0: mmio [f0000000, f03fffff]
    [ 0.178418] bus: [bus 00-04] on node 0 link 0
    [ 0.178421] bus: 00 [io 0x0000-0xffff]
    [ 0.178423] bus: 00 [mem 0x000a0000-0x000bffff]
    [ 0.178425] bus: 00 [mem 0x60000000-0xf3ffffff]
    [ 0.178428] bus: 00 [mem 0xf4000000-0xffffffff]
    [ 0.178495] ACPI: bus type pci registered
    [ 0.178575] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
    [ 0.178579] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
    [ 0.178581] PCI: Using MMCONFIG for extended config space
    [ 0.178583] PCI: Using configuration type 1 for base access
    [ 0.178677] mtrr: your CPUs had inconsistent variable MTRR settings
    [ 0.178679] mtrr: probably your BIOS does not setup all CPUs.
    [ 0.178681] mtrr: corrected configuration.
    [ 0.180670] bio: create slab <bio-0> at 0
    [ 0.180670] ACPI: Added _OSI(Module Device)
    [ 0.180670] ACPI: Added _OSI(Processor Device)
    [ 0.180670] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.180670] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.181260] ACPI: EC: Look up EC in DSDT
    [ 0.186070] ACPI: Interpreter enabled
    [ 0.186077] ACPI: (supports S0 S3 S4 S5)
    [ 0.186098] ACPI: Using IOAPIC for interrupt routing
    [ 0.193127] ACPI: No dock devices found.
    [ 0.193134] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
    [ 0.193752] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-04])
    [ 0.193756] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.193890] pci_root PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    [ 0.193894] pci_root PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
    [ 0.195031] pci_root PNP0A08:00: host bridge window [io 0x0000-0x03af] (ignored)
    [ 0.195034] pci_root PNP0A08:00: host bridge window [io 0x03e0-0x0cf7] (ignored)
    [ 0.195037] pci_root PNP0A08:00: host bridge window [io 0x8000-0xffff] (ignored)
    [ 0.195040] pci_root PNP0A08:00: host bridge window [io 0x03b0-0x03df] (ignored)
    [ 0.195044] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
    [ 0.195047] pci_root PNP0A08:00: host bridge window [mem 0x60000000-0xefffffff] (ignored)
    [ 0.195050] pci_root PNP0A08:00: host bridge window [mem 0xf4000000-0xfe02ffff] (ignored)
    [ 0.195053] pci_root PNP0A08:00: host bridge window [mem 0xfed40000-0xfed44fff] (ignored)
    [ 0.195057] pci_root PNP0A08:00: host bridge window [io 0x4700-0x470b] (ignored)
    [ 0.195060] pci_root PNP0A08:00: host bridge window [io 0x1c00-0x1c80] (ignored)
    [ 0.195063] pci_root PNP0A08:00: host bridge window [mem 0xfec80000-0xfecbffff] (ignored)
    [ 0.195066] PCI: root bus 00: hardware-probed resources
    [ 0.195117] PCI host bridge to bus 0000:00
    [ 0.195121] pci_bus 0000:00: root bus resource [bus 00-04]
    [ 0.195124] pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
    [ 0.195127] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.195130] pci_bus 0000:00: root bus resource [mem 0x60000000-0xf3ffffff]
    [ 0.195134] pci_bus 0000:00: root bus resource [mem 0xf4000000-0xffffffff]
    [ 0.195161] pci 0000:00:00.0: [10de:03ea] type 00 class 0x050000
    [ 0.195341] pci 0000:00:01.0: [10de:03e0] type 00 class 0x060100
    [ 0.195384] pci 0000:00:01.1: [10de:03eb] type 00 class 0x0c0500
    [ 0.195397] pci 0000:00:01.1: reg 10: [io 0xfc00-0xfc3f]
    [ 0.195414] pci 0000:00:01.1: reg 20: [io 0x1c00-0x1c3f]
    [ 0.195421] pci 0000:00:01.1: reg 24: [io 0xf400-0xf43f]
    [ 0.195452] pci 0000:00:01.1: PME# supported from D3hot D3cold
    [ 0.195469] pci 0000:00:01.2: [10de:03f5] type 00 class 0x050000
    [ 0.195516] pci 0000:00:02.0: [10de:03f1] type 00 class 0x0c0310
    [ 0.195527] pci 0000:00:02.0: reg 10: [mem 0xfe02f000-0xfe02ffff]
    [ 0.195564] pci 0000:00:02.0: supports D1 D2
    [ 0.195567] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.195583] pci 0000:00:02.1: [10de:03f2] type 00 class 0x0c0320
    [ 0.195595] pci 0000:00:02.1: reg 10: [mem 0xfe02e000-0xfe02e0ff]
    [ 0.195639] pci 0000:00:02.1: supports D1 D2
    [ 0.195642] pci 0000:00:02.1: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.195665] pci 0000:00:04.0: [10de:03f3] type 01 class 0x060401
    [ 0.195711] pci 0000:00:05.0: [10de:03f0] type 00 class 0x040300
    [ 0.195723] pci 0000:00:05.0: reg 10: [mem 0xfe028000-0xfe02bfff]
    [ 0.195768] pci 0000:00:05.0: PME# supported from D3hot D3cold
    [ 0.195791] pci 0000:00:06.0: [10de:03ec] type 00 class 0x01018a
    [ 0.195814] pci 0000:00:06.0: reg 20: [io 0xf000-0xf00f]
    [ 0.195850] pci 0000:00:08.0: [10de:03f6] type 00 class 0x010185
    [ 0.195860] pci 0000:00:08.0: reg 10: [io 0x09f0-0x09f7]
    [ 0.195866] pci 0000:00:08.0: reg 14: [io 0x0bf0-0x0bf3]
    [ 0.195872] pci 0000:00:08.0: reg 18: [io 0x0970-0x0977]
    [ 0.195877] pci 0000:00:08.0: reg 1c: [io 0x0b70-0x0b73]
    [ 0.195883] pci 0000:00:08.0: reg 20: [io 0xdc00-0xdc0f]
    [ 0.195889] pci 0000:00:08.0: reg 24: [mem 0xfe02d000-0xfe02dfff]
    [ 0.195922] pci 0000:00:08.1: [10de:03f6] type 00 class 0x010185
    [ 0.195932] pci 0000:00:08.1: reg 10: [io 0x09e0-0x09e7]
    [ 0.195938] pci 0000:00:08.1: reg 14: [io 0x0be0-0x0be3]
    [ 0.195944] pci 0000:00:08.1: reg 18: [io 0x0960-0x0967]
    [ 0.195949] pci 0000:00:08.1: reg 1c: [io 0x0b60-0x0b63]
    [ 0.195955] pci 0000:00:08.1: reg 20: [io 0xc800-0xc80f]
    [ 0.195961] pci 0000:00:08.1: reg 24: [mem 0xfe02c000-0xfe02cfff]
    [ 0.196000] pci 0000:00:09.0: [10de:03e8] type 01 class 0x060400
    [ 0.196032] pci 0000:00:09.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.196051] pci 0000:00:0b.0: [10de:03e9] type 01 class 0x060400
    [ 0.196081] pci 0000:00:0b.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.196098] pci 0000:00:0c.0: [10de:03e9] type 01 class 0x060400
    [ 0.196128] pci 0000:00:0c.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.196146] pci 0000:00:0d.0: [10de:03d0] type 00 class 0x030000
    [ 0.196154] pci 0000:00:0d.0: reg 10: [mem 0xfb000000-0xfbffffff]
    [ 0.196162] pci 0000:00:0d.0: reg 14: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.196169] pci 0000:00:0d.0: reg 1c: [mem 0xfc000000-0xfcffffff 64bit]
    [ 0.196177] pci 0000:00:0d.0: reg 30: [mem 0x00000000-0x0001ffff pref]
    [ 0.196209] pci 0000:00:18.0: [1022:1100] type 00 class 0x060000
    [ 0.196233] pci 0000:00:18.1: [1022:1101] type 00 class 0x060000
    [ 0.196253] pci 0000:00:18.2: [1022:1102] type 00 class 0x060000
    [ 0.196273] pci 0000:00:18.3: [1022:1103] type 00 class 0x060000
    [ 0.196335] pci 0000:01:09.0: [104c:8024] type 00 class 0x0c0010
    [ 0.196350] pci 0000:01:09.0: reg 10: [mem 0xfdfff000-0xfdfff7ff]
    [ 0.196359] pci 0000:01:09.0: reg 14: [mem 0xfdff8000-0xfdffbfff]
    [ 0.196412] pci 0000:01:09.0: supports D1 D2
    [ 0.196415] pci 0000:01:09.0: PME# supported from D0 D1 D2 D3hot
    [ 0.196444] pci 0000:00:04.0: PCI bridge to [bus 01] (subtractive decode)
    [ 0.196448] pci 0000:00:04.0: bridge window [io 0xb000-0xbfff]
    [ 0.196452] pci 0000:00:04.0: bridge window [mem 0xfdf00000-0xfdffffff]
    [ 0.196456] pci 0000:00:04.0: bridge window [mem 0xfd800000-0xfd8fffff pref]
    [ 0.196459] pci 0000:00:04.0: bridge window [io 0x0000-0xffff] (subtractive decode)
    [ 0.196462] pci 0000:00:04.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.196465] pci 0000:00:04.0: bridge window [mem 0x60000000-0xf3ffffff] (subtractive decode)
    [ 0.196469] pci 0000:00:04.0: bridge window [mem 0xf4000000-0xffffffff] (subtractive decode)
    [ 0.196493] pci 0000:00:09.0: PCI bridge to [bus 02]
    [ 0.196498] pci 0000:00:09.0: bridge window [io 0xa000-0xafff]
    [ 0.196501] pci 0000:00:09.0: bridge window [mem 0xfde00000-0xfdefffff]
    [ 0.196506] pci 0000:00:09.0: bridge window [mem 0xfdd00000-0xfddfffff 64bit pref]
    [ 0.196548] pci 0000:03:00.0: [11ab:4364] type 00 class 0x020000
    [ 0.196565] pci 0000:03:00.0: reg 10: [mem 0xfdcfc000-0xfdcfffff 64bit]
    [ 0.196575] pci 0000:03:00.0: reg 18: [io 0x9c00-0x9cff]
    [ 0.196604] pci 0000:03:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
    [ 0.196648] pci 0000:03:00.0: supports D1 D2
    [ 0.196651] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.203353] pci 0000:00:0b.0: PCI bridge to [bus 03]
    [ 0.203357] pci 0000:00:0b.0: bridge window [io 0x9000-0x9fff]
    [ 0.203361] pci 0000:00:0b.0: bridge window [mem 0xfdc00000-0xfdcfffff]
    [ 0.203365] pci 0000:00:0b.0: bridge window [mem 0xfdb00000-0xfdbfffff 64bit pref]
    [ 0.203390] pci 0000:00:0c.0: PCI bridge to [bus 04]
    [ 0.203394] pci 0000:00:0c.0: bridge window [io 0x8000-0x8fff]
    [ 0.203398] pci 0000:00:0c.0: bridge window [mem 0xfda00000-0xfdafffff]
    [ 0.203402] pci 0000:00:0c.0: bridge window [mem 0xfd900000-0xfd9fffff 64bit pref]
    [ 0.203413] pci_bus 0000:00: on NUMA node 0
    [ 0.203424] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
    [ 0.203569] ACPI _OSC control for PCIe not granted, disabling ASPM
    [ 0.242482] ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    [ 0.242536] ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    [ 0.242587] ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    [ 0.242639] ACPI: PCI Interrupt Link [LNK4] (IRQs *5 7 9 10 11 14 15)
    [ 0.242689] ACPI: PCI Interrupt Link [LNK5] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    [ 0.242741] ACPI: PCI Interrupt Link [LNK6] (IRQs *5 7 9 10 11 14 15)
    [ 0.242791] ACPI: PCI Interrupt Link [LNK7] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    [ 0.242842] ACPI: PCI Interrupt Link [LNK8] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    [ 0.242894] ACPI: PCI Interrupt Link [LIGP] (IRQs 5 7 9 10 *11 14 15)
    [ 0.242944] ACPI: PCI Interrupt Link [LP2P] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    [ 0.242996] ACPI: PCI Interrupt Link [LUBA] (IRQs 5 7 9 *10 11 14 15)
    [ 0.243045] ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    [ 0.243098] ACPI: PCI Interrupt Link [LAZA] (IRQs 5 7 9 *10 11 14 15)
    [ 0.243148] ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    [ 0.243204] ACPI: PCI Interrupt Link [LSMB] (IRQs *5 7 9 10 11 14 15)
    [ 0.243265] ACPI: PCI Interrupt Link [LUB2] (IRQs 5 7 9 10 *11 14 15)
    [ 0.243315] ACPI: PCI Interrupt Link [LIDE] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    [ 0.243375] ACPI: PCI Interrupt Link [LSID] (IRQs 5 7 9 *10 11 14 15)
    [ 0.243432] ACPI: PCI Interrupt Link [LFID] (IRQs 5 7 9 10 *11 14 15)
    [ 0.243524] ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0, disabled.
    [ 0.243606] ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0, disabled.
    [ 0.243688] ACPI: PCI Interrupt Link [APC3] (IRQs 18) *0, disabled.
    [ 0.243770] ACPI: PCI Interrupt Link [APC4] (IRQs 19) *0
    [ 0.243851] ACPI: PCI Interrupt Link [APC5] (IRQs 16) *0, disabled.
    [ 0.243933] ACPI: PCI Interrupt Link [APC6] (IRQs 16) *0
    [ 0.244014] ACPI: PCI Interrupt Link [APC7] (IRQs 16) *0, disabled.
    [ 0.244095] ACPI: PCI Interrupt Link [APC8] (IRQs 16) *0, disabled.
    [ 0.244176] ACPI: PCI Interrupt Link [AIGP] (IRQs 20 21 22 23) *0
    [ 0.244258] ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0
    [ 0.244340] ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0, disabled.
    [ 0.244422] ACPI: PCI Interrupt Link [APMU] (IRQs 20 21 22 23) *0, disabled.
    [ 0.244504] ACPI: PCI Interrupt Link [AAZA] (IRQs 20 21 22 23) *0
    [ 0.244586] ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0
    [ 0.244669] ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0
    [ 0.244751] ACPI: PCI Interrupt Link [APCM] (IRQs 20 21 22 23) *0, disabled.
    [ 0.244833] ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
    [ 0.244921] ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0
    [ 0.245004] ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0
    [ 0.245086] vgaarb: device added: PCI:0000:00:0d.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.245086] vgaarb: loaded
    [ 0.245086] vgaarb: bridge control possible 0000:00:0d.0
    [ 0.245086] PCI: Using ACPI for IRQ routing
    [ 0.246696] PCI: pci_cache_line_size set to 64 bytes
    [ 0.246745] e820: reserve RAM buffer [mem 0x0009f400-0x0009ffff]
    [ 0.246748] e820: reserve RAM buffer [mem 0x57ff0000-0x57ffffff]
    [ 0.246902] NetLabel: Initializing
    [ 0.246904] NetLabel: domain hash size = 128
    [ 0.246906] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.246923] NetLabel: unlabeled traffic allowed by default
    [ 0.246950] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
    [ 0.246956] hpet0: at MMIO 0xfeff0000, IRQs 2, 8, 31
    [ 0.246961] hpet0: 3 comparators, 32-bit 25.000000 MHz counter
    [ 0.256702] Switching to clocksource hpet
    [ 0.264319] pnp: PnP ACPI init
    [ 0.264346] ACPI: bus type pnp registered
    [ 0.264605] system 00:00: [io 0x1000-0x107f] has been reserved
    [ 0.264609] system 00:00: [io 0x1080-0x10ff] has been reserved
    [ 0.264613] system 00:00: [io 0x1400-0x147f] has been reserved
    [ 0.264616] system 00:00: [io 0x1480-0x14ff] has been reserved
    [ 0.264620] system 00:00: [io 0x1800-0x187f] has been reserved
    [ 0.264623] system 00:00: [io 0x1880-0x18ff] has been reserved
    [ 0.264628] system 00:00: [mem 0xfefe0000-0xfefe01ff] has been reserved
    [ 0.264631] system 00:00: [mem 0xfefe1000-0xfefe10ff] has been reserved
    [ 0.264635] system 00:00: [mem 0x58000000-0x5fffffff] has been reserved
    [ 0.264641] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.265431] system 00:01: [io 0x04d0-0x04d1] has been reserved
    [ 0.265434] system 00:01: [io 0x0800-0x087f] has been reserved
    [ 0.265438] system 00:01: [io 0x0290-0x0297] has been reserved
    [ 0.265442] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.265458] pnp 00:02: [dma 4]
    [ 0.265495] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.265606] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.265670] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.265714] pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.265772] pnp 00:06: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.266190] pnp 00:07: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.266522] pnp 00:08: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.266948] pnp 00:09: Plug and Play ACPI device, IDs PNP0400 (active)
    [ 0.267129] pnp 00:0a: Plug and Play ACPI device, IDs PNP0f13 (active)
    [ 0.267201] pnp 00:0b: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
    [ 0.267285] system 00:0c: [mem 0xf0000000-0xf3ffffff] has been reserved
    [ 0.267290] system 00:0c: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.267506] system 00:0d: [mem 0x000d0000-0x000d3fff] has been reserved
    [ 0.267510] system 00:0d: [mem 0x000f0000-0x000f7fff] could not be reserved
    [ 0.267514] system 00:0d: [mem 0x000f8000-0x000fbfff] could not be reserved
    [ 0.267517] system 00:0d: [mem 0x000fc000-0x000fffff] could not be reserved
    [ 0.267521] system 00:0d: [mem 0xfeff0000-0xfeff00ff] has been reserved
    [ 0.267525] system 00:0d: [mem 0x57ff0000-0x57ffffff] could not be reserved
    [ 0.267528] system 00:0d: [mem 0xffff0000-0xffffffff] has been reserved
    [ 0.267532] system 00:0d: [mem 0x00000000-0x0009ffff] could not be reserved
    [ 0.267535] system 00:0d: [mem 0x00100000-0x57feffff] could not be reserved
    [ 0.267539] system 00:0d: [mem 0x58000000-0x5fffffff] has been reserved
    [ 0.267543] system 00:0d: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.267546] system 00:0d: [mem 0xfee00000-0xfeefffff] has been reserved
    [ 0.267550] system 00:0d: [mem 0xfefff000-0xfeffffff] has been reserved
    [ 0.267554] system 00:0d: [mem 0xfff80000-0xfff80fff] has been reserved
    [ 0.267557] system 00:0d: [mem 0xfff90000-0xfffbffff] has been reserved
    [ 0.267561] system 00:0d: [mem 0xfffed000-0xfffeffff] has been reserved
    [ 0.267565] system 00:0d: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.267589] pnp: PnP ACPI: found 14 devices
    [ 0.267590] ACPI: ACPI bus type pnp unregistered
    [ 0.305593] pci 0000:00:0d.0: BAR 6: assigned [mem 0x60000000-0x6001ffff pref]
    [ 0.305599] pci 0000:00:04.0: PCI bridge to [bus 01]
    [ 0.305603] pci 0000:00:04.0: bridge window [io 0xb000-0xbfff]
    [ 0.305608] pci 0000:00:04.0: bridge window [mem 0xfdf00000-0xfdffffff]
    [ 0.305612] pci 0000:00:04.0: bridge window [mem 0xfd800000-0xfd8fffff pref]
    [ 0.305617] pci 0000:00:09.0: PCI bridge to [bus 02]
    [ 0.305621] pci 0000:00:09.0: bridge window [io 0xa000-0xafff]
    [ 0.305625] pci 0000:00:09.0: bridge window [mem 0xfde00000-0xfdefffff]
    [ 0.305629] pci 0000:00:09.0: bridge window [mem 0xfdd00000-0xfddfffff 64bit pref]
    [ 0.305635] pci 0000:03:00.0: BAR 6: assigned [mem 0xfdb00000-0xfdb1ffff pref]
    [ 0.305638] pci 0000:00:0b.0: PCI bridge to [bus 03]
    [ 0.305641] pci 0000:00:0b.0: bridge window [io 0x9000-0x9fff]
    [ 0.305645] pci 0000:00:0b.0: bridge window [mem 0xfdc00000-0xfdcfffff]
    [ 0.305649] pci 0000:00:0b.0: bridge window [mem 0xfdb00000-0xfdbfffff 64bit pref]
    [ 0.305654] pci 0000:00:0c.0: PCI bridge to [bus 04]
    [ 0.305657] pci 0000:00:0c.0: bridge window [io 0x8000-0x8fff]
    [ 0.305661] pci 0000:00:0c.0: bridge window [mem 0xfda00000-0xfdafffff]
    [ 0.305665] pci 0000:00:0c.0: bridge window [mem 0xfd900000-0xfd9fffff 64bit pref]
    [ 0.305677] pci 0000:00:04.0: setting latency timer to 64
    [ 0.305686] pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
    [ 0.305689] pci_bus 0000:00: resource 5 [mem 0x000a0000-0x000bffff]
    [ 0.305692] pci_bus 0000:00: resource 6 [mem 0x60000000-0xf3ffffff]
    [ 0.305696] pci_bus 0000:00: resource 7 [mem 0xf4000000-0xffffffff]
    [ 0.305699] pci_bus 0000:01: resource 0 [io 0xb000-0xbfff]
    [ 0.305702] pci_bus 0000:01: resource 1 [mem 0xfdf00000-0xfdffffff]
    [ 0.305706] pci_bus 0000:01: resource 2 [mem 0xfd800000-0xfd8fffff pref]
    [ 0.305709] pci_bus 0000:01: resource 4 [io 0x0000-0xffff]
    [ 0.305712] pci_bus 0000:01: resource 5 [mem 0x000a0000-0x000bffff]
    [ 0.305715] pci_bus 0000:01: resource 6 [mem 0x60000000-0xf3ffffff]
    [ 0.305718] pci_bus 0000:01: resource 7 [mem 0xf4000000-0xffffffff]
    [ 0.305722] pci_bus 0000:02: resource 0 [io 0xa000-0xafff]
    [ 0.305725] pci_bus 0000:02: resource 1 [mem 0xfde00000-0xfdefffff]
    [ 0.305729] pci_bus 0000:02: resource 2 [mem 0xfdd00000-0xfddfffff 64bit pref]
    [ 0.305732] pci_bus 0000:03: resource 0 [io 0x9000-0x9fff]
    [ 0.305735] pci_bus 0000:03: resource 1 [mem 0xfdc00000-0xfdcfffff]
    [ 0.305738] pci_bus 0000:03: resource 2 [mem 0xfdb00000-0xfdbfffff 64bit pref]
    [ 0.305742] pci_bus 0000:04: resource 0 [io 0x8000-0x8fff]
    [ 0.305745] pci_bus 0000:04: resource 1 [mem 0xfda00000-0xfdafffff]
    [ 0.305748] pci_bus 0000:04: resource 2 [mem 0xfd900000-0xfd9fffff 64bit pref]
    [ 0.305804] NET: Registered protocol family 2
    [ 0.305997] TCP established hash table entries: 8192 (order: 4, 65536 bytes)
    [ 0.306061] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
    [ 0.306122] TCP: Hash tables configured (established 8192 bind 8192)
    [ 0.306184] TCP: reno registered
    [ 0.306188] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.306204] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.306279] NET: Registered protocol family 1
    [ 0.306537] ACPI: PCI Interrupt Link [APCF] enabled at IRQ 23
    [ 0.370181] ACPI: PCI Interrupt Link [APCL] enabled at IRQ 22
    [ 0.370249] pci 0000:00:00.0: Found enabled HT MSI Mapping
    [ 0.370299] pci 0000:00:00.0: Found enabled HT MSI Mapping
    [ 0.370357] pci 0000:00:00.0: Found enabled HT MSI Mapping
    [ 0.370411] pci 0000:00:00.0: Found enabled HT MSI Mapping
    [ 0.370469] pci 0000:00:00.0: Found enabled HT MSI Mapping
    [ 0.370531] pci 0000:00:00.0: Found enabled HT MSI Mapping
    [ 0.370598] pci 0000:00:00.0: Found enabled HT MSI Mapping
    [ 0.370606] pci 0000:00:0d.0: Boot video device
    [ 0.370621] PCI: CLS 64 bytes, default 64
    [ 0.370687] Unpacking initramfs...
    [ 0.455995] Freeing initrd memory: 2900k freed
    [ 0.459106] apm: BIOS not found.
    [ 0.459448] audit: initializing netlink socket (disabled)
    [ 0.459468] type=2000 audit(1363899998.456:1): initialized
    [ 0.474029] bounce pool size: 64 pages
    [ 0.474052] HugeTLB registered 4 MB page size, pre-allocated 0 pages
    [ 0.476263] VFS: Disk quotas dquot_6.5.2
    [ 0.476327] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    [ 0.476593] msgmni has been set to 1731
    [ 0.476998] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.477042] io scheduler noop registered
    [ 0.477044] io scheduler deadline registered
    [ 0.477053] io scheduler cfq registered (default)
    [ 0.477195] pcieport 0000:00:09.0: irq 40 for MSI/MSI-X
    [ 0.477269] pcieport 0000:00:0b.0: irq 41 for MSI/MSI-X
    [ 0.477329] pcieport 0000:00:0c.0: irq 42 for MSI/MSI-X
    [ 0.477469] vesafb: mode is 640x480x32, linelength=2560, pages=0
    [ 0.477471] vesafb: scrolling: redraw
    [ 0.477474] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.477558] vesafb: framebuffer at 0xe0000000, mapped to 0xf8080000, using 1216k, total 1216k
    [ 0.484141] Console: switching to colour frame buffer device 80x30
    [ 0.490611] fb0: VESA VGA frame buffer device
    [ 0.490704] GHES: HEST is not enabled!
    [ 0.490719] isapnp: Scanning for PnP cards...
    [ 0.802592] isapnp: No Plug & Play device found
    [ 0.802671] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.823231] 00:07: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 0.843779] 00:08: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
    [ 0.844469] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 0.844915] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.844951] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.845087] mousedev: PS/2 mouse device common for all mice
    [ 0.845182] rtc_cmos 00:04: RTC can wake from S4
    [ 0.845358] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    [ 0.845400] rtc0: alarms up to one year, y3k, 242 bytes nvram, hpet irqs
    [ 0.845435] cpuidle: using governor ladder
    [ 0.845437] cpuidle: using governor menu
    [ 0.845439] EFI Variables Facility v0.08 2004-May-17
    [ 0.845489] drop_monitor: Initializing network drop monitor service
    [ 0.845593] TCP: cubic registered
    [ 0.845736] NET: Registered protocol family 10
    [ 0.845940] NET: Registered protocol family 17
    [ 0.845958] Key type dns_resolver registered
    [ 0.846129] Using IPI No-Shortcut mode
    [ 0.846264] PM: Hibernation image not present or could not be loaded.
    [ 0.846279] registered taskstats version 1
    [ 0.846851] Magic number: 5:851:146
    [ 0.846912] acpi device:17: hash matches
    [ 0.846972] rtc_cmos 00:04: setting system clock to 2013-03-21 21:06:39 UTC (1363899999)
    [ 0.847246] Freeing unused kernel memory: 560k freed
    [ 0.847645] Write protecting the kernel text: 4188k
    [ 0.847679] Write protecting the kernel read-only data: 1284k
    [ 0.858078] systemd-udevd[45]: starting version 198
    [ 0.864682] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.904637] ACPI: bus type usb registered
    [ 0.904681] usbcore: registered new interface driver usbfs
    [ 0.904697] usbcore: registered new interface driver hub
    [ 0.904815] usbcore: registered new device driver usb
    [ 0.906826] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.908458] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 0.908536] ohci_hcd 0000:00:02.0: setting latency timer to 64
    [ 0.908541] ohci_hcd 0000:00:02.0: OHCI Host Controller
    [ 0.908550] ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 1
    [ 0.908594] ohci_hcd 0000:00:02.0: irq 23, io mem 0xfe02f000
    [ 0.910252] ehci-pci: EHCI PCI platform driver
    [ 0.910290] ACPI: PCI Interrupt Link [APC4] enabled at IRQ 19
    [ 0.910329] firewire_ohci 0000:01:09.0: setting latency timer to 64
    [ 0.912040] SCSI subsystem initialized
    [ 0.915768] ACPI: bus type scsi registered
    [ 0.918637] libata version 3.00 loaded.
    [ 0.962268] hub 1-0:1.0: USB hub found
    [ 0.962279] hub 1-0:1.0: 10 ports detected
    [ 0.962535] ehci-pci 0000:00:02.1: setting latency timer to 64
    [ 0.962539] ehci-pci 0000:00:02.1: EHCI Host Controller
    [ 0.962547] ehci-pci 0000:00:02.1: new USB bus registered, assigned bus number 2
    [ 0.962559] ehci-pci 0000:00:02.1: debug port 1
    [ 0.962589] ehci-pci 0000:00:02.1: cache line size of 64 is not supported
    [ 0.962617] ehci-pci 0000:00:02.1: irq 22, io mem 0xfe02e000
    [ 0.970035] ehci-pci 0000:00:02.1: USB 2.0 started, EHCI 1.00
    [ 0.970261] hub 2-0:1.0: USB hub found
    [ 0.970268] hub 2-0:1.0: 10 ports detected
    [ 0.970681] pata_amd 0000:00:06.0: version 0.4.1
    [ 0.970736] pata_amd 0000:00:06.0: setting latency timer to 64
    [ 0.971618] scsi0 : pata_amd
    [ 0.972200] scsi1 : pata_amd
    [ 0.972449] ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14
    [ 0.972452] ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15
    [ 0.972517] sata_nv 0000:00:08.0: version 3.5
    [ 0.972721] ACPI: PCI Interrupt Link [APSI] enabled at IRQ 21
    [ 0.972802] sata_nv 0000:00:08.0: setting latency timer to 64
    [ 0.973161] scsi2 : sata_nv
    [ 0.973470] scsi3 : sata_nv
    [ 0.973598] ata3: SATA max UDMA/133 cmd 0x9f0 ctl 0xbf0 bmdma 0xdc00 irq 21
    [ 0.973602] ata4: SATA max UDMA/133 cmd 0x970 ctl 0xb70 bmdma 0xdc08 irq 21
    [ 0.973822] ACPI: PCI Interrupt Link [APSJ] enabled at IRQ 20
    [ 0.973886] sata_nv 0000:00:08.1: setting latency timer to 64
    [ 0.974209] scsi4 : sata_nv
    [ 0.974369] scsi5 : sata_nv
    [ 0.974488] ata5: SATA max UDMA/133 cmd 0x9e0 ctl 0xbe0 bmdma 0xc800 irq 20
    [ 0.974491] ata6: SATA max UDMA/133 cmd 0x960 ctl 0xb60 bmdma 0xc808 irq 20
    [ 1.130346] ata1.00: ATAPI: HL-DT-ST DVDRAM_GSA-H40N, RA00, max UDMA/66
    [ 1.130357] ata1: nv_mode_filter: 0x1f39f&0x1f39f->0x1f39f, BIOS=0x1f000 (0xc5000000) ACPI=0x1f01f (30:600:0x13)
    [ 1.143604] ata1.00: configured for UDMA/66
    [ 1.149515] scsi 0:0:0:0: CD-ROM HL-DT-ST DVDRAM_GSA-H40N RA00 PQ: 0 ANSI: 5
    [ 1.149876] ata2: port disabled--ignoring
    [ 1.297028] ata3: SATA link down (SStatus 0 SControl 300)
    [ 1.297032] ata5: SATA link down (SStatus 0 SControl 300)
    [ 1.633688] ata4: SATA link down (SStatus 0 SControl 300)
    [ 1.643352] firewire_ohci 0000:01:09.0: failed to read phy reg
    [ 1.643576] firewire_ohci: probe of 0000:01:09.0 failed with error -16
    [ 1.730033] usb 1-4: new low-speed USB device number 2 using ohci_hcd
    [ 1.936808] usbcore: registered new interface driver usbhid
    [ 1.936814] usbhid: USB HID core driver
    [ 2.100049] ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 2.107021] ata6.00: ATA-7: Hitachi HDS721616PLA380, P22OAB3A, max UDMA/133
    [ 2.107025] ata6.00: 321672960 sectors, multi 16: LBA48 NCQ (depth 0/32)
    [ 2.120325] ata6.00: configured for UDMA/133
    [ 2.120524] scsi 5:0:0:0: Direct-Access ATA Hitachi HDS72161 P22O PQ: 0 ANSI: 5
    [ 2.125055] sd 5:0:0:0: [sda] 321672960 512-byte logical blocks: (164 GB/153 GiB)
    [ 2.125119] sd 5:0:0:0: [sda] Write Protect is off
    [ 2.125123] sd 5:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 2.125149] sd 5:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.131113] sr0: scsi3-mmc drive: 40x/40x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 2.131120] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 2.131457] sr 0:0:0:0: Attached scsi CD-ROM sr0
    [ 2.146217] sda: sda1 sda2 sda3
    [ 2.146831] sd 5:0:0:0: [sda] Attached SCSI disk
    [ 2.206694] usb 1-8: new full-speed USB device number 3 using ohci_hcd
    [ 2.407819] Initializing USB Mass Storage driver...
    [ 2.408184] scsi6 : usb-storage 1-8:1.0
    [ 2.408335] usbcore: registered new interface driver usb-storage
    [ 2.408337] USB Mass Storage support registered.
    [ 2.542664] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    [ 3.014632] systemd[1]: Smack is not enabled in the kernel, not loading access rules.
    [ 3.097131] systemd[1]: systemd 198 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 3.097800] systemd[1]: Set hostname to <acer-aspire>.
    [ 3.352860] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 3.352959] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 3.352983] systemd[1]: Expecting device sys-subsystem-net-devices-enp3s0.device...
    [ 3.353005] systemd[1]: Starting Remote File Systems.
    [ 3.353024] systemd[1]: Reached target Remote File Systems.
    [ 3.353041] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 3.353091] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 3.353108] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 3.353156] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 3.353173] systemd[1]: Starting Delayed Shutdown Socket.
    [ 3.353206] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 3.353222] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 3.353253] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 3.353274] systemd[1]: Starting Journal Socket.
    [ 3.353366] systemd[1]: Listening on Journal Socket.
    [ 3.354821] systemd[1]: Starting Apply Kernel Variables...
    [ 3.357143] systemd[1]: Mounting Huge Pages File System...
    [ 3.363518] systemd[1]: Mounting POSIX Message Queue File System...
    [ 3.370154] systemd[1]: Mounting Debug File System...
    [ 3.385832] systemd[1]: Starting Journal Service...
    [ 3.393610] systemd[1]: Started Journal Service.
    [ 3.393800] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 3.393975] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 3.407359] systemd[1]: Started Set Up Additional Binary Formats.
    [ 3.407389] systemd[1]: Starting Encrypted Volumes.
    [ 3.407409] systemd[1]: Reached target Encrypted Volumes.
    [ 3.407431] systemd[1]: Starting Setup Virtual Console...
    [ 3.410492] systemd[1]: Starting udev Kernel Socket.
    [ 3.410553] systemd[1]: Listening on udev Kernel Socket.
    [ 3.410641] systemd[1]: Starting udev Control Socket.
    [ 3.410689] systemd[1]: Listening on udev Control Socket.
    [ 3.410760] systemd[1]: Starting udev Coldplug all Devices...
    [ 3.417037] systemd[1]: Starting udev Kernel Device Manager...
    [ 3.418761] scsi 6:0:0:0: Direct-Access Generic USB SD Reader 1.00 PQ: 0 ANSI: 0
    [ 3.436758] scsi 6:0:0:1: Direct-Access Generic USB CF Reader 1.01 PQ: 0 ANSI: 0
    [ 3.441505] systemd[1]: Started Load Kernel Modules.
    [ 3.441546] systemd[1]: Mounted FUSE Control File System.
    [ 3.441570] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 3.441652] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 3.441693] systemd[1]: Mounting Configuration File System...
    [ 3.465751] scsi 6:0:0:2: Direct-Access Generic USB SM Reader 1.02 PQ: 0 ANSI: 0
    [ 3.476732] sd 6:0:0:0: [sdb] Attached SCSI removable disk
    [ 3.505747] scsi 6:0:0:3: Direct-Access Generic USB MS Reader 1.03 PQ: 0 ANSI: 0
    [ 3.516728] sd 6:0:0:1: [sdc] Attached SCSI removable disk
    [ 3.549724] sd 6:0:0:2: [sdd] Attached SCSI removable disk
    [ 3.553823] systemd[1]: Expecting device dev-disk-by\x2duuid-bb5a3cc3\x2d55fd\x2d4830\x2d8177\x2ddd32df9bd303.device...
    [ 3.553856] systemd[1]: Mounting Temporary Directory...
    [ 3.571730] sd 6:0:0:3: [sde] Attached SCSI removable disk
    [ 3.744908] systemd-udevd[126]: starting version 198
    [ 3.777101] systemd[1]: Started File System Check on Root Device.
    [ 3.777142] systemd[1]: Starting Remount Root and Kernel File Systems...
    [ 3.790819] systemd[1]: Started udev Kernel Device Manager.
    [ 3.800185] systemd[1]: Started Apply Kernel Variables.
    [ 4.118718] EXT4-fs (sda2): re-mounted. Opts: data=ordered
    [ 4.205364] systemd-journald[122]: Received SIGUSR1
    [ 5.423026] thermal LNXTHERM:00: registered as thermal_zone0
    [ 5.423033] ACPI: Thermal Zone [THRM] (40 C)
    [ 5.463049] input: PC Speaker as /devices/platform/pcspkr/input/input1
    [ 5.484558] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
    [ 5.484570] ACPI: Power Button [PWRB]
    [ 5.484693] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    [ 5.484697] ACPI: Power Button [PWRF]
    [ 5.491085] k8temp 0000:00:18.3: Temperature readouts might be wrong - check erratum #141
    [ 5.542488] i2c i2c-0: nForce2 SMBus adapter at 0x1c00
    [ 5.542524] i2c i2c-1: nForce2 SMBus adapter at 0xf400
    [ 5.547898] Linux agpgart interface v0.103
    [ 5.558914] ACPI: Fan [FAN] (on)
    [ 5.559089] [drm] Initialized drm 1.1.0 20060810
    [ 5.565468] microcode: AMD CPU family 0xf not supported
    [ 5.567533] microcode: AMD CPU family 0xf not supported
    [ 5.642735] wmi: Mapper loaded
    [ 5.645076] kvm: Nested Virtualization enabled
    [ 5.649689] powernow-k8: fid 0xb (1900 MHz), vid 0xc
    [ 5.649696] powernow-k8: fid 0xa (1800 MHz), vid 0xd
    [ 5.649699] powernow-k8: fid 0x2 (1000 MHz), vid 0x12
    [ 5.649987] powernow-k8: Found 1 AMD Athlon(tm) 64 X2 Dual Core Processor 3600+ (2 cpu cores) (version 2.20.00)
    [ 5.685561] checking generic (e0000000 130000) vs hw (e0000000 10000000)
    [ 5.685568] fb: conflicting fb hw usage nouveaufb vs VESA VGA - removing generic driver
    [ 5.685594] Console: switching to colour dummy device 80x25
    [ 5.685773] nouveau 0000:00:0d.0: setting latency timer to 64
    [ 5.686326] ACPI: PCI Interrupt Link [AIGP] enabled at IRQ 23
    [ 5.686707] nouveau [ DEVICE][0000:00:0d.0] BOOT0 : 0x04c000a2
    [ 5.686715] nouveau [ DEVICE][0000:00:0d.0] Chipset: C61 (NV4C)
    [ 5.686722] nouveau [ DEVICE][0000:00:0d.0] Family : NV40
    [ 5.687642] nouveau [ VBIOS][0000:00:0d.0] checking PRAMIN for image...
    [ 5.733281] nouveau [ VBIOS][0000:00:0d.0] ... appears to be valid
    [ 5.733287] nouveau [ VBIOS][0000:00:0d.0] using image from PRAMIN
    [ 5.733560] nouveau [ VBIOS][0000:00:0d.0] BIT signature found
    [ 5.733565] nouveau [ VBIOS][0000:00:0d.0] version 05.61.32.25.04
    [ 5.733746] nouveau [ PFB][0000:00:0d.0] RAM type: unknown
    [ 5.733749] nouveau [ PFB][0000:00:0d.0] RAM size: 128 MiB
    [ 5.733752] nouveau [ PFB][0000:00:0d.0] ZCOMP: 0 tags
    [ 5.761373] [TTM] Zone kernel: Available graphics memory: 443504 kiB
    [ 5.761379] [TTM] Zone highmem: Available graphics memory: 709716 kiB
    [ 5.761381] [TTM] Initializing pool allocator
    [ 5.761831] nouveau [ DRM] VRAM: 125 MiB
    [ 5.761838] nouveau [ DRM] GART: 512 MiB
    [ 5.761844] nouveau [ DRM] BIT BIOS found
    [ 5.761848] nouveau [ DRM] Bios version 05.61.32.25
    [ 5.761852] nouveau [ DRM] TMDS table version 1.1
    [ 5.761855] nouveau [ DRM] DCB version 3.0
    [ 5.761859] nouveau [ DRM] DCB outp 00: 01000310 00000023
    [ 5.761863] nouveau [ DRM] DCB outp 01: 00110204 98830003
    [ 5.761865] nouveau [ DRM] DCB conn 00: 0000
    [ 5.761869] nouveau [ DRM] DCB conn 01: 1131
    [ 5.761872] nouveau [ DRM] DCB conn 02: 0110
    [ 5.761875] nouveau [ DRM] DCB conn 03: 0111
    [ 5.761877] nouveau [ DRM] DCB conn 04: 0113
    [ 5.762420] nouveau W[ DRM] DCB type 4 not known
    [ 5.762425] nouveau W[ DRM] Unknown-1 has no encoders, removing
    [ 5.763281] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 5.763283] [drm] No driver support for vblank timestamp query.
    [ 5.763931] nouveau [ DRM] 1 available performance level(s)
    [ 5.763937] nouveau [ DRM] 0: core 425MHz shader 425MHz fanspeed 100%
    [ 5.763939] nouveau [ DRM] c:
    [ 5.765435] nouveau [ DRM] MM: using M2MF for buffer copies
    [ 5.811870] sky2: driver version 1.30
    [ 5.812122] ACPI: PCI Interrupt Link [APC6] enabled at IRQ 16
    [ 5.812188] sky2 0000:03:00.0: Yukon-2 EC Ultra chip revision 2
    [ 5.812268] sky2 0000:03:00.0: irq 43 for MSI/MSI-X
    [ 5.812560] sky2 0000:03:00.0 eth0: addr 00:19:21:28:95:2d
    [ 5.814804] composite sync not supported
    [ 5.815267] nouveau [ DRM] allocated 1440x900 fb: 0x9000, bo f63fa000
    [ 5.815425] fbcon: nouveaufb (fb0) is primary device
    [ 5.829143] IT8726 SuperIO detected.
    [ 5.829405] parport_pc 00:09: reported by Plug and Play ACPI
    [ 5.829453] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
    [ 5.856121] ppdev: user-space parallel port driver
    [ 5.877128] Console: switching to colour frame buffer device 180x56
    [ 5.878923] nouveau 0000:00:0d.0: fb0: nouveaufb frame buffer device
    [ 5.878929] nouveau 0000:00:0d.0: registered panic notifier
    [ 5.878952] [drm] Initialized nouveau 1.1.0 20120801 for 0000:00:0d.0 on minor 0
    [ 5.879707] ACPI: PCI Interrupt Link [AAZA] enabled at IRQ 22
    [ 5.879730] hda_intel: Disabling MSI
    [ 5.879786] snd_hda_intel 0000:00:05.0: setting latency timer to 64
    [ 6.023710] systemd-udevd[151]: renamed network interface eth0 to enp3s0
    [ 6.497697] input: PIXART USB OPTICAL MOUSE as /devices/pci0000:00/0000:00:02.0/usb1/1-4/1-4:1.0/input/input4
    [ 6.498447] hid-generic 0003:093A:2510.0001: input,hidraw0: USB HID v1.11 Mouse [PIXART USB OPTICAL MOUSE] on usb-0000:00:02.0-4/input0
    [ 6.533068] Adding 997756k swap on /dev/sda3. Priority:-1 extents:1 across:997756k
    [ 6.633135] sky2 0000:03:00.0 enp3s0: enabling interface
    [ 6.633209] IPv6: ADDRCONF(NETDEV_UP): enp3s0: link is not ready
    [ 6.846889] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:05.0/input/input5
    [ 7.603865] input: HDA NVidia Line as /devices/pci0000:00/0000:00:05.0/sound/card0/input6
    [ 7.604089] input: HDA NVidia Front Mic as /devices/pci0000:00/0000:00:05.0/sound/card0/input7
    [ 7.604265] input: HDA NVidia Rear Mic as /devices/pci0000:00/0000:00:05.0/sound/card0/input8
    [ 7.604442] input: HDA NVidia Front Headphone as /devices/pci0000:00/0000:00:05.0/sound/card0/input9
    [ 7.604616] input: HDA NVidia Line Out Side as /devices/pci0000:00/0000:00:05.0/sound/card0/input10
    [ 7.604791] input: HDA NVidia Line Out CLFE as /devices/pci0000:00/0000:00:05.0/sound/card0/input11
    [ 7.604969] input: HDA NVidia Line Out Surround as /devices/pci0000:00/0000:00:05.0/sound/card0/input12
    [ 7.605141] input: HDA NVidia Line Out Front as /devices/pci0000:00/0000:00:05.0/sound/card0/input13
    [ 8.208529] composite sync not supported
    [ 8.244451] composite sync not supported
    [ 8.450333] sky2 0000:03:00.0 enp3s0: Link is up at 100 Mbps, full duplex, flow control both
    [ 8.450367] IPv6: ADDRCONF(NETDEV_CHANGE): enp3s0: link becomes ready
    [ 20.811802] composite sync not supported
    [ 23.142014] EXT4-fs (sda2): re-mounted. Opts: data=ordered,commit=0
    [ 84.047784] usb 1-4: USB disconnect, device number 2
    [ 85.606696] usb 1-4: new low-speed USB device number 4 using ohci_hcd
    [ 85.814008] input: PIXART USB OPTICAL MOUSE as /devices/pci0000:00/0000:00:02.0/usb1/1-4/1-4:1.0/input/input14
    [ 85.814445] hid-generic 0003:093A:2510.0002: input,hidraw0: USB HID v1.11 Mouse [PIXART USB OPTICAL MOUSE] on usb-0000:00:02.0-4/input0
    [ 389.250323] composite sync not supported
    Xorg log:
    [ 7.949]
    X.Org X Server 1.14.0
    Release Date: 2013-03-05
    [ 7.949] X Protocol Version 11, Revision 0
    [ 7.949] Build Operating System: Linux 3.8.2-1-ARCH i686
    [ 7.949] Current Operating System: Linux acer-aspire 3.8.3-2-ARCH #1 SMP PREEMPT Sun Mar 17 13:38:16 CET 2013 i686
    [ 7.949] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=bb82c8c9-614f-4ce3-85f2-3597507c391d ro quiet
    [ 7.949] Build Date: 09 March 2013 11:46:22AM
    [ 7.949]
    [ 7.949] Current version of pixman: 0.28.2
    [ 7.949] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 7.949] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 7.949] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Mar 21 15:06:46 2013
    [ 7.988] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 8.001] (==) No Layout section. Using the first Screen section.
    [ 8.001] (==) No screen section available. Using defaults.
    [ 8.001] (**) |-->Screen "Default Screen Section" (0)
    [ 8.001] (**) | |-->Monitor "<default monitor>"
    [ 8.011] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 8.011] (==) Automatically adding devices
    [ 8.011] (==) Automatically enabling devices
    [ 8.011] (==) Automatically adding GPU devices
    [ 8.060] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 8.060] Entry deleted from font path.
    [ 8.060] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 8.060] Entry deleted from font path.
    [ 8.060] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 8.060] Entry deleted from font path.
    [ 8.060] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 8.060] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 8.060] Entry deleted from font path.
    [ 8.060] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 8.060] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/
    [ 8.060] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 8.060] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 8.069] (II) Loader magic: 0x825b620
    [ 8.069] (II) Module ABI versions:
    [ 8.069] X.Org ANSI C Emulation: 0.4
    [ 8.069] X.Org Video Driver: 14.1
    [ 8.069] X.Org XInput driver : 19.1
    [ 8.069] X.Org Server Extension : 7.0
    [ 8.069] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 8.072] (--) PCI:*(0:0:13:0) 10de:03d0:1019:2601 rev 162, Mem @ 0xfb000000/16777216, 0xe0000000/268435456, 0xfc000000/16777216, BIOS @ 0x????????/131072
    [ 8.073] Initializing built-in extension Generic Event Extension
    [ 8.073] Initializing built-in extension SHAPE
    [ 8.073] Initializing built-in extension MIT-SHM
    [ 8.073] Initializing built-in extension XInputExtension
    [ 8.073] Initializing built-in extension XTEST
    [ 8.073] Initializing built-in extension BIG-REQUESTS
    [ 8.073] Initializing built-in extension SYNC
    [ 8.073] Initializing built-in extension XKEYBOARD
    [ 8.073] Initializing built-in extension XC-MISC
    [ 8.073] Initializing built-in extension SECURITY
    [ 8.073] Initializing built-in extension XINERAMA
    [ 8.073] Initializing built-in extension XFIXES
    [ 8.073] Initializing built-in extension RENDER
    [ 8.073] Initializing built-in extension RANDR
    [ 8.073] Initializing built-in extension COMPOSITE
    [ 8.073] Initializing built-in extension DAMAGE
    [ 8.073] Initializing built-in extension MIT-SCREEN-SAVER
    [ 8.073] Initializing built-in extension DOUBLE-BUFFER
    [ 8.073] Initializing built-in extension RECORD
    [ 8.073] Initializing built-in extension DPMS
    [ 8.073] Initializing built-in extension X-Resource
    [ 8.073] Initializing built-in extension XVideo
    [ 8.073] Initializing built-in extension XVideo-MotionCompensation
    [ 8.073] Initializing built-in extension XFree86-VidModeExtension
    [ 8.073] Initializing built-in extension XFree86-DGA
    [ 8.073] Initializing built-in extension XFree86-DRI
    [ 8.073] Initializing built-in extension DRI2
    [ 8.073] (II) LoadModule: "glx"
    [ 8.099] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 8.133] (II) Module glx: vendor="X.Org Foundation"
    [ 8.133] compiled for 1.14.0, module version = 1.0.0
    [ 8.133] ABI class: X.Org Server Extension, version 7.0
    [ 8.133] (==) AIGLX enabled
    [ 8.134] Loading extension GLX
    [ 8.134] (==) Matched nouveau as autoconfigured driver 0
    [ 8.134] (==) Matched nvidia as autoconfigured driver 1
    [ 8.134] (==) Matched nv as autoconfigured driver 2
    [ 8.134] (==) Matched nouveau as autoconfigured driver 3
    [ 8.134] (==) Matched nvidia as autoconfigured driver 4
    [ 8.134] (==) Matched nv as autoconfigured driver 5
    [ 8.134] (==) Matched vesa as autoconfigured driver 6
    [ 8.134] (==) Matched modesetting as autoconfigured driver 7
    [ 8.134] (==) Matched fbdev as autoconfigured driver 8
    [ 8.134] (==) Assigned the driver to the xf86ConfigLayout
    [ 8.134] (II) LoadModule: "nouveau"
    [ 8.134] (II) Loading /usr/lib/xorg/modules/drivers/nouveau_drv.so
    [ 8.154] (II) Module nouveau: vendor="X.Org Foundation"
    [ 8.154] compiled for 1.14.0, module version = 1.0.6
    [ 8.154] Module class: X.Org Video Driver
    [ 8.154] ABI class: X.Org Video Driver, version 14.1
    [ 8.154] (II) LoadModule: "nvidia"
    [ 8.155] (WW) Warning, couldn't open module nvidia
    [ 8.155] (II) UnloadModule: "nvidia"
    [ 8.155] (II) Unloading nvidia
    [ 8.155] (EE) Failed to load module "nvidia" (module does not exist, 0)
    [ 8.155] (II) LoadModule: "nv"
    [ 8.155] (WW) Warning, couldn't open module nv
    [ 8.155] (II) UnloadModule: "nv"
    [ 8.155] (II) Unloading nv
    [ 8.155] (EE) Failed to load module "nv" (module does not exist, 0)
    [ 8.155] (II) LoadModule: "vesa"
    [ 8.156] (WW) Warning, couldn't open module vesa
    [ 8.156] (II) UnloadModule: "vesa"
    [ 8.156] (II) Unloading vesa
    [ 8.156] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 8.156] (II) LoadModule: "modesetting"
    [ 8.156] (WW) Warning, couldn't open module modesetting
    [ 8.156] (II) UnloadModule: "modesetting"
    [ 8.156] (II) Unloading modesetting
    [ 8.157] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 8.157] (II) LoadModule: "fbdev"
    [ 8.157] (WW) Warning, couldn't open module fbdev
    [ 8.157] (II) UnloadModule: "fbdev"
    [ 8.157] (II) Unloading fbdev
    [ 8.157] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 8.157] (II) NOUVEAU driver
    [ 8.157] (II) NOUVEAU driver for NVIDIA chipset families :
    [ 8.157] RIVA TNT (NV04)
    [ 8.157] RIVA TNT2 (NV05)
    [ 8.157] GeForce 256 (NV10)
    [ 8.157] GeForce 2 (NV11, NV15)
    [ 8.157] GeForce 4MX (NV17, NV18)
    [ 8.157] GeForce 3 (NV20)
    [ 8.158] GeForce 4Ti (NV25, NV28)
    [ 8.158] GeForce FX (NV3x)
    [ 8.158] GeForce 6 (NV4x)
    [ 8.158] GeForce 7 (G7x)
    [ 8.158] GeForce 8 (G8x)
    [ 8.158] GeForce GTX 200 (NVA0)
    [ 8.158] GeForce GTX 400 (NVC0)
    [ 8.158] (++) using VT number 7
    [ 8.175] (II) [drm] nouveau interface version: 1.1.0
    [ 8.175] (II) Loading sub module "dri"
    [ 8.175] (II) LoadModule: "dri"
    [ 8.175] (II) Module "dri" already built-in
    [ 8.175] (II) NOUVEAU(0): Loaded DRI module
    [ 8.175] (--) NOUVEAU(0): Chipset: "NVIDIA NV4c"
    [ 8.175] (II) NOUVEAU(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 8.175] (==) NOUVEAU(0): Depth 24, (--) framebuffer bpp 32
    [ 8.175] (==) NOUVEAU(0): RGB weight 888
    [ 8.175] (==) NOUVEAU(0): Default visual is TrueColor
    [ 8.175] (==) NOUVEAU(0): Using HW cursor
    [ 8.175] (==) NOUVEAU(0): GLX sync to VBlank disabled.
    [ 8.175] (==) NOUVEAU(0): Page flipping enabled
    [ 8.175] (==) NOUVEAU(0): Swap limit set to 2 [Max allowed 2]
    [ 8.208] (II) NOUVEAU(0): Output VGA-1 has no monitor section
    [ 8.244] (II) NOUVEAU(0): EDID for output VGA-1
    [ 8.244] (II) NOUVEAU(0): Manufacturer: ACR Model: ada8 Serial#: 1937803344
    [ 8.244] (II) NOUVEAU(0): Year: 2007 Week: 38
    [ 8.244] (II) NOUVEAU(0): EDID Version: 1.3
    [ 8.244] (II) NOUVEAU(0): Analog Display Input, Input Voltage Level: 0.700/0.700 V
    [ 8.244] (II) NOUVEAU(0): Sync: Separate Composite
    [ 8.244] (II) NOUVEAU(0): Max Image Size [cm]: horiz.: 37 vert.: 23
    [ 8.245] (II) NOUVEAU(0): Gamma: 2.20
    [ 8.245] (II) NOUVEAU(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
    [ 8.245] (II) NOUVEAU(0): Default color space is primary color space
    [ 8.245] (II) NOUVEAU(0): First detailed timing is preferred mode
    [ 8.245] (II) NOUVEAU(0): redX: 0.590 redY: 0.349 greenX: 0.328 greenY: 0.547
    [ 8.245] (II) NOUVEAU(0): blueX: 0.155 blueY: 0.138 whiteX: 0.313 whiteY: 0.329
    [ 8.245] (II) NOUVEAU(0): Supported established timings:
    [ 8.245] (II) NOUVEAU(0): 720x400@70Hz
    [ 8.245] (II) NOUVEAU(0): 640x480@60Hz
    [ 8.245] (II) NOUVEAU(0): 640x480@67Hz
    [ 8.245] (II) NOUVEAU(0): 640x480@72Hz
    [ 8.245] (II) NOUVEAU(0): 640x480@75Hz
    [ 8.245] (II) NOUVEAU(0): 800x600@56Hz
    [ 8.245] (II) NOUVEAU(0): 800x600@60Hz
    [ 8.245] (II) NOUVEAU(0): 800x600@72Hz
    [ 8.245] (II) NOUVEAU(0): 800x600@75Hz
    [ 8.245] (II) NOUVEAU(0): 832x624@75Hz
    [ 8.245] (II) NOUVEAU(0): 1024x768@60Hz
    [ 8.245] (II) NOUVEAU(0): 1024x768@70Hz
    [ 8.245] (II) NOUVEAU(0): 1024x768@75Hz
    [ 8.245] (II) NOUVEAU(0): 1152x864@75Hz
    [ 8.245] (II) NOUVEAU(0): Manufacturer's mask: 0
    [ 8.245] (II) NOUVEAU(0): Supported standard timings:
    [ 8.245] (II) NOUVEAU(0): #0: hsize: 1280 vsize 720 refresh: 60 vid: 49281
    [ 8.245] (II) NOUVEAU(0): #1: hsize: 1280 vsize 800 refresh: 75 vid: 3969
    [ 8.245] (II) NOUVEAU(0): #2: hsize: 1440 vsize 900 refresh: 60 vid: 149
    [ 8.245] (II) NOUVEAU(0): #3: hsize: 1440 vsize 900 refresh: 75 vid: 3989
    [ 8.245] (II) NOUVEAU(0): Supported detailed timing:
    [ 8.245] (II) NOUVEAU(0): clock: 106.5 MHz Image Size: 367 x 229 mm
    [ 8.245] (II) NOUVEAU(0): h_active: 1440 h_sync: 1520 h_sync_end 1672 h_blank_end 1904 h_border: 0
    [ 8.245] (II) NOUVEAU(0): v_active: 900 v_sync: 903 v_sync_end 909 v_blanking: 934 v_border: 0
    [ 8.245] (II) NOUVEAU(0): Ranges: V min: 56 V max: 76 Hz, H min: 31 H max: 83 kHz, PixClock max 215 MHz
    [ 8.245] (II) NOUVEAU(0): Monitor name: Acer AL1716W
    [ 8.245] (II) NOUVEAU(0): Serial No: LA8040344303
    [ 8.245] (II) NOUVEAU(0): EDID (in hex):
    [ 8.245] (II) NOUVEAU(0): 00ffffffffffff000472a8ad50888073
    [ 8.245] (II) NOUVEAU(0): 261101036c251778ee10d59759548c27
    [ 8.246] (II) NOUVEAU(0): 235054bfee8081c0810f9500950f0101
    [ 8.246] (II) NOUVEAU(0): 0101010101019a29a0d0518422305098
    [ 8.246] (II) NOUVEAU(0): 36006fe510000006000000fd00384c1f
    [ 8.246] (II) NOUVEAU(0): 5315000a202020202020000000fc0041
    [ 8.246] (II) NOUVEAU(0): 63657220414c31373136570a000000ff
    [ 8.246] (II) NOUVEAU(0): 004c41383034303334343330330a00aa
    [ 8.246] (II) NOUVEAU(0): Printing probed modes for output VGA-1
    [ 8.246] (II) NOUVEAU(0): Modeline "1440x900"x59.9 106.50 1440 1520 1672 1904 900 903 909 934 +hsync +vsync (55.9 kHz eP)
    [ 8.246] (II) NOUVEAU(0): Modeline "1440x900"x75.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz e)
    [ 8.246] (II) NOUVEAU(0): Modeline "1280x800"x74.9 106.50 1280 1360 1488 1696 800 803 809 838 -hsync +vsync (62.8 kHz e)
    [ 8.246] (II) NOUVEAU(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 8.246] (II) NOUVEAU(0): Modeline "1280x720"x60.0 74.44 1280 1336 1472 1664 720 721 724 746 -hsync +vsync (44.7 kHz)
    [ 8.246] (II) NOUVEAU(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 8.246] (II) NOUVEAU(0): Modeline "1024x768"x70.1 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 8.246] (II) NOUVEAU(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 8.246] (II) NOUVEAU(0): Modeline "832x624"x74.6 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 8.246] (II) NOUVEAU(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 8.246] (II) NOUVEAU(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 8.246] (II) NOUVEAU(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 8.246] (II) NOUVEAU(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 8.246] (II) NOUVEAU(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz e)
    [ 8.246] (II) NOUVEAU(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 8.246] (II) NOUVEAU(0): Modeline "640x480"x66.7 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 8.246] (II) NOUVEAU(0): Modeline "640x480"x60.0 25.20 640 656 752

    I got again a total system freeze today when I wanted to launch firefox using only the openbox menu, without wbar running.
    So I decided to try now the 'nouveau.noaccel=1' kernel command line parameter, and to use again wbar for my frequently used applis.
    In the Xorg log, the differences are:
    without 'nouveau.noaccel=1'
    [ 30.761] (II) UnloadModule: "nv"
    [ 30.761] (II) Unloading nv
    [ 30.761] (--) Depth 24 pixmap format is 32 bpp
    [ 30.762] (II) NOUVEAU(0): Opened GPU channel 0
    [ 30.765] (II) NOUVEAU(0): [DRI2] Setup complete
    [ 30.765] (II) NOUVEAU(0): [DRI2] DRI driver: nouveau
    [ 30.765] (II) NOUVEAU(0): [DRI2] VDPAU driver: nouveau
    [ 30.776] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 30.777] (II) EXA(0): Driver registered support for the following operations:
    [ 30.777] (II) Solid
    [ 30.777] (II) Copy
    [ 30.777] (II) Composite (RENDER acceleration)
    [ 30.777] (II) UploadToScreen
    [ 30.777] (II) DownloadFromScreen
    [ 30.777] (==) NOUVEAU(0): Backing store disabled
    [ 30.777] (==) NOUVEAU(0): Silken mouse enabled
    with 'nouveau.noaccel=1'
    [ 1191.621] (II) UnloadModule: "nv"
    [ 1191.621] (II) Unloading nv
    [ 1191.621] (--) Depth 24 pixmap format is 32 bpp
    [ 1191.621] (EE) NOUVEAU(0): Error creating GPU channel: -19
    [ 1191.621] (EE) NOUVEAU(0): Error initialising acceleration. Falling back to NoAccel
    [ 1191.621] (==) NOUVEAU(0): Backing store disabled
    [ 1191.621] (==) NOUVEAU(0): Silken mouse enabled
    [ 1191.621] (==) NOUVEAU(0): DPMS enabled
    So now 3D acceleration is disabled.
    I will see now if the system is stable enough for my daily usage and gives satisfactory performances.
    I am almost sure that the mesa nouveau dri driver is the cause of the freezes.
    Last edited by berbae (2013-03-27 10:07:42)

  • How can I use my external hard drive on both pc and mac, but also being able to use it to back up my mac data?

    I want to be able to transfer some of my files from my laptop to my macbook, but not all of them. I have a NTFS external hard drive and I have heard about reformatting it so that it can read/write across both systems, but can I still use this hard drive to back up the data on my macbook? If I can, how should I go about reformatting the hard drive?

    FORMAT TYPES
    FAT32 (File Allocation Table)
    Read/Write FAT32 from both native Windows and native Mac OS X.
    Maximum file size: 4GB.
    Maximum volume size: 2TB
    You can use this format if you share the drive between Mac OS X and Windows computers and have no files larger than 4GB.
    NTFS (Windows NT File System)
    Read/Write NTFS from native Windows.
    Read only NTFS from native Mac OS X
    To Read/Write/Format NTFS from Mac OS X, here are some alternatives:
    For Mac OS X 10.4 or later (32 or 64-bit), install Paragon (approx $20) (Best Choice for Lion)
    Native NTFS support can be enabled in Snow Leopard and Lion, but is not advisable, due to instability.
    AirPort Extreme (802.11n) and Time Capsule do not support NTFS
    Maximum file size: 16 TB
    Maximum volume size: 256TB
    You can use this format if you routinely share a drive with multiple Windows systems.
    HFS+ ((((MAC FORMAT)))) (Hierarchical File System, a.k.a. Mac OS Extended (Journaled) Don't use case-sensitive)
    Read/Write HFS+ from native Mac OS X
    Required for Time Machine or Carbon Copy Cloner or SuperDuper! backups of Mac internal hard drive.
    To Read HFS+ (but not Write) from Windows, Install HFSExplorer
    Maximum file size: 8EiB
    Maximum volume size: 8EiB
    You can use this format if you only use the drive with Mac OS X, or use it for backups of your Mac OS X internal drive, or if you only share it with one Windows PC (with MacDrive installed on the PC)
    EXFAT (FAT64)
    Supported in Mac OS X only in 10.6.5 or later.
    Not all Windows versions support exFAT. 
    exFAT (Extended File Allocation Table)
    AirPort Extreme (802.11n) and Time Capsule do not support exFAT
    Maximum file size: 16 EiB
    Maximum volume size: 64 ZiB
    You can use this format if it is supported by all computers with which you intend to share the drive.  See "disadvantages" for details.

  • Using RFBIDE00   -  How to update street 4 of Address on customer master

    Hi ,
    I am creating customer master records (sold-to Bill-to , ship-to & Payer) based on data from a flat file using direct input program RFBIDE00. I have to update the street address 2, 3 and 4 of Address. I am not able to figure out how to populate this data using RFBIDE00 program. What I read so far makes me believe that it can not be done using direct input program as this is part of central address management which is in str_suppl? fields of ARDC table. Is that right ? If yes , What BAPI/FM I can use to update the street address. Your expert help &  guidance is appreciated. Please advise. Thanks. Raghu.

    Hi Raghu,
    I don't know, if you still have this problem, but if you still have this problem...you can do one more thing apart from central address management update suggested by SAP. You can copy standard program into Z program and modify the sub routine for 111 screen:
    FORM D0111_FUELLEN.
    In the above subroutine, check any one of street 2, 3 or 4 customer address fields are not initial and if so, then add this code after appending 111 screen to FT internal table which already exists...this code will expand more fields option in screen 111.
      IF NOT BIADDR2-STR_SUPPL3 IS INITIAL.
        CLEAR FT.
        FT-FNAM = 'BDC_OKCODE'.
        FT-FVAL = '=$2OC'.
        APPEND FT.
      ENDIF.
    After this code,  in the existing subroutine,
    PERFORM D0111_FUELLEN_ZAV USING 'KNA1'.
    or new sub routine you need to include code for adding extra fields to the FT internal table as
      IF NOT BIADDR2-STR_SUPPL3 IS INITIAL.
        CLEAR FT.
        FT-PROGRAM  = 'SAPMF02D'.
        FT-DYNPRO   = '0111'.
        FT-DYNBEGIN = 'X'.
        APPEND FT.
        CLEAR FT.
        FT-FNAM = 'BDC_OKCODE'.
        FT-FVAL = '/00'.
        APPEND FT.
        PERFORM D0111_FUELLEN_ZAV USING 'KNA1'.
        FT-FNAM = 'ADDR1_DATA-STR_SUPPL3'.
        FT-FVAL = BIADDR2-STR_SUPPL3.
        APPEND FT.
      ENDIF.
    This code will work fine as long as you make changes correctly as mentioned. If you don't understand above code or if you need more information contact me at [email protected].believe me this code worked fine for me
    Hope this will help you.
    Good luck!
    Regards,
    Vivek

  • Updating Cube in the End Routine based on the incoming Valid From Date

    Hello Experts
    Here is my scenario.
    We are using BW 7.x.  There is DSO and from DSO it goes to the Cube, the promotions information.  These data targets will have Material (Article), Plant (Site), Promotions Number, Valid from and Valid to dates.  The Valid To date will come in as 12/31/9999 all the time.
    If I receive a new record from ECC with same Material, Plat and Promotion combination again, I need to get the Valid From Date from the new record and Update the existing record' Valid To date in DSO/Cube as Valid From of the new record - 1.
    So Valid To date of the existing record = New Record's Valid From date minus - 1.
    I would like to do the update in "End Routine" of the Cube.
    Would you please suggest if this can be done and if so would you please provide the sample code.
    THANK YOU in Advance.
    Nag.

    yes, you can do this...
    just use a RESULT_PACKAGE in end routine.
    and using RESULT_PACKAGE fatch the existing records from DSO and append that into RESULT_PACKAGE after your desired changes,
    just try to create a code using this l;ogic. if you can't then i will provide you a code.
    Regards,
    Ashish

  • Field symbols not working in data transfer VOFM routine

    Hi,
    I have been trying to set a value using field symbols, however for some reasons its not working. I am using a field symbol in a data transfer routine and the value which I am trying to set is a standard field outside the VOFM routine code.
    I am trying to set a  field gla_subrc which is actually a changing parameter.
    The actual paramter is gn_subrc of type sy-subrc and within the form the name is gla_subrc. I need to set this changing parameter gla_subrc using the data transfer routine.
    Is there a specific rule that field symbols dont work for changing paramters within subroutine or is there a specific syntax.
    The syntax I am using is
    ASSIGN ('(SAPLV50S)gla_subrc')  to <fs>. 
    I also used the local program name instead of main program but still that does not work. Tried using the actual parameter as well.
    Can someone please help me in this.
    Thanks & Regards,
    Naresh.

    I need to stop outbound delivery creation against STO using vl10b transaction. The only way to stop creation is using data transfer delivery VOFM routine.
    If i give an error message MESSAGE E001, this will give a hard error which is not acceptable. To avoid this, i use a perform message statment with message id and certain parameters which can displayed in a log.
    However to make sure this message is displayed in log, I am clearing a work area having specific data needed for delivery creation.
    Because of this clear, my error message gets captured in log but along with this another fake message is displayed in log which caused by the clear message.
    The user gets confused as he now sees 2 messages, 1 which is correct and other 1 which is fake and that confuses him.
    Data transfer routine is not the best place to give messages in log but we have very few options. The only way the system can give 1 message is if i set gla_subrc to 1. This is a variable which will help the system understand that the delivery should not be created as there is something wrong because the value is 1. Hence it will stop the creation and instead display whatever message i had passed to the log.
    I need to somehow set this variable to 1 based on lot of analysis that has been done in the past.
    Please let me know if there is any way by which we can fix this.
    Thanks & Regards,
    Naresh.

Maybe you are looking for

  • Disable designbutton in webi reports BO 4.1

    Hello! I want to disable the design button in webi reports for everyone except a small group. The problem I have is that if I disable the "Application mode buttons" for the group "Everyone" the button also is disabled for the group should be able to

  • Online album photo orientation incorrectly converts all pictures to landscape

    My online photoshop album photos are always converted to lanscape, despite the pictures having the correct orientation in the album on PSE v7.0 before they are uploaded. This is frustrating when viewing the slide show as a lot of pics are on their si

  • How can i join PO with GRPO

    Hi, I make query as belown to join PO with GRPO.I wnat to calculate Quantity from PO to GRPO but in my query it show duplicate record i also use distinct but useless.My query as below. SELECT T1.DocNum [PO No], T1.DocDate [PO Date], T3.ItemCode, T3.D

  • Process Controlled - Getting Previous level Assigned Approver

    I am implementing BRF based process controlled workflow for SC, I am determining Approver using a copy of RR_MANAGER. One of the requirements is to check the previous approver or assigned approved in my ZRR_MANAGER implementation. Is there a method t

  • Insttalling Dreamweaver CS3

    I am trying to install my new Dreamweaver I purchased from Adobe. It asked me to insert my photoshop elements 6 cd to continue the installation. I have not upgraded to this yet. I find this a little odd Dreamweaver is asking for this before finishing