JDBC query hangs for 60 seconds

Hi,
I'm trying to perform a series of very simple queries on a 8.1.7 database with jdk1.4 and ojdbc14 drivers. Every now and then, a query just hangs for exactly 60 seconds before continuing, without throwing any kind of exception. This sometimes happens after a couple of hundred queries, but it can also be after 4 or five. I thought maybe the database runs out of cursors, but then I would get an exception right? After every query, I close the ResultSet and Statement, so it should work just fine. When I tested the same program on PostgreSQL 7.2, it worked perfectly. Is this a problem with the Oracle JDBC drivers, or am I missing something?
Here's the code of my simple test app:
import java.sql.*;
import java.io.*;
class JdbcTest {
public static void main (String args []) throws Exception {
DriverManager.registerDriver (new oracle.jdbc.OracleDriver());
Connection conn = DriverManager.getConnection
("jdbc:oracle:thin:@foo.bar.com:1521:BLABLA","test", "test");
     for (int i=0;i<500;i++) {
     Statement stmt = conn.createStatement ();
     ResultSet rset = stmt.executeQuery ("SELECT sitenr,omschrijving FROM site");
     while (rset.next ())
          System.out.println (rset.getString (1) + ": " + rset.getString(2));
     rset.close();
     stmt.close();
conn.close();
}

Here's the thread dump:
"Signal Dispatcher" daemon prio=10 tid=0x009E8118 nid=0xdc4 waiting on condition
[0..0]
"Finalizer" daemon prio=9 tid=0x0003E6F0 nid=0xdd4 in Object.wait() [ab1f000..ab
1fd88]
at java.lang.Object.wait(Native Method)
- waiting on <02F81698> (a java.lang.ref.ReferenceQueue$Lock)
at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111)
- locked <02F81698> (a java.lang.ref.ReferenceQueue$Lock)
at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127)
at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159)
"Reference Handler" daemon prio=10 tid=0x0003D2C0 nid=0xdd8 in Object.wait() [aa
df000..aadfd88]
at java.lang.Object.wait(Native Method)
- waiting on <02F81700> (a java.lang.ref.Reference$Lock)
at java.lang.Object.wait(Object.java:426)
at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:113)
- locked <02F81700> (a java.lang.ref.Reference$Lock)
"main" prio=5 tid=0x00034AB8 nid=0xdc8 runnable [7f000..7fc3c]
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.read(SocketInputStream.java:129)
at oracle.net.ns.Packet.receive(Unknown Source)
at oracle.net.ns.NetInputStream.getNextPacket(Unknown Source)
at oracle.net.ns.NetInputStream.read(Unknown Source)
at oracle.net.ns.NetInputStream.read(Unknown Source)
at oracle.net.ns.NetInputStream.read(Unknown Source)
at oracle.jdbc.ttc7.MAREngine.unmarshalUB1(MAREngine.java:931)
at oracle.jdbc.ttc7.MAREngine.unmarshalSB1(MAREngine.java:893)
at oracle.jdbc.ttc7.Oopen.receive(Oopen.java:105)
at oracle.jdbc.ttc7.TTC7Protocol.open(TTC7Protocol.java:586)
- locked <02FCA940> (a oracle.jdbc.ttc7.TTC7Protocol)
at oracle.jdbc.driver.OracleStatement.<init>(OracleStatement.java:385)
at oracle.jdbc.driver.OracleConnection.privateCreateStatement(OracleConn
ection.java:772)
at oracle.jdbc.driver.OracleConnection.createStatement(OracleConnection.
java:712)
- locked <02FCA890> (a oracle.jdbc.driver.OracleConnection)
at JdbcTest.main(JdbcTest.java:11)
"VM Thread" prio=5 tid=0x009E5030 nid=0xde0 runnable
"VM Periodic Task Thread" prio=10 tid=0x009E6E00 nid=0xdd0 waiting on condition
"Suspend Checker Thread" prio=10 tid=0x009E7750 nid=0xdcc runnable

Similar Messages

  • JDBC query hangs server

    I have a very weird case when a particular JDBC query kills weblogic server. Attached
    is a thread dump. What's weird is:
    1. There is only one client on the system, and I sware the client sends only one
    request. At the same time there are 12 threads trying to execute the same query.
    2. The query is at the start of thread dump and it takes ~9sec to execute on our
    DB from SQL+. It returns ~300 records. If I change parameters it will be executed
    fine. Each time a client wants to execute a query before it is executed it is
    dumped to log, and there is only one query per all threads in the dump.
    3. Looking into DB log there is no sight of the query that is dumped into log
    file. DB does not have a clue... Both DB and WLS are waiting for each other...
    Environment:
    6.1sp2 on solaris
    Oracle 8.1.7
    JDBC driver from Oracle 9i
    [x.txt]

    There were two problems: request got hanging in the database (original) with proxy
    timing out and making situation worse (sending more requests). 9.2.0.1 did not
    have the original problem (statement did not hang), but the price was too high
    (data corruption) :( Also the problem was very touchy - we got only two environments
    which were duplicating it. This last mail was more on the whining side - hope
    that someone seen something similar and can say a-ha! So I guess I'm back in slow
    and painful try to reproduce and then fix mode... Most likely it all will end
    up with SQL tuning, not app level solution...
    "Slava Imeshev" <[email protected]> wrote:
    Mike,
    AFAIR the poblem was not in the driver but in the load balancer
    resubmitting requests. Could you please try to use 9.0.1 driver.
    Regards,
    Slava Imeshev
    "mike" <[email protected]> wrote in message
    news:[email protected]...
    Unfortunately the story is not completely over.
    We found that the new driver in some cases garbles the data. That happenson updates
    when WLS is changing object and the first parameter in the updatestatement is
    string. Sounds weird, so here more details:
    - We found that some strings in the database are garbled.
    - JDBC trace brought us to update statements. It looks like for eachupdate container
    creates prepared statement and sets parameters on it.
    - If the first parameter is a string then it will be garbled (happenswith
    two
    independant objects).
    The problem is defenitely driver-specific. It does not show up withany
    driver
    but 9.2.0.1. All previous drivers work right, but 9.0.1 that we usedbefore had
    the problem described in the thread, and 8.x work at least 10 timesslower
    (no
    kidding).
    Test app which connects to the same oracle instance and executes thestatement
    from JDBC log works fine (sure it does). Adding nls_charset to classpathdoes
    not make any difference. Attempt to create statement from within WLSwas
    not taken.
    Solution was even more bizzare. Since it was happening only when thefirst
    attribute
    was string we shuffled attributes and the problem went away. But Ido not
    believe
    that is a solution - IMHO that just masks the problem.
    Any and all brignt and not-so-much ideas are welcome.

  • Jdbc query hangs

    Hi,
    I'm very new to Oracle, so forgive me if this is a rather stupid question:
    I've written a little test application (cut and paste form the jdbc developers guide) that just connects to the university database and performs the same query 500 times in a row. After a number of queries the application freezes for exactly 60 seconds before continuing the loop, without throwing any kind of exception. this usually happens about 3 times during the loop.
    What am I doing wrong?
    I'm using jdk1.4.1 with ojdbc14.jar and the database is version 8.1.7.
    Kind regards,
    Jurgen

    Hi,
    I'm very new to Oracle, so forgive me if this is a rather stupid question:
    I've written a little test application (cut and paste form the jdbc developers guide) that just connects to the university database and performs the same query 500 times in a row. After a number of queries the application freezes for exactly 60 seconds before continuing the loop, without throwing any kind of exception. this usually happens about 3 times during the loop.
    What am I doing wrong?
    I'm using jdk1.4.1 with ojdbc14.jar and the database is version 8.1.7.
    Kind regards,
    Jurgen

  • LabVIEW ofter hangs for seconds after save, run command, creating variables, etc.

    Dear users,
    my LabVIEW installation often hangs after common commands such as Save, Run, after creating variables (the label is draw directly, then after few seconds the variable and the wire is created), etc.
    LabVIEW 14.01f (32bit)
    Windows 7 64bit
    The same version of LabVIEW on Windows 7 on other computers runs smoothly. Only that particular super-new and high-performance Lenovo laptop drives everybody in the team crazy.
    Any suggestions, what should I check, please?

    Other reasons for such delays can be network drives that are currently disconnected or point to resources not currently available on the network. Or installed printers pointing to printers not currently available. And last but not least system drives that are trashed with large amounts of files in important system locations.
    While the first reasons can be fixed by removing such drives and printers altogheter, the last point only really is fixable by a clean reinstallation of Windows. And no it's not just LabVIEW that usually gets affacted but just about any application when accessing the file system, for instance very noticable when opening the file select dialog in any application.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Need a quick help!! Query hangs for hours

    Hi Guys,
    This is actually a stupid rollback query iam working on, for a one time load which is to be done this weekend.
    DELETE FROM OWNER.SBS_PYMT_FEE where CRE_USR_ID='';
    The actual problem, it takes hours to respond in QA and should take more time in PROD Considering the volume, it is doing a full table scan and our DBAs suggested Indexing on CRE_USR_ID would be a bad idea as the table is partitioned and is huge. CRE_USR_ID is the only column identified for 1 file.
    This is a one time activity.
    Any ideas or work arounds would help me a lot.
    And sadly, I do not have access to more stats.
    Thanks,
    Raj.

    I wondered about parallel settings because parallel_dml_mode is disabled by default:
    SELECT name, value, isdefault
    FROM   v$ses_optimizer_env
    WHERE  sid IN
           (  SELECT sid FROM v$mystat )
    AND    name LIKE 'parallel%'
    ORDER BY name;
    NAME                           VALUE                     ISD
    parallel_ddl_mode              enabled                   YES
    parallel_degree                0                         YES
    parallel_dml_mode              disabled                  YES
    parallel_execution_enabled     true                      YES
    parallel_query_default_dop     0                         YES
    parallel_query_mode            enabled                   YES
    parallel_threads_per_cpu       2                         YES
    7 rows selected.(example from 11g)
    Message was edited by:
    William Robertson

  • The query HANGS for ever!

    hi,
    we have types which extend other types. We need this as a part of a framework in db. Over the paret type are the queue (oracle AQs) defined.
    Intermitantly, on few databases, when we try to create a type extending the same parent type with the queues running, the create type script just hangs off for ever.
    WHy does this happen? more importatly intermitantly?
    is there an approach to debug such issues? or get things working by killing some sessions etc.
    Any ideas/ pointers .. please help.
    db details:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Prod
    PL/SQL Release 10.2.0.4.0 - Production
    CORE     10.2.0.4.0     Production
    TNS for Linux: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production

    thank u for the reply.
    Is there a way to figure out what objects are pinned. and if i figure out them then how do i un-pin them?
    But i have a type extending a type. To the best of my knowledge the objects created over types are locked (or pined). The paret type is just a declaration/ definition of how the object has to be created.

  • Sql query hangs close to the end

    Hi:
    I am on 10.2.0.3.
    My rather simple query hangs for a few minutes close to the end. It's supposed to return 288 rows and it immediately returns 285, then hangs for 4-5 min, than returns the remaining 3 rows. Kind of similar behavior to using "First_rows" hint - which I'm not using...
    The table has about 100,000 rows.
    Some relevant info is below.
    Any ides appreciated.
    TIA
    PLAN_TABLE_OUTPUT
    Plan hash value: 2481764356
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 1 | 30 | 3 (0)| 00:00:01 |
    |* 1 | INDEX RANGE SCAN| PSACOMBO_DATA_TBL | 1 | 30 | 3 (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    1 - access("SETID"='GLOBL' AND "PROCESS_GROUP"='100ACDTPRJ' AND
    "COMBINATION"='100ACDTPRJ' AND "VALID_CODE"='V')
    optimizer_dynamic_sampling integer 6
    optimizer_features_enable string 10.2.0.3
    optimizer_index_caching integer 25
    optimizer_index_cost_adj integer 75
    optimizer_mode string ALL_ROWS
    optimizer_secure_view_merging boolean TRUE
    unnestsubquery boolean FALSE

    You said the query is supposed to return 288 rows, but from the explain plan, Oracle "see" only 1 row to be returned. Are the stats up-to-date ? What's the actual query ?
    Please, on the forum side, use tags before and after your code to keep it readable (preserve blanks and tabs).
    Nicolas.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Oracle 8i database hangs for the same amount during JDBC calls.

    Hi all,
    I have a Oracle 8i database on solaris. The database hangs for exactly 61 seconds for a random jdbc call from my Java application, i mean there is no particular pattern or a JDBC call for which the database hangs. If i choose to wait for 61 seconds it returns the results from the database but if i try to access the database with another query(SQL Plus) the first query starts executing immediately. Is that a database configuration problem or some thing else.
    And i also get some exceptions occasionally( Maximum Open Cursors exception). Are these two related?
    Any feedback is appreciated.
    Thanks
    Hugo Victor

    I have uninstalled Oracle 8i.
    Removed all the services from Windows services by deleting corresponding registry entries and deleted the Oracle folder.
    I have reinstalled Oracle 8i, this time i changed the name of global database to oracledb.
    I channged the tnsnames.ora file from DevSuite appropriately as:
    # tnsnames.ora Network Configuration File: C:\DevSuiteHome_1\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = mscserver)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = ORACLEDB)
    Still it can't login using scott/tiger authentication.
    What may be the problem? Please help.
    -Sameer

  • ODBC Data source administrator hanging for 20 seconds

    After installing 32 bit ODAC 11.2 Release 5 and Oracle Developer Tools for Visual Studio (11.2.0.3.20) our business is reporting slow Excel/VBA code using ODBC.
    The business are querying using a ODBC System DSN. It works but hangs for 20 second when VBA releases the connection.
    I can see that I get the same pause after testing the connection in the "ODBC Data Source administrator"
    1. Open ODBC Data Source administrator
    2. Edit the System DSN
    3. Push "Test Conncetion". Says "Connection succesful". Push OK
    4. Push "OK"
    ODBC Data Source administrator now hangs for 20 seconds.
    I did a clean installation on a Win7 x64 machine using 32 bit ODBC Data Source administrator
    Nothing to find in the eventlog.
    Does anyone know what could be wrong?

    Udpate: I tracked it down to Microsoft ISA Firewall Client installation. If I uninstall the ISA Firewall the problem disappears.
    Only disabling the ISA Firewall doesn't help!
    Other have reported the same behaviour https://groups.google.com/forum/#!topic/microsoft.public.isa.clients/F14GNANHppA
    Any help will be appreciated!
    Thanks

  • Acpi_pci_root_init hangs for seven seconds at boot: why?

    EDIT:
    I just find out where's the problem, but I don't know why it shows up and I don't know what it means.
    Basically my system hangs up here for seven seconds (or so) and I wish to understand the reason(s).
    [ 1.090519] calling acpi_pci_root_init+0x0/0x2d @ 1
    [ 8.373387] initcall acpi_pci_root_init+0x0/0x2d returned 0 after 7112169 usecs
    Original Message:
    So, everything started when I tried systemd-analyze to reduce my boot time.
    Long story short, after various try I used bootchart to have this:
    http://s1.postimage.org/5ousetq25/bootchart.png
    The process named acpi_pci_root_init (sadly I have almost no experience with this side of my PC) seems to hang for seven seconds.
    I already tried to see if something's wrong with dmesg, but as I stated I've got almost no experience with this.
    May someone help me to find an answer?
    dmesg | grep acpi
    $ dmesg | grep acpi
    [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.142733] calling acpi_pci_init+0x0/0x5c @ 1
    [ 0.142742] initcall acpi_pci_init+0x0/0x5c returned 0 after 0 usecs
    [ 0.144312] calling acpi_init+0x0/0x29b @ 1
    [ 1.090230] initcall acpi_init+0x0/0x29b returned 0 after 927674 usecs
    [ 1.090519] calling acpi_pci_root_init+0x0/0x2d @ 1
    [ 8.373387] initcall acpi_pci_root_init+0x0/0x2d returned 0 after 7112169 usecs
    [ 8.373393] calling acpi_pci_link_init+0x0/0x3e @ 1
    [ 8.374178] initcall acpi_pci_link_init+0x0/0x3e returned 0 after 0 usecs
    [ 8.415939] calling acpi_event_init+0x0/0x55 @ 1
    [ 8.415967] initcall acpi_event_init+0x0/0x55 returned 0 after 21 usecs
    [ 8.416013] calling pnpacpi_init+0x0/0x8c @ 1
    [ 8.816967] initcall pnpacpi_init+0x0/0x8c returned 0 after 391548 usecs
    [ 8.821916] calling init_acpi_pm_clocksource+0x0/0xdf @ 1
    [ 8.826454] initcall init_acpi_pm_clocksource+0x0/0xdf returned 0 after 4426 usecs
    [ 9.015610] calling acpi_reserve_resources+0x0/0xeb @ 1
    [ 9.015622] initcall acpi_reserve_resources+0x0/0xeb returned 0 after 5 usecs
    [ 9.015638] calling acpi_hed_init+0x0/0x30 @ 1
    [ 9.015702] initcall acpi_hed_init+0x0/0x30 returned 0 after 56 usecs
    [ 15.882904] calling acpi_ac_init+0x0/0x30 [ac] @ 178
    [ 15.888039] initcall acpi_ac_init+0x0/0x30 [ac] returned 0 after 5001 usecs
    [ 16.130144] calling acpi_button_init+0x0/0x12 [button] @ 171
    [ 16.131400] initcall acpi_button_init+0x0/0x12 [button] returned 0 after 1214 usecs
    [ 16.136418] calling acpi_battery_init+0x0/0x16 [battery] @ 180
    [ 16.136435] initcall acpi_battery_init+0x0/0x16 [battery] returned 0 after 6 usecs
    [ 16.141024] calling acpi_thermal_init+0x0/0x42 [thermal] @ 160
    [ 16.141654] calling acpi_video_init+0x0/0x91 [video] @ 176
    [ 16.157794] calling acpi_wmi_init+0x0/0x71 [wmi] @ 188
    [ 16.160033] initcall acpi_wmi_init+0x0/0x71 [wmi] returned 0 after 2174 usecs
    [ 16.257354] acpi device:03: registered as cooling_device0
    [ 16.258779] initcall acpi_video_init+0x0/0x91 [video] returned 0 after 114366 usecs
    [ 16.263618] calling acpi_processor_init+0x0/0x7e [processor] @ 147
    [ 16.263747] ACPI: Requesting acpi_cpufreq
    [ 16.288111] initcall acpi_thermal_init+0x0/0x42 [thermal] returned 0 after 143623 usecs
    [ 16.783761] ACPI: acpi_idle registered with cpuidle
    [ 16.852081] acer_wmi: Brightness must be controlled by acpi video driver
    [ 17.187796] initcall acpi_processor_init+0x0/0x7e [processor] returned 0 after 902497 usecs
    [ 17.273911] calling acpi_cpufreq_init+0x0/0xb1 [acpi_cpufreq] @ 214
    [ 17.274830] initcall acpi_cpufreq_init+0x0/0xb1 [acpi_cpufreq] returned 0 after 883 usecs
    dmesg
    $ dmesg
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.6.11-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.2 (GCC) ) #1 SMP PREEMPT Tue Dec 18 08:57:15 CET 2012
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=14ba80b0-8331-4d2c-8194-c1741b611124 ro quiet ro libahci.ignore_sss=1 initcall_debug init=/usr/bin/bootchartd
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f3ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009f400-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000d0000-0x00000000000d3fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000dc000-0x00000000000dffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e4000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bf8a0fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bf8a1000-0x00000000bf8a6fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bf8a7000-0x00000000bf9b8fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bf9b9000-0x00000000bfa0efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bfa0f000-0x00000000bfb07fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bfb08000-0x00000000bfd0efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bfd0f000-0x00000000bfd18fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bfd19000-0x00000000bfd1efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bfd1f000-0x00000000bfd5efff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bfd5f000-0x00000000bfd9efff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bfd9f000-0x00000000bfde0fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bfde1000-0x00000000bfdfefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000bfdff000-0x00000000bfdfffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013fffffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI present.
    [ 0.000000] DMI: Acer Aspire 7738 /JM70 , BIOS V1.07 06/22/2009
    [ 0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x140000 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F80000000 write-back
    [ 0.000000] 1 base 080000000 mask FC0000000 write-back
    [ 0.000000] 2 base 100000000 mask FC0000000 write-back
    [ 0.000000] 3 disabled
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: update [mem 0xc0000000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xbfe00 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000f6d90-0x000f6d9f] mapped at [ffff8800000f6d90]
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
    [ 0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0xbfdfffff]
    [ 0.000000] [mem 0x00000000-0xbfdfffff] page 2M
    [ 0.000000] kernel direct mapping tables up to 0xbfdfffff @ [mem 0x1fffc000-0x1fffffff]
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x13fffffff]
    [ 0.000000] [mem 0x100000000-0x13fffffff] page 2M
    [ 0.000000] kernel direct mapping tables up to 0x13fffffff @ [mem 0xbfddf000-0xbfde0fff]
    [ 0.000000] RAMDISK: [mem 0x37a60000-0x37d27fff]
    [ 0.000000] ACPI: RSDP 00000000000f6bf0 00024 (v02 PTLTD )
    [ 0.000000] ACPI: XSDT 00000000bfdf3a01 0005C (v01 ACRSYS ACRPRDCT 06040000 INNA 00000000)
    [ 0.000000] ACPI: FACP 00000000bfde3000 000F4 (v03 INTEL CRESTLNE 06040000 ALAN 00000001)
    [ 0.000000] ACPI: DSDT 00000000bfde4000 0B189 (v02 Intel CANTIGA 06040000 MSFT 03000000)
    [ 0.000000] ACPI: FACS 00000000bfd9dfc0 00040
    [ 0.000000] ACPI: HPET 00000000bfdfed86 00038 (v01 INTEL CRESTLNE 06040000 LOHR 0000005A)
    [ 0.000000] ACPI: MCFG 00000000bfdfedbe 0003C (v01 INTEL CRESTLNE 06040000 LOHR 0000005A)
    [ 0.000000] ACPI: SLIC 00000000bfdfedfa 00176 (v01 ACRSYS ACRPRDCT 06040000 ANNI 00000001)
    [ 0.000000] ACPI: APIC 00000000bfdfef70 00068 (v01 PTLTD ? APIC 06040000 LTP 00000000)
    [ 0.000000] ACPI: BOOT 00000000bfdfefd8 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001)
    [ 0.000000] ACPI: SSDT 00000000bfde2000 00655 (v01 PmRef CpuPm 00003000 INTL 20050624)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000013fffffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x13fffffff]
    [ 0.000000] NODE_DATA [mem 0x13fffc000-0x13fffffff]
    [ 0.000000] [ffffea0000000000-ffffea0004ffffff] PMD -> [ffff88013b600000-ffff88013f5fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00010000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x13fffffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00010000-0x0009efff]
    [ 0.000000] node 0: [mem 0x00100000-0xbf8a0fff]
    [ 0.000000] node 0: [mem 0xbf8a7000-0xbf9b8fff]
    [ 0.000000] node 0: [mem 0xbfa0f000-0xbfb07fff]
    [ 0.000000] node 0: [mem 0xbfd0f000-0xbfd18fff]
    [ 0.000000] node 0: [mem 0xbfd1f000-0xbfd5efff]
    [ 0.000000] node 0: [mem 0xbfd9f000-0xbfde0fff]
    [ 0.000000] node 0: [mem 0xbfdff000-0xbfdfffff]
    [ 0.000000] node 0: [mem 0x100000000-0x13fffffff]
    [ 0.000000] On node 0 totalpages: 1047240
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 6 pages reserved
    [ 0.000000] DMA zone: 3913 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 16320 pages used for memmap
    [ 0.000000] DMA32 zone: 764793 pages, LIFO batch:31
    [ 0.000000] Normal zone: 4096 pages used for memmap
    [ 0.000000] Normal zone: 258048 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 2 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000d0000
    [ 0.000000] PM: Registered nosave memory: 00000000000d0000 - 00000000000d4000
    [ 0.000000] PM: Registered nosave memory: 00000000000d4000 - 00000000000dc000
    [ 0.000000] PM: Registered nosave memory: 00000000000dc000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 00000000000e4000
    [ 0.000000] PM: Registered nosave memory: 00000000000e4000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 00000000bf8a1000 - 00000000bf8a7000
    [ 0.000000] PM: Registered nosave memory: 00000000bf9b9000 - 00000000bfa0f000
    [ 0.000000] PM: Registered nosave memory: 00000000bfb08000 - 00000000bfd0f000
    [ 0.000000] PM: Registered nosave memory: 00000000bfd19000 - 00000000bfd1f000
    [ 0.000000] PM: Registered nosave memory: 00000000bfd5f000 - 00000000bfd9f000
    [ 0.000000] PM: Registered nosave memory: 00000000bfde1000 - 00000000bfdff000
    [ 0.000000] PM: Registered nosave memory: 00000000bfe00000 - 0000000100000000
    [ 0.000000] e820: [mem 0xbfe00000-0xffffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:2 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88013fc00000 s84608 r8192 d21888 u1048576
    [ 0.000000] pcpu-alloc: s84608 r8192 d21888 u1048576 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1026754
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=14ba80b0-8331-4d2c-8194-c1741b611124 ro quiet ro libahci.ignore_sss=1 initcall_debug init=/usr/bin/bootchartd
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] __ex_table already sorted, skipping sort
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 4043048k/5242880k available (4728k kernel code, 1053920k absent, 145912k reserved, 4142k data, 772k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=2.
    [ 0.000000] NR_IRQS:4352 nr_irqs:512 16
    [ 0.000000] Extended CMOS year: 2000
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 16777216 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration failed
    [ 0.000000] tsc: PIT calibration matches HPET. 1 loops
    [ 0.000000] tsc: Detected 1994.996 MHz processor
    [ 0.003339] Calibrating delay loop (skipped), value calculated using timer frequency.. 3991.24 BogoMIPS (lpj=6649986)
    [ 0.006673] pid_max: default: 32768 minimum: 301
    [ 0.006747] Security Framework initialized
    [ 0.006757] AppArmor: AppArmor disabled by boot time parameter
    [ 0.007514] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.011095] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.012732] Mount-cache hash table entries: 256
    [ 0.013244] Initializing cgroup subsys cpuacct
    [ 0.013251] Initializing cgroup subsys memory
    [ 0.013271] Initializing cgroup subsys devices
    [ 0.013274] Initializing cgroup subsys freezer
    [ 0.013277] Initializing cgroup subsys net_cls
    [ 0.013280] Initializing cgroup subsys blkio
    [ 0.013381] CPU: Physical Processor ID: 0
    [ 0.013384] CPU: Processor Core ID: 0
    [ 0.013389] mce: CPU supports 6 MCE banks
    [ 0.013405] CPU0: Thermal monitoring enabled (TM1)
    [ 0.013412] process: using mwait in idle threads
    [ 0.013423] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
    Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32
    tlb_flushall_shift is 0xffffffff
    [ 0.016505] ACPI: Core revision 20120711
    [ 0.026709] ftrace: allocating 18351 entries in 72 pages
    [ 0.040530] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.075020] smpboot: CPU0: Intel(R) Core(TM)2 Duo CPU P7350 @ 2.00GHz stepping 06
    [ 0.076662] calling trace_init_flags_sys_exit+0x0/0x12 @ 1
    [ 0.076662] initcall trace_init_flags_sys_exit+0x0/0x12 returned 0 after 0 usecs
    [ 0.076662] calling trace_init_flags_sys_enter+0x0/0x12 @ 1
    [ 0.076662] initcall trace_init_flags_sys_enter+0x0/0x12 returned 0 after 0 usecs
    [ 0.076662] calling init_hw_perf_events+0x0/0x3a9 @ 1
    [ 0.076662] Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
    [ 0.076662] ... version: 2
    [ 0.076662] ... bit width: 40
    [ 0.076662] ... generic registers: 2
    [ 0.076662] ... value mask: 000000ffffffffff
    [ 0.076662] ... max period: 000000007fffffff
    [ 0.076662] ... fixed-purpose events: 3
    [ 0.076662] ... event mask: 0000000700000003
    [ 0.076662] initcall init_hw_perf_events+0x0/0x3a9 returned 0 after 0 usecs
    [ 0.076662] calling register_trigger_all_cpu_backtrace+0x0/0x16 @ 1
    [ 0.076662] initcall register_trigger_all_cpu_backtrace+0x0/0x16 returned 0 after 0 usecs
    [ 0.076662] calling spawn_ksoftirqd+0x0/0x51 @ 1
    [ 0.080008] initcall spawn_ksoftirqd+0x0/0x51 returned 0 after 6509 usecs
    [ 0.080013] calling init_workqueues+0x0/0x3cc @ 1
    [ 0.093431] initcall init_workqueues+0x0/0x3cc returned 0 after 13019 usecs
    [ 0.093436] calling migration_init+0x0/0x6c @ 1
    [ 0.093444] initcall migration_init+0x0/0x6c returned 0 after 0 usecs
    [ 0.093449] calling cpu_stop_init+0x0/0xad @ 1
    [ 0.100009] initcall cpu_stop_init+0x0/0xad returned 0 after 6509 usecs
    [ 0.100015] calling rcu_scheduler_really_started+0x0/0x12 @ 1
    [ 0.100021] initcall rcu_scheduler_really_started+0x0/0x12 returned 0 after 0 usecs
    [ 0.100026] calling relay_init+0x0/0x14 @ 1
    [ 0.100032] initcall relay_init+0x0/0x14 returned 0 after 0 usecs
    [ 0.100037] calling tracer_alloc_buffers+0x0/0x1fe @ 1
    [ 0.100114] initcall tracer_alloc_buffers+0x0/0x1fe returned 0 after 0 usecs
    [ 0.100119] calling init_events+0x0/0x60 @ 1
    [ 0.100127] initcall init_events+0x0/0x60 returned 0 after 0 usecs
    [ 0.100132] calling init_trace_printk+0x0/0x12 @ 1
    [ 0.100138] initcall init_trace_printk+0x0/0x12 returned 0 after 0 usecs
    [ 0.100144] calling jump_label_init_module+0x0/0x12 @ 1
    [ 0.100150] initcall jump_label_init_module+0x0/0x12 returned 0 after 0 usecs
    [ 0.100239] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.113345] smpboot: Booting Node 0, Processors #1 OK
    [ 0.126520] Brought up 2 CPUs
    [ 0.126520] smpboot: Total of 2 processors activated (7983.48 BogoMIPS)
    [ 0.130144] devtmpfs: initialized
    [ 0.139149] calling ipc_ns_init+0x0/0x14 @ 1
    [ 0.139157] initcall ipc_ns_init+0x0/0x14 returned 0 after 0 usecs
    [ 0.139163] calling init_mmap_min_addr+0x0/0x16 @ 1
    [ 0.139169] initcall init_mmap_min_addr+0x0/0x16 returned 0 after 0 usecs
    [ 0.139175] calling init_cpufreq_transition_notifier_list+0x0/0x1b @ 1
    [ 0.139187] initcall init_cpufreq_transition_notifier_list+0x0/0x1b returned 0 after 0 usecs
    [ 0.139192] calling net_ns_init+0x0/0xea @ 1
    [ 0.139221] initcall net_ns_init+0x0/0xea returned 0 after 0 usecs
    [ 0.139221] calling e820_mark_nvs_memory+0x0/0x3d @ 1
    [ 0.139221] PM: Registering ACPI NVS region [mem 0xbfd5f000-0xbfd9efff] (262144 bytes)
    [ 0.139221] initcall e820_mark_nvs_memory+0x0/0x3d returned 0 after 0 usecs
    [ 0.139221] calling cpufreq_tsc+0x0/0x33 @ 1
    [ 0.139221] initcall cpufreq_tsc+0x0/0x33 returned 0 after 0 usecs
    [ 0.139221] calling reboot_init+0x0/0x20 @ 1
    [ 0.139221] initcall reboot_init+0x0/0x20 returned 0 after 0 usecs
    [ 0.139221] calling init_lapic_sysfs+0x0/0x23 @ 1
    [ 0.139221] initcall init_lapic_sysfs+0x0/0x23 returned 0 after 0 usecs
    [ 0.139221] calling cpu_hotplug_pm_sync_init+0x0/0x14 @ 1
    [ 0.139221] initcall cpu_hotplug_pm_sync_init+0x0/0x14 returned 0 after 0 usecs
    [ 0.139221] calling alloc_frozen_cpus+0x0/0x8 @ 1
    [ 0.139221] initcall alloc_frozen_cpus+0x0/0x8 returned 0 after 0 usecs
    [ 0.139221] calling ksysfs_init+0x0/0x97 @ 1
    [ 0.139221] initcall ksysfs_init+0x0/0x97 returned 0 after 0 usecs
    [ 0.139221] calling pm_init+0x0/0x7f @ 1
    [ 0.139221] initcall pm_init+0x0/0x7f returned 0 after 0 usecs
    [ 0.139221] calling pm_disk_init+0x0/0x19 @ 1
    [ 0.139221] initcall pm_disk_init+0x0/0x19 returned 0 after 0 usecs
    [ 0.139221] calling swsusp_header_init+0x0/0x40 @ 1
    [ 0.139221] initcall swsusp_header_init+0x0/0x40 returned 0 after 0 usecs
    [ 0.139221] calling init_jiffies_clocksource+0x0/0x12 @ 1
    [ 0.139221] initcall init_jiffies_clocksource+0x0/0x12 returned 0 after 0 usecs
    [ 0.139221] calling init_ftrace_syscalls+0x0/0x70 @ 1
    [ 0.141872] initcall init_ftrace_syscalls+0x0/0x70 returned 0 after 3254 usecs
    [ 0.141878] calling init_zero_pfn+0x0/0x1f @ 1
    [ 0.141883] initcall init_zero_pfn+0x0/0x1f returned 0 after 0 usecs
    [ 0.141888] calling memory_failure_init+0x0/0xa0 @ 1
    [ 0.141893] initcall memory_failure_init+0x0/0xa0 returned 0 after 0 usecs
    [ 0.141898] calling fsnotify_init+0x0/0x26 @ 1
    [ 0.141907] initcall fsnotify_init+0x0/0x26 returned 0 after 0 usecs
    [ 0.141912] calling filelock_init+0x0/0x2a @ 1
    [ 0.141920] initcall filelock_init+0x0/0x2a returned 0 after 0 usecs
    [ 0.141925] calling init_misc_binfmt+0x0/0x31 @ 1
    [ 0.141932] initcall init_misc_binfmt+0x0/0x31 returned 0 after 0 usecs
    [ 0.141936] calling init_script_binfmt+0x0/0x16 @ 1
    [ 0.141941] initcall init_script_binfmt+0x0/0x16 returned 0 after 0 usecs
    [ 0.141946] calling init_elf_binfmt+0x0/0x16 @ 1
    [ 0.141951] initcall init_elf_binfmt+0x0/0x16 returned 0 after 0 usecs
    [ 0.141955] calling init_compat_elf_binfmt+0x0/0x16 @ 1
    [ 0.141960] initcall init_compat_elf_binfmt+0x0/0x16 returned 0 after 0 usecs
    [ 0.141965] calling debugfs_init+0x0/0x5b @ 1
    [ 0.141975] initcall debugfs_init+0x0/0x5b returned 0 after 0 usecs
    [ 0.141980] calling securityfs_init+0x0/0x52 @ 1
    [ 0.141989] initcall securityfs_init+0x0/0x52 returned 0 after 0 usecs
    [ 0.141994] calling random32_init+0x0/0xd2 @ 1
    [ 0.142000] initcall random32_init+0x0/0xd2 returned 0 after 0 usecs
    [ 0.142005] calling sfi_sysfs_init+0x0/0xd9 @ 1
    [ 0.142010] initcall sfi_sysfs_init+0x0/0xd9 returned 0 after 0 usecs
    [ 0.142016] calling __gnttab_init+0x0/0x24 @ 1
    [ 0.142022] initcall __gnttab_init+0x0/0x24 returned -19 after 0 usecs
    [ 0.142027] calling cpufreq_core_init+0x0/0xc1 @ 1
    [ 0.142036] initcall cpufreq_core_init+0x0/0xc1 returned 0 after 0 usecs
    [ 0.142041] calling cpuidle_init+0x0/0x41 @ 1
    [ 0.142052] initcall cpuidle_init+0x0/0x41 returned 0 after 0 usecs
    [ 0.142056] calling sock_init+0x0/0x92 @ 1
    [ 0.142137] initcall sock_init+0x0/0x92 returned 0 after 0 usecs
    [ 0.142143] calling net_inuse_init+0x0/0x26 @ 1
    [ 0.142151] initcall net_inuse_init+0x0/0x26 returned 0 after 0 usecs
    [ 0.142156] calling netpoll_init+0x0/0x30 @ 1
    [ 0.142161] initcall netpoll_init+0x0/0x30 returned 0 after 0 usecs
    [ 0.142166] calling netlink_proto_init+0x0/0x1dd @ 1
    [ 0.142176] NET: Registered protocol family 16
    [ 0.142195] initcall netlink_proto_init+0x0/0x1dd returned 0 after 0 usecs
    [ 0.142229] calling bdi_class_init+0x0/0x49 @ 1
    [ 0.142277] initcall bdi_class_init+0x0/0x49 returned 0 after 0 usecs
    [ 0.142283] calling kobject_uevent_init+0x0/0x21 @ 1
    [ 0.142293] initcall kobject_uevent_init+0x0/0x21 returned 0 after 0 usecs
    [ 0.142299] calling gpiolib_sysfs_init+0x0/0x93 @ 1
    [ 0.142318] initcall gpiolib_sysfs_init+0x0/0x93 returned 0 after 0 usecs
    [ 0.142323] calling pcibus_class_init+0x0/0x19 @ 1
    [ 0.142335] initcall pcibus_class_init+0x0/0x19 returned 0 after 0 usecs
    [ 0.142341] calling pci_driver_init+0x0/0x19 @ 1
    [ 0.142363] initcall pci_driver_init+0x0/0x19 returned 0 after 0 usecs
    [ 0.142368] calling rio_bus_init+0x0/0x37 @ 1
    [ 0.142417] initcall rio_bus_init+0x0/0x37 returned 0 after 0 usecs
    [ 0.142422] calling backlight_class_init+0x0/0x5d @ 1
    [ 0.142436] initcall backlight_class_init+0x0/0x5d returned 0 after 0 usecs
    [ 0.142440] calling xenbus_init+0x0/0x2b2 @ 1
    [ 0.142446] initcall xenbus_init+0x0/0x2b2 returned -19 after 0 usecs
    [ 0.142450] calling tty_class_init+0x0/0x34 @ 1
    [ 0.142462] initcall tty_class_init+0x0/0x34 returned 0 after 0 usecs
    [ 0.142466] calling vtconsole_class_init+0x0/0xe9 @ 1
    [ 0.142513] initcall vtconsole_class_init+0x0/0xe9 returned 0 after 0 usecs
    [ 0.142519] calling wakeup_sources_debugfs_init+0x0/0x2b @ 1
    [ 0.142529] initcall wakeup_sources_debugfs_init+0x0/0x2b returned 0 after 0 usecs
    [ 0.142534] calling register_node_type+0x0/0x31 @ 1
    [ 0.142586] initcall register_node_type+0x0/0x31 returned 0 after 0 usecs
    [ 0.142592] calling regmap_initcall+0x0/0xd @ 1
    [ 0.142602] initcall regmap_initcall+0x0/0xd returned 0 after 0 usecs
    [ 0.142606] calling amd_postcore_init+0x0/0x148 @ 1
    [ 0.142611] initcall amd_postcore_init+0x0/0x148 returned 0 after 0 usecs
    [ 0.142643] calling set_real_mode_permissions+0x0/0x9d @ 1
    [ 0.142674] initcall set_real_mode_permissions+0x0/0x9d returned 0 after 0 usecs
    [ 0.142679] calling arch_kdebugfs_init+0x0/0x24 @ 1
    [ 0.142689] initcall arch_kdebugfs_init+0x0/0x24 returned 0 after 0 usecs
    [ 0.142695] calling mtrr_if_init+0x0/0x65 @ 1
    [ 0.142703] initcall mtrr_if_init+0x0/0x65 returned 0 after 0 usecs
    [ 0.142708] calling ffh_cstate_init+0x0/0x2d @ 1
    [ 0.142716] initcall ffh_cstate_init+0x0/0x2d returned 0 after 0 usecs
    [ 0.142722] calling activate_jump_labels+0x0/0x35 @ 1
    [ 0.142727] initcall activate_jump_labels+0x0/0x35 returned 0 after 0 usecs
    [ 0.142733] calling acpi_pci_init+0x0/0x5c @ 1
    [ 0.142737] ACPI: bus type pci registered
    [ 0.142742] initcall acpi_pci_init+0x0/0x5c returned 0 after 0 usecs
    [ 0.142747] calling dma_bus_init+0x0/0x19 @ 1
    [ 0.142760] initcall dma_bus_init+0x0/0x19 returned 0 after 0 usecs
    [ 0.142764] calling dma_channel_table_init+0x0/0x115 @ 1
    [ 0.142807] initcall dma_channel_table_init+0x0/0x115 returned 0 after 0 usecs
    [ 0.142812] calling setup_vcpu_hotplug_event+0x0/0x22 @ 1
    [ 0.142817] initcall setup_vcpu_hotplug_event+0x0/0x22 returned -19 after 0 usecs
    [ 0.142822] calling xen_pcpu_init+0x0/0xc3 @ 1
    [ 0.142827] initcall xen_pcpu_init+0x0/0xc3 returned -19 after 0 usecs
    [ 0.142832] calling register_xen_pci_notifier+0x0/0x31 @ 1
    [ 0.142837] initcall register_xen_pci_notifier+0x0/0x31 returned 0 after 0 usecs
    [ 0.142842] calling dmi_id_init+0x0/0x31f @ 1
    [ 0.142920] initcall dmi_id_init+0x0/0x31f returned 0 after 0 usecs
    [ 0.142926] calling pci_arch_init+0x0/0x6a @ 1
    [ 0.142981] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.142987] PCI: not using MMCONFIG
    [ 0.142990] PCI: Using configuration type 1 for base access
    [ 0.143001] initcall pci_arch_init+0x0/0x6a returned 0 after 0 usecs
    [ 0.143034] calling topology_init+0x0/0x8e @ 1
    [ 0.143315] initcall topology_init+0x0/0x8e returned 0 after 0 usecs
    [ 0.143321] calling mtrr_init_finialize+0x0/0x36 @ 1
    [ 0.143333] initcall mtrr_init_finialize+0x0/0x36 returned 0 after 0 usecs
    [ 0.143339] calling init_vdso+0x0/0x24e @ 1
    [ 0.143349] initcall init_vdso+0x0/0x24e returned 0 after 0 usecs
    [ 0.143355] calling sysenter_setup+0x0/0x2d2 @ 1
    [ 0.143367] initcall sysenter_setup+0x0/0x2d2 returned 0 after 0 usecs
    [ 0.143372] calling param_sysfs_init+0x0/0x1ae @ 1
    [ 0.144232] initcall param_sysfs_init+0x0/0x1ae returned 0 after 0 usecs
    [ 0.144238] calling pm_sysrq_init+0x0/0x20 @ 1
    [ 0.144245] initcall pm_sysrq_init+0x0/0x20 returned 0 after 0 usecs
    [ 0.144250] calling default_bdi_init+0x0/0x37 @ 1
    [ 0.144312] initcall default_bdi_init+0x0/0x37 returned 0 after 0 usecs
    [ 0.144312] calling init_bio+0x0/0xeb @ 1
    [ 0.144312] bio: create slab <bio-0> at 0
    [ 0.144312] initcall init_bio+0x0/0xeb returned 0 after 0 usecs
    [ 0.144312] calling fsnotify_notification_init+0x0/0x8b @ 1
    [ 0.144312] initcall fsnotify_notification_init+0x0/0x8b returned 0 after 0 usecs
    [ 0.144312] calling cryptomgr_init+0x0/0x12 @ 1
    [ 0.144312] initcall cryptomgr_init+0x0/0x12 returned 0 after 0 usecs
    [ 0.144312] calling blk_settings_init+0x0/0x2a @ 1
    [ 0.144312] initcall blk_settings_init+0x0/0x2a returned 0 after 0 usecs
    [ 0.144312] calling blk_ioc_init+0x0/0x2a @ 1
    [ 0.144312] initcall blk_ioc_init+0x0/0x2a returned 0 after 0 usecs
    [ 0.144312] calling blk_softirq_init+0x0/0x6d @ 1
    [ 0.144312] initcall blk_softirq_init+0x0/0x6d returned 0 after 0 usecs
    [ 0.144312] calling blk_iopoll_setup+0x0/0x6d @ 1
    [ 0.144312] initcall blk_iopoll_setup+0x0/0x6d returned 0 after 0 usecs
    [ 0.144312] calling genhd_device_init+0x0/0x78 @ 1
    [ 0.144312] initcall genhd_device_init+0x0/0x78 returned 0 after 0 usecs
    [ 0.144312] calling gpiolib_debugfs_init+0x0/0x24 @ 1
    [ 0.144312] initcall gpiolib_debugfs_init+0x0/0x24 returned 0 after 0 usecs
    [ 0.144312] calling pci_slot_init+0x0/0x50 @ 1
    [ 0.144312] initcall pci_slot_init+0x0/0x50 returned 0 after 0 usecs
    [ 0.144312] calling fbmem_init+0x0/0x98 @ 1
    [ 0.144312] initcall fbmem_init+0x0/0x98 returned 0 after 0 usecs
    [ 0.144312] calling acpi_init+0x0/0x29b @ 1
    [ 0.144312] ACPI: Added _OSI(Module Device)
    [ 0.144312] ACPI: Added _OSI(Processor Device)
    [ 0.144312] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.144312] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.147802] ACPI: EC: Look up EC in DSDT
    [ 0.154692] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.156033] ACPI: SSDT 00000000bfd1aca0 00223 (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
    [ 0.156805] ACPI: Dynamic OEM Table Load:
    [ 0.156812] ACPI: SSDT (null) 00223 (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
    [ 0.157088] ACPI: SSDT 00000000bfd19620 00549 (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
    [ 0.157818] ACPI: Dynamic OEM Table Load:
    [ 0.157824] ACPI: SSDT (null) 00549 (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
    [ 0.157855] ACPI: SSDT 00000000bfd1aa20 001CF (v01 PmRef ApIst 00003000 INTL 20050624)
    [ 0.157962] ACPI: Dynamic OEM Table Load:
    [ 0.157968] ACPI: SSDT (null) 001CF (v01 PmRef ApIst 00003000 INTL 20050624)
    [ 0.157990] ACPI: SSDT 00000000bfd1af20 0008D (v01 PmRef ApCst 00003000 INTL 20050624)
    [ 0.157990] ACPI: Dynamic OEM Table Load:
    [ 0.157990] ACPI: SSDT (null) 0008D (v01 PmRef ApCst 00003000 INTL 20050624)
    [ 0.176809] ACPI: Interpreter enabled
    [ 0.176818] ACPI: (supports S0 S3 S4 S5)
    [ 0.176859] ACPI: Using IOAPIC for interrupt routing
    [ 0.176902] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.178494] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    [ 1.090171] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    [ 1.090230] initcall acpi_init+0x0/0x29b returned 0 after 927674 usecs
    [ 1.090238] calling dock_init+0x0/0xa8 @ 1
    [ 1.090507] ACPI: No dock devices found.
    [ 1.090514] initcall dock_init+0x0/0xa8 returned 0 after 0 usecs
    [ 1.090519] calling acpi_pci_root_init+0x0/0x2d @ 1
    [ 1.090527] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 1.091164] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 1.092404] PCI host bridge to bus 0000:00
    [ 1.092414] pci_bus 0000:00: busn_res: [bus 00-ff] is inserted under domain [bus 00-ff]
    [ 1.092419] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 1.092425] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 1.092430] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 1.092435] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 1.092440] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 1.092445] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 1.092451] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    [ 1.092456] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xdfffffff]
    [ 1.092461] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfebfffff]
    [ 1.092482] pci 0000:00:00.0: [8086:2a40] type 00 class 0x060000
    [ 1.092526] DMAR: Forcing write-buffer flush capability
    [ 1.092529] DMAR: Disabling IOMMU for graphics on this chipset
    [ 1.092584] pci 0000:00:01.0: [8086:2a41] type 01 class 0x060400
    [ 1.092673] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 1.092752] pci 0000:00:1a.0: [8086:2937] type 00 class 0x0c0300
    [ 1.092839] pci 0000:00:1a.0: reg 20: [io 0x1800-0x181f]
    [ 1.092941] pci 0000:00:1a.1: [8086:2938] type 00 class 0x0c0300
    [ 1.093013] pci 0000:00:1a.1: reg 20: [io 0x1820-0x183f]
    [ 1.093118] pci 0000:00:1a.7: [8086:293c] type 00 class 0x0c0320
    [ 1.093154] pci 0000:00:1a.7: reg 10: [mem 0xf3404800-0xf3404bff]
    [ 1.093306] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    [ 1.093353] pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300
    [ 1.093380] pci 0000:00:1b.0: reg 10: [mem 0xf3400000-0xf3403fff 64bit]
    [ 1.093497] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 1.093541] pci 0000:00:1c.0: [8086:2940] type 01 class 0x060400
    [ 1.093664] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 1.093707] pci 0000:00:1c.1: [8086:2942] type 01 class 0x060400
    [ 1.093828] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 1.093875] pci 0000:00:1c.4: [8086:2948] type 01 class 0x060400
    [ 1.093996] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 1.094043] pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300
    [ 1.094115] pci 0000:00:1d.0: reg 20: [io 0x1840-0x185f]
    [ 1.094207] pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300
    [ 1.094289] pci 0000:00:1d.1: reg 20: [io 0x1860-0x187f]
    [ 1.094387] pci 0000:00:1d.2: [8086:2936] type 00 class 0x0c0300
    [ 1.094462] pci 0000:00:1d.2: reg 20: [io 0x1880-0x189f]
    [ 1.094565] pci 0000:00:1d.3: [8086:2939] type 00 class 0x0c0300
    [ 1.094637] pci 0000:00:1d.3: reg 20: [io 0x18a0-0x18bf]
    [ 1.094739] pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320
    [ 1.094775] pci 0000:00:1d.7: reg 10: [mem 0xf3404c00-0xf3404fff]
    [ 1.094920] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    [ 1.094962] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    [ 1.095073] pci 0000:00:1f.0: [8086:2919] type 00 class 0x060100
    [ 1.095257] pci 0000:00:1f.2: [8086:2929] type 00 class 0x010601
    [ 1.095291] pci 0000:00:1f.2: reg 10: [io 0x18f0-0x18f7]
    [ 1.095307] pci 0000:00:1f.2: reg 14: [io 0x18e4-0x18e7]
    [ 1.095323] pci 0000:00:1f.2: reg 18: [io 0x18e8-0x18ef]
    [ 1.095339] pci 0000:00:1f.2: reg 1c: [io 0x18e0-0x18e3]
    [ 1.095354] pci 0000:00:1f.2: reg 20: [io 0x18c0-0x18df]
    [ 1.095370] pci 0000:00:1f.2: reg 24: [mem 0xf3404000-0xf34047ff]
    [ 1.095452] pci 0000:00:1f.2: PME# supported from D3hot
    [ 1.095487] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500
    [ 1.095515] pci 0000:00:1f.3: reg 10: [mem 0x00000000-0x000000ff 64bit]
    [ 1.095552] pci 0000:00:1f.3: reg 20: [io 0x1c00-0x1c1f]
    [ 1.095655] pci_bus 0000:01: busn_res: [bus 01] is inserted under [bus 00-ff]
    [ 1.095762] pci 0000:01:00.0: [10de:0652] type 00 class 0x030000
    [ 1.095849] pci 0000:01:00.0: reg 10: [mem 0xf2000000-0xf2ffffff]
    [ 1.095943] pci 0000:01:00.0: reg 14: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 1.096038] pci 0000:01:00.0: reg 1c: [mem 0xf0000000-0xf1ffffff 64bit]
    [ 1.096099] pci 0000:01:00.0: reg 24: [io 0x2000-0x207f]
    [ 1.096161] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0007ffff pref]
    [ 1.103311] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 1.103320] pci 0000:00:01.0: bridge window [io 0x2000-0x2fff]
    [ 1.103327] pci 0000:00:01.0: bridge window [mem 0xf0000000-0xf2ffffff]
    [ 1.103337] pci 0000:00:01.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 1.103406] pci_bus 0000:02: busn_res: [bus 02] is inserted under [bus 00-ff]
    [ 1.103601] pci 0000:02:00.0: [14e4:1698] type 00 class 0x020000
    [ 1.103637] pci 0000:02:00.0: reg 10: [mem 0xf3000000-0xf300ffff 64bit]
    [ 1.103831] pci 0000:02:00.0: PME# supported from D3hot D3cold
    [ 1.113439] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 1.113452] pci 0000:00:1c.0: bridge window [mem 0xf3000000-0xf30fffff]
    [ 1.113526] pci_bus 0000:03: busn_res: [bus 03] is inserted under [bus 00-ff]
    [ 1.113604] pci 0000:03:00.0: [8086:4232] type 00 class 0x028000
    [ 1.113700] pci 0000:03:00.0: reg 10: [mem 0xf3100000-0xf3101fff 64bit]
    [ 1.113975] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
    [ 1.114152] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 1.114163] pci 0000:00:1c.1: bridge window [mem 0xf3100000-0xf31fffff]
    [ 1.114237] pci_bus 0000:04: busn_res: [bus 04-06] is inserted under [bus 00-ff]
    [ 1.114245] pci 0000:00:1c.4: PCI bridge to [bus 04-06]
    [ 1.114253] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff]
    [ 1.114261] pci 0000:00:1c.4: bridge window [mem 0xf4000000-0xf5ffffff]
    [ 1.114273] pci 0000:00:1c.4: bridge window [mem 0xf6000000-0xf7ffffff 64bit pref]
    [ 1.114311] pci_bus 0000:0d: busn_res: [bus 0d] is inserted under [bus 00-ff]
    [ 1.114379] pci 0000:00:1e.0: PCI bridge to [bus 0d] (subtractive decode)
    [ 1.114397] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 1.114402] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 1.114408] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 1.114413] pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    [ 1.114419] pci 0000:00:1e.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    [ 1.114424] pci 0000:00:1e.0: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
    [ 1.114429] pci 0000:00:1e.0: bridge window [mem 0xc0000000-0xdfffffff] (subtractive decode)
    [ 1.114435] pci 0000:00:1e.0: bridge window [mem 0xf0000000-0xfebfffff] (subtractive decode)
    [ 1.114474] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 1.114656] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEGP._PRT]
    [ 1.114759] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT]
    [ 1.114890] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
    [ 1.114961] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
    [ 1.115039] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP05._PRT]
    [ 1.115127] pci0000:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    [ 1.115132] pci0000:00: Unable to request _OSC control (_OSC support mask: 0x08)
    [ 8.373387] initcall acpi_pci_root_init+0x0/0x2d returned 0 after 7112169 usecs
    [ 8.373393] calling acpi_pci_link_init+0x0/0x3e @ 1
    [ 8.373495] ACPI: PCI Interrupt Link [LNKA] (IRQs 10 *11)
    [ 8.373592] ACPI: PCI Interrupt Link [LNKB] (IRQs 10 *11)
    [ 8.373684] ACPI: PCI Interrupt Link [LNKC] (IRQs *10 11)
    [ 8.373774] ACPI: PCI Interrupt Link [LNKD] (IRQs *10 11)
    [ 8.373863] ACPI: PCI Interrupt Link [LNKE] (IRQs 10 *11)
    [ 8.373953] ACPI: PCI Interrupt Link [LNKF] (IRQs *10 11)
    [ 8.374042] ACPI: PCI Interrupt Link [LNKG] (IRQs 10 11) *0, disabled.
    [ 8.374133] ACPI: PCI Interrupt Link [LNKH] (IRQs *10 11)
    [ 8.374178] initcall acpi_pci_link_init+0x0/0x3e returned 0 after 0 usecs
    [ 8.374184] calling pnp_init+0x0/0x19 @ 1
    [ 8.374211] initcall pnp_init+0x0/0x19 returned 0 after 0 usecs
    [ 8.374219] calling xen_setup_shutdown_event+0x0/0x30 @ 1
    [ 8.374226] initcall xen_setup_shutdown_event+0x0/0x30 returned -19 after 0 usecs
    [ 8.374231] calling balloon_init+0x0/0x197 @ 1
    [ 8.374236] initcall balloon_init+0x0/0x197 returned -19 after 0 usecs
    [ 8.374240] calling xenbus_probe_backend_init+0x0/0x31 @ 1
    [ 8.374262] initcall xenbus_probe_backend_init+0x0/0x31 returned 0 after 0 usecs
    [ 8.374267] calling xenbus_probe_frontend_init+0x0/0x31 @ 1
    [ 8.374287] initcall xenbus_probe_frontend_init+0x0/0x31 returned 0 after 0 usecs
    [ 8.374291] calling balloon_init+0x0/0xf2 @ 1
    [ 8.374296] initcall balloon_init+0x0/0xf2 returned -19 after 0 usecs
    [ 8.374301] calling misc_init+0x0/0xb6 @ 1
    [ 8.374321] initcall misc_init+0x0/0xb6 returned 0 after 0 usecs
    [ 8.374326] calling vga_arb_device_init+0x0/0xef @ 1
    [ 8.376186] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 8.376193] vgaarb: loaded
    [ 8.376195] vgaarb: bridge control possible 0000:01:00.0
    [ 8.376202] initcall vga_arb_device_init+0x0/0xef returned 0 after 0 usecs
    [ 8.376208] calling cn_init+0x0/0xac @ 1
    [ 8.376236] initcall cn_init+0x0/0xac returned 0 after 0 usecs
    [ 8.376241] calling serio_init+0x0/0x35 @ 1
    [ 8.376269] initcall serio_init+0x0/0x35 returned 0 after 0 usecs
    [ 8.376274] calling input_init+0x0/0x113 @ 1
    [ 8.376295] initcall input_init+0x0/0x113 returned 0 after 0 usecs
    [ 8.376300] calling rtc_init+0x0/0x6a @ 1
    [ 8.376314] initcall rtc_init+0x0/0x6a returned 0 after 0 usecs
    [ 8.376319] calling power_supply_class_init+0x0/0x40 @ 1
    [ 8.376338] initcall power_supply_class_init+0x0/0x40 returned 0 after 0 usecs
    [ 8.376343] calling hwmon_init+0x0/0xee @ 1
    [ 8.376361] initcall hwmon_init+0x0/0xee returned 0 after 0 usecs
    [ 8.376366] calling watchdog_init+0x0/0x63 @ 1
    [ 8.376379] initcall watchdog_init+0x0/0x63 returned 0 after 0 usecs
    [ 8.376384] calling leds_init+0x0/0x44 @ 1
    [ 8.376395] initcall leds_init+0x0/0x44 returned 0 after 0 usecs
    [ 8.376401] calling iommu_init+0x0/0x56 @ 1
    [ 8.376410] initcall iommu_init+0x0/0x56 returned 0 after 0 usecs
    [ 8.376415] calling pci_subsys_init+0x0/0x4a @ 1
    [ 8.376418] PCI: Using ACPI for IRQ routing
    [ 8.384979] PCI: pci_cache_line_size set to 64 bytes
    [ 8.385328] e820: reserve RAM buffer [mem 0x0009f400-0x0009ffff]
    [ 8.385332] e820: reserve RAM buffer [mem 0xbf8a1000-0xbfffffff]
    [ 8.385339] e820: reserve RAM buffer [mem 0xbf9b9000-0xbfffffff]
    [ 8.385351] e820: reserve RAM buffer [mem 0xbfb08000-0xbfffffff]
    [ 8.385357] e820: reserve RAM buffer [mem 0xbfd19000-0xbfffffff]
    [ 8.385362] e820: reserve RAM buffer [mem 0xbfd5f000-0xbfffffff]
    [ 8.385367] e820: reserve RAM buffer [mem 0xbfde1000-0xbfffffff]
    [ 8.385371] e820: reserve RAM buffer [mem 0xbfe00000-0xbfffffff]
    [ 8.385378] initcall pci_subsys_init+0x0/0x4a returned 0 after 9764 usecs
    [ 8.385383] calling proto_init+0x0/0x12 @ 1
    [ 8.385392] initcall proto_init+0x0/0x12 returned 0 after 0 usecs
    [ 8.385397] calling net_dev_init+0x0/0x22c @ 1
    [ 8.385594] initcall net_dev_init+0x0/0x22c returned 0 after 0 usecs
    [ 8.385599] calling neigh_init+0x0/0x80 @ 1
    [ 8.385604] initcall neigh_init+0x0/0x80 returned 0 after 0 usecs
    [ 8.385609] calling fib_rules_init+0x0/0xac @ 1
    [ 8.385615] initcall fib_rules_init+0x0/0xac returned 0 after 0 usecs
    [ 8.385620] calling pktsched_init+0x0/0xfb @ 1
    [ 8.385629] initcall pktsched_init+0x0/0xfb returned 0 after 0 usecs
    [ 8.385634] calling tc_filter_init+0x0/0x55 @ 1
    [ 8.385639] initcall tc_filter_init+0x0/0x55 returned 0 after 0 usecs
    [ 8.385643] calling tc_action_init+0x0/0x55 @ 1
    [ 8.385648] initcall tc_action_init+0x0/0x55 returned 0 after 0 usecs
    [ 8.385653] calling genl_init+0x0/0x8f @ 1
    [ 8.385671] initcall genl_init+0x0/0x8f returned 0 after 0 usecs
    [ 8.385677] calling cipso_v4_init+0x0/0x64 @ 1
    [ 8.385683] initcall cipso_v4_init+0x0/0x64 returned 0 after 0 usecs
    [ 8.385688] calling wireless_nlevent_init+0x0/0x12 @ 1
    [ 8.385695] initcall wireless_nlevent_init+0x0/0x12 returned 0 after 0 usecs
    [ 8.385699] calling netlbl_init+0x0/0x83 @ 1
    [ 8.385702] NetLabel: Initializing
    [ 8.385704] NetLabel: domain hash size = 128
    [ 8.385707] NetLabel: protocols = UNLABELED CIPSOv4
    [ 8.385736] NetLabel: unlabeled traffic allowed by default
    [ 8.385741] initcall netlbl_init+0x0/0x83 returned 0 after 0 usecs
    [ 8.385779] calling hpet_late_init+0x0/0xef @ 1
    [ 8.385785] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
    [ 8.385793] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    [ 8.385804] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
    [ 8.399467] initcall hpet_late_init+0x0/0xef returned 0 after 13019 usecs
    [ 8.399474] calling init_amd_nbs+0x0/0xaf @ 1
    [ 8.399506] initcall init_amd_nbs+0x0/0xaf returned 0 after 0 usecs
    [ 8.399511] calling clocksource_done_booting+0x0/0x5a @ 1
    [ 8.399517] Switching to clocksource hpet
    [ 8.399540] initcall clocksource_done_booting+0x0/0x5a returned 0 after 5 usecs
    [ 8.399546] calling ftrace_init_debugfs+0x0/0x20a @ 1
    [ 8.399602] initcall ftrace_init_debugfs+0x0/0x20a returned 0 after 48 usecs
    [ 8.399608] calling tracer_init_debugfs+0x0/0x432 @ 1
    [ 8.399727] initcall tracer_init_debugfs+0x0/0x432 returned 0 after 181 usecs
    [ 8.399733] calling init_trace_printk_function_export+0x0/0x2f @ 1
    [ 8.399743] initcall init_trace_printk_function_export+0x0/0x2f returned 0 after 3 usecs
    [ 8.399748] calling event_trace_init+0x0/0x2c2 @ 1
    [ 8.415740] initcall event_trace_init+0x0/0x2c2 returned 0 after 15603 usecs
    [ 8.415749] calling init_kprobe_trace+0x0/0x8e @ 1
    [ 8.415763] initcall init_kprobe_trace+0x0/0x8e returned 0 after 7 usecs
    [ 8.415768] calling init_uprobe_trace+0x0/0x53 @ 1
    [ 8.415780] initcall init_uprobe_trace+0x0/0x53 returned 0 after 5 usecs
    [ 8.415786] calling init_pipe_fs+0x0/0x4a @ 1
    [ 8.415839] initcall init_pipe_fs+0x0/0x4a returned 0 after 46 usecs
    [ 8.415844] calling eventpoll_init+0x0/0xd7 @ 1
    [ 8.415862] initcall eventpoll_init+0x0/0xd7 returned 0 after 12 usecs
    [ 8.415867] calling anon_inode_init+0x0/0x59 @ 1
    [ 8.415898] initcall anon_inode_init+0x0/0x59 returned 0 after 24 usecs
    [ 8.415904] calling tomoyo_initerface_init+0x0/0x17d @ 1
    [ 8.415911] initcall tomoyo_initerface_init+0x0/0x17d returned 0 after 0 usecs
    [ 8.415915] calling aa_create_aafs+0x0/0x92 @ 1
    [ 8.415922] initcall aa_create_aafs+0x0/0x92 returned 0 after 0 usecs
    [ 8.415927] calling blk_scsi_ioctl_init+0x0/0x289 @ 1
    [ 8.415934] initcall blk_scsi_ioctl_init+0x0/0x289 returned 0 after 1 usecs
    [ 8.415939] calling acpi_event_init+0x0/0x55 @ 1
    [ 8.415967] initcall acpi_event_init+0x0/0x55 returned 0 after 21 usecs
    [ 8.415972] calling pnp_system_init+0x0/0x12 @ 1
    [ 8.416008] initcall pnp_system_init+0x0/0x12 returned 0 after 29 usecs
    [ 8.416013] calling pnpacpi_init+0x0/0x8c @ 1
    [ 8.416016] pnp: PnP ACPI init
    [ 8.416053] ACPI: bus type pnp registered
    [ 8.416775] pnp 00:00: [bus 00-ff]
    [ 8.416783] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 8.416788] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 8.416794] pnp 00:00: [io 0x0d00-0xffff window]
    [ 8.416800] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 8.416805] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
    [ 8.416810] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
    [ 8.416815] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
    [ 8.416820] pnp 00:00: [mem 0x000cc000-0x000cffff window]
    [ 8.416826] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
    [ 8.416831] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
    [ 8.416836] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
    [ 8.416841] pnp 00:00: [mem 0x000dc000-0x000dffff window]
    [ 8.416846] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
    [ 8.416851] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
    [ 8.416857] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
    [ 8.416868] pnp 00:00: [mem 0x000ec000-0x000effff window]
    [ 8.416873] pnp 00:00: [mem 0x000f0000-0x000fffff window]
    [ 8.416878] pnp 00:00: [mem 0xc0000000-0xdfffffff window]
    [ 8.416884] pnp 00:00: [mem 0xf0000000-0xfebfffff window]
    [ 8.417023] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    [ 8.417196] pnp 00:01: [io 0x0060]
    [ 8.417202] pnp 00:01: [io 0x0064]
    [ 8.417225] pnp 00:01: [irq 1]
    [ 8.417294] pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 8.417321] pnp 00:02: [irq 12]
    [ 8.417393] pnp 00:02: Plug and Play ACPI device, IDs SYN1b22 SYN1b00 SYN0002 PNP0f13 (active)
    [ 8.417426] pnp 00:03: [io 0x0000-0x001f]
    [ 8.417432] pnp 00:03: [io 0x0081-0x0091]
    [ 8.417436] pnp 00:03: [io 0x0093-0x009f]
    [ 8.417441] pnp 00:03: [io 0x00c0-0x00df]
    [ 8.417446] pnp 00:03: [dma 4]
    [ 8.417508] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 8.417528] pnp 00:04: [mem 0xffc00000-0xffffffff]
    [ 8.417596] pnp 00:04: Plug and Play ACPI device, IDs INT0800 (active)
    [ 8.417741] pnp 00:05: [mem 0xfed00000-0xfed003ff]
    [ 8.417876] system 00:05: [mem 0xfed00000-0xfed003ff] has been reserved
    [ 8.417886] system 00:05: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
    [ 8.417910] pnp 00:06: [io 0x00f0]
    [ 8.417921] pnp 00:06: [irq 13]
    [ 8.417987] pnp 00:06: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 8.418014] pnp 00:07: [io 0x002e-0x002f]
    [ 8.418019] pnp 00:07: [io 0x004e-0x004f]
    [ 8.418024] pnp 00:07: [io 0x0061]
    [ 8.418029] pnp 00:07: [io 0x0063]
    [ 8.418033] pnp 00:07: [io 0x0065]
    [ 8.418038] pnp 00:07: [io 0x0067]
    [ 8.418042] pnp 00:07: [io 0x0070]
    [ 8.418047] pnp 00:07: [io 0x0080]
    [ 8.418052] pnp 00:07: [io 0x0092]
    [ 8.418056] pnp 00:07: [io 0x00b2-0x00b3]
    [ 8.418061] pnp 00:07: [io 0x0068-0x006f]
    [ 8.418066] pnp 00:07: [io 0x0480-0x048f]
    [ 8.418071] pnp 00:07: [io 0xffff]
    [ 8.418075] pnp 00:07: [io 0xffff]
    [ 8.418080] pnp 00:07: [io 0x0400-0x047f]
    [ 8.418085] pnp 00:07: [io 0x1180-0x11ff]
    [ 8.418090] pnp 00:07: [io 0xfe00]
    [ 8.418095] pnp 00:07: [mem 0xff800000-0xff800fff]
    [ 8.418234] system 00:07: [io 0x0480-0x048f] has been reserved
    [ 8.418241] system 00:07: [io 0xffff] has been reserved
    [ 8.418247] system 00:07: [io 0xffff] has been reserved
    [ 8.418253] system 00:07: [io 0x0400-0x047f] has been reserved
    [ 8.418259] system 00:07: [io 0x1180-0x11ff] has been reserved
    [ 8.418265] system 00:07: [io 0xfe00] has been reserved
    [ 8.418272] system 00:07: [mem 0xff800000-0xff800fff] has been reserved
    [ 8.418280] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 8.419066] pnp 00:08: [mem 0xff810000-0xff81000f]
    [ 8.419081] pnp 00:08: [irq 6]
    [ 8.419166] pnp 00:08: Plug and Play ACPI device, IDs WEC1040 (active)
    [ 8.419189] pnp 00:09: [io 0x0070-0x0077]
    [ 8.419200] pnp 00:09: [irq 8]
    [ 8.419273] pnp 00:09: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 8.419506] pnp 00:0a: [mem 0xfed1c000-0xfed1ffff]
    [ 8.419512] pnp 00:0a: [mem 0xfed10000-0xfed13fff]
    [ 8.419517] pnp 00:0a: [mem 0xfed18000-0xfed18fff]
    [ 8.419522] pnp 00:0a: [mem 0xfed19000-0xfed19fff]
    [ 8.419527] pnp 00:0a: [mem 0xe0000000-0xefffffff]
    [ 8.419531] pnp 00:0a: [mem 0xfed20000-0xfed3ffff]
    [ 8.419655] system 00:0a: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 8.419662] system 00:0a: [mem 0xfed10000-0xfed13fff] has been reserved
    [ 8.419668] system 00:0a: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 8.419674] system 00:0a: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 8.419680] system 00:0a: [mem 0xe0000000-0xefffffff] has been reserved
    [ 8.419686] system 00:0a: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 8.419694] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 8.816954] pnp: PnP ACPI: found 11 devices
    [ 8.816959] ACPI: ACPI bus type pnp unregistered
    [ 8.816967] initcall pnpacpi_init+0x0/0x8c returned 0 after 391548 usecs
    [ 8.816973] calling chr_dev_init+0x0/0xc1 @ 1
    [ 8.821812] initcall chr_dev_init+0x0/0xc1 returned 0 after 4717 usecs
    [ 8.821819] calling firmware_class_init+0x0/0x19 @ 1
    [ 8.821847] initcall firmware_class_init+0x0/0x19 returned 0 after 19 usecs
    [ 8.821852] calling thermal_init+0x0/0x8a @ 1
    [ 8.821882] initcall thermal_init+0x0/0x8a returned 0 after 22 usecs
    [ 8.821888] calling cpufreq_gov_performance_init+0x0/0x12 @ 1
    [ 8.821896] initcall cpufreq_gov_performance_init+0x0/0x12 returned 0 after 1 usecs
    [ 8.821901] calling cpufreq_gov_dbs_init+0x0/0x95 @ 1
    [ 8.821910] initcall cpufreq_gov_dbs_init+0x0/0x95 returned 0 after 2 usecs
    [ 8.821916] calling init_acpi_pm_clocksource+0x0/0xdf @ 1
    [ 8.826454] initcall init_acpi_pm_clocksource+0x0/0xdf returned 0 after 4426 usecs
    [ 8.826461] calling pcibios_assign_resources+0x0/0xfb @ 1
    [ 8.826540] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 02] add_size 1000
    [ 8.826549] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
    [ 8.826565] pci 0000:00:1c.1: bridge window [io 0x1000-0x0fff] to [bus 03] add_size 1000
    [ 8.826572] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000
    [ 8.826607] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 8.826613] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 8.826619] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 8.826625] pci 0000:00:1c.1: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 8.826638] pci 0000:00:1c.0: BAR 15: assigned [mem 0xc0000000-0xc01fffff 64bit pref]
    [ 8.826647] pci 0000:00:1c.1: BAR 15: assigned [mem 0xc0200000-0xc03fffff 64bit pref]
    [ 8.826655] pci 0000:00:1c.0: BAR 13: assigned [io 0x4000-0x4fff]
    [ 8.826662] pci 0000:00:1c.1: BAR 13: assigned [io 0x5000-0x5fff]
    [ 8.826684] pci 0000:00:1f.3: BAR 0: assigned [mem 0xc0400000-0xc04000ff 64bit]
    [ 8.826706] pci 0000:01:00.0: BAR 6: can't assign mem pref (size 0x80000)
    [ 8.826713] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 8.826719] pci 0000:00:01.0: bridge window [io 0x2000-0x2fff]
    [ 8.826728] pci 0000:00:01.0: bridge window [mem 0xf0000000-0xf2ffffff]
    [ 8.826735] pci 0000:00:01.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 8.826745] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 8.826751] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
    [ 8.826761] pci 0000:00:1c.0: bridge window [mem 0xf3000000-0xf30fffff]
    [ 8.826770] pci 0000:00:1c.0: bridge window [mem 0xc0000000-0xc01fffff 64bit pref]
    [ 8.826781] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 8.826788] pci 0000:00:1c.1: bridge window [io 0x5000-0x5fff]
    [ 8.826797] pci 0000:00:1c.1: bridge window [mem 0xf3100000-0xf31fffff]
    [ 8.826806] pci 0000:00:1c.1: bridge window [mem 0xc0200000-0xc03fffff 64bit pref]
    [ 8.826817] pci 0000:00:1c.4: PCI bridge to [bus 04-06]
    [ 8.826824] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff]
    [ 8.826833] pci 0000:00:1c.4: bridge window [mem 0xf4000000-0xf5ffffff]
    [ 8.826842] pci 0000:00:1c.4: bridge window [mem 0xf6000000-0xf7ffffff 64bit pref]
    [ 8.826853] pci 0000:00:1e.0: PCI bridge to [bus 0d]
    [ 8.826928] pci 0000:00:1e.0: setting latency timer to 64
    [ 8.826937] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 8.826942] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 8.826948] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 8.826953] pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000d7fff]
    [ 8.826958] pci_bus 0000:00: resource 8 [mem 0x000d8000-0x000dbfff]
    [ 8.826963] pci_bus 0000:00: resource 9 [mem 0x000e0000-0x000e3fff]
    [ 8.826968] pci_bus 0000:00: resource 10 [mem 0xc0000000-0xdfffffff]
    [ 8.826973] pci_bus 0000:00: resource 11 [mem 0xf0000000-0xfebfffff]
    [ 8.826979] pci_bus 0000:01: resource 0 [io 0x2000-0x2fff]
    [ 8.826984] pci_bus 0000:01: resource 1 [mem 0xf0000000-0xf2ffffff]
    [ 8.826990] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 8.826995] pci_bus 0000:02: resource 0 [io 0x4000-0x4fff]
    [ 8.827001] pci_bus 0000:02: resource 1 [mem 0xf3000000-0xf30fffff]
    [ 8.827006] pci_bus 0000:02: resource 2 [mem 0xc0000000-0xc01fffff 64bit pref]
    [ 8.827012] pci_bus 0000:03: resource 0 [io 0x5000-0x5fff]
    [ 8.827017] pci_bus 0000:03: resource 1 [mem 0xf3100000-0xf31fffff]
    [ 8.827022] pci_bus 0000:03: resource 2 [mem 0xc0200000-0xc03fffff 64bit pref]
    [ 8.827028] pci_bus 0000:04: resource 0 [io 0x3000-0x3fff]
    [ 8.827033] pci_bus 0000:04: resource 1 [mem 0xf4000000-0xf5ffffff]
    [ 8.827038] pci_bus 0000:04: resource 2 [mem 0xf6000000-0xf7ffffff 64bit pref]
    [ 8.827044] pci_bus 0000:0d: resource 4 [io 0x0000-0x0cf7]
    [ 8.827049] pci_bus 0000:0d: resource 5 [io 0x0d00-0xffff]
    [ 8.827054] pci_bus 0000:0d: resource 6 [mem 0x000a0000-0x000bffff]
    [ 8.827060] pci_bus 0000:0d: resource 7 [mem 0x000d4000-0x000d7fff]
    [ 8.827065] pci_bus 0000:0d: resource 8 [mem 0x000d8000-0x000dbfff]
    [ 8.827070] pci_bus 0000:0d: resource 9 [mem 0x000e0000-0x000e3fff]
    [ 8.827075] pci_bus 0000:0d: resource 10 [mem 0xc0000000-0xdfffffff]
    [ 8.827080] pci_bus 0000:0d: resource 11 [mem 0xf0000000-0xfebfffff]
    [ 8.827089] initcall pcibios_assign_resources+0x0/0xfb returned 0 after 603 usecs
    [ 8.827094] calling sysctl_core_init+0x0/0x2c @ 1
    [ 8.827127] initcall sysctl_core_init+0x0/0x2c returned 0 after 26 usecs
    [ 8.827132] calling inet_init+0x0/0x2b0 @ 1
    [ 8.827183] NET: Registered protocol family 2
    [ 8.828838] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 8.835174] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 8.835994] TCP: Hash tables configured (established 524288 bind 65536)
    [ 8.836097] TCP: reno registered
    [ 8.836120] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 8.836188] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 8.836428] initcall inet_init+0x0/0x2b0 returned 0 after 9065 usecs
    [ 8.836436] calling af_unix_init+0x0/0x52 @ 1
    [ 8.836443] NET: Registered protocol family 1
    [ 8.836457] initcall af_unix_init+0x0/0x52 returned 0 after 15 usecs
    [ 8.836464] calling pci_apply_final_quirks+0x0/0x108 @ 1
    [ 8.837007] pci 0000:01:00.0: Boot video device
    [ 8.837205] PCI: CLS 64 bytes, default 64
    [ 8.837213] initcall pci_apply_final_quirks+0x0/0x108 returned 0 after 721 usecs
    [ 8.837219] calling populate_rootfs+0x0/0x107 @ 1
    [ 8.837322] Unpacking initramfs...
    [ 8.977602] Freeing initrd memory: 2848k freed
    [ 8.979438] initcall populate_rootfs+0x0/0x107 returned 0 after 138870 usecs
    [ 8.979446] calling pci_iommu_init+0x0/0x3e @ 1
    [ 8.979451] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 8.979457] software IO TLB [mem 0xbb8a1000-0xbf8a0fff] (64MB) mapped at [ffff8800bb8a1000-ffff8800bf8a0fff]
    [ 8.979463] initcall pci_iommu_init+0x0/0x3e returned 0 after 10 usecs
    [ 8.979470] calling calgary_fixup_tce_spaces+0x0/0x103 @ 1
    [ 8.979477] initcall calgary_fixup_tce_spaces+0x0/0x103 returned -19 after 0 usecs
    [ 8.979484] calling ir_dev_scope_init+0x0/0x16 @ 1
    [ 8.979492] initcall ir_dev_scope_init+0x0/0x16 returned 0 after 0 usecs
    [ 8.979531] calling i8259A_init_ops+0x0/0x24 @ 1
    [ 8.979540] initcall i8259A_init_ops+0x0/0x24 returned 0 after 2 usecs
    [ 8.979545] calling vsyscall_init+0x0/0x27 @ 1
    [ 8.979560] initcall vsyscall_init+0x0/0x27 returned 0 after 8 usecs
    [ 8.979564] calling sbf_init+0x0/0xf2 @ 1
    [ 8.979571] Simple Boot Flag at 0x57 set to 0x1
    [ 8.979579] initcall sbf_init+0x0/0xf2 returned 0 after 8 usecs
    [ 8.979584] calling init_tsc_clocksource+0x0/0x85 @ 1
    [ 8.979623] initcall init_tsc_clocksource+0x0/0x85 returned 0 after 30 usecs
    [ 8.979629] calling add_rtc_cmos+0x0/0x96 @ 1
    [ 8.979643] initcall add_rtc_cmos+0x0/0x96 returned 0 after 8 usecs
    [ 8.979649] calling i8237A_init_ops+0x0/0x14 @ 1
    [ 8.979656] initcall i8237A_init_ops+0x0/0x14 returned 0 after 1 usecs
    [ 8.979662] calling cache_sysfs_init+0x0/0x5f @ 1
    [ 8.979799] initcall cache_sysfs_init+0x0/0x5f returned 0 after 127 usecs
    [ 8.979805] calling intel_uncore_init+0x0/0x348 @ 1
    [ 8.979813] initcall intel_uncore_init+0x0/0x348 returned 0 after 1 usecs
    [ 8.979819] calling thermal_throttle_init_device+0x0/0x93 @ 1
    [ 8.979836] initcall thermal_throttle_init_device+0x0/0x93 returned 0 after 10 usecs
    [ 8.979841] calling amd_ibs_init+0x0/0x447 @ 1
    [ 8.979848] initcall amd_ibs_init+0x0/0x447 returned -19 after 0 usecs
    [ 8.979853] calling ioapic_init_ops+0x0/0x14 @ 1
    [ 8.979860] initcall ioapic_init_ops+0x0/0x14 returned 0 after 1 usecs
    [ 8.979865] calling add_pcspkr+0x0/0x5e @ 1
    [ 8.979939] initcall add_pcspkr+0x0/0x5e returned 0 after 65 usecs
    [ 8.979947] calling start_periodic_check_for_corruption+0x0/0x50 @ 1
    [ 8.979954] initcall start_periodic_check_for_corruption+0x0/0x50 returned 0 after 0 usecs
    [ 8.979959] calling audit_classes_init+0x0/0xaf @ 1
    [ 8.979969] initcall audit_classes_init+0x0/0xaf returned 0 after 4 usecs
    [ 8.979975] calling ia32_binfmt_init+0x0/0x14 @ 1
    [ 8.979991] initcall ia32_binfmt_init+0x0/0x14 returned 0 after 8 usecs
    [ 8.979996] calling proc_execdomains_init+0x0/0x22 @ 1
    [ 8.980044] initcall proc_execdomains_init+0x0/0x22 returned 0 after 8 usecs
    [ 8.980048] calling ioresources_init+0x0/0x3c @ 1
    [ 8.980058] initcall ioresources_init+0x0/0x3c returned 0 after 3 usecs
    [ 8.980062] calling uid_cache_init+0x0/0x8c @ 1
    [ 8.980082] initcall uid_cache_init+0x0/0x8c returned 0 after 14 usecs
    [ 8.980087] calling init_posix_timers+0x0/0x203 @ 1
    [ 8.980097] initcall init_posix_timers+0x0/0x203 returned 0 after 4 usecs
    [ 8.980101] calling init_posix_cpu_timers+0x0/0xc5 @ 1
    [ 8.980108] initcall init_posix_cpu_timers+0x0/0xc5 returned 0 after 0 usecs
    [ 8.980112] calling proc_schedstat_init+0x0/0x22 @ 1
    [ 8.980120] initcall proc_schedstat_init+0x0/0x22 returned 0 after 2 usecs
    [ 8.980125] calling init_sched_debug_procfs+0x0/0x2c @ 1
    [ 8.980133] initcall init_sched_debug_procfs+0x0/0x2c returned 0 after 2 usecs
    [ 8.980138] calling snapshot_device_init+0x0/0x12 @ 1
    [ 8.980250] initcall snapshot_device_init+0x0/0x12 returned 0 after 102 usecs
    [ 8.980256] calling create_proc_profile+0x0/0x280 @ 1
    [ 8.980263] initcall create_proc_profile+0x0/0x280 returned 0 after 0 usecs
    [ 8.980268] calling timekeeping_init_ops+0x0/0x14 @ 1
    [ 8.980274] initcall timekeeping_init_ops+0x0/0x14 returned 0 after 1 usecs
    [ 8.980279] calling init_clocksource_sysfs+0x0/0x52 @ 1
    [ 8.980364] initcall init_clocksource_sysfs+0x0/0x52 returned 0 after 76 usecs
    [ 8.980369] calling init_timer_list_procfs+0x0/0x2c @ 1
    [ 8.980378] initcall init_timer_list_procfs+0x0/0x2c returned 0 after 3 usecs
    [ 8.980383] calling alarmtimer_init+0x0/0x1d9 @ 1
    [ 8.980451] initcall alarmtimer_init+0x0/0x1d9 returned 0 after 60 usecs
    [ 8.980457] calling init_tstats_procfs+0x0/0x2c @ 1
    [ 8.980465] initcall init_tstats_procfs+0x0/0x2c returned 0 after 2 usecs
    [ 8.980470] calling futex_init+0x0/0x60 @ 1
    [ 8.980487] initcall futex_init+0x0/0x60 returned 0 after 11 usecs
    [ 8.980492] calling proc_dma_init+0x0/0x22 @ 1
    [ 8.980499] initcall proc_dma_init+0x0/0x22 returned 0 after 2 usecs
    [ 8.980504] calling proc_modules_init+0x0/0x22 @ 1
    [ 8.980512] initcall proc_modules_init+0x0/0x22 returned 0 after 2 usecs
    [ 8.980517] calling kallsyms_init+0x0/0x25 @ 1
    [ 8.980524] initcall kallsyms_init+0x0/0x25 returned 0 after 1 usecs
    [ 8.980529] calling crash_save_vmcoreinfo_init+0x0/0x472 @ 1
    [ 8.980591] initcall crash_save_vmcoreinfo_init+0x0/0x472 returned 0 after 55 usecs
    [ 8.980596] calling crash_notes_memory_init+0x0/0x37 @ 1
    [ 8.980611] initcall crash_notes_memory_init+0x0/0x37 returned 0 after 8 usecs
    [ 8.980616] calling pid_namespaces_init+0x0/0x2d @ 1
    [ 8.980638] initcall pid_namespaces_init+0x0/0x2d returned 0 after 15 usecs
    [ 8.980643] calling ikconfig_init+0x0/0x39 @ 1
    [ 8.980651] initcall ikconfig_init+0x0/0x39 returned 0 after 2 usecs
    [ 8.980656] calling audit_init+0x0/0x14c @ 1
    [ 8.980660] audit: initializing netlink socket (disabled)
    [ 8.980685] type=2000 audit(1358463485.979:1): initialized
    [ 8.980694] initcall audit_init+0x0/0x14c returned 0 after 31 usecs
    [ 8.980699] calling audit_watch_init+0x0/0x3a @ 1
    [ 8.980706] initcall audit_watch_init+0x0/0x3a returned 0 after 1 usecs
    [ 8.980710] calling audit_tree_init+0x0/0x57 @ 1
    [ 8.980727] initcall audit_tree_init+0x0/0x57 returned 0 after 10 usecs
    [ 8.980732] calling init_kprobes+0x0/0x165 @ 1
    [ 9.006964] initcall init_kprobes+0x0/0x165 returned 0 after 25610 usecs
    [ 9.006970] calling hung_task_init+0x0/0x53 @ 1
    [ 9.007063] initcall hung_task_init+0x0/0x53 returned 0 after 81 usecs
    [ 9.007070] calling irq_pm_init_ops+0x0/0x14 @ 1
    [ 9.007077] initcall irq_pm_init_ops+0

    I have figured out how to solve part of the problem. It was completely Xorg related, as you can see from the Xorg.0.log. I removed nouveau and installed Nvidia proprietary driver, in this way X doesn't timeout anymore but now I still have a problem with the time it takes X to start up. As you can see from these lines:
    [ 20.141] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 20.141] (II) Loader magic: 0x818d80
    [ 20.141] (II) Module ABI versions:
    [ 20.141] X.Org ANSI C Emulation: 0.4
    [ 20.141] X.Org Video Driver: 18.0
    [ 20.141] X.Org XInput driver : 21.0
    [ 20.141] X.Org Server Extension : 8.0
    [ 44.585] (EE) systemd-logind: failed to get session: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
    [ 44.585] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 44.586] (--) PCI:*(0:0:2:0) 8086:0416:1043:11cd rev 6, Mem @ 0xf7400000/4194304, 0xd0000000/268435456, I/O @ 0x0000f000/64
    [ 44.586] (--) PCI: (0:1:0:0) 10de:0fe4:1043:11cd rev 161, Mem @ 0xf6000000/16777216, 0xe0000000/268435456, 0xf0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
    [ 44.586] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 44.586] (II) LoadModule: "glx"
    There is quite a jump in the timestamps just where an error related with logind occurs. Is it normal or I have a problem? BTW, Xorg doesn't timeout anymore it seems.
    Is there anyone who can help me? Maybe I have simply posted in the wrong section of the forum?
    Last edited by Aliverix (2014-11-06 22:47:24)

  • Java.sql functions intermittently hanging for 60 seconds

    I have an Oracle 8.1.6 application on Solaris with Tomcat 3.1 using JDBC to talk to the database. I am using the thin driver for JDK 1.2.2. I moved a box from development to production and changed the network information in the database and in Solaris. Now I have strange behavior where about 5% of the time functions such as Connection.prepareStatement, ResultSet.close, and PreparedStatement.close will sleep for 60 seconds. Then they proceed as normal. It is always 60 seconds, never a hard deadlock. The application is multithreaded, being inside Tomcat and all. The other strange behavior is that when another thread accesses the database, the first thread that was sleeping will wake up and proceed as normal. I will try to switch to the OCI driver, but I think it is very strange that the thread hangs for exactly 60 seconds inside the calls to the JDBC driver. The other 95% of the time it works great.

    We switched the driver to OCI instead of thin. It looks like it is working OK now. I suppose it was some strange behavior in the thin driver.

  • Java.sql functions hanging for 60 seconds

    I have an Oracle 8.1.6 application on Solaris with Tomcat 3.1 using JDBC to talk to the database. I am using the thin driver for JDK 1.2.2. I moved a box from development to production and changed the network information in the database and in Solaris. Now I have strange behavior where about 5% of the time functions such as Connection.prepareStatement, ResultSet.close, and PreparedStatement.close will sleep for 60 seconds. Then they proceed as normal. It is always 60 seconds, never a hard deadlock. The application is multithreaded, being inside Tomcat and all. The other strange behavior is that when another thread accesses the database, the first thread that was sleeping will wake up and proceed as normal. I will try to switch to the OCI driver, but I think it is very strange that the thread hangs for exactly 60 seconds inside the calls to the JDBC driver. The other 95% of the time it works great.

    We switched the driver to OCI instead of thin. It looks like it is working OK now. I suppose it was some strange behavior in the thin driver.

  • Close() over NFS hangs for 15 seconds on NAS 5320

    Summary: We are experiencing long pauses waiting for files to close on NAS 5320.
    Hardware:
    NFS Server: 5320 NAS S/N ST5320200609190020 Version 4.20 M0 (Build 78)
    NFS Clients: SunOS 5.10 Generic_118833-17 sun4u sparc SUNW,Sun-Fire-V240
    SunOS mnemo 5.6 Generic_105181-20 sun4u sparc SUNW,Ultra-4
    (Various other Solaris & Linux clients)
    Symptom:
    User copies a tiny file using "cp". The "cp" program hangs for 15 seconds before
    normal exit and successful completion. Running "truss" on the "cp" command
    reveals that the copy happens nearly instantaneously, and the program goes into
    a sleep state waiting for the close() of the output file.
    The problem is reproducible regardless of whether the filesystem is NFS hard
    mounted or automounted. The problem seems to occur most often if the output
    file being written previously existed under the same name, was recently deleted,
    and is being recreated by the copy operation.
    The problem is reproducible from every NFS client I've tried, both Solaris and Linux.
    The problem is only exhibited for filesystems served by the NAS 5320.
    Here's a typical truss output exhibiting the behavior. The 15-second hang occurs
    after truss prints the line that says "close(4) (sleeping...)":
    touch ../../xx ; rm ../../xx
    truss cp -p trav_op.c ../../xxexecve("/bin/cp", 0xEFFFF738, 0xEFFFF74C) argc = 4
    open("/dev/zero", O_RDONLY) = 3
    mmap(0x00000000, 8192, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0xEF7B0000
    open("/usr/openwin/lib/libc.so.1", O_RDONLY) Err#2 ENOENT
    open("/usr/lib/libc.so.1", O_RDONLY) = 4
    fstat(4, 0xEFFFF2D4) = 0
    mmap(0x00000000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE, 4, 0) = 0xEF7A0000
    mmap(0x00000000, 704512, PROT_READ|PROT_EXEC, MAP_PRIVATE, 4, 0) = 0xEF680000
    munmap(0xEF714000, 57344) = 0
    mmap(0xEF722000, 28504, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 4, 598016) = 0xEF722000
    mmap(0xEF72A000, 2664, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0) = 0xEF72A000
    close(4) = 0
    open("/usr/openwin/lib/libdl.so.1", O_RDONLY) Err#2 ENOENT
    open("/usr/lib/libdl.so.1", O_RDONLY) = 4
    fstat(4, 0xEFFFF2D4) = 0
    mmap(0xEF7A0000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 4, 0) = 0xEF7A0000
    close(4) = 0
    open("/usr/platform/SUNW,Ultra-4/lib/libc_psr.so.1", O_RDONLY) = 4
    fstat(4, 0xEFFFF0B4) = 0
    mmap(0x00000000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE, 4, 0) = 0xEF790000
    mmap(0x00000000, 16384, PROT_READ|PROT_EXEC, MAP_PRIVATE, 4, 0) = 0xEF780000
    close(4) = 0
    close(3) = 0
    munmap(0xEF790000, 8192) = 0
    stat64("trav_op.c", 0x00024200) = 0
    acl("trav_op.c", GETACLCNT, 0, 0x00000000) = 4
    stat64("../../xx", 0x00024168) Err#2 ENOENT
    open64("trav_op.c", O_RDONLY) = 3
    creat64("../../xx", 0644) = 4
    stat64("../../xx", 0x00024168) = 0
    chmod("../../xx", 0100644) = 0
    mmap64(0x00000000, 38425, PROT_READ, MAP_SHARED, 3, 0) = 0xEF770000
    memcntl(0xEF770000, 38425, MC_ADVISE, 0x0002, 0, 0) = 0
    write(4, " / * - - - - - - - - - -".., 38425) = 38425
    munmap(0xEF770000, 38425) = 0
    close(3) = 0
    close(4) (sleeping...) *** HANGS APPROX 15 SEC ***
    close(4) = 0
    chown("../../xx", 2048, 525) = 0
    chmod("../../xx", 0100644) = 0
    utime("../../xx", 0xEFFFEB08) = 0
    llseek(0, 0, SEEK_CUR) = 23915
    _exit(0)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Hello,
    are you aware that this isn't official Sun Support but a user-to-user forum ?
    Michael
    When will the deficencies/bugs in the Forums software be fixed ?

  • Firefox hangs for a few seconds when trying to pause videos or skip ads on Youtube.

    Hello all!
    My problem is that YouTube sort of hangs for a few seconds when I try to pause a video or skip ahead or skip ads. The video freezes while the audio keeps playing until, after say 5 seconds, youtube finally does what I tell it to do.
    This doesn't happen if the video is embedded on a different website, nor does it happen on Vimeo, Dailymotion etc. I can play YouTube videos perfectly while using Chrome, IE and a Windows 8 Youtube app I have.
    After the initial freeze all commands start working very well, at least until I open a new video.
    I noticed that a lot of people are having trouble with youtube while using firefox and I've tried a few things:
    - uninstalling and reinstalling flash and java
    - starting Firefox in safe mode
    - using different antivirus software
    - reinstalling Firefox
    I read that this might be a problem caused by the whole Google being all buddy-buddy with Adobe thing, but I'm skeptical.
    So, is there any way to get YouTube to work properly?
    Thanks!

    Create a new profile as a test to check if your current profile is causing the problems.
    See "Creating a profile":
    *https://support.mozilla.org/kb/profile-manager-create-and-remove-firefox-profiles
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Profile_issues
    Profile Backup and Restore
    *http://kb.mozillazine.org/Profile_backup
    *https://support.mozilla.org/en-US/kb/back-and-restore-information-firefox-profiles
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • I have an ipod touch 4g 32 gb. after a week of use, i noticed that sometimes, after i unlock , the homescreen hangs for about 3-6 seconds.

    yes so this hanging issue is not all the time. it happens like almost half the times i unlock.
    i tried restoring. initially it was ok. then i downloadded an app from the appstore. after downloading i unlocked my ipod and it hangs.
    for sure it will hang at this time.
    then it continues to hang
    it is not jailbroken
    and its not only the homescreen. its just the whole device. during this hanging time no button will work. the touch interface does not work. nothing. after 5 seconds....everything is back to normal ... it is very very annoying
    plsss help!!!
    i tried
    1) reset (with all apps closed and wifi off)
    2)reboot
    3)restore (also dfu restore)
    im currently on ios 5.1.1.
    what should i doo???????
    pleeeeeaasssseeee help!

    Have you tried the Basic Troubleshooting Steps...
    Restart... Reset... Restore from Backup...  Restore as New...
    Restart / Reset
    http://support.apple.com/kb/ht1430
    Backing up, Updating and Restoring
    http://support.apple.com/kb/HT1414
    If you try all these Steps and you still have issues... Then a Visit to an Apple Store or AASP (Authorized Apple Service Provider) is the Next Step... Be sure to make an appointment first...

Maybe you are looking for

  • Itunes and apple tv issue

    i recently bought an apple tv device and when i download tintin on my computer and try to view it on my tv using home sharing an error message comes up asking me to authorize the computer. Which i did but it still doesnt work. help me plz

  • Text Message / Browser / Email typing lag

    Ever since I bought the iPhone 3G, I've noticed that when im typing out a text message / an email / in a browser, or anything that involves typing, my phone just randomly decides whether it was to lag or not. Sometimes there is no delay in typing spe

  • Imessage not working in dubai or apple server is down ?

    i have ipad2 and  i am facing problems with my imessage it worked for sometime then it stopped working suddenly , i dunno wether its blocked in uae or apple server for imessage or something like that is down !!!  everything is correct and i tried goo

  • How to convert a number stored as text to as integer with formating

    Hi, Can someone say me how to convert a Numeric data that is stored in a Varchar column to an integer. Say, I have a Value "-.84566666" in a column which is of data type VARCHAR and I want to show this data as "-0.8456", i.e. I want to display it as

  • Language is stuck on Japanese.Cannot reset

    I have read the manual, been to tutorials and cannot find the settings to reset to english on ipod mini. Can someone please help>?!