ODI COMMIT INTERVAL.

Hi,
I have a large amount of data that I ma extacting from my Clients SQLSERVER db.I am using "LKM SQL to ORACLE" and using "IKM SQL control append" to extract this data. My DBA tells me that I am committing a lot in the C$ table and that I should commit every 100000 rows only. Is there a customization that I can do the LKM to make it commit after every 100000 Rows?. Kindly help.This is an urgent requirement.
Regards,
John

Try /*+ APPEND * hint in the insert statement , that should help you
insert /*+ APPEND * into <%=odiRef.getTable("L", "COLL_NAME", "A")%>

Similar Messages

  • Commit Interval

    Hi experts,
         During the Bulk data load. how can we set the commit Interval in IKM Incrmental Update.
    regards,
    Raja

    in addition to the above I would also try some different settings in topology for array fetch size of your staging area.
    have a read i.e. here: http://www.business-intelligence-quotient.com/?tag=array-fetch-size-odi
    I finally (with 10g) ended up exporting from source RDBMS to a .csv file on the Essbase Server and using an old fashioned .rul file to load from that csv (using MaxL or ESSCMD via OdiOSCommand)
    Looking forward to find some improvements around this and maybe some blog entries to learn how to improve settings in the Essbase-KMs.

  • Commit interval while removing duplicates

    I am trying to remove duplicates from a table with over 10million records. Below query is working fine but it doesnt contain any COMMIT interval. I have to commit after every 20k or 30k records deletion for which IF loop is necessary.
    Can anyone help me with it please ?
    Query:
    delete from
    customer
    where rowid in
    (select rowid from
    (select
    rowid,
    row_number()
    over
    (partition by custnbr order by custnbr) dup
    from customer)
    where dup > 1);

    937851 wrote:
    I am trying to remove duplicates from a table with over 10million records. Below query is working fine but it doesnt contain any COMMIT interval. I have to commit after every 20k or 30k records deletion for which IF loop is necessary. It is more efficient to delete all the rows and commit once
    10M rows is a good number but modern systems should be able to support the delete. If you are worried about running out of rollback/undo you can (only if necessary!) batch deletes and perform periodic commits, something like (again, only if necessary)
    delete from whatever
      where key in (result from subquery)
         and rownum <= 1000000;
    delete from whatever
      where key in (result from subquery)
         and rownum <= 1000000;
    delete from whatever
      where key in (result from subquery)
         and rownum <= 1000000;
    . . .

  • Endeca Data Store Repository , Commit interval

    Hi All,
    I have been using endeca 2.3 for quite some time now and has successfully developed a studio application. But following are the few questions still I fail to answer:
    1. Where will the data store reside? Location of the data store records in the server. In which format are the records stored on the MDEX engine. Can we have access to those records?
    Most frequent question from my demonstrations: Where will be the data stored when we load data to a data store.
    2. Is there any thing like commit interval frequency? i.,e when I have 10,000 records to be loaded and in case my graph loads 3k records and fails due to some exception then I need to reload the data from scratch. I dont have any point where in I can resume the graphs.
    So as per my understanding there is no commit interval for data loading on to the data store.
    Can any one throw some light on the same??
    Thanks in Advance,
    Kartik P.

    Hi Kartik,
    To answer your questions:
    1. Where will the data store reside?
    A: Once the source data is loaded into the Oracle Endeca Server, the data turns into an Endeca Server index (also referred to in the doc as files on disk). The Location of the data store in the Endeca Server is: C:\Oracle\EndecaServer<vesion>\endeca-server\data\<data_store_name>_indexes, assuming you installed in the C directory on Windows.
    Q: In which format are the records stored on the MDEX engine. Can we have access to those records?
    A: Records are stored in the internal binary format and there is no outside access to these records; they are for the Endeca Server consumption.
    Also, please see the doc about using the endeca-cmd command, for managing the data store, in the Endeca Server Administrator's Guide:
    http://docs.oracle.com/cd/E29805_01/server.230/es_admin/src/cadm_cmd_root.html
    2. Q: Is there any thing like commit interval frequency? i.,e when I have 10,000 records to be loaded and in case my graph loads 3k records and fails due to some exception then I need to reload the data from scratch. I dont have any point where in I can resume the graphs.So as per my understanding there is no commit interval for data loading on to the data store.
    A: For this, the closest answer is to bundle your data updates (data loads) inside a single outer transaction. If you do so, the entire update commits or fails as a unit. For information on running transaction graphs, you can see the Endeca Information Discovery Integrator Components Guide, and a section on the outer transactions in the Endeca Server Developer's Guide: http://docs.oracle.com/cd/E29805_01/server.230/es_dev/src/cdg_txnWS_root.html
    The basic idea is to create a graph in the Integrator that starts an outer transaction, and then run several updating operations within this graph. To make things work, you need to make sure the outer transaction ID is specified correctly in all operations inside this graph, and also not to start more than one outer transaction graph at a time (only one outer transaction operation can run at at time inside the Endeca Server. It must be committed or rolled back before another outer transaction can be started).
    Here is a quote from the Integrator Components guide:
    "An outer transaction is a set of operations performed in the Oracle Endeca Server data store that is viewed as a single unit. If an outer transaction is committed, this means that all of the data and configuration changes made during the transaction have completed successfully and are committed to the data store index.
    If any of the changes made within a transaction fail to complete successfully, the outer transaction fails to commit and remains open (only one outer transaction can be open at a time). In this case, you can roll back the entire transaction, and the changes to the data store index do not occur.
    In general, the best practice is to set up operations so that successful updates are automatically committed (this is the default), but failed updates can be rolled back either automatically or manually."
    Hope this helps,
    Julia

  • How to set commit interval after n rows when generating insert statements?

    Hi
    I'm trying to generate a sql insert script with a few million rows using SQL Developer 1.5.4.
    I can generate insert scripts ok, but can't see anywhere to set the commit interval.
    In the preferences screen under migration I see you can set the commit interval under data move options, but I assume this is something different.
    I know we could use sql loader, but this insert is part of deployment package which has a series of sql scripts that we need to run together. So I don't want to run a series of sql scripts, then run sql loader, and then go back to sql scripts.
    Am i missing something, or is this just not possible with SQL Developer?
    Thanks in advance for your help,
    Pete

    Unfortunately, SQL Developer doesn't cover all of the SQL*Plus commands. There is a preference in SQL Developer to switch on autocommit in the SQL worksheet (Tools > Preferences > Database > Worksheet Parameters), but that is presumably every record, rather than every 100 as you are trying to do.
    There is a document on SQL Developer's SQL*Plus support (here), but that doesn't list autocommit in either the supported or unsupported sections.
    theFurryOne

  • Commit interval without cursor

    Hi,
    can anyone help me on this.
    i need commit interval for every 100 records without using cursor or bulk collect.
    or any other way to do commit interval please do let me know
    Thanks In advance.
    sarath.

    insert into emps(last_name,first_name,salary,department_id,employee_id)
    select last_name,first_name,salary,department_id,employee_id from
    employees where commission>300
    and not exists (select null from emps e2 where e2.employee_id = employees.employee_id)
    and rownum <=100;repeat as often as needed.
    But it is stupid code. But do not wonder about it, since your requirements seem awful (contradictory).

  • ODI commit after N rows

    hi
    I am trying to insert millions of rows in a target oracle table from a source oracle using ODI.
    Is it possible to specify commit after n number of rows, say after every 100000 rows..
    Kindly let know any suggestions.

    No, I am using ODI interface to populate the table.
    LKM : SQL to ORACLE
    IKM : Oracle incremental update.
    The interface has failed for "unable to extend the tablespace" error. I want to commit the records after every - say 100000- rows

  • ODI Commit of Headers only when Lines data is loaded successfully

    We have a requirement where in we have two interfaces ( headers & lines).
    We have to commit data in Headars table only if the lines table gets successfully polulated.We have customized the KM's to remove commit from the headers interface and removed the ddl statements from IKM and LKM which usually do autocommit.We tried commiting the data after the lines interface execution , but that's not working. Though in ODI it displays single session for all executions(header and line), internally it is creating sub sessions.
    We are using IKM Oracle Incremental Update-Merge knowledge module.
    Execution steps are Procedure 1 --> Procedure 2 --> Headers Interface --> Lines Interface --> Procedure 3 --> Procedure 4.
    Kindly provide your inputs.Looking forward to your suggestions.

    Anand,
    My approach would be different. Essentially your requirement indicates that you need to run DML on header and details table within same transaction cycle. Because for each interface execution, agent makes a separate connection, it is hard to design that into two different interfaces. My approach would be to accommodate both targets into single interface using a special LKM. Below is the procedure in short:
    1. Create a data model by adding columns on header table and details table together.
    2. Design an interface and put this model as target.
    3. Bring the usual sources in the source pain and establish joins
    4. Create the mapping for header table and mark them as UD1 in addition to mark them as INSERT or UPDATE as required.
    5. Create the mapping for header table and mark them as UD2 (not UD1) in addition to mark them as INSERT or UPDATE as required.
    6. All mapping are to be executed in staging.
    7. Create a special IKM to include two I$ tables (I$_target_table_1 and I$_target_table_2) using the columns used for UD1 and UD2 mapping respectively. Populate them. To know how to use UD1 and UD2 mappings, look at manual for the documentation of odiRef.getColumnList api.
    8. Add two options in the IKM where header and detail table names can be specified.
    9. In a trasaction cycle (say, transaction1), insert into header table. In the next step into details table. Commit in the next step. In that way, if insert to details was not successful, job will fail and ODI would terminate the connection without a commit.
    If you want to use two interface still, you have to find a way to run both interfaces asynchronously and then the IKM used in the interface for header table should be modified in such a way that after insert it must wait for some kind of communication (in the form of table data or temporary file) to mark the commit. My best guess would be to use jython in the IKM to check for the file. Off course interface writing to detail tables must be sending similar communications at the end of a successful write. If you do not want to use Jython, my advise would be to use PL/SQL procedure (try looking into DBMS_PIPE or DBMS_ALERT, I do not have ready code) to arrange for such a notification. But this is one hell of an extra work and the logic has multiple points of failure that requires still extra work.

  • ODI Error Handling: IKM for Essbase (Data), Check reject at Commit Intervls

    All,
    I am trying to see if there is a way I can handle errors in the ODI IKM for SQL to Hyperion Essbase (Data), so I can switch to using a load rule interface if there are rejects.
    I am thinking, if we can check for rejects after every commit interval (right now using the default of 1000 records), and continue to the next set of 1000 records only if there are no rejects.
    If there is a way of even aborting the interface run i.e. prevent it from switching to loading records line-by-line on the occurrence of a reject, I can check a log and kick off an interface which will use an Essbase Load rule to continue loading.
    I don't know if it all sounds too hypothetical, but I want to see if anyone has ideas around this approach.
    Please share any thoughts.
    Thanks,
    Anindyo

    Thanks John, I was thinking on those lines.
    But it would help if there is a way of collecting information on what rejected, without having to set up a new physical object to pull from the work repository or from the file.
    We are trying to get away from any KM customization.
    Do you know what we can check for here? Is there a way of refreshing a variable in case of a failure, which we can check in the next step?
    Thanks,
    Anindyo

  • How to Set COMMIT intervals in ODI

    Hi Guru's,
    Iam getting around 3 Million records from the source,
    In my IKM I have an option for selecting commit interval for 1000 rows. This may reduce my performance.
    Could you please provide any thoughts, how to increase the COMMIT interval to 10000 rows or more.
    Thanks in Advance
    Regards,
    - Rafi

    It is not possible to select a different interval. Typically, 1000 rows is suitable and gives you good performances.
    If you are looking for better performances, I would recommend to play around the Array Fetch/Batch Update parameters to improve the transfer speed across systems.

  • Commit in procedures after every 100000 records possible?

    Hi All,
    I am using an ODI procedure to insert data into a table.
    I checked that in the ODI procedure there is an option of selecting transaction and setting the commit option as 'Commit after every 1000 records'.
    Since the record count to be inserted is 38489152, I would like to know is this option configurable.
    Can i ensure that commits are made at a logical step of 100000 instead of 1000 records?
    Thank You.
    Prerna

    recently added on this
    http://dwteam.in/commit-interval-in-odi/
    Thanks
    Bhabani
    http://dwteam.in

  • Can we control the Materializd view commit frequency

    Hi
    I am creating a huge MV that requires lot of undo space while creating initially or if I want to do a complete refresh. Can we control the commit interval like if I want the MV during initialization to commit records after every 1 million records.
    Any suggestions will be highly appreciated.

    No, you cannot do incremental commits when refreshing a materialized view. At least not if you want Oracle to refresh it for you. Even if you could, you almost certainly wouldn't want to. You would generate more undo in total trying to refresh 1 million rows at a time. And your data would be inconsistent. Plus, you'd have to build additional structures to track which rows had already been processed/ updated so that Oracle could recover in the event that there is a failure in the middle of refreshing a materialized view.
    If you're not concerned by the inconsistent data, depending on the Oracle version and how you've configured the environment, along with whether you're doing incremental or complete refreshes, you could set atomic_refresh to FALSE so that Oracle truncates and reloads the data each time, which generates less UNDO but causes the materialized view to be empty during the refresh. Or you could set the materialized view to refresh incrementally, which may be substantially faster than doing a complete refresh.
    Justin

  • Controlled Execution

    Hi,
    I am having a scenario in a transaction from source to target(both oracle), Out of 10 records in source, 2 are error records(let us consider that as 6th and 7th).
    I need to set the commit interval for every 3 records(I dont know how to do this.) So after transformation, only first 3 records should be commited, since the 6th record is a error one, the 4th and 5th record should be rolled back.
    How can we achieve this in ODI?
    Thanks in Advance,
    Ram Mohan T.

    Ram
    *1) Can you please point out where can i change the commit option in an interface as you mentioned -"change the "Commit" to Autocommit (on the step in the KM). ". I had seen this option only in the procedure and not in interface*.
    KMs are very like procedures - open the KM, and on the KM step applicable, you will see the command on source/command on target. In each of these you will see the Commit drop-down, the bottom-right of the six boxes.
    *2) Is the value 1000 records in commit option is configurable?*
    No. Not without significant modification to the KM, essentially recoding it to do things procedurally (watch out for new KMs in future)
    *3) Can we get the log details (like how many records succeeded or failed) while using an API Call(PL/SQL). I think we cant do this because its running independent of ODI.*
    That is correct - we pass a SQL statement to the database to process, and as it is a set-wise operation, the database just returns a single number - like the number of rows inserted. One of the classic problems when using Oracle's MERGE syntax is that you won't know how many rows were inserted, and how many updated. You can modify the KM to pass over PL/SQL, but that may not be worthwhile in the short-term.
    Craig

  • ConsoleKit takes 20seconds to time out on GDM load

    My GDM is really slow and I tracked it down to ConsoleKit. Anyone have any suggestion on how to fix it?
    Please take a look at my messages.log to get some idea of what's happening:
    Search for ConsoleKit to see that it's taking 20secs to timeout.
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Initializing cgroup subsys cpuset
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Initializing cgroup subsys cpu
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Linux version 3.2.2-1-ARCH (tobias@T-POWA-LX) (gcc version 4.6.2 20120120 (prerelease) (GCC) ) #1 SMP PREEMPT Thu Jan 26 08:40:20 CET 2012
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Command line: root=/dev/sda2 ro initrd=../initramfs-linux.img BOOT_IMAGE=../vmlinuz-linux
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-provided physical RAM map:
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009d800 (usable)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 000000000009d800 - 00000000000a0000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 0000000000100000 - 00000000cd71e000 (usable)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cd71e000 - 00000000cd772000 (ACPI NVS)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cd772000 - 00000000cd77b000 (ACPI data)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cd77b000 - 00000000cdada000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cdada000 - 00000000cdaeb000 (ACPI NVS)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cdaeb000 - 00000000cdafe000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cdafe000 - 00000000cdb00000 (ACPI NVS)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cdb00000 - 00000000cdb09000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cdb09000 - 00000000cdb0f000 (ACPI NVS)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cdb0f000 - 00000000cdb71000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cdb71000 - 00000000cdd74000 (ACPI NVS)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cdd74000 - 00000000cdf00000 (usable)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000f8000000 - 00000000fc000000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000fec10000 - 00000000fec11000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000fec20000 - 00000000fec21000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000fed00000 - 00000000fed01000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000fed61000 - 00000000fed71000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000fed80000 - 00000000fed90000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000fef00000 - 0000000100000000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 0000000100001000 - 000000022f000000 (usable)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] NX (Execute Disable) protection: active
    Feb 1 20:31:48 localhost kernel: [ 0.000000] DMI 2.7 present.
    Feb 1 20:31:48 localhost kernel: [ 0.000000] No AGP bridge found
    Feb 1 20:31:48 localhost kernel: [ 0.000000] last_pfn = 0x22f000 max_arch_pfn = 0x400000000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Feb 1 20:31:48 localhost kernel: [ 0.000000] last_pfn = 0xcdf00 max_arch_pfn = 0x400000000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Using GB pages for direct mapping
    Feb 1 20:31:48 localhost kernel: [ 0.000000] init_memory_mapping: 0000000000000000-00000000cdf00000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] init_memory_mapping: 0000000100000000-000000022f000000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] RAMDISK: 7fd5a000 - 7ffff000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: RSDP 00000000000f0450 00024 (v02 ALASKA)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: XSDT 00000000cd772068 00054 (v01 ALASKA A M I 01072009 AMI 00010013)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: FACP 00000000cd779340 000F4 (v04 ALASKA A M I 01072009 AMI 00010013)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20110623/tbfadt-560)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: DSDT 00000000cd772150 071EC (v02 ALASKA A M I 00000000 INTL 20051117)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: FACS 00000000cdb09f80 00040
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: APIC 00000000cd779438 0009E (v03 ALASKA A M I 01072009 AMI 00010013)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: MCFG 00000000cd7794d8 0003C (v01 ALASKA A M I 01072009 MSFT 00010013)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: HPET 00000000cd779518 00038 (v01 ALASKA A M I 01072009 AMI 00000004)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: IVRS 00000000cd779550 000D8 (v01 AMD RD890S 00202031 AMD 00000000)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: SSDT 00000000cd779628 00D3C (v01 AMD POWERNOW 00000001 AMD 00000001)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] No NUMA configuration found
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Faking a node at 0000000000000000-000000022f000000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Initmem setup node 0 0000000000000000-000000022f000000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] NODE_DATA [000000022effb000 - 000000022effffff]
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Zone PFN ranges:
    Feb 1 20:31:48 localhost kernel: [ 0.000000] DMA 0x00000010 -> 0x00001000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] DMA32 0x00001000 -> 0x00100000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Normal 0x00100000 -> 0x0022f000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Movable zone start PFN for each node
    Feb 1 20:31:48 localhost kernel: [ 0.000000] early_node_map[4] active PFN ranges
    Feb 1 20:31:48 localhost kernel: [ 0.000000] 0: 0x00000010 -> 0x0000009d
    Feb 1 20:31:48 localhost kernel: [ 0.000000] 0: 0x00000100 -> 0x000cd71e
    Feb 1 20:31:48 localhost kernel: [ 0.000000] 0: 0x000cdd74 -> 0x000cdf00
    Feb 1 20:31:48 localhost kernel: [ 0.000000] 0: 0x00100001 -> 0x0022f000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0x808
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x10] enabled)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x11] enabled)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x12] enabled)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x13] enabled)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x14] enabled)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x15] enabled)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x16] enabled)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x17] enabled)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: IOAPIC (id[0x09] address[0xfec00000] gsi_base[0])
    Feb 1 20:31:48 localhost kernel: [ 0.000000] IOAPIC[0]: apic_id 9, version 33, address 0xfec00000, GSI 0-23
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: IOAPIC (id[0x0a] address[0xfec20000] gsi_base[24])
    Feb 1 20:31:48 localhost kernel: [ 0.000000] IOAPIC[1]: apic_id 10, version 33, address 0xfec20000, GSI 24-55
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: HPET id: 0xffffffff base: 0xfed00000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] SMP: Allowing 8 CPUs, 0 hotplug CPUs
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cd71e000 - 00000000cd772000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cd772000 - 00000000cd77b000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cd77b000 - 00000000cdada000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cdada000 - 00000000cdaeb000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cdaeb000 - 00000000cdafe000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cdafe000 - 00000000cdb00000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cdb00000 - 00000000cdb09000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cdb09000 - 00000000cdb0f000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cdb0f000 - 00000000cdb71000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cdb71000 - 00000000cdd74000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cdf00000 - 00000000f8000000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000f8000000 - 00000000fc000000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fc000000 - 00000000fec00000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fec10000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fec10000 - 00000000fec11000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fec11000 - 00000000fec20000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fec20000 - 00000000fec21000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fec21000 - 00000000fed00000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fed00000 - 00000000fed01000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fed01000 - 00000000fed61000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fed61000 - 00000000fed71000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fed71000 - 00000000fed80000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fed80000 - 00000000fed90000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fed90000 - 00000000fef00000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fef00000 - 0000000100000000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 0000000100000000 - 0000000100001000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Allocating PCI resources starting at cdf00000 (gap: cdf00000:2a100000)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Booting paravirtualized kernel on bare hardware
    Feb 1 20:31:48 localhost kernel: [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:8 nr_node_ids:1
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88022ec00000 s82048 r8192 d24448 u262144
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2047089
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Policy zone: Normal
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Kernel command line: root=/dev/sda2 ro initrd=../initramfs-linux.img BOOT_IMAGE=../vmlinuz-linux
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] xsave/xrstor: enabled xstate_bv 0x7, cntxt size 0x340
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Checking aperture...
    Feb 1 20:31:48 localhost kernel: [ 0.000000] No AGP bridge found
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Node 0: aperture @ f8000000 size 64 MB
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Memory: 8119580k/9158656k available (4281k kernel code, 827176k absent, 211900k reserved, 4599k data, 728k init)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Preemptible hierarchical RCU implementation.
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Verbose stalled-CPUs detection is disabled.
    Feb 1 20:31:48 localhost kernel: [ 0.000000] NR_IRQS:4352 nr_irqs:1288 16
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Extended CMOS year: 2000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Console: colour VGA+ 80x25
    Feb 1 20:31:48 localhost kernel: [ 0.000000] console [tty0] enabled
    Feb 1 20:31:48 localhost kernel: [ 0.000000] allocated 67108864 bytes of page_cgroup
    Feb 1 20:31:48 localhost kernel: [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Fast TSC calibration using PIT
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Detected 3110.742 MHz processor.
    Feb 1 20:31:48 localhost kernel: [ 0.003336] Calibrating delay loop (skipped), value calculated using timer frequency.. 6223.71 BogoMIPS (lpj=10369140)
    Feb 1 20:31:48 localhost kernel: [ 0.003339] pid_max: default: 32768 minimum: 301
    Feb 1 20:31:48 localhost kernel: [ 0.003361] Security Framework initialized
    Feb 1 20:31:48 localhost kernel: [ 0.003365] AppArmor: AppArmor disabled by boot time parameter
    Feb 1 20:31:48 localhost kernel: [ 0.004126] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    Feb 1 20:31:48 localhost kernel: [ 0.007900] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Feb 1 20:31:48 localhost kernel: [ 0.008745] Mount-cache hash table entries: 256
    Feb 1 20:31:48 localhost kernel: [ 0.008854] Initializing cgroup subsys cpuacct
    Feb 1 20:31:48 localhost kernel: [ 0.008859] Initializing cgroup subsys memory
    Feb 1 20:31:48 localhost kernel: [ 0.008866] Initializing cgroup subsys devices
    Feb 1 20:31:48 localhost kernel: [ 0.008868] Initializing cgroup subsys freezer
    Feb 1 20:31:48 localhost kernel: [ 0.008869] Initializing cgroup subsys net_cls
    Feb 1 20:31:48 localhost kernel: [ 0.008870] Initializing cgroup subsys blkio
    Feb 1 20:31:48 localhost kernel: [ 0.008896] CPU: Physical Processor ID: 0
    Feb 1 20:31:48 localhost kernel: [ 0.008897] CPU: Processor Core ID: 0
    Feb 1 20:31:48 localhost kernel: [ 0.008899] mce: CPU supports 7 MCE banks
    Feb 1 20:31:48 localhost kernel: [ 0.009566] ACPI: Core revision 20110623
    Feb 1 20:31:48 localhost kernel: [ 0.013346] ftrace: allocating 16779 entries in 66 pages
    Feb 1 20:31:48 localhost kernel: [ 0.020327] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Feb 1 20:31:48 localhost kernel: [ 0.053341] CPU0: AMD FX(tm)-8120 Eight-Core Processor stepping 02
    Feb 1 20:31:48 localhost kernel: [ 0.056663] Performance Events: AMD Family 15h PMU driver.
    Feb 1 20:31:48 localhost kernel: [ 0.056663] ... version: 0
    Feb 1 20:31:48 localhost kernel: [ 0.056663] ... bit width: 48
    Feb 1 20:31:48 localhost kernel: [ 0.056663] ... generic registers: 6
    Feb 1 20:31:48 localhost kernel: [ 0.056663] ... value mask: 0000ffffffffffff
    Feb 1 20:31:48 localhost kernel: [ 0.056663] ... max period: 00007fffffffffff
    Feb 1 20:31:48 localhost kernel: [ 0.056663] ... fixed-purpose events: 0
    Feb 1 20:31:48 localhost kernel: [ 0.056663] ... event mask: 000000000000003f
    Feb 1 20:31:48 localhost kernel: [ 0.073374] NMI watchdog enabled, takes one hw-pmu counter.
    Feb 1 20:31:48 localhost kernel: [ 0.100015] Booting Node 0, Processors #1
    Feb 1 20:31:48 localhost kernel: [ 0.196673] NMI watchdog enabled, takes one hw-pmu counter.
    Feb 1 20:31:48 localhost kernel: [ 0.216689] #2
    Feb 1 20:31:48 localhost kernel: [ 0.313331] NMI watchdog enabled, takes one hw-pmu counter.
    Feb 1 20:31:48 localhost kernel: [ 0.333338] #3
    Feb 1 20:31:48 localhost kernel: [ 0.429988] NMI watchdog enabled, takes one hw-pmu counter.
    Feb 1 20:31:48 localhost kernel: [ 0.449998] #4
    Feb 1 20:31:48 localhost kernel: [ 0.546652] NMI watchdog enabled, takes one hw-pmu counter.
    Feb 1 20:31:48 localhost kernel: [ 0.566662] #5
    Feb 1 20:31:48 localhost kernel: [ 0.663312] NMI watchdog enabled, takes one hw-pmu counter.
    Feb 1 20:31:48 localhost kernel: [ 0.683316] #6
    Feb 1 20:31:48 localhost kernel: [ 0.779965] NMI watchdog enabled, takes one hw-pmu counter.
    Feb 1 20:31:48 localhost kernel: [ 0.799971] #7 Ok.
    Feb 1 20:31:48 localhost kernel: [ 0.896625] NMI watchdog enabled, takes one hw-pmu counter.
    Feb 1 20:31:48 localhost kernel: [ 0.903288] Brought up 8 CPUs
    Feb 1 20:31:48 localhost kernel: [ 0.903291] Total of 8 processors activated (49786.82 BogoMIPS).
    Feb 1 20:31:48 localhost kernel: [ 0.906788] devtmpfs: initialized
    Feb 1 20:31:48 localhost kernel: [ 0.908166] PM: Registering ACPI NVS region at cd71e000 (344064 bytes)
    Feb 1 20:31:48 localhost kernel: [ 0.908166] PM: Registering ACPI NVS region at cdada000 (69632 bytes)
    Feb 1 20:31:48 localhost kernel: [ 0.908166] PM: Registering ACPI NVS region at cdafe000 (8192 bytes)
    Feb 1 20:31:48 localhost kernel: [ 0.908166] PM: Registering ACPI NVS region at cdb09000 (24576 bytes)
    Feb 1 20:31:48 localhost kernel: [ 0.908166] PM: Registering ACPI NVS region at cdb71000 (2109440 bytes)
    Feb 1 20:31:48 localhost kernel: [ 0.910376] print_constraints: dummy:
    Feb 1 20:31:48 localhost kernel: [ 0.910415] NET: Registered protocol family 16
    Feb 1 20:31:48 localhost kernel: [ 0.910507] Extended Config Space enabled on 1 nodes
    Feb 1 20:31:48 localhost kernel: [ 0.910549] ACPI: bus type pci registered
    Feb 1 20:31:48 localhost kernel: [ 0.910607] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Feb 1 20:31:48 localhost kernel: [ 0.910610] PCI: not using MMCONFIG
    Feb 1 20:31:48 localhost kernel: [ 0.910612] PCI: Using configuration type 1 for base access
    Feb 1 20:31:48 localhost kernel: [ 0.910613] PCI: Using configuration type 1 for extended access
    Feb 1 20:31:48 localhost kernel: [ 0.911157] bio: create slab <bio-0> at 0
    Feb 1 20:31:48 localhost kernel: [ 0.911157] ACPI: Added _OSI(Module Device)
    Feb 1 20:31:48 localhost kernel: [ 0.911157] ACPI: Added _OSI(Processor Device)
    Feb 1 20:31:48 localhost kernel: [ 0.911157] ACPI: Added _OSI(3.0 _SCP Extensions)
    Feb 1 20:31:48 localhost kernel: [ 0.911157] ACPI: Added _OSI(Processor Aggregator Device)
    Feb 1 20:31:48 localhost kernel: [ 0.913406] ACPI: Executed 2 blocks of module-level executable AML code
    Feb 1 20:31:48 localhost kernel: [ 0.923431] ACPI Error: [RAMB] Namespace lookup failure, AE_NOT_FOUND (20110623/psargs-359)
    Feb 1 20:31:48 localhost kernel: [ 0.923438] ACPI Exception: AE_NOT_FOUND, Could not execute arguments for [RAMW] (Region) (20110623/nsinit-349)
    Feb 1 20:31:48 localhost kernel: [ 0.923740] ACPI: Interpreter enabled
    Feb 1 20:31:48 localhost kernel: [ 0.923743] ACPI: (supports S0 S1 S3 S4 S5)
    Feb 1 20:31:48 localhost kernel: [ 0.923766] ACPI: Using IOAPIC for interrupt routing
    Feb 1 20:31:48 localhost kernel: [ 0.923907] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Feb 1 20:31:48 localhost kernel: [ 0.923945] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    Feb 1 20:31:48 localhost kernel: [ 0.972366] ACPI: EC: GPE = 0xa, I/O: command/status = 0x66, data = 0x62
    Feb 1 20:31:48 localhost kernel: [ 0.972499] ACPI: No dock devices found.
    Feb 1 20:31:48 localhost kernel: [ 0.972500] HEST: Table not found.
    Feb 1 20:31:48 localhost kernel: [ 0.972503] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Feb 1 20:31:48 localhost kernel: [ 0.972680] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Feb 1 20:31:48 localhost kernel: [ 0.972959] pci_root PNP0A03:00: host bridge window [io 0x0000-0x03af]
    Feb 1 20:31:48 localhost kernel: [ 0.972962] pci_root PNP0A03:00: host bridge window [io 0x03e0-0x0cf7]
    Feb 1 20:31:48 localhost kernel: [ 0.972964] pci_root PNP0A03:00: host bridge window [io 0x03b0-0x03df]
    Feb 1 20:31:48 localhost kernel: [ 0.972966] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff]
    Feb 1 20:31:48 localhost kernel: [ 0.972968] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
    Feb 1 20:31:48 localhost kernel: [ 0.972970] pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff]
    Feb 1 20:31:48 localhost kernel: [ 0.972972] pci_root PNP0A03:00: host bridge window [mem 0xd0000000-0xffffffff]
    Feb 1 20:31:48 localhost kernel: [ 0.974557] pci 0000:01:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
    Feb 1 20:31:48 localhost kernel: [ 0.974564] pci 0000:00:02.0: PCI bridge to [bus 01-01]
    Feb 1 20:31:48 localhost kernel: [ 0.979960] pci 0000:00:04.0: PCI bridge to [bus 02-02]
    Feb 1 20:31:48 localhost kernel: [ 0.986619] pci 0000:00:05.0: PCI bridge to [bus 03-03]
    Feb 1 20:31:48 localhost kernel: [ 0.993283] pci 0000:00:06.0: PCI bridge to [bus 04-04]
    Feb 1 20:31:48 localhost kernel: [ 0.999948] pci 0000:00:07.0: PCI bridge to [bus 05-05]
    Feb 1 20:31:48 localhost kernel: [ 1.006616] pci 0000:00:09.0: PCI bridge to [bus 06-06]
    Feb 1 20:31:48 localhost kernel: [ 1.006676] pci 0000:00:14.4: PCI bridge to [bus 07-07] (subtractive decode)
    Feb 1 20:31:48 localhost kernel: [ 1.007075] pci0000:00: Requesting ACPI _OSC control (0x1d)
    Feb 1 20:31:48 localhost kernel: [ 1.007078] pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
    Feb 1 20:31:48 localhost kernel: [ 1.007080] ACPI _OSC control for PCIe not granted, disabling ASPM
    Feb 1 20:31:48 localhost kernel: [ 1.013835] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 7 10 11 14 15) *0
    Feb 1 20:31:48 localhost kernel: [ 1.013895] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 7 10 11 14 15) *0
    Feb 1 20:31:48 localhost kernel: [ 1.013957] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 7 10 11 14 15) *0
    Feb 1 20:31:48 localhost kernel: [ 1.014018] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 10 11 14 15) *0
    Feb 1 20:31:48 localhost kernel: [ 1.014066] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 7 10 11 14 15) *0
    Feb 1 20:31:48 localhost kernel: [ 1.014103] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 7 10 11 14 15) *0
    Feb 1 20:31:48 localhost kernel: [ 1.014141] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 7 10 11 14 15) *0
    Feb 1 20:31:48 localhost kernel: [ 1.014178] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 7 10 11 14 15) *0
    Feb 1 20:31:48 localhost kernel: [ 1.014248] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    Feb 1 20:31:48 localhost kernel: [ 1.014248] vgaarb: loaded
    Feb 1 20:31:48 localhost kernel: [ 1.014248] vgaarb: bridge control possible 0000:01:00.0
    Feb 1 20:31:48 localhost kernel: [ 1.014248] PCI: Using ACPI for IRQ routing
    Feb 1 20:31:48 localhost kernel: [ 1.020997] NetLabel: Initializing
    Feb 1 20:31:48 localhost kernel: [ 1.020999] NetLabel: domain hash size = 128
    Feb 1 20:31:48 localhost kernel: [ 1.021000] NetLabel: protocols = UNLABELED CIPSOv4
    Feb 1 20:31:48 localhost kernel: [ 1.021013] NetLabel: unlabeled traffic allowed by default
    Feb 1 20:31:48 localhost kernel: [ 1.021026] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    Feb 1 20:31:48 localhost kernel: [ 1.021030] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
    Feb 1 20:31:48 localhost kernel: [ 1.023074] Switching to clocksource hpet
    Feb 1 20:31:48 localhost kernel: [ 1.025725] pnp: PnP ACPI init
    Feb 1 20:31:48 localhost kernel: [ 1.025737] ACPI: bus type pnp registered
    Feb 1 20:31:48 localhost kernel: [ 1.026037] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026620] system 00:02: [io 0x040b] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026623] system 00:02: [io 0x04d6] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026625] system 00:02: [io 0x0c00-0x0c01] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026627] system 00:02: [io 0x0c14] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026629] system 00:02: [io 0x0c50-0x0c51] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026632] system 00:02: [io 0x0c52] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026634] system 00:02: [io 0x0c6c] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026636] system 00:02: [io 0x0c6f] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026638] system 00:02: [io 0x0cd0-0x0cd1] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026640] system 00:02: [io 0x0cd2-0x0cd3] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026642] system 00:02: [io 0x0cd4-0x0cd5] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026644] system 00:02: [io 0x0cd6-0x0cd7] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026646] system 00:02: [io 0x0cd8-0x0cdf] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026649] system 00:02: [io 0x0800-0x089f] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026651] system 00:02: [io 0x0b20-0x0b3f] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026653] system 00:02: [io 0x0900-0x090f] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026656] system 00:02: [io 0x0910-0x091f] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026658] system 00:02: [io 0xfe00-0xfefe] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026661] system 00:02: [mem 0xfec00000-0xfec00fff] could not be reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026664] system 00:02: [mem 0xfee00000-0xfee00fff] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026677] system 00:02: [mem 0xfed80000-0xfed8ffff] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026680] system 00:02: [mem 0xfed61000-0xfed70fff] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026682] system 00:02: [mem 0xfec10000-0xfec10fff] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026685] system 00:02: [mem 0xfed00000-0xfed00fff] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026688] system 00:02: [mem 0xffc00000-0xffffffff] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026854] system 00:03: [io 0x0290-0x02af] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.027074] system 00:07: [io 0x04d0-0x04d1] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.027343] system 00:0a: [mem 0xfeb20000-0xfeb23fff] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.027480] system 00:0b: [mem 0xfec20000-0xfec200ff] could not be reserved
    Feb 1 20:31:48 localhost kernel: [ 1.027648] pnp: PnP ACPI: found 13 devices
    Feb 1 20:31:48 localhost kernel: [ 1.027650] ACPI: ACPI bus type pnp unregistered
    Feb 1 20:31:48 localhost kernel: [ 1.034572] pci 0000:00:02.0: PCI bridge to [bus 01-01]
    Feb 1 20:31:48 localhost kernel: [ 1.034575] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    Feb 1 20:31:48 localhost kernel: [ 1.034578] pci 0000:00:02.0: bridge window [mem 0xf4000000-0xf70fffff]
    Feb 1 20:31:48 localhost kernel: [ 1.034581] pci 0000:00:02.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    Feb 1 20:31:48 localhost kernel: [ 1.034585] pci 0000:00:04.0: PCI bridge to [bus 02-02]
    Feb 1 20:31:48 localhost kernel: [ 1.034587] pci 0000:00:04.0: bridge window [io 0xd000-0xdfff]
    Feb 1 20:31:48 localhost kernel: [ 1.034590] pci 0000:00:04.0: bridge window [mem 0xf7500000-0xf75fffff]
    Feb 1 20:31:48 localhost kernel: [ 1.034594] pci 0000:00:05.0: PCI bridge to [bus 03-03]
    Feb 1 20:31:48 localhost kernel: [ 1.034597] pci 0000:00:05.0: bridge window [io 0xc000-0xcfff]
    Feb 1 20:31:48 localhost kernel: [ 1.034599] pci 0000:00:05.0: bridge window [mem 0xf7400000-0xf74fffff]
    Feb 1 20:31:48 localhost kernel: [ 1.034604] pci 0000:00:06.0: PCI bridge to [bus 04-04]
    Feb 1 20:31:48 localhost kernel: [ 1.034606] pci 0000:00:06.0: bridge window [mem 0xf7300000-0xf73fffff]
    Feb 1 20:31:48 localhost kernel: [ 1.034611] pci 0000:00:07.0: PCI bridge to [bus 05-05]
    Feb 1 20:31:48 localhost kernel: [ 1.034613] pci 0000:00:07.0: bridge window [mem 0xf7200000-0xf72fffff]
    Feb 1 20:31:48 localhost kernel: [ 1.034617] pci 0000:00:09.0: PCI bridge to [bus 06-06]
    Feb 1 20:31:48 localhost kernel: [ 1.034620] pci 0000:00:09.0: bridge window [mem 0xf7100000-0xf71fffff]
    Feb 1 20:31:48 localhost kernel: [ 1.034624] pci 0000:00:14.4: PCI bridge to [bus 07-07]
    Feb 1 20:31:48 localhost kernel: [ 1.034641] pci 0000:00:02.0: PCI INT A -> GSI 52 (level, low) -> IRQ 52
    Feb 1 20:31:48 localhost kernel: [ 1.034649] pci 0000:00:04.0: PCI INT A -> GSI 52 (level, low) -> IRQ 52
    Feb 1 20:31:48 localhost kernel: [ 1.034656] pci 0000:00:05.0: PCI INT A -> GSI 52 (level, low) -> IRQ 52
    Feb 1 20:31:48 localhost kernel: [ 1.034666] pci 0000:00:06.0: PCI INT A -> GSI 53 (level, low) -> IRQ 53
    Feb 1 20:31:48 localhost kernel: [ 1.034673] pci 0000:00:07.0: PCI INT A -> GSI 53 (level, low) -> IRQ 53
    Feb 1 20:31:48 localhost kernel: [ 1.034679] pci 0000:00:09.0: PCI INT A -> GSI 53 (level, low) -> IRQ 53
    Feb 1 20:31:48 localhost kernel: [ 1.034759] NET: Registered protocol family 2
    Feb 1 20:31:48 localhost kernel: [ 1.035011] IP route cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Feb 1 20:31:48 localhost kernel: [ 1.036243] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    Feb 1 20:31:48 localhost kernel: [ 1.037985] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    Feb 1 20:31:48 localhost kernel: [ 1.038182] TCP: Hash tables configured (established 524288 bind 65536)
    Feb 1 20:31:48 localhost kernel: [ 1.038184] TCP reno registered
    Feb 1 20:31:48 localhost kernel: [ 1.038200] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    Feb 1 20:31:48 localhost kernel: [ 1.038241] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    Feb 1 20:31:48 localhost kernel: [ 1.038330] NET: Registered protocol family 1
    Feb 1 20:31:48 localhost kernel: [ 2.103599] Unpacking initramfs...
    Feb 1 20:31:48 localhost kernel: [ 2.145316] Freeing initrd memory: 2708k freed
    Feb 1 20:31:48 localhost kernel: [ 2.145978] pci 0000:00:00.2: PCI INT A -> GSI 55 (level, low) -> IRQ 55
    Feb 1 20:31:48 localhost kernel: [ 2.146104] AMD-Vi: Enabling IOMMU at 0000:00:00.2 cap 0x40
    Feb 1 20:31:48 localhost kernel: [ 2.213957] AMD-Vi: Lazy IO/TLB flushing enabled
    Feb 1 20:31:48 localhost kernel: [ 2.213960] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    Feb 1 20:31:48 localhost kernel: [ 2.213962] Placing 64MB software IO TLB between ffff8800c971e000 - ffff8800cd71e000
    Feb 1 20:31:48 localhost kernel: [ 2.213965] software IO TLB at phys 0xc971e000 - 0xcd71e000
    Feb 1 20:31:48 localhost kernel: [ 2.214583] perf: AMD IBS detected (0x000000ff)
    Feb 1 20:31:48 localhost kernel: [ 2.214717] audit: initializing netlink socket (disabled)
    Feb 1 20:31:48 localhost kernel: [ 2.214725] type=2000 audit(1328128291.213:1): initialized
    Feb 1 20:31:48 localhost kernel: [ 2.226263] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    Feb 1 20:31:48 localhost kernel: [ 2.249701] VFS: Disk quotas dquot_6.5.2
    Feb 1 20:31:48 localhost kernel: [ 2.249754] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Feb 1 20:31:48 localhost kernel: [ 2.249833] msgmni has been set to 15863
    Feb 1 20:31:48 localhost kernel: [ 2.250009] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    Feb 1 20:31:48 localhost kernel: [ 2.250041] io scheduler noop registered
    Feb 1 20:31:48 localhost kernel: [ 2.250042] io scheduler deadline registered
    Feb 1 20:31:48 localhost kernel: [ 2.250071] io scheduler cfq registered (default)
    Feb 1 20:31:48 localhost kernel: [ 2.250407] ERST: Table is not found!
    Feb 1 20:31:48 localhost kernel: [ 2.250409] GHES: HEST is not enabled!
    Feb 1 20:31:48 localhost kernel: [ 2.250463] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Feb 1 20:31:48 localhost kernel: [ 2.463583] Linux agpgart interface v0.103
    Feb 1 20:31:48 localhost kernel: [ 2.463656] i8042: PNP: No PS/2 controller found. Probing ports directly.
    Feb 1 20:31:48 localhost kernel: [ 2.463999] serio: i8042 KBD port at 0x60,0x64 irq 1
    Feb 1 20:31:48 localhost kernel: [ 2.464021] serio: i8042 AUX port at 0x60,0x64 irq 12
    Feb 1 20:31:48 localhost kernel: [ 2.464164] mousedev: PS/2 mouse device common for all mice
    Feb 1 20:31:48 localhost kernel: [ 2.464197] rtc_cmos 00:05: RTC can wake from S4
    Feb 1 20:31:48 localhost kernel: [ 2.464319] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    Feb 1 20:31:48 localhost kernel: [ 2.464343] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    Feb 1 20:31:48 localhost kernel: [ 2.464357] cpuidle: using governor ladder
    Feb 1 20:31:48 localhost kernel: [ 2.464359] cpuidle: using governor menu
    Feb 1 20:31:48 localhost kernel: [ 2.464584] TCP cubic registered
    Feb 1 20:31:48 localhost kernel: [ 2.464586] NET: Registered protocol family 17
    Feb 1 20:31:48 localhost kernel: [ 2.464591] Registering the dns_resolver key type
    Feb 1 20:31:48 localhost kernel: [ 2.464716] registered taskstats version 1
    Feb 1 20:31:48 localhost kernel: [ 2.476065] rtc_cmos 00:05: setting system clock to 2012-02-01 20:31:32 UTC (1328128292)
    Feb 1 20:31:48 localhost kernel: [ 2.476133] Initializing network drop monitor service
    Feb 1 20:31:48 localhost kernel: [ 2.478077] Freeing unused kernel memory: 728k freed
    Feb 1 20:31:48 localhost kernel: [ 2.478200] Write protecting the kernel read-only data: 8192k
    Feb 1 20:31:48 localhost kernel: [ 2.486030] Freeing unused kernel memory: 1844k freed
    Feb 1 20:31:48 localhost kernel: [ 2.489293] Freeing unused kernel memory: 692k freed
    Feb 1 20:31:48 localhost [ 2.496933] udevd[63]: starting version 179
    Feb 1 20:31:48 localhost kernel: [ 2.519274] SCSI subsystem initialized
    Feb 1 20:31:48 localhost kernel: [ 2.522067] usbcore: registered new interface driver usbfs
    Feb 1 20:31:48 localhost kernel: [ 2.522092] usbcore: registered new interface driver hub
    Feb 1 20:31:48 localhost kernel: [ 2.522136] usbcore: registered new device driver usb
    Feb 1 20:31:48 localhost kernel: [ 2.525268] xhci_hcd 0000:04:00.0: PCI INT A -> GSI 51 (level, low) -> IRQ 51
    Feb 1 20:31:48 localhost kernel: [ 2.525310] xhci_hcd 0000:04:00.0: xHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.525333] xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 1
    Feb 1 20:31:48 localhost kernel: [ 2.532052] ahci 0000:00:11.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
    Feb 1 20:31:48 localhost kernel: [ 2.532191] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
    Feb 1 20:31:48 localhost kernel: [ 2.532195] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part sxs
    Feb 1 20:31:48 localhost kernel: [ 2.534149] scsi0 : ahci
    Feb 1 20:31:48 localhost kernel: [ 2.534430] scsi1 : ahci
    Feb 1 20:31:48 localhost kernel: [ 2.534950] scsi2 : ahci
    Feb 1 20:31:48 localhost kernel: [ 2.534973] xhci_hcd 0000:04:00.0: irq 51, io mem 0xf7300000
    Feb 1 20:31:48 localhost kernel: [ 2.535368] scsi3 : ahci
    Feb 1 20:31:48 localhost kernel: [ 2.535611] hub 1-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.535617] hub 1-0:1.0: 2 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.535667] scsi4 : ahci
    Feb 1 20:31:48 localhost kernel: [ 2.535735] xhci_hcd 0000:04:00.0: xHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.535743] xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 2
    Feb 1 20:31:48 localhost kernel: [ 2.535809] scsi5 : ahci
    Feb 1 20:31:48 localhost kernel: [ 2.535956] hub 2-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.535963] hub 2-0:1.0: 2 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.536253] ata1: SATA max UDMA/133 abar m1024@0xf760b000 port 0xf760b100 irq 19
    Feb 1 20:31:48 localhost kernel: [ 2.536257] ata2: SATA max UDMA/133 abar m1024@0xf760b000 port 0xf760b180 irq 19
    Feb 1 20:31:48 localhost kernel: [ 2.536260] ata3: SATA max UDMA/133 abar m1024@0xf760b000 port 0xf760b200 irq 19
    Feb 1 20:31:48 localhost kernel: [ 2.536263] ata4: SATA max UDMA/133 abar m1024@0xf760b000 port 0xf760b280 irq 19
    Feb 1 20:31:48 localhost kernel: [ 2.536266] ata5: SATA max UDMA/133 abar m1024@0xf760b000 port 0xf760b300 irq 19
    Feb 1 20:31:48 localhost kernel: [ 2.536269] ata6: SATA max UDMA/133 abar m1024@0xf760b000 port 0xf760b380 irq 19
    Feb 1 20:31:48 localhost kernel: [ 2.536304] ahci 0000:02:00.0: PCI INT A -> GSI 44 (level, low) -> IRQ 44
    Feb 1 20:31:48 localhost kernel: [ 2.536361] ahci: SSS flag set, parallel bus scan disabled
    Feb 1 20:31:48 localhost kernel: [ 2.536390] ahci 0000:02:00.0: AHCI 0001.0200 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
    Feb 1 20:31:48 localhost kernel: [ 2.536393] ahci 0000:02:00.0: flags: 64bit ncq sntf stag led clo pmp pio slum part ccc sxs
    Feb 1 20:31:48 localhost kernel: [ 2.537576] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Feb 1 20:31:48 localhost kernel: [ 2.537596] scsi6 : ahci
    Feb 1 20:31:48 localhost kernel: [ 2.537620] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    Feb 1 20:31:48 localhost kernel: [ 2.537653] ehci_hcd 0000:00:12.2: EHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.537672] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 3
    Feb 1 20:31:48 localhost kernel: [ 2.537681] ehci_hcd 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    Feb 1 20:31:48 localhost kernel: [ 2.537719] ehci_hcd 0000:00:12.2: debug port 1
    Feb 1 20:31:48 localhost kernel: [ 2.537734] scsi7 : ahci
    Feb 1 20:31:48 localhost kernel: [ 2.537740] ehci_hcd 0000:00:12.2: irq 17, io mem 0xf7609000
    Feb 1 20:31:48 localhost kernel: [ 2.537799] ata7: SATA max UDMA/133 abar m512@0xf7500000 port 0xf7500100 irq 81
    Feb 1 20:31:48 localhost kernel: [ 2.537803] ata8: SATA max UDMA/133 abar m512@0xf7500000 port 0xf7500180 irq 81
    Feb 1 20:31:48 localhost kernel: [ 2.550064] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
    Feb 1 20:31:48 localhost kernel: [ 2.550194] hub 3-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.550198] hub 3-0:1.0: 5 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.550282] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 21 (level, low) -> IRQ 21
    Feb 1 20:31:48 localhost kernel: [ 2.550313] ehci_hcd 0000:00:13.2: EHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.550320] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 4
    Feb 1 20:31:48 localhost kernel: [ 2.550326] ehci_hcd 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    Feb 1 20:31:48 localhost kernel: [ 2.550345] ehci_hcd 0000:00:13.2: debug port 1
    Feb 1 20:31:48 localhost kernel: [ 2.550362] ehci_hcd 0000:00:13.2: irq 21, io mem 0xf7607000
    Feb 1 20:31:48 localhost kernel: [ 2.553402] xhci_hcd 0000:05:00.0: PCI INT A -> GSI 50 (level, low) -> IRQ 50
    Feb 1 20:31:48 localhost kernel: [ 2.553438] xhci_hcd 0000:05:00.0: xHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.553447] xhci_hcd 0000:05:00.0: new USB bus registered, assigned bus number 5
    Feb 1 20:31:48 localhost kernel: [ 2.555089] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    Feb 1 20:31:48 localhost kernel: [ 2.560049] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
    Feb 1 20:31:48 localhost kernel: [ 2.560188] hub 4-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.560191] hub 4-0:1.0: 5 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.560280] ehci_hcd 0000:00:16.2: PCI INT B -> GSI 23 (level, low) -> IRQ 23
    Feb 1 20:31:48 localhost kernel: [ 2.560314] ehci_hcd 0000:00:16.2: EHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.560321] ehci_hcd 0000:00:16.2: new USB bus registered, assigned bus number 6
    Feb 1 20:31:48 localhost kernel: [ 2.560329] ehci_hcd 0000:00:16.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    Feb 1 20:31:48 localhost kernel: [ 2.560349] ehci_hcd 0000:00:16.2: debug port 1
    Feb 1 20:31:48 localhost kernel: [ 2.560367] ehci_hcd 0000:00:16.2: irq 23, io mem 0xf7604000
    Feb 1 20:31:48 localhost kernel: [ 2.563065] xhci_hcd 0000:05:00.0: irq 50, io mem 0xf7200000
    Feb 1 20:31:48 localhost kernel: [ 2.563367] hub 5-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.563373] hub 5-0:1.0: 2 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.563437] xhci_hcd 0000:05:00.0: xHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.563443] xhci_hcd 0000:05:00.0: new USB bus registered, assigned bus number 7
    Feb 1 20:31:48 localhost kernel: [ 2.563617] hub 7-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.563625] hub 7-0:1.0: 2 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.573392] ehci_hcd 0000:00:16.2: USB 2.0 started, EHCI 1.00
    Feb 1 20:31:48 localhost kernel: [ 2.573722] hub 6-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.573728] hub 6-0:1.0: 4 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.574021] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    Feb 1 20:31:48 localhost kernel: [ 2.574050] ohci_hcd 0000:00:12.0: OHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.574059] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 8
    Feb 1 20:31:48 localhost kernel: [ 2.574083] ohci_hcd 0000:00:12.0: irq 18, io mem 0xf760a000
    Feb 1 20:31:48 localhost kernel: [ 2.580067] xhci_hcd 0000:06:00.0: PCI INT A -> GSI 48 (level, low) -> IRQ 48
    Feb 1 20:31:48 localhost kernel: [ 2.580106] xhci_hcd 0000:06:00.0: xHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.580121] xhci_hcd 0000:06:00.0: new USB bus registered, assigned bus number 9
    Feb 1 20:31:48 localhost kernel: [ 2.589735] xhci_hcd 0000:06:00.0: irq 48, io mem 0xf7100000
    Feb 1 20:31:48 localhost kernel: [ 2.590047] hub 9-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.590052] hub 9-0:1.0: 2 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.590111] xhci_hcd 0000:06:00.0: xHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.590116] xhci_hcd 0000:06:00.0: new USB bus registered, assigned bus number 10
    Feb 1 20:31:48 localhost kernel: [ 2.590227] hub 10-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.590232] hub 10-0:1.0: 2 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.634184] hub 8-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.634190] hub 8-0:1.0: 5 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.634310] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
    Feb 1 20:31:48 localhost kernel: [ 2.634324] ohci_hcd 0000:00:13.0: OHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.634331] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 11
    Feb 1 20:31:48 localhost kernel: [ 2.634353] ohci_hcd 0000:00:13.0: irq 20, io mem 0xf7608000
    Feb 1 20:31:48 localhost kernel: [ 2.690863] hub 11-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.690869] hub 11-0:1.0: 5 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.690964] ohci_hcd 0000:00:14.5: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    Feb 1 20:31:48 localhost kernel: [ 2.690977] ohci_hcd 0000:00:14.5: OHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.690984] ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 12
    Feb 1 20:31:48 localhost kernel: [ 2.691000] ohci_hcd 0000:00:14.5: irq 18, io mem 0xf7606000
    Feb 1 20:31:48 localhost kernel: [ 2.747523] hub 12-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.747528] hub 12-0:1.0: 2 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.747611] ohci_hcd 0000:00:16.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    Feb 1 20:31:48 localhost kernel: [ 2.747623] ohci_hcd 0000:00:16.0: OHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.747631] ohci_hcd 0000:00:16.0: new USB bus registered, assigned bus number 13
    Feb 1 20:31:48 localhost kernel: [ 2.747651] ohci_hcd 0000:00:16.0: irq 22, io mem 0xf7605000
    Feb 1 20:31:48 localhost kernel: [ 2.804198] hub 13-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.804204] hub 13-0:1.0: 4 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.846739] ata5: SATA link down (SStatus 0 SControl 300)
    Feb 1 20:31:48 localhost kernel: [ 2.853415] ata6: SATA link down (SStatus 0 SControl 300)
    Feb 1 20:31:48 localhost kernel: [ 2.853422] ata7: SATA link down (SStatus 0 SControl 300)
    Feb 1 20:31:48 localhost kernel: [ 2.860071] usb 3-3: new high-speed USB device number 2 using ehci_hcd
    Feb 1 20:31:48 localhost kernel: [ 3.013403] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Feb 1 20:31:48 localhost kernel: [ 3.013934] ata2.00: ATAPI: Optiarc DVD RW AD-7170S, 1.00, max UDMA/66
    Feb 1 20:31:48 localhost kernel: [ 3.014751] ata2.00: configured for UDMA/66
    Feb 1 20:31:48 localhost kernel: [ 3.020037] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Feb 1 20:31:48 localhost kernel: [ 3.020063] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Feb 1 20:31:48 localhost kernel: [ 3.020360] ata1.00: ATA-8: INTEL SSDSA2CW120G3, 4PC10362, max UDMA/133
    Feb 1 20:31:48 localhost kernel: [ 3.020362] ata1.00: 234441648 sectors, multi 16: LBA48 NCQ (depth 31/32)
    Feb 1 20:31:48 localhost kernel: [ 3.020690] ata1.00: configured for UDMA/133
    Feb 1 20:31:48 localhost kernel: [ 3.020813] scsi 0:0:0:0: Direct-Access ATA INTEL SSDSA2CW12 4PC1 PQ: 0 ANSI: 5
    Feb 1 20:31:48 localhost kernel: [ 3.022190] scsi 1:0:0:0: CD-ROM Optiarc DVD RW AD-7170S 1.00 PQ: 0 ANSI: 5
    Feb 1 20:31:48 localhost kernel: [ 3.074092] ata3.00: ATA-7: ST3500641AS, 3.AGE, max UDMA/133
    Feb 1 20:31:48 localhost kernel: [ 3.074095] ata3.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
    Feb 1 20:31:48 localhost kernel: [ 3.140722] ata3.00: configured for UDMA/133
    Feb 1 20:31:48 localhost kernel: [ 3.140825] scsi 2:0:0:0: Direct-Access ATA ST3500641AS 3.AG PQ: 0 ANSI: 5
    Feb 1 20:31:48 localhost kernel: [ 3.216724] Refined TSC clocksource calibration: 3110.408 MHz.
    Feb 1 20:31:48 localhost kernel: [ 3.216733] Switching to clocksource tsc
    Feb 1 20:31:48 localhost kernel: [ 3.263391] usb 4-3: new high-speed USB device number 2 using ehci_hcd
    Feb 1 20:31:48 localhost kernel: [ 3.395804] hub 4-3:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 3.395894] hub 4-3:1.0: 3 ports detected
    Feb 1 20:31:48 localhost kernel: [ 3.553384] usb 4-5: new high-speed USB device number 4 using ehci_hcd
    Feb 1 20:31:48 localhost kernel: [ 4.046721] usb 11-4: new low-speed USB device number 2 using ohci_hcd
    Feb 1 20:31:48 localhost kernel: [ 4.273663] usb 4-3.2: new low-speed USB device number 5 using ehci_hcd
    Feb 1 20:31:48 localhost kernel: [ 4.420186] input: Western Digital My Book as /devices/pci0000:00/0000:00:12.2/usb3/3-3/3-3:1.1/input/input0
    Feb 1 20:31:48 localhost kernel: [ 4.420237] generic-usb 0003:1058:1102.0001: input,hidraw0: USB HID v1.11 Device [Western Digital My Book] on usb-0000:00:12.2-3/input1
    Feb 1 20:31:48 localhost kernel: [ 4.426121] input: Microsoft Microsoft Optical Mouse with Tilt Wheel as /devices/pci0000:00/0000:00:13.0/usb11/11-4/11-4:1.0/input/input1
    Feb 1 20:31:48 localhost kernel: [ 4.426201] generic-usb 0003:045E:00D1.0002: input,hidraw1: USB HID v1.11 Mouse [Microsoft Microsoft Optical Mouse with Tilt Wheel] on usb-0000:00:13.0-4/input0
    Feb 1 20:31:48 localhost kernel: [ 4.426298] usbcore: registered new interface driver usbhid
    Feb 1 20:31:48 localhost kernel: [ 4.426300] usbhid: USB HID core driver
    Feb 1 20:31:48 localhost kernel: [ 4.430576] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:13.2/usb4/4-3/4-3.2/4-3.2:1.0/input/input2
    Feb 1 20:31:48 localhost kernel: [ 4.430693] apple 0003:05AC:0221.0003: input,hidraw2: USB HID v1.11 Keyboard [Apple, Inc Apple Keyboard] on usb-0000:00:13.2-3.2/input0
    Feb 1 20:31:48 localhost kernel: [ 4.433681] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:13.2/usb4/4-3/4-3.2/4-3.2:1.1/input/input3
    Feb 1 20:31:48 localhost kernel: [ 4.433739] apple 0003:05AC:0221.0004: input,hidraw3: USB HID v1.11 Device [Apple, Inc Apple Keyboard] on usb-0000:00:13.2-3.2/input1
    Feb 1 20:31:48 localhost kernel: [ 12.293392] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Feb 1 20:31:48 localhost kernel: [ 12.309096] ata4.00: ATA-8: WDC WD3000GLFS-01F8U0, 03.03V01, max UDMA/133
    Feb 1 20:31:48 localhost kernel: [ 12.309099] ata4.00: 586072368 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
    Feb 1 20:31:48 localhost kernel: [ 12.312342] ata4.00: configured for UDMA/133
    Feb 1 20:31:48 localhost kernel: [ 12.312441] scsi 3:0:0:0: Direct-Access ATA WDC WD3000GLFS-0 03.0 PQ: 0 ANSI: 5
    Feb 1 20:31:48 localhost kernel: [ 12.630028] ata8: SATA link down (SStatus 0 SControl 300)
    Feb 1 20:31:48 localhost kernel: [ 12.635871] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/111 GiB)
    Feb 1 20:31:48 localhost kernel: [ 12.635950] sd 2:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    Feb 1 20:31:48 localhost kernel: [ 12.635957] sd 0:0:0:0: [sda] Write Protect is off
    Feb 1 20:31:48 localhost kernel: [ 12.635976] sd 3:0:0:0: [sdc] 586072368 512-byte logical blocks: (300 GB/279 GiB)
    Feb 1 20:31:48 localhost kernel: [ 12.635985] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Feb 1 20:31:48 localhost kernel: [ 12.636034] sd 3:0:0:0: [sdc] Write Protect is off
    Feb 1 20:31:48 localhost kernel: [ 12.636045] sd 2:0:0:0: [sdb] Write Protect is off
    Feb 1 20:31:48 localhost kernel: [ 12.636066] sd 3:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Feb 1 20:31:48 localhost kernel: [ 12.636079] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Feb 1 20:31:48 localhost kernel: [ 12.636749] sda: sda1 sda2 sda3 sda4
    Feb 1 20:31:48 localhost kernel: [ 12.637439] sd 0:0:0:0: [sda] Attached SCSI disk
    Feb 1 20:31:48 localhost kernel: [ 12.640917] sdc: sdc1
    Feb 1 20:31:48 localhost kernel: [ 12.641165] sd 3:0:0:0: [sdc] Attached SCSI disk
    Feb 1 20:31:48 localhost kernel: [ 12.651794] sdb: sdb1 sdb2
    Feb 1 20:31:48 localhost kernel: [ 12.652085] sd 2:0:0:0: [sdb] Attached SCSI disk
    Feb 1 20:31:48 localhost kernel: [ 12.655644] sr0: scsi3-mmc drive: 125x/125x writer dvd-ram cd/rw xa/form2 cdda tray
    Feb 1 20:31:48 localhost kernel: [ 12.655648] cdrom: Uniform CD-ROM driver Revision: 3.20
    Feb 1 20:31:48 localhost kernel: [ 13.048056] Btrfs loaded
    Feb 1 20:31:48 localhost kernel: [ 13.048506] device fsid 699d671b-7064-441d-95ec-c616049fe287 devid 1 transid 3976 /dev/sda2
    Feb 1 20:31:48 localhost kernel: [ 13.056208] Btrfs detected SSD devices, enabling SSD mode
    Feb 1 20:31:48 localhost [ 13.490114] udevd[216]: starting version 180
    Feb 1 20:31:48 localhost kernel: [ 13.539060] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input4
    Feb 1 20:31:48 localhost kernel: [ 13.539066] ACPI: Power Button [PWRB]
    Feb 1 20:31:48 localhost kernel: [ 13.539864] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
    Feb 1 20:31:48 localhost kernel: [ 13.539869] ACPI: Power Button [PWRF]
    Feb 1 20:31:48 localhost kernel: [ 13.540851] wmi: Mapper loaded
    Feb 1 20:31:48 localhost kernel: [ 13.558916] SP5100 TCO timer: SP5100 TCO WatchDog Timer Driver v0.01
    Feb 1 20:31:48 localhost kernel: [ 13.560394] e1000e: Intel(R) PRO/1000 Network Driver - 1.5.1-k
    Feb 1 20:31:48 localhost kernel: [ 13.560397] e1000e: Copyright(c) 1999 - 2011 Intel Corporation.
    Feb 1 20:31:48 localhost kernel: [ 13.560422] e1000e 0000:03:00.0: Disabling ASPM L0s
    Feb 1 20:31:48 localhost kernel: [ 13.560446] e1000e 0000:03:00.0: PCI INT A -> GSI 46 (level, low) -> IRQ 46
    Feb 1 20:31:48 localhost kernel: [ 13.561584] ACPI: resource piix4_smbus [io 0x0b00-0x0b07] conflicts with ACPI region SMRG [io 0xb00-0xb2f]
    Feb 1 20:31:48 localhost kernel: [ 13.561588] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Feb 1 20:31:48 localhost kernel: [ 13.566248] [drm] Initialized drm 1.1.0 20060810
    Feb 1 20:31:48 localhost kernel: [ 13.574620] input: PC Speaker as /devices/platform/pcspkr/input/input6
    Feb 1 20:31:48 localhost kernel: [ 13.578148] EDAC MC: Ver: 2.1.0
    Feb 1 20:31:48 localhost kernel: [ 13.580298] MCE: In-kernel MCE decoding enabled.
    Feb 1 20:31:48 localhost kernel: [ 13.584054] snd_hda_intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    Feb 1 20:31:48 localhost kernel: [ 13.585205] AMD64 EDAC driver v3.4.0
    Feb 1 20:31:48 localhost kernel: [ 13.592440] MXM: GUID detected in BIOS
    Feb 1 20:31:48 localhost kernel: [ 13.592532] nouveau 0000:01:00.0: PCI INT A -> GSI 24 (level, low) -> IRQ 24
    Feb 1 20:31:48 localhost kernel: [ 13.594790] [drm] nouveau 0000:01:00.0: Detected an NV50 generation card (0x450300a3)
    Feb 1 20:31:48 localhost kernel: [ 13.599879] [drm] nouveau 0000:01:00.0: Attempting to load BIOS image from PRAMIN
    Feb 1 20:31:48 localhost kernel: [ 13.617652] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    Feb 1 20:31:48 localhost kernel: [ 13.618816] asus_wmi: ASUS WMI generic driver loaded
    Feb 1 20:31:48 localhost kernel: [ 13.619138] hda_codec: ALC889: BIOS auto-probing.
    Feb 1 20:31:48 localhost kernel: [ 13.620044] asus_wmi: Initialization: 0x0
    Feb 1 20:31:48 localhost kernel: [ 13.620072] asus_wmi: BIOS WMI version: 0.9
    Feb 1 20:31:48 localhost kernel: [ 13.620130] asus_wmi: SFUN value: 0x0
    Feb 1 20:31:48 localhost kernel: [ 13.620447] input: Eee PC WMI hotkeys as /devices/platform/eeepc-wmi/input/input7
    Feb 1 20:31:48 localhost kernel: [ 13.622424] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input8
    Feb 1 20:31:48 localhost kernel: [ 13.631444] input: HDA ATI SB Headphone as /devices/pci0000:00/0000:00:14.2/sound/card0/input9
    Feb 1 20:31:48 localhost kernel: [ 13.631636] EDAC amd64: DRAM ECC disabled.
    Feb 1 20:31:48 localhost kernel: [ 13.631648] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
    Feb 1 20:31:48 localhost kernel: [ 13.631650] Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
    Feb 1 20:31:48 localhost kernel: [ 13.631651] (Note that use of the override may cause unknown side effects.)
    Feb 1 20:31:48 localhost kernel: [ 13.663236] e1000e 0000:03:00.0: eth0: (PCI Express:2.5GT/s:Width x1) 14:da:e9:13:96:a9
    Feb 1 20:31:48 localhost kernel: [ 13.663239] e1000e 0000:03:00.0: eth0: Intel(R) PRO/1000 Network Connection
    Feb 1 20:31:48 localhost kernel: [ 13.663331] e1000e 0000:03:00.0: eth0: MAC: 4, PHY: 8, PBA No: FFFFFF-0FF
    Feb 1 20:31:48 localhost kernel: [ 13.672185] [drm] nouveau 0000:01:00.0: ... appears to be valid
    Feb 1 20:31:48 localhost kernel: [ 13.672188] [drm] nouveau 0000:01:00.0: BIT BIOS found
    Feb 1 20:31:48 localhost kernel: [ 13.672190] [drm] nouveau 0000:01:00.0: Bios version 60.80.18.00
    Feb 1 20:31:48 localhost kernel: [ 13.672193] [drm] nouveau 0000:01:00.0: TMDS table version 2.0
    Feb 1 20:31:48 localhost kernel: [ 13.672195] [drm] nouveau 0000:01:00.0: Found Display Configuration Block version 4.0
    Feb 1 20:31:48 localhost kernel: [ 13.672197] [drm] nouveau 0000:01:00.0: Raw DCB entry 0: 04000320 00000028
    Feb 1 20:31:48 localhost kernel: [ 13.672199] [drm] nouveau 0000:01:00.0: Raw DCB entry 1: 01000322 00000030
    Feb 1 20:31:48 localhost kernel: [ 13.672201] [drm] nouveau 0000:01:00.0: Raw DCB entry 2: 02011310 00000028
    Feb 1 20:31:48 localhost kernel: [ 13.672203] [drm] nouveau 0000:01:00.0: Raw DCB entry 3: 02011312 00000030
    Feb 1 20:31:48 localhost kernel: [ 13.672204] [drm] nouveau 0000:01:00.0: Raw DCB entry 4: 010223f1 00c1c023
    Feb 1 20:31:48 localhost kernel: [ 13.672207] [drm] nouveau 0000:01:00.0: DCB connector table: VHER 0x40 5 14 2
    Feb 1 20:31:48 localhost kernel: [ 13.672209] [drm] nouveau 0000:01:00.0: 0: 0x00001030: type 0x30 idx 0 tag 0x07
    Feb 1 20:31:48 localhost kernel: [ 13.672211] [drm] nouveau 0000:01:00.0: 1: 0x00002130: type 0x30 idx 1 tag 0x08
    Feb 1 20:31:48 localhost kernel: [ 13.672213] [drm] nouveau 0000:01:00.0: 2: 0x00000210: type 0x10 idx 2 tag 0xff
    Feb 1 20:31:48 localhost kernel: [ 13.672214] [drm] nouveau 0000:01:00.0: 3: 0x00000211: type 0x11 idx 3 tag 0xff
    Feb 1 20:31:48 localhost kernel: [ 13.672216] [drm] nouveau 0000:01:00.0: 4: 0x00000213: type 0x13 idx 4 tag 0xff
    Feb 1 20:31:48 localhost kernel: [ 13.672220] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 0 at offset 0xBFB4
    Feb 1 20:31:48 localhost kernel: [ 13.694453] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 1 at offset 0xC1BF
    Feb 1 20:31:48 localhost kernel: [ 13.711299] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 2 at offset 0xD37B
    Feb 1 20:31:48 localhost kernel: [ 13.711307] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 3 at offset 0xD46A
    Feb 1 20:31:48 localhost kernel: [ 13.712376] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 4 at offset 0xD621
    Feb 1 20:31:48 localhost kernel: [ 13.712378] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table at offset 0xD686
    Feb 1 20:31:48 localhost kernel: [ 13.732383] [drm] nouveau 0000:01:00.0: 0xD686: Condition still not met after 20ms, skipping following opcodes
    Feb 1 20:31:48 localhost kernel: [ 13.774080] adt7475 0-002e: ADT7473 device, revision 0
    Feb 1 20:31:48 localhost kernel: [ 13.774082] adt7475 0-002e: Optional features: fan4
    Feb 1 20:31:48 localhost kernel: [ 13.783928] [drm] nouveau 0000:01:00.0: Detected monitoring device: adt7473
    Feb 1 20:31:48 localhost kernel: [ 13.783931] [drm] nouveau 0000:01:00.0: 1 available performance level(s)
    Feb 1 20:31:48 localhost kernel: [ 13.783935] [drm] nouveau 0000:01:00.0: 0: core 513MHz shader 1188MHz memory 792MHz voltage 1300mV fanspeed 100%
    Feb 1 20:31:48 localhost kernel: [ 13.783950] [drm] nouveau 0000:01:00.0: c: core 198MHz shader 1188MHz memory 396MHz
    Feb 1 20:31:48 localhost kernel: [ 13.785323] [TTM] Zone kernel: Available graphics memory: 4062776 kiB.
    Feb 1 20:31:48 localhost kernel: [ 13.785325] [TTM] Zone dma32: Available graphics memory: 2097152 kiB.
    Feb 1 20:31:48 localhost kernel: [ 13.785327] [TTM] Initializing pool allocator.
    Feb 1 20:31:48 localhost kernel: [ 13.785341] [drm] nouveau 0000:01:00.0: Detected 320MiB VRAM
    Feb 1 20:31:48 localhost kernel: [ 13.799226] [drm] nouveau 0000:01:00.0: 512 MiB GART (aperture)
    Feb 1 20:31:48 localhost kernel: [ 13.806974] [drm] nouveau 0000:01:00.0: DCB encoder 1 unknown
    Feb 1 20:31:48 localhost kernel: [ 13.806977] [drm] nouveau 0000:01:00.0: TV-1 has no encoders, removing
    Feb 1 20:31:48 localhost kernel: [ 13.817239] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    Feb 1 20:31:48 localhost kernel: [ 13.817241] [drm] No driver support for vblank timestamp query.
    Feb 1 20:31:48 localhost kernel: [ 13.918245] usbcore: registered new interface driver uas
    Feb 1 20:31:48 localhost kernel: [ 13.919398] Linux media interface: v0.10
    Feb 1 20:31:48 localhost kernel: [ 13.921493] Initializing USB Mass Storage driver...
    Feb 1 20:31:48 localhost kernel: [ 13.921642] scsi8 : usb-storage 3-3:1.0
    Feb 1 20:31:48 localhost kernel: [ 13.922317] usbcore: registered new interface driver usb-storage
    Feb 1 20:31:48 localhost kernel: [ 13.922320] USB Mass Storage support registered.
    Feb 1 20:31:48 localhost kernel: [ 13.925326] Linux video capture interface: v2.00
    Feb 1 20:31:48 localhost kernel: [ 13.927942] uvcvideo: Found UVC 1.00 device <unnamed> (046d:080f)
    Feb 1 20:31:48 localhost kernel: [ 13.942174] input: UVC Camera (046d:080f) as /devices/pci0000:00/0000:00:13.2/usb4/4-5/4-5:1.0/input/input10
    Feb 1 20:31:48 localhost kernel: [ 13.942248] usbcore: registered new interface driver uvcvideo
    Feb 1 20:31:48 localhost kernel: [ 13.942251] USB Video Class driver (1.1.1)
    Feb 1 20:31:48 localhost kernel: [ 13.976590] [drm] nouveau 0000:01:00.0: allocated 1680x1050 fb: 0x310000, bo ffff88021ea78000
    Feb 1 20:31:48 localhost kernel: [ 13.976738] fbcon: nouveaufb (fb0) is primary device
    Feb 1 20:31:48 localhost kernel: [ 14.021548] Console: switching to colour frame buffer device 210x65
    Feb 1 20:31:48 localhost kernel: [ 14.025974] fb0: nouveaufb frame buffer device
    Feb 1 20:31:48 localhost kernel: [ 14.025976] drm: registered panic notifier
    Feb 1 20:31:48 localhost kernel: [ 14.025979] [drm] Initialized nouveau 0.0.16 20090420 for 0000:01:00.0 on minor 0
    Feb 1 20:31:48 localhost kernel: [ 14.946307] scsi 8:0:0:0: Direct-Access WD My Book 1028 PQ: 0 ANSI: 4
    Feb 1 20:31:48 localhost kernel: [ 14.969040] sd 8:0:0:0: [sdd] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    Feb 1 20:31:48 localhost kernel: [ 14.982159] sd 8:0:0:0: [sdd] Write Protect is off
    Feb 1 20:31:48 localhost kernel: [ 14.996032] sd 8:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Feb 1 20:31:48 localhost kernel: [ 15.619105] sdd: sdd1
    Feb 1 20:31:48 localhost kernel: [ 15.730813] sd 8:0:0:0: [sdd] Attached SCSI disk
    Feb 1 20:31:48 localhost kernel: [ 17.625282] device fsid 699d671b-7064-441d-95ec-c616049fe287 devid 1 transid 3976 /dev/sda2
    Feb 1 20:31:48 localhost kernel: [ 17.625855] device label home devid 1 transid 8074 /dev/sda3
    Feb 1 20:31:48 localhost kernel: [ 17.927687] btrfs: use ssd allocation scheme
    Feb 1 20:31:48 localhost kernel: [ 17.930204] device label home devid 1 transid 8074 /dev/sda3
    Feb 1 20:31:48 localhost kernel: [ 17.940362] Btrfs detected SSD devices, enabling SSD mode
    Feb 1 20:31:48 localhost kernel: [ 17.976566] kjournald starting. Commit interval 5 seconds
    Feb 1 20:31:48 localhost kernel: [ 17.976619] EXT3-fs (sdb2): warning: maximal mount count reached, running e2fsck is recommended
    Feb 1 20:31:48 localhost kernel: [ 17.976813] EXT3-fs (sdb2): using internal journal
    Feb 1 20:31:48 localhost kernel: [ 17.976816] EXT3-fs (sdb2): mounted filesystem with ordered data mode
    Feb 1 20:31:48 localhost kernel: [ 18.018513] kjournald starting. Commit interval 5 seconds
    Feb 1 20:31:48 localhost kernel: [

    User,
    Refer this
    http://oracleintelligence.blogspot.com/2008/08/obiee-time-to-expire-for-idle.html
    thanks,
    Saichand.v

  • Catalyst 10.10 - Xorg 1.9.2 crash and random system freezes

    Hello.
    I have Radeon HD4650 AGP graphics card.
    I have up to date(no testing repos) Archlinux.
    I installed catalyst 10.10 from AUR - http://aur.archlinux.org/packages.php?ID=29111.
    Everything is ok, but two problems:
    1) When I switching TTY(eg. Ctrl-Alt-F6) while loading KDE(OpenGL splash is running) Xorg crashes:
    kdm.log:
    X.Org X Server 1.9.2
    Release Date: 2010-10-30
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.35-ARCH i686
    Current Operating System: Linux myhost 2.6.35-ARCH #1 SMP PREEMPT Sat Oct 30 19:57:05 UTC 2010 i686
    Kernel command line: root=/dev/disk/by-uuid/223249f9-5c17-4b09-9886-55ac67009986 ro elevator=deadline nomodeset vga=33556
    Build Date: 01 November 2010 10:23:07PM
    Current version of pixman: 0.18.4
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Nov 8 10:37:11 2010
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using config directory: "/etc/X11/xorg.conf.d"
    The XKEYBOARD keymap compiler (xkbcomp) reports:
    > Warning: Type "ONE_LEVEL" has 1 levels, but <RALT> has 2 symbols
    > Ignoring extra symbols
    Errors from xkbcomp are not fatal to the X server
    Backtrace:
    0: /usr/bin/X (xorg_backtrace+0x3b) [0x80e5ebb]
    1: /usr/bin/X (0x8048000+0x5cd65) [0x80a4d65]
    2: (vdso) (__kernel_rt_sigreturn+0x0) [0xb785240c]
    3: /usr/bin/X (0x8048000+0x143986) [0x818b986]
    4: /usr/bin/X (0x8048000+0x545c9) [0x809c5c9]
    5: /usr/bin/X (0x8048000+0x16de3b) [0x81b5e3b]
    6: /usr/bin/X (FreeCursor+0x57) [0x8062bd7]
    7: /usr/lib/xorg/modules/drivers/fglrx_drv.so (0xb6979000+0x7b0b91) [0xb7129b91]
    8: /usr/bin/X (0x8048000+0x14349a) [0x818b49a]
    9: /usr/bin/X (miPointerUpdateSprite+0x2bd) [0x809d47d]
    10: /usr/bin/X (0x8048000+0x556d3) [0x809d6d3]
    11: /usr/bin/X (0x8048000+0xa34f6) [0x80eb4f6]
    12: /usr/bin/X (0x8048000+0x16dcad) [0x81b5cad]
    13: /usr/bin/X (0x8048000+0x2f31d) [0x807731d]
    14: /usr/bin/X (ProcChangeActivePointerGrab+0x141) [0x807b901]
    15: /usr/bin/X (0x8048000+0x27187) [0x806f187]
    16: /usr/bin/X (0x8048000+0x1a1b5) [0x80621b5]
    17: /lib/libc.so.6 (__libc_start_main+0xe6) [0xb7582c76]
    18: /usr/bin/X (0x8048000+0x19d91) [0x8061d91]
    Segmentation fault at address 0x21f000e6
    Fatal server error:
    Caught signal 11 (Segmentation fault). Server aborting
    kernel.log
    Nov 8 10:37:07 localhost kernel: Initializing cgroup subsys cpuset
    Nov 8 10:37:07 localhost kernel: Initializing cgroup subsys cpu
    Nov 8 10:37:07 localhost kernel: Linux version 2.6.35-ARCH (tobias@T-POWA-LX) (gcc version 4.5.1 (GCC) ) #1 SMP PREEMPT Sat Oct 30 19:57:05 UTC 2010
    Nov 8 10:37:07 localhost kernel: BIOS-provided physical RAM map:
    Nov 8 10:37:07 localhost kernel: BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
    Nov 8 10:37:07 localhost kernel: BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
    Nov 8 10:37:07 localhost kernel: BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
    Nov 8 10:37:07 localhost kernel: BIOS-e820: 0000000000100000 - 00000000bfff0000 (usable)
    Nov 8 10:37:07 localhost kernel: BIOS-e820: 00000000bfff0000 - 00000000bfff8000 (ACPI data)
    Nov 8 10:37:07 localhost kernel: BIOS-e820: 00000000bfff8000 - 00000000c0000000 (ACPI NVS)
    Nov 8 10:37:07 localhost kernel: BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
    Nov 8 10:37:07 localhost kernel: BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    Nov 8 10:37:07 localhost kernel: BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved)
    Nov 8 10:37:07 localhost kernel: Notice: NX (Execute Disable) protection missing in CPU or disabled in BIOS!
    Nov 8 10:37:07 localhost kernel: DMI 2.3 present.
    Nov 8 10:37:07 localhost kernel: AMI BIOS detected: BIOS may corrupt low RAM, working around it.
    Nov 8 10:37:07 localhost kernel: e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    Nov 8 10:37:07 localhost kernel: e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved)
    Nov 8 10:37:07 localhost kernel: e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    Nov 8 10:37:07 localhost kernel: last_pfn = 0xbfff0 max_arch_pfn = 0x100000
    Nov 8 10:37:07 localhost kernel: MTRR default type: uncachable
    Nov 8 10:37:07 localhost kernel: MTRR fixed ranges enabled:
    Nov 8 10:37:07 localhost kernel: 00000-9FFFF write-back
    Nov 8 10:37:07 localhost kernel: A0000-EFFFF uncachable
    Nov 8 10:37:07 localhost kernel: F0000-FFFFF write-protect
    Nov 8 10:37:07 localhost kernel: MTRR variable ranges enabled:
    Nov 8 10:37:07 localhost kernel: 0 base 000000000 mask F80000000 write-back
    Nov 8 10:37:07 localhost kernel: 1 base 080000000 mask FC0000000 write-back
    Nov 8 10:37:07 localhost kernel: 2 disabled
    Nov 8 10:37:07 localhost kernel: 3 disabled
    Nov 8 10:37:07 localhost kernel: 4 disabled
    Nov 8 10:37:07 localhost kernel: 5 base 0E0000000 mask FFC000000 write-combining
    Nov 8 10:37:07 localhost kernel: 6 disabled
    Nov 8 10:37:07 localhost kernel: 7 disabled
    Nov 8 10:37:07 localhost kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Nov 8 10:37:07 localhost kernel: Scanning 0 areas for low memory corruption
    Nov 8 10:37:07 localhost kernel: modified physical RAM map:
    Nov 8 10:37:07 localhost kernel: modified: 0000000000000000 - 0000000000010000 (reserved)
    Nov 8 10:37:07 localhost kernel: modified: 0000000000010000 - 000000000009fc00 (usable)
    Nov 8 10:37:07 localhost kernel: modified: 000000000009fc00 - 00000000000a0000 (reserved)
    Nov 8 10:37:07 localhost kernel: modified: 00000000000f0000 - 0000000000100000 (reserved)
    Nov 8 10:37:07 localhost kernel: modified: 0000000000100000 - 00000000bfff0000 (usable)
    Nov 8 10:37:07 localhost kernel: modified: 00000000bfff0000 - 00000000bfff8000 (ACPI data)
    Nov 8 10:37:07 localhost kernel: modified: 00000000bfff8000 - 00000000c0000000 (ACPI NVS)
    Nov 8 10:37:07 localhost kernel: modified: 00000000fec00000 - 00000000fec01000 (reserved)
    Nov 8 10:37:07 localhost kernel: modified: 00000000fee00000 - 00000000fee01000 (reserved)
    Nov 8 10:37:07 localhost kernel: modified: 00000000fff80000 - 0000000100000000 (reserved)
    Nov 8 10:37:07 localhost kernel: initial memory mapped : 0 - 01800000
    Nov 8 10:37:07 localhost kernel: found SMP MP-table at [c00fb930] fb930
    Nov 8 10:37:07 localhost kernel: init_memory_mapping: 0000000000000000-00000000377fe000
    Nov 8 10:37:07 localhost kernel: 0000000000 - 0000400000 page 4k
    Nov 8 10:37:07 localhost kernel: 0000400000 - 0037400000 page 2M
    Nov 8 10:37:07 localhost kernel: 0037400000 - 00377fe000 page 4k
    Nov 8 10:37:07 localhost kernel: kernel direct mapping tables up to 377fe000 @ 15000-1a000
    Nov 8 10:37:07 localhost kernel: RAMDISK: 7fda7000 - 7fff0000
    Nov 8 10:37:07 localhost kernel: Allocated new RAMDISK: 00100000 - 003480c5
    Nov 8 10:37:07 localhost kernel: Move RAMDISK from 000000007fda7000 - 000000007ffef0c4 to 00100000 - 003480c4
    Nov 8 10:37:07 localhost kernel: ACPI: RSDP 000fa980 00014 (v00 AMI )
    Nov 8 10:37:07 localhost kernel: ACPI: RSDT bfff0000 0002C (v01 AMIINT VIA_K7 00000010 MSFT 00000097)
    Nov 8 10:37:07 localhost kernel: ACPI: FACP bfff0030 00081 (v01 AMIINT VIA_K7 00000011 MSFT 00000097)
    Nov 8 10:37:07 localhost kernel: ACPI: DSDT bfff0120 03362 (v01 VIA VIA_K7 00001000 MSFT 0100000D)
    Nov 8 10:37:07 localhost kernel: ACPI: FACS bfff8000 00040
    Nov 8 10:37:07 localhost kernel: ACPI: APIC bfff00c0 00054 (v01 AMIINT VIA_K7 00000009 MSFT 00000097)
    Nov 8 10:37:07 localhost kernel: ACPI: Local APIC address 0xfee00000
    Nov 8 10:37:07 localhost kernel: 2183MB HIGHMEM available.
    Nov 8 10:37:07 localhost kernel: 887MB LOWMEM available.
    Nov 8 10:37:07 localhost kernel: mapped low ram: 0 - 377fe000
    Nov 8 10:37:07 localhost kernel: low ram: 0 - 377fe000
    Nov 8 10:37:07 localhost kernel: Zone PFN ranges:
    Nov 8 10:37:07 localhost kernel: DMA 0x00000010 -> 0x00001000
    Nov 8 10:37:07 localhost kernel: Normal 0x00001000 -> 0x000377fe
    Nov 8 10:37:07 localhost kernel: HighMem 0x000377fe -> 0x000bfff0
    Nov 8 10:37:07 localhost kernel: Movable zone start PFN for each node
    Nov 8 10:37:07 localhost kernel: early_node_map[2] active PFN ranges
    Nov 8 10:37:07 localhost kernel: 0: 0x00000010 -> 0x0000009f
    Nov 8 10:37:07 localhost kernel: 0: 0x00000100 -> 0x000bfff0
    Nov 8 10:37:07 localhost kernel: On node 0 totalpages: 786303
    Nov 8 10:37:07 localhost kernel: free_area_init_node: node 0, pgdat c1418ac0, node_mem_map c157d200
    Nov 8 10:37:07 localhost kernel: DMA zone: 32 pages used for memmap
    Nov 8 10:37:07 localhost kernel: DMA zone: 0 pages reserved
    Nov 8 10:37:07 localhost kernel: DMA zone: 3951 pages, LIFO batch:0
    Nov 8 10:37:07 localhost kernel: Normal zone: 1744 pages used for memmap
    Nov 8 10:37:07 localhost kernel: Normal zone: 221486 pages, LIFO batch:31
    Nov 8 10:37:07 localhost kernel: HighMem zone: 4368 pages used for memmap
    Nov 8 10:37:07 localhost kernel: HighMem zone: 554722 pages, LIFO batch:31
    Nov 8 10:37:07 localhost kernel: Using APIC driver default
    Nov 8 10:37:07 localhost kernel: ACPI: PM-Timer IO Port: 0x808
    Nov 8 10:37:07 localhost kernel: ACPI: Local APIC address 0xfee00000
    Nov 8 10:37:07 localhost kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Nov 8 10:37:07 localhost kernel: ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    Nov 8 10:37:07 localhost kernel: IOAPIC[0]: apic_id 2, version 3, address 0xfec00000, GSI 0-23
    Nov 8 10:37:07 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Nov 8 10:37:07 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    Nov 8 10:37:07 localhost kernel: ACPI: IRQ0 used by override.
    Nov 8 10:37:07 localhost kernel: ACPI: IRQ2 used by override.
    Nov 8 10:37:07 localhost kernel: ACPI: IRQ9 used by override.
    Nov 8 10:37:07 localhost kernel: Using ACPI (MADT) for SMP configuration information
    Nov 8 10:37:07 localhost kernel: SMP: Allowing 1 CPUs, 0 hotplug CPUs
    Nov 8 10:37:07 localhost kernel: nr_irqs_gsi: 40
    Nov 8 10:37:07 localhost kernel: early_res array is doubled to 64 at [16000 - 167ff]
    Nov 8 10:37:07 localhost kernel: PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    Nov 8 10:37:07 localhost kernel: PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
    Nov 8 10:37:07 localhost kernel: PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
    Nov 8 10:37:07 localhost kernel: Allocating PCI resources starting at c0000000 (gap: c0000000:3ec00000)
    Nov 8 10:37:07 localhost kernel: Booting paravirtualized kernel on bare hardware
    Nov 8 10:37:07 localhost kernel: setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1
    Nov 8 10:37:07 localhost kernel: PERCPU: Embedded 14 pages/cpu @c3000000 s34880 r0 d22464 u4194304
    Nov 8 10:37:07 localhost kernel: pcpu-alloc: s34880 r0 d22464 u4194304 alloc=1*4194304
    Nov 8 10:37:07 localhost kernel: pcpu-alloc: [0] 0
    Nov 8 10:37:07 localhost kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 780159
    Nov 8 10:37:07 localhost kernel: Kernel command line: root=/dev/disk/by-uuid/223249f9-5c17-4b09-9886-55ac67009986 ro elevator=deadline nomodeset vga=33556
    Nov 8 10:37:07 localhost kernel: PID hash table entries: 4096 (order: 2, 16384 bytes)
    Nov 8 10:37:07 localhost kernel: Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    Nov 8 10:37:07 localhost kernel: Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    Nov 8 10:37:07 localhost kernel: Enabling fast FPU save and restore... done.
    Nov 8 10:37:07 localhost kernel: Enabling unmasked SIMD FPU exception support... done.
    Nov 8 10:37:07 localhost kernel: Initializing CPU#0
    Nov 8 10:37:07 localhost kernel: allocated 15728000 bytes of page_cgroup
    Nov 8 10:37:07 localhost kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Nov 8 10:37:07 localhost kernel: Subtract (46 early reservations)
    Nov 8 10:37:07 localhost kernel: #1 [0000001000 - 0000002000] EX TRAMPOLINE
    Nov 8 10:37:07 localhost kernel: #2 [0001000000 - 0001574184] TEXT DATA BSS
    Nov 8 10:37:07 localhost kernel: #3 [0001575000 - 000157b108] BRK
    Nov 8 10:37:07 localhost kernel: #4 [00000fb940 - 0000100000] BIOS reserved
    Nov 8 10:37:07 localhost kernel: #5 [00000fb930 - 00000fb940] MP-table mpf
    Nov 8 10:37:07 localhost kernel: #6 [000009fc00 - 00000f6630] BIOS reserved
    Nov 8 10:37:07 localhost kernel: #7 [00000f6738 - 00000fb930] BIOS reserved
    Nov 8 10:37:07 localhost kernel: #8 [00000f6630 - 00000f6738] MP-table mpc
    Nov 8 10:37:07 localhost kernel: #9 [0000010000 - 0000011000] TRAMPOLINE
    Nov 8 10:37:07 localhost kernel: #10 [0000011000 - 0000015000] ACPI WAKEUP
    Nov 8 10:37:07 localhost kernel: #11 [0000015000 - 0000016000] PGTABLE
    Nov 8 10:37:07 localhost kernel: #12 [0000100000 - 0000349000] NEW RAMDISK
    Nov 8 10:37:07 localhost kernel: #13 [000157c000 - 000157d000] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #14 [000157d000 - 0002d7d000] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #15 [00015741c0 - 00015741c4] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #16 [0001574200 - 00015742c0] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #17 [00015742c0 - 0001574314] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #18 [0002d7d000 - 0002d80000] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #19 [0001574340 - 0001574410] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #20 [0002d80000 - 0002d8c000] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #21 [0001574440 - 0001574467] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #22 [0001574480 - 0001574598] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #23 [00015745c0 - 0001574600] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #24 [0001574600 - 0001574640] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #25 [0001574640 - 0001574680] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #26 [0001574680 - 00015746c0] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #27 [00015746c0 - 0001574700] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #28 [0001574700 - 0001574740] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #29 [0001574740 - 0001574780] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #30 [0001574780 - 00015747c0] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #31 [00015747c0 - 0001574800] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #32 [0001574800 - 0001574810] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #33 [0001574840 - 00015748a5] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #34 [00015748c0 - 0001574925] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #35 [0003000000 - 000300e000] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #36 [0001574940 - 0001574944] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #37 [0001574980 - 0001574984] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #38 [00015749c0 - 00015749c4] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #39 [0001574a00 - 0001574a04] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #40 [0001574a40 - 0001574af0] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #41 [0001574b00 - 0001574ba8] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #42 [0002d8c000 - 0002d90000] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #43 [0002d90000 - 0002e10000] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #44 [0002e10000 - 0002e50000] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #45 [000300e000 - 0003f0dd80] BOOTMEM
    Nov 8 10:37:07 localhost kernel: Initializing HighMem for node 0 (000377fe:000bfff0)
    Nov 8 10:37:07 localhost kernel: Memory: 3096392k/3145664k available (2987k kernel code, 48820k reserved, 1237k data, 416k init, 2236360k highmem)
    Nov 8 10:37:07 localhost kernel: virtual kernel memory layout:
    Nov 8 10:37:07 localhost kernel: fixmap : 0xfff16000 - 0xfffff000 ( 932 kB)
    Nov 8 10:37:07 localhost kernel: pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    Nov 8 10:37:07 localhost kernel: vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    Nov 8 10:37:07 localhost kernel: lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    Nov 8 10:37:07 localhost kernel: .init : 0xc1421000 - 0xc1489000 ( 416 kB)
    Nov 8 10:37:07 localhost kernel: .data : 0xc12eac4c - 0xc1420200 (1237 kB)
    Nov 8 10:37:07 localhost kernel: .text : 0xc1000000 - 0xc12eac4c (2987 kB)
    Nov 8 10:37:07 localhost kernel: Checking if this processor honours the WP bit even in supervisor mode...Ok.
    Nov 8 10:37:07 localhost kernel: SLUB: Genslabs=13, HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    Nov 8 10:37:07 localhost kernel: Hierarchical RCU implementation.
    Nov 8 10:37:07 localhost kernel: RCU-based detection of stalled CPUs is disabled.
    Nov 8 10:37:07 localhost kernel: Verbose stalled-CPUs detection is disabled.
    Nov 8 10:37:07 localhost kernel: NR_IRQS:512
    Nov 8 10:37:07 localhost kernel: Console: colour VGA+ 132x43
    Nov 8 10:37:07 localhost kernel: console [tty0] enabled
    Nov 8 10:37:07 localhost kernel: Fast TSC calibration using PIT
    Nov 8 10:37:07 localhost kernel: Detected 1666.888 MHz processor.
    Nov 8 10:37:07 localhost kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 3335.68 BogoMIPS (lpj=5556293)
    Nov 8 10:37:07 localhost kernel: pid_max: default: 32768 minimum: 301
    Nov 8 10:37:07 localhost kernel: Security Framework initialized
    Nov 8 10:37:07 localhost kernel: Mount-cache hash table entries: 512
    Nov 8 10:37:07 localhost kernel: Initializing cgroup subsys ns
    Nov 8 10:37:07 localhost kernel: Initializing cgroup subsys cpuacct
    Nov 8 10:37:07 localhost kernel: Initializing cgroup subsys memory
    Nov 8 10:37:07 localhost kernel: Initializing cgroup subsys devices
    Nov 8 10:37:07 localhost kernel: Initializing cgroup subsys freezer
    Nov 8 10:37:07 localhost kernel: Initializing cgroup subsys net_cls
    Nov 8 10:37:07 localhost kernel: Initializing cgroup subsys blkio
    Nov 8 10:37:07 localhost kernel: mce: CPU supports 4 MCE banks
    Nov 8 10:37:07 localhost kernel: Performance Events: AMD PMU driver.
    Nov 8 10:37:07 localhost kernel: ... version: 0
    Nov 8 10:37:07 localhost kernel: ... bit width: 48
    Nov 8 10:37:07 localhost kernel: ... generic registers: 4
    Nov 8 10:37:07 localhost kernel: ... value mask: 0000ffffffffffff
    Nov 8 10:37:07 localhost kernel: ... max period: 00007fffffffffff
    Nov 8 10:37:07 localhost kernel: ... fixed-purpose events: 0
    Nov 8 10:37:07 localhost kernel: ... event mask: 000000000000000f
    Nov 8 10:37:07 localhost kernel: SMP alternatives: switching to UP code
    Nov 8 10:37:07 localhost kernel: Freeing SMP alternatives: 12k freed
    Nov 8 10:37:07 localhost kernel: ACPI: Core revision 20100428
    Nov 8 10:37:07 localhost kernel: Enabling APIC mode: Flat. Using 1 I/O APICs
    Nov 8 10:37:07 localhost kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Nov 8 10:37:07 localhost kernel: CPU0: AMD Athlon(tm) XP 2000+ stepping 00
    Nov 8 10:37:07 localhost kernel: Brought up 1 CPUs
    Nov 8 10:37:07 localhost kernel: Total of 1 processors activated (3335.68 BogoMIPS).
    Nov 8 10:37:07 localhost kernel: devtmpfs: initialized
    Nov 8 10:37:07 localhost kernel: NET: Registered protocol family 16
    Nov 8 10:37:07 localhost kernel: ACPI: bus type pci registered
    Nov 8 10:37:07 localhost kernel: PCI: PCI BIOS revision 2.10 entry at 0xfdaf1, last bus=1
    Nov 8 10:37:07 localhost kernel: PCI: Using configuration type 1 for base access
    Nov 8 10:37:07 localhost kernel: bio: create slab <bio-0> at 0
    Nov 8 10:37:07 localhost kernel: ACPI: EC: Look up EC in DSDT
    Nov 8 10:37:07 localhost kernel: ACPI: Interpreter enabled
    Nov 8 10:37:07 localhost kernel: ACPI: (supports S0 S3 S4 S5)
    Nov 8 10:37:07 localhost kernel: ACPI: Using IOAPIC for interrupt routing
    Nov 8 10:37:07 localhost kernel: ACPI: Power Resource [URP1] (off)
    Nov 8 10:37:07 localhost kernel: ACPI: Power Resource [URP2] (off)
    Nov 8 10:37:07 localhost kernel: ACPI: Power Resource [FDDP] (off)
    Nov 8 10:37:07 localhost kernel: ACPI: Power Resource [LPTP] (off)
    Nov 8 10:37:07 localhost kernel: ACPI: No dock devices found.
    Nov 8 10:37:07 localhost kernel: PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
    Nov 8 10:37:07 localhost kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Nov 8 10:37:07 localhost kernel: pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored)
    Nov 8 10:37:07 localhost kernel: pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored)
    Nov 8 10:37:07 localhost kernel: pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
    Nov 8 10:37:07 localhost kernel: pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff] (ignored)
    Nov 8 10:37:07 localhost kernel: pci_root PNP0A03:00: host bridge window [mem 0xc0000000-0xffdfffff] (ignored)
    Nov 8 10:37:07 localhost kernel: pci_root PNP0A03:00: host bridge window [mem 0xfee01000-0xffdfffff] (ignored)
    Nov 8 10:37:07 localhost kernel: pci 0000:00:00.0: reg 10: [mem 0xe0000000-0xe3ffffff pref]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: supports D1
    Nov 8 10:37:07 localhost kernel: pci 0000:00:0b.0: reg 10: [mem 0xdc000000-0xdfffffff]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:0b.0: reg 30: [mem 0xdbff0000-0xdbffffff pref]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.0: reg 20: [io 0xe400-0xe41f]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.0: supports D1 D2
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.0: PME# supported from D0 D1 D2 D3hot D3cold
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.0: PME# disabled
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.1: reg 20: [io 0xe800-0xe81f]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.1: supports D1 D2
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.1: PME# supported from D0 D1 D2 D3hot D3cold
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.1: PME# disabled
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.2: reg 20: [io 0xec00-0xec1f]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.2: supports D1 D2
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.2: PME# supported from D0 D1 D2 D3hot D3cold
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.2: PME# disabled
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.3: reg 10: [mem 0xdbfeff00-0xdbfeffff]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.3: supports D1 D2
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.3: PME# supported from D0 D1 D2 D3hot D3cold
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.3: PME# disabled
    Nov 8 10:37:07 localhost kernel: HPET not enabled in BIOS. You might try hpet=force boot option
    Nov 8 10:37:07 localhost kernel: pci 0000:00:11.0: quirk: [io 0x0800-0x087f] claimed by vt8235 PM
    Nov 8 10:37:07 localhost kernel: pci 0000:00:11.0: quirk: [io 0x0400-0x040f] claimed by vt8235 SMB
    Nov 8 10:37:07 localhost kernel: pci 0000:00:11.1: reg 20: [io 0xfc00-0xfc0f]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:11.5: reg 10: [io 0xe000-0xe0ff]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:11.5: supports D1 D2
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: reg 10: [mem 0xc0000000-0xcfffffff pref]
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: reg 14: [io 0xc800-0xc8ff]
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: reg 18: [mem 0xd7ef0000-0xd7efffff]
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: reg 30: [mem 0xd7ec0000-0xd7edffff pref]
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: supports D1 D2
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: PCI bridge to [bus 01-01]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: bridge window [io 0xc000-0xcfff]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: bridge window [mem 0xd7e00000-0xd7efffff]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: bridge window [mem 0xb7d00000-0xd7cfffff pref]
    Nov 8 10:37:07 localhost kernel: pci_bus 0000:00: on NUMA node 0
    Nov 8 10:37:07 localhost kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    Nov 8 10:37:07 localhost kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs *3 4 5 6 7 10 11 12 14 15)
    Nov 8 10:37:07 localhost kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 *5 6 7 10 11 12 14 15)
    Nov 8 10:37:07 localhost kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    Nov 8 10:37:07 localhost kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    Nov 8 10:37:07 localhost kernel: HEST: Table is not found!
    Nov 8 10:37:07 localhost kernel: vgaarb: device added: PCI:0000:00:0b.0,decodes=io+mem,owns=io+mem,locks=none
    Nov 8 10:37:07 localhost kernel: vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
    Nov 8 10:37:07 localhost kernel: vgaarb: loaded
    Nov 8 10:37:07 localhost kernel: PCI: Using ACPI for IRQ routing
    Nov 8 10:37:07 localhost kernel: PCI: pci_cache_line_size set to 32 bytes
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: address space collision: [mem 0xb7d00000-0xd7cfffff pref] conflicts with System RAM [mem 0x00100000-0xbffeffff]
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: no compatible bridge window for [mem 0xc0000000-0xcfffffff pref]
    Nov 8 10:37:07 localhost kernel: reserve RAM buffer: 000000000009fc00 - 000000000009ffff
    Nov 8 10:37:07 localhost kernel: reserve RAM buffer: 00000000bfff0000 - 00000000bfffffff
    Nov 8 10:37:07 localhost kernel: NetLabel: Initializing
    Nov 8 10:37:07 localhost kernel: NetLabel: domain hash size = 128
    Nov 8 10:37:07 localhost kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Nov 8 10:37:07 localhost kernel: NetLabel: unlabeled traffic allowed by default
    Nov 8 10:37:07 localhost kernel: Switching to clocksource tsc
    Nov 8 10:37:07 localhost kernel: pnp: PnP ACPI init
    Nov 8 10:37:07 localhost kernel: ACPI: bus type pnp registered
    Nov 8 10:37:07 localhost kernel: pnp 00:01: disabling [io 0x0820-0x0821] because it overlaps 0000:00:11.0 BAR 13 [io 0x0800-0x087f]
    Nov 8 10:37:07 localhost kernel: pnp: PnP ACPI: found 9 devices
    Nov 8 10:37:07 localhost kernel: ACPI: ACPI bus type pnp unregistered
    Nov 8 10:37:07 localhost kernel: system 00:01: [io 0x0290-0x0297] has been reserved
    Nov 8 10:37:07 localhost kernel: system 00:01: [io 0x03f0-0x03f1] has been reserved
    Nov 8 10:37:07 localhost kernel: system 00:01: [io 0x04d0-0x04d1] has been reserved
    Nov 8 10:37:07 localhost kernel: system 00:01: [io 0x0400-0x040f] has been reserved
    Nov 8 10:37:07 localhost kernel: system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: BAR 15: assigned [mem 0xc0000000-0xcfffffff pref]
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: BAR 0: assigned [mem 0xc0000000-0xcfffffff pref]
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: BAR 0: set to [mem 0xc0000000-0xcfffffff pref] (PCI address [0xc0000000-0xcfffffff]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: PCI bridge to [bus 01-01]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: bridge window [io 0xc000-0xcfff]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: bridge window [mem 0xd7e00000-0xd7efffff]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: bridge window [mem 0xc0000000-0xcfffffff pref]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: setting latency timer to 64
    Nov 8 10:37:07 localhost kernel: pci_bus 0000:00: resource 0 [io 0x0000-0xffff]
    Nov 8 10:37:07 localhost kernel: pci_bus 0000:00: resource 1 [mem 0x00000000-0xffffffff]
    Nov 8 10:37:07 localhost kernel: pci_bus 0000:01: resource 0 [io 0xc000-0xcfff]
    Nov 8 10:37:07 localhost kernel: pci_bus 0000:01: resource 1 [mem 0xd7e00000-0xd7efffff]
    Nov 8 10:37:07 localhost kernel: pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff pref]
    Nov 8 10:37:07 localhost kernel: NET: Registered protocol family 2
    Nov 8 10:37:07 localhost kernel: IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    Nov 8 10:37:07 localhost kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    Nov 8 10:37:07 localhost kernel: TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    Nov 8 10:37:07 localhost kernel: TCP: Hash tables configured (established 131072 bind 65536)
    Nov 8 10:37:07 localhost kernel: TCP reno registered
    Nov 8 10:37:07 localhost kernel: UDP hash table entries: 512 (order: 2, 16384 bytes)
    Nov 8 10:37:07 localhost kernel: UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    Nov 8 10:37:07 localhost kernel: NET: Registered protocol family 1
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: disabling DAC on VIA PCI bridge
    Nov 8 10:37:07 localhost kernel: pci 0000:00:0b.0: Boot video device
    Nov 8 10:37:07 localhost kernel: PCI: CLS 32 bytes, default 32
    Nov 8 10:37:07 localhost kernel: Unpacking initramfs...
    Nov 8 10:37:07 localhost kernel: Freeing initrd memory: 2340k freed
    Nov 8 10:37:07 localhost kernel: apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac)
    Nov 8 10:37:07 localhost kernel: apm: overridden by ACPI.
    Nov 8 10:37:07 localhost kernel: Scanning for low memory corruption every 60 seconds
    Nov 8 10:37:07 localhost kernel: audit: initializing netlink socket (disabled)
    Nov 8 10:37:07 localhost kernel: type=2000 audit(1289212597.233:1): initialized
    Nov 8 10:37:07 localhost kernel: highmem bounce pool size: 64 pages
    Nov 8 10:37:07 localhost kernel: VFS: Disk quotas dquot_6.5.2
    Nov 8 10:37:07 localhost kernel: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    Nov 8 10:37:07 localhost kernel: msgmni has been set to 1684
    Nov 8 10:37:07 localhost kernel: alg: No test for stdrng (krng)
    Nov 8 10:37:07 localhost kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    Nov 8 10:37:07 localhost kernel: io scheduler noop registered
    Nov 8 10:37:07 localhost kernel: io scheduler deadline registered (default)
    Nov 8 10:37:07 localhost kernel: io scheduler cfq registered
    Nov 8 10:37:07 localhost kernel: ERST: Table is not found!
    Nov 8 10:37:07 localhost kernel: isapnp: Scanning for PnP cards...
    Nov 8 10:37:07 localhost kernel: isapnp: No Plug & Play device found
    Nov 8 10:37:07 localhost kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Nov 8 10:37:07 localhost kernel: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    Nov 8 10:37:07 localhost kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Nov 8 10:37:07 localhost kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    Nov 8 10:37:07 localhost kernel: mice: PS/2 mouse device common for all mice
    Nov 8 10:37:07 localhost kernel: cpuidle: using governor ladder
    Nov 8 10:37:07 localhost kernel: cpuidle: using governor menu
    Nov 8 10:37:07 localhost kernel: TCP cubic registered
    Nov 8 10:37:07 localhost kernel: NET: Registered protocol family 17
    Nov 8 10:37:07 localhost kernel: Using IPI No-Shortcut mode
    Nov 8 10:37:07 localhost kernel: PM: Resume from disk failed.
    Nov 8 10:37:07 localhost kernel: registered taskstats version 1
    Nov 8 10:37:07 localhost kernel: Initalizing network drop monitor service
    Nov 8 10:37:07 localhost kernel: Freeing unused kernel memory: 416k freed
    Nov 8 10:37:07 localhost kernel: udev[31]: starting version 163
    Nov 8 10:37:07 localhost kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Nov 8 10:37:07 localhost kernel: Linux agpgart interface v0.103
    Nov 8 10:37:07 localhost kernel: agpgart: Detected VIA KT400/KT400A/KT600 chipset
    Nov 8 10:37:07 localhost kernel: agpgart-via 0000:00:00.0: AGP aperture is 64M @ 0xe0000000
    Nov 8 10:37:07 localhost kernel: [drm] Initialized drm 1.1.0 20060810
    Nov 8 10:37:07 localhost kernel: [drm] VGACON disable radeon kernel modesetting.
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: enabling device (0000 -> 0003)
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    Nov 8 10:37:07 localhost kernel: [drm] Initialized radeon 1.33.0 20080528 for 0000:01:00.0 on minor 0
    Nov 8 10:37:07 localhost kernel: SCSI subsystem initialized
    Nov 8 10:37:07 localhost kernel: Floppy drive(s): fd0 is 1.44M
    Nov 8 10:37:07 localhost kernel: FDC 0 is a post-1991 82077
    Nov 8 10:37:07 localhost kernel: libata version 3.00 loaded.
    Nov 8 10:37:07 localhost kernel: pata_via 0000:00:11.1: version 0.3.4
    Nov 8 10:37:07 localhost kernel: pata_via 0000:00:11.1: can't derive routing for PCI INT A
    Nov 8 10:37:07 localhost kernel: scsi0 : pata_via
    Nov 8 10:37:07 localhost kernel: scsi1 : pata_via
    Nov 8 10:37:07 localhost kernel: ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xfc00 irq 14
    Nov 8 10:37:07 localhost kernel: ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xfc08 irq 15
    Nov 8 10:37:07 localhost kernel: ata1.00: ATA-6: ST380011A, 3.04, max UDMA/100
    Nov 8 10:37:07 localhost kernel: ata1.00: 156301488 sectors, multi 16: LBA48
    Nov 8 10:37:07 localhost kernel: ata1.00: configured for UDMA/100
    Nov 8 10:37:07 localhost kernel: scsi 0:0:0:0: Direct-Access ATA ST380011A 3.04 PQ: 0 ANSI: 5
    Nov 8 10:37:07 localhost kernel: ata2.00: ATAPI: LITE-ON DVD SOHD-16P9S, FS0J, max UDMA/33
    Nov 8 10:37:07 localhost kernel: ata2.01: ATAPI: LITE-ON LTR-52246S, 6S0F, max UDMA/33
    Nov 8 10:37:07 localhost kernel: ata2.00: configured for UDMA/33
    Nov 8 10:37:07 localhost kernel: ata2.01: configured for UDMA/33
    Nov 8 10:37:07 localhost kernel: scsi 1:0:0:0: CD-ROM LITE-ON DVD SOHD-16P9S FS0J PQ: 0 ANSI: 5
    Nov 8 10:37:07 localhost kernel: scsi 1:0:1:0: CD-ROM LITE-ON LTR-52246S 6S0F PQ: 0 ANSI: 5
    Nov 8 10:37:07 localhost kernel: sd 0:0:0:0: [sda] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB)
    Nov 8 10:37:07 localhost kernel: sd 0:0:0:0: [sda] Write Protect is off
    Nov 8 10:37:07 localhost kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Nov 8 10:37:07 localhost kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Nov 8 10:37:07 localhost kernel: sda:sr0: scsi3-mmc drive: 4x/48x cd/rw xa/form2 cdda tray
    Nov 8 10:37:07 localhost kernel: Uniform CD-ROM driver Revision: 3.20
    Nov 8 10:37:07 localhost kernel: sr 1:0:0:0: Attached scsi CD-ROM sr0
    Nov 8 10:37:07 localhost kernel: sda1 sda2 sda3 sda4 < sda5 sda6 sda7sr1: scsi3-mmc drive: 15x/52x writer cd/rw xa/form2 cdda tray
    Nov 8 10:37:07 localhost kernel: sr 1:0:1:0: Attached scsi CD-ROM sr1
    Nov 8 10:37:07 localhost kernel: sda8 sda9 sda10 >
    Nov 8 10:37:07 localhost kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Nov 8 10:37:07 localhost kernel: EXT3-fs: barriers not enabled
    Nov 8 10:37:07 localhost kernel: EXT3-fs (sda2): mounted filesystem with writeback data mode
    Nov 8 10:37:07 localhost kernel: kjournald starting. Commit interval 5 seconds
    Nov 8 10:37:07 localhost kernel: rtc_cmos 00:03: RTC can wake from S4
    Nov 8 10:37:07 localhost kernel: rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
    Nov 8 10:37:07 localhost kernel: rtc0: alarms up to one year, y3k, 114 bytes nvram
    Nov 8 10:37:07 localhost kernel: udev[496]: starting version 163
    Nov 8 10:37:07 localhost kernel: fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel.
    Nov 8 10:37:07 localhost kernel: Disabling lock debugging due to kernel taint
    Nov 8 10:37:07 localhost kernel: sd 0:0:0:0: Attached scsi generic sg0 type 0
    Nov 8 10:37:07 localhost kernel: sr 1:0:0:0: Attached scsi generic sg1 type 5
    Nov 8 10:37:07 localhost kernel: sr 1:0:1:0: Attached scsi generic sg2 type 5
    Nov 8 10:37:07 localhost kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    Nov 8 10:37:07 localhost kernel: input: PC Speaker as /devices/platform/pcspkr/input/input1
    Nov 8 10:37:07 localhost kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    Nov 8 10:37:07 localhost kernel: usbcore: registered new interface driver usbfs
    Nov 8 10:37:07 localhost kernel: usbcore: registered new interface driver hub
    Nov 8 10:37:07 localhost kernel: usbcore: registered new device driver usb
    Nov 8 10:37:07 localhost kernel: psmouse serio1: ID: 10 00 64
    Nov 8 10:37:07 localhost kernel: uhci_hcd: USB Universal Host Controller Interface driver
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.0: UHCI Host Controller
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 1
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.0: irq 21, io base 0x0000e400
    Nov 8 10:37:07 localhost kernel: hub 1-0:1.0: USB hub found
    Nov 8 10:37:07 localhost kernel: hub 1-0:1.0: 2 ports detected
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.1: UHCI Host Controller
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.1: new USB bus registered, assigned bus number 2
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.1: irq 21, io base 0x0000e800
    Nov 8 10:37:07 localhost kernel: hub 2-0:1.0: USB hub found
    Nov 8 10:37:07 localhost kernel: hub 2-0:1.0: 2 ports detected
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.2: PCI INT C -> GSI 21 (level, low) -> IRQ 21
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.2: UHCI Host Controller
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.2: new USB bus registered, assigned bus number 3
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.2: irq 21, io base 0x0000ec00
    Nov 8 10:37:07 localhost kernel: NET: Registered protocol family 23
    Nov 8 10:37:07 localhost kernel: [fglrx] Maximum main memory to use for locked dma buffers: 2880 MBytes.
    Nov 8 10:37:07 localhost kernel: [fglrx] vendor: 1002 device: 9495 count: 1
    Nov 8 10:37:07 localhost kernel: [fglrx] ioport: bar 1, base 0xc800, size: 0x100
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: PCI: Disallowing DAC for device
    Nov 8 10:37:07 localhost kernel: [fglrx] Kernel PAT support is enabled
    Nov 8 10:37:07 localhost kernel: [fglrx] module loaded - fglrx 8.78.6 [Oct 5 2010] with 1 minors
    Nov 8 10:37:07 localhost kernel: hub 3-0:1.0: USB hub found
    Nov 8 10:37:07 localhost kernel: hub 3-0:1.0: 2 ports detected
    Nov 8 10:37:07 localhost kernel: ACPI: acpi_idle registered with cpuidle
    Nov 8 10:37:07 localhost kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
    Nov 8 10:37:07 localhost kernel: ACPI: Power Button [PWRB]
    Nov 8 10:37:07 localhost kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3
    Nov 8 10:37:07 localhost kernel: ACPI: Sleep Button [SLPB]
    Nov 8 10:37:07 localhost kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    Nov 8 10:37:07 localhost kernel: ACPI: Power Button [PWRF]
    Nov 8 10:37:07 localhost kernel: usb 1-1: new full speed USB device using uhci_hcd and address 2
    Nov 8 10:37:07 localhost kernel: input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input5
    Nov 8 10:37:07 localhost kernel: ACPI: resource vt596_smbus [io 0x0400-0x0407] conflicts with ACPI region SMOV [??? 0x00000400-0x00000406 flags 0x56]
    Nov 8 10:37:07 localhost kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Nov 8 10:37:07 localhost kernel: VIA 82xx Audio 0000:00:11.5: PCI INT C -> GSI 22 (level, low) -> IRQ 22
    Nov 8 10:37:07 localhost kernel: VIA 82xx Audio 0000:00:11.5: setting latency timer to 64
    Nov 8 10:37:07 localhost kernel: NET: Registered protocol family 8
    Nov 8 10:37:07 localhost kernel: NET: Registered protocol family 20
    Nov 8 10:37:07 localhost kernel: usb 1-1: reset full speed USB device using uhci_hcd and address 2
    Nov 8 10:37:07 localhost kernel: usbcore: registered new interface driver speedtch
    Nov 8 10:37:07 localhost kernel: speedtch 1-1:1.0: found stage 1 firmware speedtch-1.bin.4.00
    Nov 8 10:37:07 localhost kernel: speedtch 1-1:1.0: found stage 2 firmware speedtch-2.bin.4.00
    Nov 8 10:37:07 localhost kernel: ATM dev 0: ADSL line is synchronising
    Nov 8 10:37:07 localhost kernel: EXT3-fs (sda2): using internal journal
    Nov 8 10:37:07 localhost kernel: EXT3-fs: barriers not enabled
    Nov 8 10:37:07 localhost kernel: kjournald starting. Commit interval 5 seconds
    Nov 8 10:37:07 localhost kernel: EXT3-fs (sda6): using internal journal
    Nov 8 10:37:07 localhost kernel: EXT3-fs (sda6): mounted filesystem with writeback data mode
    Nov 8 10:37:07 localhost kernel: EXT3-fs: barriers not enabled
    Nov 8 10:37:07 localhost kernel: kjournald starting. Commit interval 5 seconds
    Nov 8 10:37:07 localhost kernel: EXT3-fs (sda3): using internal journal
    Nov 8 10:37:07 localhost kernel: EXT3-fs (sda3): mounted filesystem with writeback data mode
    Nov 8 10:37:07 localhost kernel: EXT4-fs (sda9): mounted filesystem with ordered data mode. Opts: (null)
    Nov 8 10:37:07 localhost kernel: Adding 1052220k swap on /dev/sda5. Priority:-1 extents:1 across:1052220k
    Nov 8 10:37:09 localhost kernel: ip_tables: (C) 2000-2006 Netfilter Core Team
    Nov 8 10:37:09 localhost kernel: nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
    Nov 8 10:37:09 localhost kernel: CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use
    Nov 8 10:37:09 localhost kernel: nf_conntrack.acct=1 kernel parameter, acct=1 nf_conntrack module option or
    Nov 8 10:37:09 localhost kernel: sysctl net.netfilter.nf_conntrack_acct=1 to enable it.
    Nov 8 10:37:11 localhost kernel: PPP generic driver version 2.4.2
    Nov 8 10:37:13 localhost kernel: [fglrx] AGP detected, AgpState = 0x1f000a1b (hardware caps of chipset)
    Nov 8 10:37:13 localhost kernel: [fglrx] [agp] enabling AGP with mode=0x1f000b1a
    Nov 8 10:37:13 localhost kernel: agpgart-via 0000:00:00.0: AGP 3.5 bridge
    Nov 8 10:37:13 localhost kernel: agpgart-via 0000:00:00.0: putting AGP V3 device into 8x mode
    Nov 8 10:37:13 localhost kernel: fglrx_pci 0000:01:00.0: putting AGP V3 device into 8x mode
    Nov 8 10:37:13 localhost kernel: [fglrx] AGP enabled, AgpCommand = 0x1f000312 (selected caps)
    Nov 8 10:37:13 localhost kernel: [fglrx] Setup AGP aperture
    Nov 8 10:37:13 localhost kernel: [fglrx] Could not enable MSI; System prevented initialization
    Nov 8 10:37:13 localhost kernel: [fglrx] Firegl kernel thread PID: 2202
    Nov 8 10:37:13 localhost kernel: [fglrx] IRQ 16 Enabled
    Nov 8 10:37:14 localhost kernel: [fglrx] Gart cacheable size:1318 M.
    Nov 8 10:37:14 localhost kernel: [fglrx] Reserved FB block: Shared offset:0, size:1000000
    Nov 8 10:37:14 localhost kernel: [fglrx] Reserved FB block: Unshared offset:fd0a000, size:2f6000
    Nov 8 10:37:14 localhost kernel: [fglrx] Reserved FB block: Unshared offset:3fffd000, size:3000
    Nov 8 10:37:20 localhost kernel: ATM dev 0: ADSL line is up (5312 kb/s down | 320 kb/s up)
    Nov 8 10:38:09 localhost kernel: [fglrx] IRQ 16 Disabled
    Nov 8 10:38:09 localhost kernel: BUG: scheduling while atomic: X/2191/0x00000002
    Nov 8 10:38:09 localhost kernel: Modules linked in: pppoatm ppp_generic slhc xt_tcpudp nf_conntrack_ipv4 nf_defrag_ipv4 xt_state nf_conntrack iptable_filter ip_tables x_tables ext4 jbd2 crc16 ext2 speedtch usbatm atm snd_via82xx gameport snd_ac97_codec ac97_bus snd_pcm snd_timer snd_page_alloc snd_mpu401_uart snd_rawmidi snd_seq_device i2c_viapro snd soundcore button thermal processor via_ircc uhci_hcd irda crc_ccitt psmouse usbcore fglrx(P) shpchp pcspkr serio_raw pci_hotplug sg evdev rtc_cmos rtc_core rtc_lib ext3 jbd mbcache sd_mod sr_mod cdrom pata_acpi pata_via libata floppy scsi_mod radeon ttm drm_kms_helper drm i2c_algo_bit i2c_core via_agp agpgart
    Nov 8 10:38:09 localhost kernel: Pid: 2191, comm: X Tainted: P 2.6.35-ARCH #1
    Nov 8 10:38:09 localhost kernel: Call Trace:
    Nov 8 10:38:09 localhost kernel: [<c1034d1d>] __schedule_bug+0x5d/0x70
    Nov 8 10:38:09 localhost kernel: [<c12e6dcf>] schedule+0x47f/0x6f0
    Nov 8 10:38:09 localhost kernel: [<f8761b22>] ? KAS_Event_Set+0x92/0xa0 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<c12e9505>] ? _raw_spin_unlock_irqrestore+0x25/0x30
    Nov 8 10:38:09 localhost kernel: [<f87624a6>] KAS_Thread_WaitForFinish+0x86/0xc0 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<c105eb30>] ? autoremove_wake_function+0x0/0x40
    Nov 8 10:38:09 localhost kernel: [<f877bafa>] MCIL_WorkerThread+0x1da/0x2c0 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<f8841790>] ? PassiveRing_Cleanup+0x60/0xc0 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<f8791e58>] ? firegl_trace+0x28/0x190 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<f8840d01>] IRQMGR_FreeResources+0x21/0x60 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<f877e87e>] irqmgr_wrap_shutdown+0x17e/0x1d0 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<f876e4c9>] ? firegl_takedown+0x989/0xa60 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<f885600d>] ? amdPcsClose+0x3d/0x40 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<f876d35f>] ? firegl_release+0x14f/0x220 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<f875e5be>] ? ip_firegl_release+0xe/0x10 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<c10f8153>] ? fput+0xf3/0x1f0
    Nov 8 10:38:09 localhost kernel: [<c10f4f69>] ? filp_close+0x49/0x70
    Nov 8 10:38:09 localhost kernel: [<c1046d57>] ? put_files_struct+0x87/0x100
    Nov 8 10:38:09 localhost kernel: [<c1046e72>] ? exit_files+0x42/0x60
    Nov 8 10:38:09 localhost kernel: [<c104727a>] ? do_exit+0x14a/0x770
    Nov 8 10:38:09 localhost kernel: [<c1053f0d>] ? __sigqueue_free+0x2d/0x30
    Nov 8 10:38:09 localhost kernel: [<c1053162>] ? recalc_sigpending+0x12/0x30
    Nov 8 10:38:09 localhost kernel: [<c1047ab9>] ? do_group_exit+0x39/0xa0
    Nov 8 10:38:09 localhost kernel: [<c10563ad>] ? get_signal_to_deliver+0x25d/0x470
    Nov 8 10:38:09 localhost kernel: [<c1054e12>] ? __send_signal+0x162/0x390
    Nov 8 10:38:09 localhost kernel: [<c1002909>] ? do_signal+0x69/0x870
    Nov 8 10:38:09 localhost kernel: [<c105592f>] ? do_send_specific+0x7f/0xc0
    Nov 8 10:38:09 localhost kernel: [<c1183c90>] ? _atomic_dec_and_lock+0x50/0x70
    Nov 8 10:38:09 localhost kernel: [<c110e426>] ? mntput_no_expire+0x16/0x90
    Nov 8 10:38:09 localhost kernel: [<c1053162>] ? recalc_sigpending+0x12/0x30
    Nov 8 10:38:09 localhost kernel: [<c1053e65>] ? sigprocmask+0x75/0xf0
    Nov 8 10:38:09 localhost kernel: [<c10567b4>] ? sys_rt_sigprocmask+0xc4/0xe0
    Nov 8 10:38:09 localhost kernel: [<c10567b4>] ? sys_rt_sigprocmask+0xc4/0xe0
    Nov 8 10:38:09 localhost kernel: [<c10033fd>] ? do_notify_resume+0x5d/0x70
    Nov 8 10:38:09 localhost kernel: [<c12e9af8>] ? work_notifysig+0x13/0x1b
    Nov 8 10:38:10 localhost kernel: [fglrx] AGP detected, AgpState = 0x1f000a1b (hardware caps of chipset)
    Nov 8 10:38:10 localhost kernel: [fglrx] [agp] enabling AGP with mode=0x1f000b1a
    Nov 8 10:38:10 localhost kernel: agpgart-via 0000:00:00.0: AGP 3.5 bridge
    Nov 8 10:38:10 localhost kernel: agpgart-via 0000:00:00.0: putting AGP V3 device into 8x mode
    Nov 8 10:38:10 localhost kernel: fglrx_pci 0000:01:00.0: putting AGP V3 device into 8x mode
    Nov 8 10:38:10 localhost kernel: [fglrx] AGP enabled, AgpCommand = 0x1f000312 (selected caps)
    Nov 8 10:38:10 localhost kernel: [fglrx] Setup AGP aperture
    Nov 8 10:38:10 localhost kernel: [fglrx] Firegl kernel thread PID: 2426
    Nov 8 10:38:10 localhost kernel: [fglrx] IRQ 16 Enabled
    Nov 8 10:38:11 localhost kernel: [fglrx] Gart cacheable size:1318 M.
    Nov 8 10:38:11 localhost kernel: [fglrx] Reserved FB block: Shared offset:0, size:1000000
    Nov 8 10:38:11 localhost kernel: [fglrx] Reserved FB block: Unshared offset:fd0a000, size:2f6000
    Nov 8 10:38:11 localhost kernel: [fglrx] Reserved FB block: Unshared offset:3fffd000, size:3000
    Nov 8 10:38:33 localhost kernel: [fglrx] IRQ 16 Disabled
    2) Sometimes computer freeze while I working in KDE. I don't save logs, but I remeber that:
    X: page allocation failure
    in kernel.log.
    Can anyone has tips or workarounds for this bugs (or just catalyst proprietary driver is piece of sh*t?)?
    Can anyone help?

    I guess I have the same issue ( https://bbs.archlinux.org/viewtopic.php?id=108083 ). I removed the catalyst package and installed the open source driver (packages: xf86-video-ati and ati-dri) as a workaround to wait until the issue is resolved. If you want to do that, remember to update your xorg.conf (you can simple rename that... it's not needed with ati driver) and rc.conf (unblacklist the radeon module). Maybe downgrading to Xorg 1.8 and installing older driver would help. Hopefully somebody with greater knowledge will notice this problem.
    Last edited by kleofas (2010-11-11 12:42:38)

Maybe you are looking for

  • HT1689 can I transfer credit from my account to someone else's?

    I have credited the wrong account with a gift card, is there any way to transfer this to the right account?

  • Errors in emoms.log file

    Greetings, I have been poking around a bit trying to better understand some problems and how the OEM works. In the Middleware/gc_inst/em/EMGC_OMS1/sysman/log/emoms.log file I see numerous occurrences of the following error - 2013-11-18 07:09:56,740 [

  • Latency and Aggregate Devices

    Hello. I'm using an aggregate device for the first time. I have a Line6 Toneport GX and a Presonus Firebox; I combined them into an aggregate device in Audio MIDI Setup and can access each interface in Express. Pretty cool. However, latency seems to

  • Convertion of XML node to string using Xquery transformation in OSB

    How to convert XML node to string using a built in function using Xquery transformation in OSB? In BPEL we have the Xpath extension function ora:getContentAsString() to do the same.

  • Diadem: Save as time vector as "DDC_Timestamp"

    Hello, I am writing measurement data into .tdms files using LV 2009 SP1. Time is recorded in timestamp format into a seperate channel. Due to an error in group and channel naming on the LV side, I have renamed group and channel names in existing .tdm