Computer locks up right after boot due to driver confl

<font face="comic sans ms,sans-serif">When I have to shut down my compter or do a restart it locks up right after it boots up. The only way I can get it going is to go into safe mode, disable the Audigy 2 sound card, restart then after the boot up re-enable the sound card. Everything works fine then until I have to do another restart. I don't know which other program the conflict is with. I am running Windows xp home edition. Anybody got any ideas. How can I find out what the sound card is conflicting with?

You can try the following:
- uninstall the Audigy 2 and use Driver Cleaner or Driversweeper (you can find them at [url="http://www.guru3d.com/">Guru3D[/url]) in Windows Safe mode to get rid of older drivers/Windows registers that get stuck in the Window System which can cause problems for your pc;
- reinstall the driver for the Audigy 2;
- if you have onboard sound, disable the onboard sound via the bios of your motherboard;
Good luck!?

Similar Messages

  • Can't connect to the internet right after boot up

    Hey guys, I have an interesting problem in which if I try to use internet right after boot up (via scripts) I can't resolve host names. However, if I try to use the internet right after boot up manually I can resolve host names. I had this problem with a script but I've since rewrote it to work around the problem; however I now seem to have this problem with openVPN and I need this to work. I'll use openVPN as my primary example but the situation was the same for my script.
    Basically, openVPN starts up via systemd and it can't resolve my server's host name. Even 18 hours later. I have 'resolv-retry infinite' in my conf file which as I understand says 'if you can't resolve the host name keep trying to resolve it indefinitely'. I left my computer on overnight and openVPN still could not connect to my server, despite me being able to ping it, have MySQL get data dumps and replicate from it and other software being able to resolve the server's host name. If I restart openVPN, then it works! I rebooted the computer and let it try for a few minutes to connect and it couldn't. I restarted openVPN manually and it resolved the server's host name, 5 minutes after the computer booted up even though it couldn't connect on it's own the previous night.
    Here's openVPN's status as of this post:
    [email protected] - OpenVPN connection to client
    Loaded: loaded (/usr/lib/systemd/system/[email protected]; enabled)
    Active: active (running) since Thu 2013-05-02 14:10:02 MDT; 58min ago
    Process: 248 ExecStart=/usr/sbin/openvpn --cd /etc/openvpn --config /etc/openvpn/%i.conf --daemon openvpn@%i (code=exited, status=0/SUCCESS)
    Main PID: 254 (openvpn)
    CGroup: name=systemd:/system/[email protected]/client
    ââ254 /usr/sbin/openvpn --cd /etc/openvpn --config /etc/openvpn/client.conf --daemon openvpn@client
    May 02 15:07:52 CCH001 openvpn@client[254]: RESOLVE: Cannot resolve host address: my.server.com: Name or service not known
    May 02 15:07:57 CCH001 openvpn@client[254]: RESOLVE: Cannot resolve host address: my.server.com: Name or service not known
    May 02 15:08:02 CCH001 openvpn@client[254]: RESOLVE: Cannot resolve host address: my.server.com: Name or service not known
    May 02 15:08:07 CCH001 openvpn@client[254]: RESOLVE: Cannot resolve host address: my.server.com: Name or service not known
    May 02 15:08:12 CCH001 openvpn@client[254]: RESOLVE: Cannot resolve host address: my.server.com: Name or service not known
    May 02 15:08:17 CCH001 openvpn@client[254]: RESOLVE: Cannot resolve host address: my.server.com: Name or service not known
    May 02 15:08:22 CCH001 openvpn@client[254]: RESOLVE: Cannot resolve host address: my.server.com: Name or service not known
    May 02 15:08:27 CCH001 openvpn@client[254]: RESOLVE: Cannot resolve host address: my.server.com: Name or service not known
    May 02 15:08:32 CCH001 openvpn@client[254]: RESOLVE: Cannot resolve host address: my.server.com: Name or service not known
    May 02 15:08:37 CCH001 openvpn@client[254]: RESOLVE: Cannot resolve host address: my.server.com: Name or service not known
    Here is my conf file:
    # Sample client-side OpenVPN 2.0 config file #
    # for connecting to multi-client server. #
    # This configuration can be used by multiple #
    # clients, however each client should have #
    # its own cert and key files. #
    # On Windows, you might want to rename this #
    # file so it has a .ovpn extension #
    # Specify that we are a client and that we
    # will be pulling certain config file directives
    # from the server.
    client
    # Use the same setting as you are using on
    # the server.
    # On most systems, the VPN will not function
    # unless you partially or fully disable
    # the firewall for the TUN/TAP interface.
    ;dev tap
    dev tun
    # Windows needs the TAP-Win32 adapter name
    # from the Network Connections panel
    # if you have more than one. On XP SP2,
    # you may need to disable the firewall
    # for the TAP adapter.
    ;dev-node MyTap
    # Are we connecting to a TCP or
    # UDP server? Use the same setting as
    # on the server.
    ;proto tcp
    proto udp
    # The hostname/IP and port of the server.
    # You can have multiple remote entries
    # to load balance between the servers.
    remote my.server.com 1194
    ;remote my-server-2 1194
    # Choose a random host from the remote
    # list for load-balancing. Otherwise
    # try hosts in the order specified.
    ;remote-random
    # Keep trying indefinitely to resolve the
    # host name of the OpenVPN server. Very useful
    # on machines which are not permanently connected
    # to the internet such as laptops.
    resolv-retry infinite
    # Most clients don't need to bind to
    # a specific local port number.
    nobind
    # Downgrade privileges after initialization (non-Windows only)
    user nobody
    group nobody
    # Try to preserve some state across restarts.
    persist-key
    persist-tun
    # If you are connecting through an
    # HTTP proxy to reach the actual OpenVPN
    # server, put the proxy server/IP and
    # port number here. See the man page
    # if your proxy server requires
    # authentication.
    ;http-proxy-retry # retry on connection failures
    ;http-proxy [proxy server] [proxy port #]
    # Wireless networks often produce a lot
    # of duplicate packets. Set this flag
    # to silence duplicate packet warnings.
    ;mute-replay-warnings
    # SSL/TLS parms.
    # See the server config file for more
    # description. It's best to use
    # a separate .crt/.key file pair
    # for each client. A single ca
    # file can be used for all clients.
    ca ca.crt
    cert host.crt
    key host.key
    # Verify server certificate by checking
    # that the certicate has the nsCertType
    # field set to "server". This is an
    # important precaution to protect against
    # a potential attack discussed here:
    # http://openvpn.net/howto.html#mitm
    # To use this feature, you will need to generate
    # your server certificates with the nsCertType
    # field set to "server". The build-key-server
    # script in the easy-rsa folder will do this.
    ns-cert-type server
    # If a tls-auth key is used on the server
    # then every client must also have the key.
    tls-auth ta.key 1
    # Select a cryptographic cipher.
    # If the cipher option is used on the server
    # then you must also specify it here.
    ;cipher x
    # Enable compression on the VPN link.
    # Don't enable this unless it is also
    # enabled in the server config file.
    comp-lzo
    # Set log file verbosity.
    verb 3
    # Silence repeating messages
    ;mute 20
    Anyone have any idea what could be going on? It seems to me that when a program starts up it takes a snap shot of the current network status and it then uses it, even if it's 10 minutes later and the network has been fully loaded/configured, the program uses that snap shot and can't connect to the DNS.
    Last edited by anEveryDayGuy (2013-05-02 21:20:47)

    'Requires=network.target' wasn't in it so I added it but nothing's changed. I've left it in because openVPN does require network.
    As I said, I had this problem with a script so I don't think it's anything specific to openVPN. I had a weird occurrence this morning however. When I started the computer up this morning  openVPN worked just fine. However when the computer rebooted openVPN couldn't resolve the host address again.

  • XP locks screen right after login?

    We're running VDI 3.0 with XP SP3 clients. For some reason, after users do the initial Windows authentication (right after boot), the system logs in and locks the screen almost immediately... I can't figure out for the life of me what would cause this. Ideas?

    System Preferenes > Sound > Output > Internal Speakers
    Make sure that Mute is not enabled.
    Reset SMC.     http://support.apple.com/kb/HT3964
    Choose the method for:
    "Resetting SMC on portables with a battery you should not remove on your own".
    If you see red light in the headphone port, plug the headphone
    in and out of the port 5 or 6 times to flip the microswitch inside.
    Sound output may be stuck in the digital mode.
    Best.

  • T60 freezes when moving trackpoint right after boot

    Hello,
    I have been experiencing this issue for quite a long time. Initially I thought it was due to an update for Windows XP, but I couldn't find any message on the logs when the laptop hangs. I re-installed XP several times to discard any software-related incompatibility, but even with a fresh install it was happening.
    I recently realized after several tests that the problem occurred more frequently when moving the mouse (trackpoint or touchpad) right after system boot (either cold boot or boot from hibernation). What I found out is that it will no longer happen if I suspend the laptop after the system has started, not touching the mouse.
    The symptoms are that Windows freezes. No HD activity at all, system doesn't respond to any mouse/keyboard input. If I close the laptop cover the system doesn't hibernate. The only way to resume normal operation is pressing the power off button for a few seconds, so the system turns off, then turn on normally.
    All drivers are up to date.
    Has anyone experience this issue?
    Thanks
    Solved!
    Go to Solution.

    Try to remove your battery... If battery is dead it might give you this problem...

  • MacBook Pro mid 2010 goes to sleep right after booting

    Hello and thank you in advance to anyone that can help me. I have  a MacBook Pro mid 2010 and I recently spill tea on the computer. I took everything and dried out everything hoping and praying that it will start again. I put everything back together and it started but right after starting (like 15 seconds after)  the monitor goes to sleep right away. But here is the weird thing; I have Windows 8 installed on bootcamp, so if I start on bootcamp, it starts with no problem. I am actually writing this from my macbook but on bootcamp. Any ideas why it goes to sleep on Mac but in Windows seems to be working just fine?

    Power or other problems related to unexpected system sleep, shutdown, lights or fans call for an SMC reset. Read all the steps.
    Before Resetting the SMC
    Try each of the following steps in this order before you reset the SMC. Test the issue after completing each troubleshooting step to determine if the issue still occurs.
    Press Command + Option + Escape to force quit any application that is not responding.
    Put your Mac to sleep by choosing the Apple () menu from the upper-left menu bar and then choosing Sleep. Wake the computer after it has gone to sleep.
    Restart your Mac by choosing the Apple () menu from the upper-left menu bar and then choosing Restart.
    Shut down your Mac by choosing the Apple () menu from the upper-left menu bar and then choosing Shut Down.
    Resetting the SMC on portables with a battery you should not remove on your own
    Shut down the computer.
    Plug in the MagSafe power adapter to a power source, connecting it to the Mac if it's not already connected.
    On the built-in keyboard, press the (left side) Shift-Control-Option keys and the power button at the same time. The power adapter indicator light will cycle off / on once.
    Release all the keys and the power button at the same time.
    Press the power button to turn on the computer.

  • VNC login right after boot without local log in

    Hello,
    after booting I am not able to remotely connect via VNC.
    Only after logging in this works.
    Any way to do it "before"?
    Thanks

    Hello,
    thanks for the hint; however a normal user (non - root) can't do it:
    user@solaris:~$ vncserver :3
    xauth: error in locking authority file /home/user/.Xauthority
    xauth: error in locking authority file /home/user/.Xauthority
    sh[1]: /home/user/.vnc/solaris:3.pid: cannot create [Permission denied]
    sh: line 1: /home/user/.vnc/solaris:3.log: cannot create [Permission denied]
    cat: /home/user/.vnc/solaris:3.pid: No such file or directory
    WARNING: The first attempt to start Xvnc failed, possibly because the font
    catalog is not properly configured. Attempting to determine an appropriate
    font path for this system and restart Xvnc using that font path ...
    sh[1]: /home/user/.vnc/solaris:3.pid: cannot create [Permission denied]
    sh: line 1: /home/user/.vnc/solaris:3.log: cannot create [Permission denied]
    cat: /home/user/.vnc/solaris:3.pid: No such file or directory
    Could not start Xvnc.
    super user works fine, but I want to have the normal user...

  • Computer Freezing up right after log in

    Hello, my ibook has suddenly started to freeze up right after log in, the first time, i was in safari, and it froze up, no mouse movement, no key action, nothing, then right after login it is messing up. what is going on?

    here is the exact panic log, each one has been very similar:
    Mon Feb 11 21:41:25 2008
    panic(cpu 0 caller 0x000AE584): "Uncorrectable machine check: pc = 000000000DC533B0, msr = 0000000000149030, dsisr = 42000000, dar = 00000000E00FE000\n" " AsyncSrc = 0000000000000000, CoreFIR = 0000000000000000\n" " L2FIR = 0000000000000000, BusFir = 0000000000000000\n"@/SourceCache/xnu/xnu-1228.0.2/osfmk/ppc/trap.c:975
    Latest stack backtrace for cpu 0:
    Backtrace:
    0x0009AD18 0x0009B6BC 0x00029DC4 0x000AE584 0x000AE804 0x000B22F8
    Proceeding back via exception chain:
    Exception state (sv=0x2b3f4a00)
    PC=0x0DC533B0; MSR=0x00149030; DAR=0xE00FE000; DSISR=0x42000000; LR=0x0DC5348C; R1=0x2A2373D0; XCP=0x00000008 (0x200 - Machine check)
    Backtrace:
    0x00000001 0x0DC5348C 0x0DC59850 0x0DC59920 0x0DC5A85C 0x0DC5B7C4
    0x0DC52CA0 0x0DC53264 0x0DC4FE20 0x0DC628D0 0x0DC4E018 0x0DC4ED40 0x007E0BE4 0x007E595C
    0x007E9CCC 0x007EB9A8 0x007CF584 0x007CFDFC 0x007C5A08 0x0034095C 0x00376BAC 0x00092E08
    0x0002C1B4 0x00024C88 0x000B264C 0x005D00A8
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.driver.ndrv.ATY,Via.0xdc4ecbc(1.0.0b94)@0xdc4d000->0xdc6bfff
    com.apple.iokit.IOSerialFamily(9.1)@0x5cf000->0x5dafff
    com.apple.iokit.IONDRVSupport(1.5)@0x7df000->0x7f6fff
    dependency: com.apple.iokit.IOPCIFamily(2.4)@0x7a5000
    dependency: com.apple.iokit.IOGraphicsFamily(1.5)@0x7b9000
    com.apple.iokit.IOGraphicsFamily(1.5)@0x7b9000->0x7defff
    dependency: com.apple.iokit.IOPCIFamily(2.4)@0x7a5000
    Exception state (sv=0x2b4faa00)
    PC=0x914959D8; MSR=0x0000F030; DAR=0xB0016FE8; DSISR=0x42000000; LR=0x9149C900; R1=0xBFFFF1E0; XCP=0x00000030 (0xC00 - System call)
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    9B18
    Kernel version:
    Darwin Kernel Version 9.1.0: Wed Oct 31 17:48:21 PDT 2007; root:xnu-1228.0.2~1/RELEASE_PPC

  • System locks about 3min after booting into windows

    AMD TB 1.4ghz
    512mb Elixer DDR ram
    K7N Delta 2 board
    430W Power supply (just bought)
    WD 80gb HD
    Boots up fine then fails shortly after.  Just freezes up.  I did a memory test on the RAM and no errors.  Any ideas?

    Quote from: tordavis on 18-September-05, 17:30:27
    This same thing was happening with the Asus board and older PSU.  New PSU and Board, same issue.  On old board it would take a little longer but it would still happen.  Especially after loading a sound app like Fruity Loops or iTunes and playing music.  I'm starting to think that this old AMD TB1.4ghz cpu just doesn't like the newer boards.  I'm thinking maybe I should update the bios?!  The latest version is B.5 but my version is so old that it doesn't match current version numbers.  Mine is an 11.4. 
    Discuss?
    [EDIT] Noticed something else.  If I let the system run for a LONG time after it's frozen and then reboot, I can't even get into bios when I hit delete.  Just locks at that point.  So turning it off for about 10 mins and rebooting it lets me get into bios.  Those are the symptoms of an overheating problem.  It's clocking my cpu at the correct 1400mhz at 133fsb.  I have it set to auto.  Why would it be overheating?  Never had this problem with the old asus board.  .18 micron tech can't handle the power this board is putting out maybe?  I have a nice heatsink and fan on the cpu....this is perplexing.  OH and what is that little orange plastic thing underneath where the cpu goes?  It sticks straight up. Is it like a cpu thermometer?
    Yes, the orange plasitc strip under the CPU is the thermal probe.
    I found the 11.4 (B4) BIOS to be the most unstable of all I tested for my components. The B30 (11.3) BIOS tends to be the most stable however the B.50 (11.5) BIOS works best for me in performance.
    Take labtech1's advice and try enabling the setting "PRIVATE" in dynamic overclocking because it has been found to stabilize BIOS 11.4 and 11.5

  • Ios5 - camera on lock screen right after download, and is no longer there.  How do I get it back?

    How do I get it back?

    I was confused at the beginning with the camera on lock screen feature, than I read You should press twice the Home Button at the lock screen to have the camera button showing up... am i right?

  • MPOWER z87 board shuts down right after boot

    Today i got my msi z87 mpower board, 4x4GB corsair vengeance pro 2133 cl9 ram and a 4770k. I am using my old AX650, which definitely works and the H60 i had.
    I can't pass posting, i crash literally within a split second after i press the power button. both 8pins and the 24 pin are  plugged in properly, i removed all RAM besides one, which i moved around the slots as well, i removed the GPU, i reseated the h60 and reapplied the thermal paste, i reseated the cpu, i reseated all cables 4 times. it just doesn't work.
    the first time it would run but didn't show an image, after about a minute it turned off completely, after reseating the cables it now crashes immediately. I am completely out of ideas, if you guys don't come up with anything good i will have to RMA :(

    Quote from: XFM on 25-August-13, 08:33:22
    "...hooked up everything correctly..."
     "...he stuck a PCI-E 6 pin cord into the remaining 8 pin cpu atx female port..."
     If that's true then it's not the same problem the OP had. Obviously if he did what is stated in the second statement then the first statement is not true.
     Anyway if you are asking for help/advice then start your own topic instead of resurrecting/hijacking this topic.
    I think you read into my post a little too much.
    You are correct but BEFORE he plugged up the PCI-E to the extra CPU atx, the exact same issue was occurring. I might have questioned it if there was anything even minimally different after the new PSU, but it's the exact same. The old PSU obviously malfunctioned but the system itself seemed to show no signs of change.
    I actually made the same mistake years ago with my intel core 2 duo. It seemed to fry my hdd but the rest of the system was fine. I guess it could just be chance on what does and doesn't die in the process. Point still is that his seems unchanged though.

  • Going to sleep mode right after boot; won't wake

    Hi there,
    I boot this nearly brand new macbook pro and the second you see a mouse appear in the top left corner of the screen the laptop switches to sleep mode and never wakes. I am forced to hold power button to turn off and back on. I tried to boot from cd but it seems to not respond to key presses. I will try an external keyboard for that but the bigger issue it the boot/sleep.
    Any help would be wonderful.
    Thanks,
    John Wally

    Nearly brand new? If you have access to an Apple Store, take it in for evaluation. It could have a hardware problem, and the way it is, there's not really much you can do in the way of troubleshooting other than try a SMC reset:
    http://support.apple.com/kb/HT1411?viewlocale=en_US
    Good luck!

  • How to transfer files after booting from external drive?

    My fathers MB Air has been failing to boot, most likely due to lack of space on hard drive. I've come to the conclusion seeing as how its a 2014 model and he has 6 GB's of free space on his main dirve. I've managed to boot his MB Air from an external drive and now I need to know how to transfer his files to the external hard drive from the internal hard drive, while of course running on the external device. I apologise if this made no sense; trying my best here. If there is any more information required to answer my question please don't hesitate.

    There are two backups to be concerned about. Your iOS devices can backup your App purchases to the computer (that can get big fast!) and it can also backup personal settings. Personal settings can be backed up to your iCloud account and Apple provides 5GB free space which is just enough to back up two devices. I suggest the personal data (basically how you have your iOS device configured) be backed up to the cloud rather than the computer. This will free up about 5GB. Once this has been done, open iTunes, select preferences, click on the Devices tab and you'll see the stored backups (if any). Delete each one.
    The backed up apps are stored in the iTunes folder. Inside the music folder you'll find a folder labeled Mobile Applications. Good news: you can delete this folder (mostly) safely because it costs nothing to redownload apps if needed. Bad news: if the app is removed from the App store it can't be downloaded again. This has never affected me but it is a potential problem. My solution is that I don't backup my apps to the computer. In the rare event that I need to wipe my iOS device and restore it I've found that downloading the Apps again (which is done automatically for you, no need to remember what you had) takes no longer than restoring them from the computer's hard drive.

  • No battery after boot. Dell 7537

    Hi All,
    I have this issue after installing arch (currently the only issue)
    As it is a notebook, I would love to see my current levels of battery, right after boot, but I am unable to. The only way how to trigger the battery notification is to
    1.) hybernate
        OR
    2.) connect/disconnect the AC adapter.
    And I would like to make it automatic.
    Thank you, in advance, for any kind of clues.
    Something about my system:
    [void@GLaDOS ~]$ uname -a
    Linux GLaDOS 3.13.7-1-ARCH #1 SMP PREEMPT Mon Mar 24 20:06:08 CET 2014 x86_64 GNU/Linux
    [void@GLaDOS ~]$
    [void@GLaDOS ~]$ dmesg
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.13.7-1-ARCH (nobody@var-lib-archbuild-extra-x86_64-thomas) (gcc version 4.8.2 20140206 (prerelease) (GCC) ) #1 SMP PREEMPT Mon Mar 24 20:06:08 CET 2014
    [ 0.000000] Command line: initrd=\initramfs-linux.img root=/dev/sda10
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000059000-0x000000000009cfff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009d000-0x00000000000bffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000a611dfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000a611e000-0x00000000a631ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000a6320000-0x00000000ba6f8fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ba6f9000-0x00000000bceeafff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bceeb000-0x00000000bcf9cfff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bcf9d000-0x00000000bcffefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000bcfff000-0x00000000bcffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bd000000-0x00000000bf9fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f80f8000-0x00000000f80f8fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fe101000-0x00000000fe112fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023f5fffff] usable
    [ 0.000000] e820: update [mem 0xa7124018-0xa7134057] usable ==> usable
    [ 0.000000] e820: update [mem 0xa7116018-0xa7123057] usable ==> usable
    [ 0.000000] extended physical RAM map:
    [ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000057fff] usable
    [ 0.000000] reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved
    [ 0.000000] reserve setup_data: [mem 0x0000000000059000-0x000000000009cfff] usable
    [ 0.000000] reserve setup_data: [mem 0x000000000009d000-0x00000000000bffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x00000000a611dfff] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000a611e000-0x00000000a631ffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000a6320000-0x00000000a7116017] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000a7116018-0x00000000a7123057] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000a7123058-0x00000000a7124017] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000a7124018-0x00000000a7134057] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000a7134058-0x00000000ba6f8fff] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000ba6f9000-0x00000000bceeafff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000bceeb000-0x00000000bcf9cfff] ACPI NVS
    [ 0.000000] reserve setup_data: [mem 0x00000000bcf9d000-0x00000000bcffefff] ACPI data
    [ 0.000000] reserve setup_data: [mem 0x00000000bcfff000-0x00000000bcffffff] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000bd000000-0x00000000bf9fffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000f80f8000-0x00000000f80f8fff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000fe101000-0x00000000fe112fff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000023f5fffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] efi: EFI v2.31 by Phoenix Technologies Ltd.
    [ 0.000000] efi: ACPI=0xbcffe000 ACPI 2.0=0xbcffe014 SMBIOS=0xbce84000
    [ 0.000000] efi: mem00: type=7, attr=0xf, range=[0x0000000000000000-0x0000000000001000) (0MB)
    [ 0.000000] efi: mem01: type=2, attr=0xf, range=[0x0000000000001000-0x0000000000007000) (0MB)
    [ 0.000000] efi: mem02: type=7, attr=0xf, range=[0x0000000000007000-0x0000000000058000) (0MB)
    [ 0.000000] efi: mem03: type=0, attr=0xf, range=[0x0000000000058000-0x0000000000059000) (0MB)
    [ 0.000000] efi: mem04: type=7, attr=0xf, range=[0x0000000000059000-0x000000000009d000) (0MB)
    [ 0.000000] efi: mem05: type=0, attr=0xf, range=[0x000000000009d000-0x00000000000a0000) (0MB)
    [ 0.000000] efi: mem06: type=0, attr=0x0, range=[0x00000000000e0000-0x0000000000100000) (0MB)
    [ 0.000000] efi: mem07: type=7, attr=0xf, range=[0x0000000000100000-0x0000000001000000) (15MB)
    [ 0.000000] efi: mem08: type=2, attr=0xf, range=[0x0000000001000000-0x0000000001f61000) (15MB)
    [ 0.000000] efi: mem09: type=7, attr=0xf, range=[0x0000000001f61000-0x000000007fcdf000) (2013MB)
    [ 0.000000] efi: mem10: type=2, attr=0xf, range=[0x000000007fcdf000-0x0000000080000000) (3MB)
    [ 0.000000] efi: mem11: type=7, attr=0xf, range=[0x0000000080000000-0x00000000a4106000) (577MB)
    [ 0.000000] efi: mem12: type=4, attr=0xf, range=[0x00000000a4106000-0x00000000a4126000) (0MB)
    [ 0.000000] efi: mem13: type=7, attr=0xf, range=[0x00000000a4126000-0x00000000a6107000) (31MB)
    [ 0.000000] efi: mem14: type=4, attr=0xf, range=[0x00000000a6107000-0x00000000a611e000) (0MB)
    [ 0.000000] efi: mem15: type=0, attr=0xf, range=[0x00000000a611e000-0x00000000a6320000) (2MB)
    [ 0.000000] efi: mem16: type=4, attr=0xf, range=[0x00000000a6320000-0x00000000a70f6000) (13MB)
    [ 0.000000] efi: mem17: type=7, attr=0xf, range=[0x00000000a70f6000-0x00000000a7116000) (0MB)
    [ 0.000000] efi: mem18: type=2, attr=0xf, range=[0x00000000a7116000-0x00000000a7136000) (0MB)
    [ 0.000000] efi: mem19: type=7, attr=0xf, range=[0x00000000a7136000-0x00000000a7137000) (0MB)
    [ 0.000000] efi: mem20: type=2, attr=0xf, range=[0x00000000a7137000-0x00000000a713a000) (0MB)
    [ 0.000000] efi: mem21: type=7, attr=0xf, range=[0x00000000a713a000-0x00000000a734d000) (2MB)
    [ 0.000000] efi: mem22: type=1, attr=0xf, range=[0x00000000a734d000-0x00000000a7730000) (3MB)
    [ 0.000000] efi: mem23: type=7, attr=0xf, range=[0x00000000a7730000-0x00000000ac157000) (74MB)
    [ 0.000000] efi: mem24: type=4, attr=0xf, range=[0x00000000ac157000-0x00000000ad385000) (18MB)
    [ 0.000000] efi: mem25: type=7, attr=0xf, range=[0x00000000ad385000-0x00000000ad69d000) (3MB)
    [ 0.000000] efi: mem26: type=4, attr=0xf, range=[0x00000000ad69d000-0x00000000ad6c1000) (0MB)
    [ 0.000000] efi: mem27: type=7, attr=0xf, range=[0x00000000ad6c1000-0x00000000ad6e5000) (0MB)
    [ 0.000000] efi: mem28: type=4, attr=0xf, range=[0x00000000ad6e5000-0x00000000ad86e000) (1MB)
    [ 0.000000] efi: mem29: type=7, attr=0xf, range=[0x00000000ad86e000-0x00000000ad922000) (0MB)
    [ 0.000000] efi: mem30: type=4, attr=0xf, range=[0x00000000ad922000-0x00000000aeae1000) (17MB)
    [ 0.000000] efi: mem31: type=7, attr=0xf, range=[0x00000000aeae1000-0x00000000aeae3000) (0MB)
    [ 0.000000] efi: mem32: type=4, attr=0xf, range=[0x00000000aeae3000-0x00000000afdd9000) (18MB)
    [ 0.000000] efi: mem33: type=7, attr=0xf, range=[0x00000000afdd9000-0x00000000ba1b3000) (163MB)
    [ 0.000000] efi: mem34: type=3, attr=0xf, range=[0x00000000ba1b3000-0x00000000ba6f9000) (5MB)
    [ 0.000000] efi: mem35: type=5, attr=0x800000000000000f, range=[0x00000000ba6f9000-0x00000000ba8fb000) (2MB)
    [ 0.000000] efi: mem36: type=6, attr=0x800000000000000f, range=[0x00000000ba8fb000-0x00000000bc8fb000) (32MB)
    [ 0.000000] efi: mem37: type=0, attr=0xf, range=[0x00000000bc8fb000-0x00000000bceeb000) (5MB)
    [ 0.000000] efi: mem38: type=10, attr=0xf, range=[0x00000000bceeb000-0x00000000bcf9d000) (0MB)
    [ 0.000000] efi: mem39: type=9, attr=0xf, range=[0x00000000bcf9d000-0x00000000bcfff000) (0MB)
    [ 0.000000] efi: mem40: type=4, attr=0xf, range=[0x00000000bcfff000-0x00000000bd000000) (0MB)
    [ 0.000000] efi: mem41: type=7, attr=0xf, range=[0x0000000100000000-0x000000023f600000) (5110MB)
    [ 0.000000] efi: mem42: type=0, attr=0x0, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
    [ 0.000000] efi: mem43: type=0, attr=0x0, range=[0x00000000bd000000-0x00000000bfa00000) (42MB)
    [ 0.000000] efi: mem44: type=11, attr=0x8000000000000001, range=[0x00000000f80f8000-0x00000000f80f9000) (0MB)
    [ 0.000000] efi: mem45: type=0, attr=0x0, range=[0x00000000fe101000-0x00000000fe113000) (0MB)
    [ 0.000000] efi: mem46: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
    [ 0.000000] efi: mem47: type=0, attr=0x0, range=[0x0000000000000000-0x0000000000000000) (0MB)
    [ 0.000000] efi: mem48: type=0, attr=0x0, range=[0x0000000000000000-0x0000000000000000) (0MB)
    [ 0.000000] efi: mem49: type=0, attr=0x0, range=[0x0000000000000000-0x0000000000000000) (0MB)
    [ 0.000000] efi: mem50: type=0, attr=0x0, range=[0x0000000000000000-0x0000000000000000) (0MB)
    [ 0.000000] efi: mem51: type=0, attr=0x0, range=[0x0000000000000000-0x0000000000000000) (0MB)
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: Dell Inc. Inspiron 7537/07PF9F, BIOS A07 01/21/2014
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x23f600 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: write-back
    [ 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 00C0000000 mask 7FC0000000 uncachable
    [ 0.000000] 1 base 00BE000000 mask 7FFE000000 uncachable
    [ 0.000000] 2 base 00BD000000 mask 7FFF000000 uncachable
    [ 0.000000] 3 disabled
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] 8 disabled
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: last_pfn = 0xbd000 max_arch_pfn = 0x400000000
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x02b3f000, 0x02b3ffff] PGTABLE
    [ 0.000000] BRK [0x02b40000, 0x02b40fff] PGTABLE
    [ 0.000000] BRK [0x02b41000, 0x02b41fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x23f400000-0x23f5fffff]
    [ 0.000000] [mem 0x23f400000-0x23f5fffff] page 2M
    [ 0.000000] BRK [0x02b42000, 0x02b42fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x23c000000-0x23f3fffff]
    [ 0.000000] [mem 0x23c000000-0x23f3fffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x200000000-0x23bffffff]
    [ 0.000000] [mem 0x200000000-0x23bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0xa611dfff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x3fffffff] page 2M
    [ 0.000000] [mem 0x40000000-0x7fffffff] page 1G
    [ 0.000000] [mem 0x80000000-0xa5ffffff] page 2M
    [ 0.000000] [mem 0xa6000000-0xa611dfff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xa6320000-0xba6f8fff]
    [ 0.000000] [mem 0xa6320000-0xa63fffff] page 4k
    [ 0.000000] [mem 0xa6400000-0xba5fffff] page 2M
    [ 0.000000] [mem 0xba600000-0xba6f8fff] page 4k
    [ 0.000000] BRK [0x02b43000, 0x02b43fff] PGTABLE
    [ 0.000000] BRK [0x02b44000, 0x02b44fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0xbcfff000-0xbcffffff]
    [ 0.000000] [mem 0xbcfff000-0xbcffffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x1ffffffff]
    [ 0.000000] [mem 0x100000000-0x1ffffffff] page 1G
    [ 0.000000] RAMDISK: [mem 0x7fcdf000-0x7fffffff]
    [ 0.000000] ACPI: RSDP 00000000bcffe014 000024 (v02 DELL )
    [ 0.000000] ACPI: XSDT 00000000bcffe170 0000CC (v01 DELL WN09 00000002 LOHR 00000002)
    [ 0.000000] ACPI: FACP 00000000bcffb000 00010C (v05 DELL WN09 00000002 LOHR 00000002)
    [ 0.000000] ACPI Error: Gpe0Block - 32-bit FADT register is too long (32 bytes, 256 bits) to convert to GAS struct - 255 bits max, truncating (20131115/tbfadt-202)
    [ 0.000000] ACPI: DSDT 00000000bcfe9000 00D96C (v02 DELL HSW-LPT 00000000 INTL 20120711)
    [ 0.000000] ACPI: FACS 00000000bcf9a000 000040
    [ 0.000000] ACPI: ASF! 00000000bcffd000 0000A5 (v32 DELL WN09 00000002 LOHR 00000002)
    [ 0.000000] ACPI: HPET 00000000bcffa000 000038 (v01 DELL WN09 00000002 LOHR 00000002)
    [ 0.000000] ACPI: LPIT 00000000bcff9000 00005C (v01 DELL WN09 00000002 LOHR 00000002)
    [ 0.000000] ACPI: APIC 00000000bcff8000 000098 (v01 DELL WN09 00000002 LOHR 00000002)
    [ 0.000000] ACPI: MCFG 00000000bcff7000 00003C (v01 DELL WN09 00000002 LOHR 00000002)
    [ 0.000000] ACPI: SSDT 00000000bcfe8000 000228 (v01 DELL sensrhub 00000000 INTL 20120711)
    [ 0.000000] ACPI: SSDT 00000000bcfe5000 002028 (v01 DELL PtidDevc 00001000 INTL 20120711)
    [ 0.000000] ACPI: SSDT 00000000bcfe4000 0004D6 (v01 DELL Cpu0Ist 00003000 INTL 20120711)
    [ 0.000000] ACPI: SSDT 00000000bcfe3000 000AD8 (v01 DELL CpuPm 00003000 INTL 20120711)
    [ 0.000000] ACPI: SSDT 00000000bcfdf000 003517 (v01 DELL SaSsdt 00003000 INTL 20120711)
    [ 0.000000] ACPI: UEFI 00000000bcfde000 000042 (v01 DELL WN09 00000002 LOHR 00000002)
    [ 0.000000] ACPI: MSDM 00000000bcf72000 000055 (v03 DELL WN09 00000002 LOHR 00000002)
    [ 0.000000] ACPI: UEFI 00000000bcfdd000 00003E (v01 DELL WN09 00000002 LOHR 00000002)
    [ 0.000000] ACPI: FPDT 00000000bcfdc000 000064 (v01 DELL WN09 00000002 LOHR 00000002)
    [ 0.000000] ACPI: SLIC 00000000bcfdb000 000176 (v01 DELL WN09 00000002 LOHR 00000002)
    [ 0.000000] ACPI: SSDT 00000000bcfd9000 001049 (v01 NvORef NvUltTbl 00001000 INTL 20120711)
    [ 0.000000] ACPI: SSDT 00000000bcfd8000 0008CA (v01 DELL IsctTabl 00001000 INTL 20120711)
    [ 0.000000] ACPI: UEFI 00000000bcfd7000 0002CE (v01 DELL WN09 00000002 LOHR 00000002)
    [ 0.000000] ACPI: BGRT 00000000bcfd6000 000038 (v01 DELL WN09 00000002 LOHR 00000002)
    [ 0.000000] ACPI: CSRT 00000000bcfd5000 0000C4 (v01 DELL WN09 00000002 LOHR 00000002)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000023f5fffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x23f5fffff]
    [ 0.000000] NODE_DATA [mem 0x23f5f8000-0x23f5fcfff]
    [ 0.000000] [ffffea0000000000-ffffea0008ffffff] PMD -> [ffff880236c00000-ffff88023ebfffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x23f5fffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x00057fff]
    [ 0.000000] node 0: [mem 0x00059000-0x0009cfff]
    [ 0.000000] node 0: [mem 0x00100000-0xa611dfff]
    [ 0.000000] node 0: [mem 0xa6320000-0xba6f8fff]
    [ 0.000000] node 0: [mem 0xbcfff000-0xbcffffff]
    [ 0.000000] node 0: [mem 0x100000000-0x23f5fffff]
    [ 0.000000] On node 0 totalpages: 2071187
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 21 pages reserved
    [ 0.000000] DMA zone: 3995 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 11860 pages used for memmap
    [ 0.000000] DMA32 zone: 759032 pages, LIFO batch:31
    [ 0.000000] Normal zone: 20440 pages used for memmap
    [ 0.000000] Normal zone: 1308160 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x1808
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled)
    [ 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-39
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 8 CPUs, 4 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 56
    [ 0.000000] PM: Registered nosave memory: [mem 0x00058000-0x00058fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x000bffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000c0000-0x000dffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xa611e000-0xa631ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xa7116000-0xa7116fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xa7123000-0xa7123fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xa7124000-0xa7124fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xa7134000-0xa7134fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xba6f9000-0xbceeafff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbceeb000-0xbcf9cfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbcf9d000-0xbcffefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbd000000-0xbf9fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbfa00000-0xf80f7fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf80f8000-0xf80f8fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf80f9000-0xfe100fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfe101000-0xfe112fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfe113000-0xfed1bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xffffffff]
    [ 0.000000] e820: [mem 0xbfa00000-0xf80f7fff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88023f200000 s86336 r8192 d24256 u262144
    [ 0.000000] pcpu-alloc: s86336 r8192 d24256 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2038802
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: initrd=\initramfs-linux.img root=/dev/sda10
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
    [ 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: 7993744K/8284748K available (5271K kernel code, 836K rwdata, 1676K rodata, 1128K init, 1324K bss, 291004K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, 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=128 to nr_cpu_ids=8.
    [ 0.000000] NR_IRQS:8448 nr_irqs:1016 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 33554432 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 using PIT
    [ 0.003333] tsc: Detected 1795.962 MHz processor
    [ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 3593.58 BogoMIPS (lpj=5986540)
    [ 0.000006] pid_max: default: 32768 minimum: 301
    [ 0.000021] init_memory_mapping: [mem 0xba6f9000-0xba8fafff]
    [ 0.000024] [mem 0xba6f9000-0xba8fafff] page 4k
    [ 0.000044] init_memory_mapping: [mem 0xba8fb000-0xbc8fafff]
    [ 0.000045] [mem 0xba8fb000-0xba9fffff] page 4k
    [ 0.000046] [mem 0xbaa00000-0xbc7fffff] page 2M
    [ 0.000047] [mem 0xbc800000-0xbc8fafff] page 4k
    [ 0.037714] Security Framework initialized
    [ 0.037724] AppArmor: AppArmor disabled by boot time parameter
    [ 0.037725] Yama: becoming mindful.
    [ 0.038391] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.040413] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.041277] Mount-cache hash table entries: 256
    [ 0.041479] Initializing cgroup subsys memory
    [ 0.041486] Initializing cgroup subsys devices
    [ 0.041488] Initializing cgroup subsys freezer
    [ 0.041489] Initializing cgroup subsys net_cls
    [ 0.041491] Initializing cgroup subsys blkio
    [ 0.041517] CPU: Physical Processor ID: 0
    [ 0.041518] CPU: Processor Core ID: 0
    [ 0.041523] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.042693] mce: CPU supports 7 MCE banks
    [ 0.042708] CPU0: Thermal monitoring enabled (TM1)
    [ 0.042721] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0
    tlb_flushall_shift: 6
    [ 0.042829] Freeing SMP alternatives memory: 20K (ffffffff819ed000 - ffffffff819f2000)
    [ 0.043845] ACPI: Core revision 20131115
    [ 0.056685] ACPI: All ACPI Tables successfully acquired
    [ 0.061212] ftrace: allocating 21068 entries in 83 pages
    [ 0.072756] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.105753] smpboot: CPU0: Intel(R) Core(TM) i7-4500U CPU @ 1.80GHz (fam: 06, model: 45, stepping: 01)
    [ 0.105760] TSC deadline timer enabled
    [ 0.105771] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
    [ 0.105779] ... version: 3
    [ 0.105780] ... bit width: 48
    [ 0.105781] ... generic registers: 4
    [ 0.105782] ... value mask: 0000ffffffffffff
    [ 0.105783] ... max period: 0000ffffffffffff
    [ 0.105784] ... fixed-purpose events: 3
    [ 0.105785] ... event mask: 000000070000000f
    [ 0.132534] x86: Booting SMP configuration:
    [ 0.147279] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.132537] .... node #0, CPUs: #1 #2 #3
    [ 0.189504] x86: Booted up 1 node, 4 CPUs
    [ 0.189509] smpboot: Total of 4 processors activated (14373.35 BogoMIPS)
    [ 0.195133] devtmpfs: initialized
    [ 0.198124] PM: Registering ACPI NVS region [mem 0xbceeb000-0xbcf9cfff] (729088 bytes)
    [ 0.199015] RTC time: 17:45:30, date: 03/28/14
    [ 0.199059] NET: Registered protocol family 16
    [ 0.199163] cpuidle: using governor ladder
    [ 0.199165] cpuidle: using governor menu
    [ 0.199193] ACPI: bus type PCI registered
    [ 0.199195] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.199264] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.199267] PCI: not using MMCONFIG
    [ 0.199269] PCI: Using configuration type 1 for base access
    [ 0.200095] bio: create slab <bio-0> at 0
    [ 0.200221] ACPI: Added _OSI(Module Device)
    [ 0.200223] ACPI: Added _OSI(Processor Device)
    [ 0.200225] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.200226] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.205589] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.209306] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.255573] ACPI: SSDT 00000000bcedec18 0003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20120711)
    [ 0.256196] ACPI: Dynamic OEM Table Load:
    [ 0.256198] ACPI: SSDT (null) 0003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20120711)
    [ 0.268541] ACPI: SSDT 00000000bcede618 0005AA (v01 PmRef ApIst 00003000 INTL 20120711)
    [ 0.269250] ACPI: Dynamic OEM Table Load:
    [ 0.269253] ACPI: SSDT (null) 0005AA (v01 PmRef ApIst 00003000 INTL 20120711)
    [ 0.281706] ACPI: SSDT 00000000bce90d98 000119 (v01 PmRef ApCst 00003000 INTL 20120711)
    [ 0.282323] ACPI: Dynamic OEM Table Load:
    [ 0.282325] ACPI: SSDT (null) 000119 (v01 PmRef ApCst 00003000 INTL 20120711)
    [ 0.295717] ACPI: Interpreter enabled
    [ 0.295726] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20131115/hwxface-580)
    [ 0.295733] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131115/hwxface-580)
    [ 0.295754] ACPI: (supports S0 S3 S4 S5)
    [ 0.295755] ACPI: Using IOAPIC for interrupt routing
    [ 0.295777] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.296299] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in ACPI motherboard resources
    [ 0.307483] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.307717] ACPI: No dock devices found.
    [ 0.403027] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    [ 0.403034] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    [ 0.403170] \_SB_.PCI0:_OSC invalid UUID
    [ 0.403171] _OSC request data:1 1f 0
    [ 0.403176] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
    [ 0.403785] PCI host bridge to bus 0000:00
    [ 0.403788] pci_bus 0000:00: root bus resource [bus 00-3e]
    [ 0.403791] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.403793] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.403795] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.403797] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
    [ 0.403798] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
    [ 0.403800] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
    [ 0.403802] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff]
    [ 0.403804] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 0.403805] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.403807] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.403809] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.403811] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    [ 0.403812] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    [ 0.403814] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff]
    [ 0.403816] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff]
    [ 0.403818] pci_bus 0000:00: root bus resource [mem 0xbfa00000-0xfeafffff]
    [ 0.403827] pci 0000:00:00.0: [8086:0a04] type 00 class 0x060000
    [ 0.403987] pci 0000:00:02.0: [8086:0a16] type 00 class 0x030000
    [ 0.404001] pci 0000:00:02.0: reg 0x10: [mem 0xe3000000-0xe33fffff 64bit]
    [ 0.404009] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff 64bit pref]
    [ 0.404015] pci 0000:00:02.0: reg 0x20: [io 0x5000-0x503f]
    [ 0.404166] pci 0000:00:03.0: [8086:0a0c] type 00 class 0x040300
    [ 0.404176] pci 0000:00:03.0: reg 0x10: [mem 0xe3610000-0xe3613fff 64bit]
    [ 0.404351] pci 0000:00:14.0: [8086:9c31] type 00 class 0x0c0330
    [ 0.404370] pci 0000:00:14.0: reg 0x10: [mem 0xe3600000-0xe360ffff 64bit]
    [ 0.404432] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.404565] pci 0000:00:16.0: [8086:9c3a] type 00 class 0x078000
    [ 0.404585] pci 0000:00:16.0: reg 0x10: [mem 0xe3619000-0xe361901f 64bit]
    [ 0.404648] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.404791] pci 0000:00:1b.0: [8086:9c20] type 00 class 0x040300
    [ 0.404806] pci 0000:00:1b.0: reg 0x10: [mem 0xe3614000-0xe3617fff 64bit]
    [ 0.404871] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.405010] pci 0000:00:1c.0: [8086:9c10] type 01 class 0x060400
    [ 0.405075] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.405213] pci 0000:00:1c.2: [8086:9c14] type 01 class 0x060400
    [ 0.405279] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    [ 0.405384] pci 0000:00:1c.2: System wakeup disabled by ACPI
    [ 0.405417] pci 0000:00:1c.3: [8086:9c16] type 01 class 0x060400
    [ 0.405482] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 0.405587] pci 0000:00:1c.3: System wakeup disabled by ACPI
    [ 0.405620] pci 0000:00:1c.4: [8086:9c18] type 01 class 0x060400
    [ 0.405686] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 0.405827] pci 0000:00:1d.0: [8086:9c26] type 00 class 0x0c0320
    [ 0.405849] pci 0000:00:1d.0: reg 0x10: [mem 0xe361d000-0xe361d3ff]
    [ 0.405942] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.406061] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.406099] pci 0000:00:1f.0: [8086:9c43] type 00 class 0x060100
    [ 0.406339] pci 0000:00:1f.2: [8086:9c03] type 00 class 0x010601
    [ 0.406355] pci 0000:00:1f.2: reg 0x10: [io 0x5088-0x508f]
    [ 0.406363] pci 0000:00:1f.2: reg 0x14: [io 0x5094-0x5097]
    [ 0.406370] pci 0000:00:1f.2: reg 0x18: [io 0x5080-0x5087]
    [ 0.406378] pci 0000:00:1f.2: reg 0x1c: [io 0x5090-0x5093]
    [ 0.406385] pci 0000:00:1f.2: reg 0x20: [io 0x5060-0x507f]
    [ 0.406393] pci 0000:00:1f.2: reg 0x24: [mem 0xe361c000-0xe361c7ff]
    [ 0.406431] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.406557] pci 0000:00:1f.3: [8086:9c22] type 00 class 0x0c0500
    [ 0.406571] pci 0000:00:1f.3: reg 0x10: [mem 0xe3618000-0xe36180ff 64bit]
    [ 0.406592] pci 0000:00:1f.3: reg 0x20: [io 0xefa0-0xefbf]
    [ 0.406787] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.406893] pci 0000:02:00.0: [8086:08b1] type 00 class 0x028000
    [ 0.406935] pci 0000:02:00.0: reg 0x10: [mem 0xe3500000-0xe3501fff 64bit]
    [ 0.407119] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
    [ 0.407174] pci 0000:02:00.0: System wakeup disabled by ACPI
    [ 0.411704] pci 0000:00:1c.2: PCI bridge to [bus 02]
    [ 0.411710] pci 0000:00:1c.2: bridge window [mem 0xe3500000-0xe35fffff]
    [ 0.411794] pci 0000:03:00.0: [10ec:5287] type 00 class 0xff0000
    [ 0.411812] pci 0000:03:00.0: reg 0x10: [mem 0xe3405000-0xe3405fff]
    [ 0.411878] pci 0000:03:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
    [ 0.411944] pci 0000:03:00.0: supports D1 D2
    [ 0.411946] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.411991] pci 0000:03:00.0: System wakeup disabled by ACPI
    [ 0.412035] pci 0000:03:00.1: [10ec:8168] type 00 class 0x020000
    [ 0.412052] pci 0000:03:00.1: reg 0x10: [io 0x4000-0x40ff]
    [ 0.412081] pci 0000:03:00.1: reg 0x18: [mem 0xe3404000-0xe3404fff 64bit]
    [ 0.412100] pci 0000:03:00.1: reg 0x20: [mem 0xe3400000-0xe3403fff 64bit]
    [ 0.412177] pci 0000:03:00.1: supports D1 D2
    [ 0.412178] pci 0000:03:00.1: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.418364] pci 0000:00:1c.3: PCI bridge to [bus 03]
    [ 0.418368] pci 0000:00:1c.3: bridge window [io 0x4000-0x4fff]
    [ 0.418371] pci 0000:00:1c.3: bridge window [mem 0xe3400000-0xe34fffff]
    [ 0.418458] pci 0000:04:00.0: [10de:0fe4] type 00 class 0x030200
    [ 0.418472] pci 0000:04:00.0: reg 0x10: [mem 0xe2000000-0xe2ffffff]
    [ 0.418487] pci 0000:04:00.0: reg 0x14: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.418502] pci 0000:04:00.0: reg 0x1c: [mem 0xe0000000-0xe1ffffff 64bit pref]
    [ 0.418512] pci 0000:04:00.0: reg 0x24: [io 0x3000-0x307f]
    [ 0.418523] pci 0000:04:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
    [ 0.425027] pci 0000:00:1c.4: PCI bridge to [bus 04]
    [ 0.425031] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff]
    [ 0.425034] pci 0000:00:1c.4: bridge window [mem 0xe2000000-0xe2ffffff]
    [ 0.425040] pci 0000:00:1c.4: bridge window [mem 0xd0000000-0xe1ffffff 64bit pref]
    [ 0.438876] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.438935] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.438989] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.439041] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.439093] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.439145] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.439197] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.439248] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.452346] ACPI: Enabled 5 GPEs in block 00 to 7F
    [ 0.452355] ACPI: \_SB_.PCI0: notify handler is installed
    [ 0.452440] Found 1 acpi root devices
    [ 0.452526] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.452530] vgaarb: loaded
    [ 0.452532] vgaarb: bridge control possible 0000:00:02.0
    [ 0.452565] PCI: Using ACPI for IRQ routing
    [ 0.453935] PCI: pci_cache_line_size set to 64 bytes
    [ 0.454004] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
    [ 0.454006] e820: reserve RAM buffer [mem 0x0009d000-0x0009ffff]
    [ 0.454007] e820: reserve RAM buffer [mem 0xa611e000-0xa7ffffff]
    [ 0.454009] e820: reserve RAM buffer [mem 0xa7116018-0xa7ffffff]
    [ 0.454011] e820: reserve RAM buffer [mem 0xa7124018-0xa7ffffff]
    [ 0.454012] e820: reserve RAM buffer [mem 0xba6f9000-0xbbffffff]
    [ 0.454014] e820: reserve RAM buffer [mem 0xbd000000-0xbfffffff]
    [ 0.454016] e820: reserve RAM buffer [mem 0x23f600000-0x23fffffff]
    [ 0.454099] NetLabel: Initializing
    [ 0.454100] NetLabel: domain hash size = 128
    [ 0.454101] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.454114] NetLabel: unlabeled traffic allowed by default
    [ 0.454127] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.454133] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.456157] Switched to clocksource hpet
    [ 0.461039] pnp: PnP ACPI init
    [ 0.461055] ACPI: bus type PNP registered
    [ 0.461144] system 00:00: [io 0x04d0-0x04d1] has been reserved
    [ 0.461150] system 00:00: [mem 0xfe800000-0xfe802fff] has been reserved
    [ 0.461154] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.461172] pnp 00:01: [dma 4]
    [ 0.461188] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.461211] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.461322] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.461362] system 00:04: [io 0x0680-0x069f] has been reserved
    [ 0.461364] system 00:04: [io 0xffff] has been reserved
    [ 0.461366] system 00:04: [io 0xffff] has been reserved
    [ 0.461368] system 00:04: [io 0xffff] has been reserved
    [ 0.461371] system 00:04: [io 0x1800-0x18fe] could not be reserved
    [ 0.461373] system 00:04: [io 0x164e-0x164f] has been reserved
    [ 0.461375] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.461424] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.461470] system 00:06: [io 0x1854-0x1857] has been reserved
    [ 0.461473] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.461551] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.461612] pnp 00:08: Plug and Play ACPI device, IDs DLL05f9 SYN0600 SYN0002 PNP0f13 (active)
    [ 0.461752] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.461754] system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
    [ 0.461756] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.461758] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.461761] system 00:09: [mem 0xf8000000-0xfbffffff] could not be reserved
    [ 0.461763] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.461765] system 00:09: [mem 0xfed90000-0xfed93fff] has been reserved
    [ 0.461767] system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.461769] system 00:09: [mem 0xff000000-0xffffffff] has been reserved
    [ 0.461771] system 00:09: [mem 0xfee00000-0xfeefffff] has been reserved
    [ 0.461774] system 00:09: [mem 0xbfa10000-0xbfa1ffff] has been reserved
    [ 0.461776] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.492900] system 00:0a: [mem 0xfe102000-0xfe102fff] has been reserved
    [ 0.492904] system 00:0a: [mem 0xfe104000-0xfe104fff] has been reserved
    [ 0.492907] system 00:0a: [mem 0xfe106000-0xfe106fff] has been reserved
    [ 0.492909] system 00:0a: [mem 0xfe108000-0xfe108fff] has been reserved
    [ 0.492911] system 00:0a: [mem 0xfe10a000-0xfe10afff] has been reserved
    [ 0.492913] system 00:0a: [mem 0xfe10c000-0xfe10cfff] has been reserved
    [ 0.492915] system 00:0a: [mem 0xfe10e000-0xfe10efff] has been reserved
    [ 0.492917] system 00:0a: [mem 0xfe112000-0xfe112fff] has been reserved
    [ 0.492920] system 00:0a: [mem 0xfe111000-0xfe111007] has been reserved
    [ 0.492922] system 00:0a: [mem 0xfe111014-0xfe111fff] has been reserved
    [ 0.492926] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.519796] pnp 00:0b: Plug and Play ACPI device, IDs SMO8810 (active)
    [ 0.533124] pnp: PnP ACPI: found 12 devices
    [ 0.533126] ACPI: bus type PNP unregistered
    [ 0.539394] pci 0000:03:00.0: no compatible bridge window for [mem 0xffff0000-0xffffffff pref]
    [ 0.539397] pci 0000:04:00.0: no compatible bridge window for [mem 0xfff80000-0xffffffff pref]
    [ 0.539432] pci 0000:00:1c.3: BAR 15: assigned [mem 0xbfb00000-0xbfbfffff pref]
    [ 0.539435] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.539446] pci 0000:00:1c.2: PCI bridge to [bus 02]
    [ 0.539451] pci 0000:00:1c.2: bridge window [mem 0xe3500000-0xe35fffff]
    [ 0.539463] pci 0000:03:00.0: BAR 6: assigned [mem 0xbfb00000-0xbfb0ffff pref]
    [ 0.539466] pci 0000:00:1c.3: PCI bridge to [bus 03]
    [ 0.539468] pci 0000:00:1c.3: bridge window [io 0x4000-0x4fff]
    [ 0.539473] pci 0000:00:1c.3: bridge window [mem 0xe3400000-0xe34fffff]
    [ 0.539477] pci 0000:00:1c.3: bridge window [mem 0xbfb00000-0xbfbfffff pref]
    [ 0.539483] pci 0000:04:00.0: BAR 6: can't assign mem pref (size 0x80000)
    [ 0.539486] pci 0000:00:1c.4: PCI bridge to [bus 04]
    [ 0.539488] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff]
    [ 0.539493] pci 0000:00:1c.4: bridge window [mem 0xe2000000-0xe2ffffff]
    [ 0.539497] pci 0000:00:1c.4: bridge window [mem 0xd0000000-0xe1ffffff 64bit pref]
    [ 0.539503] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.539505] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.539507] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.539509] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
    [ 0.539511] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
    [ 0.539513] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
    [ 0.539515] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff]
    [ 0.539517] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff]
    [ 0.539518] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff]
    [ 0.539520] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff]
    [ 0.539522] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff]
    [ 0.539524] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff]
    [ 0.539526] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff]
    [ 0.539527] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff]
    [ 0.539529] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff]
    [ 0.539531] pci_bus 0000:00: resource 19 [mem 0xbfa00000-0xfeafffff]
    [ 0.539533] pci_bus 0000:02: resource 1 [mem 0xe3500000-0xe35fffff]
    [ 0.539535] pci_bus 0000:03: resource 0 [io 0x4000-0x4fff]
    [ 0.539537] pci_bus 0000:03: resource 1 [mem 0xe3400000-0xe34fffff]
    [ 0.539539] pci_bus 0000:03: resource 2 [mem 0xbfb00000-0xbfbfffff pref]
    [ 0.539541] pci_bus 0000:04: resource 0 [io 0x3000-0x3fff]
    [ 0.539543] pci_bus 0000:04: resource 1 [mem 0xe2000000-0xe2ffffff]
    [ 0.539545] pci_bus 0000:04: resource 2 [mem 0xd0000000-0xe1ffffff 64bit pref]
    [ 0.539577] NET: Registered protocol family 2
    [ 0.539768] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
    [ 0.539937] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.540076] TCP: Hash tables configured (established 65536 bind 65536)
    [ 0.540097] TCP: reno registered
    [ 0.540110] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.540141] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.540216] NET: Registered protocol family 1
    [ 0.540228] pci 0000:00:02.0: Boot video device
    [ 0.540306] pci 0000:00:14.0: can't derive routing for PCI INT A
    [ 0.540308] pci 0000:00:14.0: PCI INT A: no GSI
    [ 0.540406] pci 0000:00:14.0: can't derive routing for PCI INT A
    [ 0.540596] PCI: CLS 64 bytes, default 64
    [ 0.540638] Unpacking initramfs...
    [ 0.613961] Freeing initrd memory: 3204K (ffff88007fcdf000 - ffff880080000000)
    [ 0.613966] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.613969] software IO TLB [mem 0xb61b3000-0xba1b3000] (64MB) mapped at [ffff8800b61b3000-ffff8800ba1b2fff]
    [ 0.614132] Scanning for low memory corruption every 60 seconds
    [ 0.614413] audit: initializing netlink socket (disabled)
    [ 0.614424] type=2000 audit(1396028730.569:1): initialized
    [ 0.630220] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.631594] zbud: loaded
    [ 0.631777] VFS: Disk quotas dquot_6.5.2
    [ 0.631820] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.631982] msgmni has been set to 15770
    [ 0.632038] Key type big_key registered
    [ 0.632238] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.632273] io scheduler noop registered
    [ 0.632275] io scheduler deadline registered
    [ 0.632301] io scheduler cfq registered (default)
    [ 0.632797] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.632812] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.632861] efifb: probing for efifb
    [ 0.634403] efifb: framebuffer at 0xc0000000, mapped to 0xffffc90004f00000, using 8100k, total 8100k
    [ 0.634405] efifb: mode is 1920x1080x32, linelength=7680, pages=1
    [ 0.634406] efifb: scrolling: redraw
    [ 0.634408] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.640993] Console: switching to colour frame buffer device 240x67
    [ 0.647481] fb0: EFI VGA frame buffer device
    [ 0.647490] intel_idle: MWAIT substates: 0x11142120
    [ 0.647491] intel_idle: v0.4 model 0x45
    [ 0.647492] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 0.647675] GHES: HEST is not enabled!
    [ 0.647727] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.648142] Linux agpgart interface v0.103
    [ 0.648200] rtc_cmos 00:05: RTC can wake from S4
    [ 0.648326] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [ 0.648354] rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 0.648365] Intel P-state driver initializing.
    [ 0.648375] Intel pstate controlling: cpu 0
    [ 0.648400] Intel pstate controlling: cpu 1
    [ 0.648412] Intel pstate controlling: cpu 2
    [ 0.648421] Intel pstate controlling: cpu 3
    [ 0.648546] drop_monitor: Initializing network drop monitor service
    [ 0.648595] TCP: cubic registered
    [ 0.648677] NET: Registered protocol family 10
    [ 0.648811] NET: Registered protocol family 17
    [ 0.648818] Key type dns_resolver registered
    [ 0.649004] registered taskstats version 1
    [ 0.649644] Magic number: 6:126:796
    [ 0.649712] rtc_cmos 00:05: setting system clock to 2014-03-28 17:45:31 UTC (1396028731)
    [ 0.649748] PM: Hibernation image not present or could not be loaded.
    [ 0.650354] Freeing unused kernel memory: 1128K (ffffffff818d3000 - ffffffff819ed000)
    [ 0.650355] Write protecting the kernel read-only data: 8192k
    [ 0.652045] Freeing unused kernel memory: 860K (ffff880002529000 - ffff880002600000)
    [ 0.652685] Freeing unused kernel memory: 372K (ffff8800027a3000 - ffff880002800000)
    [ 0.657971] random: systemd-tmpfile urandom read with 1 bits of entropy available
    [ 0.658953] systemd-udevd[56]: starting version 211
    [ 0.671084] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 0.675200] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.675211] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.679063] ACPI: bus type USB registered
    [ 0.679140] usbcore: registered new interface driver usbfs
    [ 0.679147] usbcore: registered new interface driver hub
    [ 0.679183] usbcore: registered new device driver usb
    [ 0.679907] rtsx_pci 0000:03:00.0: irq 56 for MSI/MSI-X
    [ 0.679921] rtsx_pci 0000:03:00.0: rtsx_pci_acquire_irq: pcr->msi_en = 1, pci->irq = 56
    [ 0.680383] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.680779] xhci_hcd 0000:00:14.0: can't derive routing for PCI INT A
    [ 0.680781] xhci_hcd 0000:00:14.0: PCI INT A: no GSI
    [ 0.680814] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.680820] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
    [ 0.680893] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 0.680910] xhci_hcd 0000:00:14.0: irq 57 for MSI/MSI-X
    [ 0.681298] SCSI subsystem initialized
    [ 0.682133] ehci-pci: EHCI PCI platform driver
    [ 0.682152] libata version 3.00 loaded.
    [ 0.682614] hub 1-0:1.0: USB hub found
    [ 0.682629] hub 1-0:1.0: 9 ports detected
    [ 0.684167] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.684171] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
    [ 0.684312] hub 2-0:1.0: USB hub found
    [ 0.684323] hub 2-0:1.0: 4 ports detected
    [ 0.686657] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 0.686662] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 3
    [ 0.686674] ehci-pci 0000:00:1d.0: debug port 2
    [ 0.690559] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 0.690585] ehci-pci 0000:00:1d.0: irq 23, io mem 0xe361d000
    [ 0.699417] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 0.699600] hub 3-0:1.0: USB hub found
    [ 0.699606] hub 3-0:1.0: 3 ports detected
    [ 0.699755] ahci 0000:00:1f.2: version 3.0
    [ 0.699897] ahci 0000:00:1f.2: irq 58 for MSI/MSI-X
    [ 0.712779] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 6 Gbps 0x1 impl SATA mode
    [ 0.712783] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo only pio slum part deso sadm sds apst
    [ 0.713215] scsi0 : ahci
    [ 0.713307] scsi1 : ahci
    [ 0.713387] scsi2 : ahci
    [ 0.713484] scsi3 : ahci
    [ 0.713533] ata1: SATA max UDMA/133 abar m2048@0xe361c000 port 0xe361c100 irq 58
    [ 0.713535] ata2: DUMMY
    [ 0.713536] ata3: DUMMY
    [ 0.713537] ata4: DUMMY
    [ 0.716082] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.032692] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 1.039030] ata1.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
    [ 1.039119] ata1.00: ATA-8: ST1000LM024 HN-M101MBB, 2BA30001, max UDMA/133
    [ 1.039122] ata1.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 31/32)
    [ 1.042744] usb 1-4: new low-speed USB device number 2 using xhci_hcd
    [ 1.045496] ata1.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
    [ 1.045588] ata1.00: configured for UDMA/133
    [ 1.045794] scsi 0:0:0:0: Direct-Access ATA ST1000LM024 HN-M 2BA3 PQ: 0 ANSI: 5
    [ 1.047782] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
    [ 1.047862] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.047865] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.047891] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.058547] usb 1-4: config 1 has an invalid interface number: 1 but max is 0
    [ 1.058551] usb 1-4: config 1 has no interface number 0
    [ 1.060336] usb 1-4: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
    [ 1.063706] hidraw: raw HID events driver (C) Jiri Kosina
    [ 1.068657] usbcore: registered new interface driver usbhid
    [ 1.068661] usbhid: USB HID core driver
    [ 1.103349] sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10
    [ 1.104072] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.222575] usb 1-5: new high-speed USB device number 3 using xhci_hcd
    [ 1.475839] usb 1-6: new full-speed USB device number 4 using xhci_hcd
    [ 1.615761] tsc: Refined TSC clocksource calibration: 1795.842 MHz
    [ 1.649158] usb 1-7: new full-speed USB device number 5 using xhci_hcd
    [ 1.664033] usb 1-7: ep 0x2 - rounding interval to 64 microframes, ep desc says 80 microframes
    [ 1.672757] input: ELAN Touchscreen as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/input/input2
    [ 1.672889] hid-multitouch 0003:04F3:0206.0002: input,hiddev0,hidraw0: USB HID v1.10 Device [ELAN Touchscreen] on usb-0000:00:14.0-7/input0
    [ 1.775780] usb 3-1: new high-speed USB device number 2 using ehci-pci
    [ 1.899629] hub 3-1:1.0: USB hub found
    [ 1.899695] hub 3-1:1.0: 8 ports detected
    [ 2.457525] random: nonblocking pool is initialized
    [ 2.615440] Switched to clocksource tsc
    [ 2.647237] EXT4-fs (sda10): mounted filesystem with ordered data mode. Opts: (null)
    [ 3.254903] systemd[1]: systemd 211 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ +SECCOMP -APPARMOR)
    [ 3.255062] systemd[1]: Detected architecture 'x86-64'.
    [ 3.260574] systemd[1]: Set hostname to <GLaDOS>.
    [ 3.894501] systemd[1]: Starting Login Prompts.
    [ 3.894597] systemd[1]: Reached target Login Prompts.
    [ 3.894608] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 3.894664] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 3.894672] systemd[1]: Starting Remote File Systems.
    [ 3.894742] systemd[1]: Reached target Remote File Systems.
    [ 3.894756] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 3.894782] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 3.894789] systemd[1]: Starting Paths.
    [ 3.894848] systemd[1]: Reached target Paths.
    [ 3.894866] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 3.895033] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 3.895044] systemd[1]: Starting Encrypted Volumes.
    [ 3.895105] systemd[1]: Reached target Encrypted Volumes.
    [ 3.895115] systemd[1]: Expecting device dev-disk-by\x2duuid-8cdc5395\x2dad83\x2d429c\x2d95af\x2d73bc6b769621.device...
    [ 3.895196] systemd[1]: Starting EFI System Partition Automount.
    [ 3.895321] systemd[1]: Set up automount EFI System Partition Automount.
    [ 3.895330] systemd[1]: Expecting device dev-disk-by\x2duuid-BE9C\x2dD69C.device...
    [ 3.895395] systemd[1]: Starting Root Slice.
    [ 3.898003] systemd[1]: Created slice Root Slice.
    [ 3.898010] systemd[1]: Starting User and Session Slice.
    [ 3.898131] systemd[1]: Created slice User and Session Slice.
    [ 3.898137] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 3.898192] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 3.898197] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 3.898262] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 3.898268] systemd[1]: Starting Delayed Shutdown Socket.
    [ 3.898329] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 3.898334] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 3.898386] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 3.898393] systemd[1]: Starting udev Control Socket.
    [ 3.898437] systemd[1]: Listening on udev Control Socket.
    [ 3.898443] systemd[1]: Starting udev Kernel Socket.
    [ 3.898488] systemd[1]: Listening on udev Kernel Socket.
    [ 3.898494] systemd[1]: Starting Journal Socket.
    [ 3.898549] systemd[1]: Listening on Journal Socket.
    [ 3.898558] systemd[1]: Starting System Slice.
    [ 3.898674] systemd[1]: Created slice System Slice.
    [ 3.898682] systemd[1]: Starting File System Check on Root Device...
    [ 3.898945] systemd[1]: Starting system-systemd\x2dfsck.slice.
    [ 3.899095] systemd[1]: Created slice system-systemd\x2dfsck.slice.
    [ 3.899104] systemd[1]: Mounting Temporary Directory...
    [ 3.917769] systemd[1]: Starting system-getty.slice.
    [ 3.918013] systemd[1]: Created slice system-getty.slice.
    [ 3.956377] systemd[1]: Starting Create list of required static device nodes for the current kernel...
    [ 3.956919] systemd[1]: Mounting Debug File System...
    [ 3.968760] systemd[1]: Starting Apply Kernel Variables...
    [ 3.969194] systemd[1]: Starting udev Coldplug all Devices...
    [ 3.980915] systemd[1]: Started Set Up Additional Binary Formats.
    [ 3.980935] systemd[1]: Starting Setup Virtual Console...
    [ 3.982172] systemd[1]: Started Load Kernel Modules.
    [ 3.982193] systemd[1]: Mounted FUSE Control File System.
    [ 3.982211] systemd[1]: Mounting Configuration File System...
    [ 3.982612] systemd[1]: Mounting Huge Pages File System...
    [ 3.983050] systemd[1]: Mounting POSIX Message Queue File System...
    [ 3.983622] systemd[1]: Starting Journal Service...
    [ 3.984025] systemd[1]: Started Journal Service.
    [ 5.215071] systemd-udevd[143]: starting version 211
    [ 5.215716] EXT4-fs (sda10): re-mounted. Opts: data=ordered
    [ 5.979664] snd_hda_intel 0000:00:1b.0: irq 59 for MSI/MSI-X
    [ 6.251597] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input4
    [ 6.260869] ACPI: Lid Switch [LID0]
    [ 6.260910] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input5
    [ 6.260913] ACPI: Power Button [PWRB]
    [ 6.260940] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input6
    [ 6.260942] ACPI: Sleep Button [SBTN]
    [ 6.260969] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input7
    [ 6.260971] ACPI: Power Button [PWRF]
    [ 6.316336] wmi: Mapper loaded
    [ 6.325574] thermal LNXTHERM:00: registered as thermal_zone0
    [ 6.325577] ACPI: Thermal Zone [THM] (48 C)
    [ 6.325814] ACPI: AC Adapter [AC] (off-line)
    [ 6.325890] ACPI: Battery Slot [BAT0] (battery absent)
    [ 6.355035] [drm] Initialized drm 1.1.0 20060810
    [ 6.398515] input: PC Speaker as /devices/platform/pcspkr/input/input9
    [ 6.511173] input: 2.4GHZ RF ONLY MOUSE as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.1/input/input10
    [ 6.511296] hid-generic 0003:1BCF:0535.0001: input,hiddev0,hidraw1: USB HID v1.00 Mouse [2.4GHZ RF ONLY MOUSE] on usb-0000:00:14.0-4/input1
    [ 6.778869] psmouse serio1: synaptics: Touchpad model: 1, fw: 8.1, id: 0x1e2b1, caps: 0xd00123/0x840300/0x127800, board id: 2788, fw id: 1480745
    [ 6.814920] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input8
    [ 6.935874] mousedev: PS/2 mouse device common for all mice
    [ 6.974228] input: HDA Intel PCH Headphone Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input11
    [ 6.974578] mei_me 0000:00:16.0: irq 60 for MSI/MSI-X
    [ 6.974609] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 6.978615] ACPI Warning: 0x0000000000001828-0x000000000000182f SystemIO conflicts with Region \PMIO 1 (20131115/utaddress-251)
    [ 6.978620] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 6.978623] ACPI Warning: 0x0000000000000830-0x000000000000083f SystemIO conflicts with Region \GPRL 1 (20131115/utaddress-251)
    [ 6.978625] ACPI Warning: 0x0000000000000830-0x000000000000083f SystemIO conflicts with Region \GPR_ 2 (20131115/utaddress-251)
    [ 6.978628] ACPI Warning: 0x0000000000000830-0x000000000000083f SystemIO conflicts with Region \_SB_.PCI0.RP05.PEGP.GPIO 3 (20131115/utaddress-251)
    [ 6.978629] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 6.978630] ACPI Warning: 0x0000000000000800-0x000000000000082f SystemIO conflicts with Region \GPRL 1 (20131115/utaddress-251)
    [ 6.978632] ACPI Warning: 0x0000000000000800-0x000000000000082f SystemIO conflicts with Region \GPR_ 2 (20131115/utaddress-251)
    [ 6.978634] ACPI Warning: 0x0000000000000800-0x000000000000082f SystemIO conflicts with Region \IO_D 3 (20131115/utaddress-251)
    [ 6.978636] ACPI Warning: 0x0000000000000800-0x000000000000082f SystemIO conflicts with Region \_SB_.PCI0.RP05.PEGP.GPIO 4 (20131115/utaddress-251)
    [ 6.978637] ACPI Warning: 0x0000000000000800-0x000000000000082f SystemIO conflicts with Region \_SB_.IOPH 5 (20131115/utaddress-251)
    [ 6.978639] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 6.978640] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 6.978725] ACPI Warning: 0x000000000000efa0-0x000000000000efbf SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20131115/utaddress-251)
    [ 6.978730] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 6.979647] [drm] Memory usable by graphics device = 2048M
    [ 6.979651] checking generic (c0000000 7e9000) vs hw (c0000000 10000000)
    [ 6.979652] fb: conflicting fb hw usage inteldrmfb vs EFI VGA - removing generic driver
    [ 6.979667] Console: switching to colour dummy device 80x25
    [ 7.027190] i915 0000:00:02.0: irq 61 for MSI/MSI-X
    [ 7.027200] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [ 7.027201] [drm] Driver supports precise vblank timestamp query.
    [ 7.027320] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 7.080108] cfg80211: Calling CRDA to update world regulatory domain
    [ 7.086677] fbcon: inteldrmfb (fb0) is primary device
    [ 7.168718] Intel(R) Wireless WiFi driver for Linux, in-tree:
    [ 7.168718] Copyright(c) 2003-2013 Intel Corporation
    [ 7.168873] iwlwifi 0000:02:00.0: irq 62 for MSI/MSI-X
    [ 7.226143] Bluetooth: Core ver 2.17
    [ 7.226154] NET: Registered protocol family 31
    [ 7.226154] Bluetooth: HCI device and connection manager initialized
    [ 7.226160] Bluetooth: HCI socket layer initialized
    [ 7.226161] Bluetooth: L2CAP socket layer initialized
    [ 7.226163] Bluetooth: SCO socket layer initialized
    [ 7.242079] usbcore: registered new interface driver btusb
    [ 7.244675] media: Linux media interface: v0.10
    [ 7.256730] Bluetooth: hci0: read Intel version: 370710018002030d33
    [ 7.256731] Bluetooth: hci0: Intel device is already patched. patch num: 33
    [ 7.259309] Linux video capture interface: v2.00
    [ 7.273794] uvcvideo: Found UVC 1.00 device Integrated_Webcam_HD (0c45:6705)
    [ 7.312920] input: Integrated_Webcam_HD as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/input/input12
    [ 7.312987] usbcore: registered new interface driver uvcvideo
    [ 7.312988] USB Video Class driver (1.1.1)
    [ 7.374427] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
    [ 7.455740] iTCO_vendor_support: vendor-support=0
    [ 7.478306] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 7.478331] iTCO_wdt: Found a Lynx Point_LP TCO device (Version=2, TCOBASE=0x1860)
    [ 7.478424] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 7.731609] input: Dell WMI hotkeys as /devices/virtual/input/input13
    [ 8.366783] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
    [ 8.740790] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 8.740799] r8169 0000:03:00.1: can't disable ASPM; OS doesn't have ASPM control
    [ 8.746908] r8169 0000:03:00.1: irq 63 for MSI/MSI-X
    [ 8.747108] r8169 0000:03:00.1 eth0: RTL8411 at 0xffffc90004ef6000, e0:db:55:c1:a4:84, XID 1c800880 IRQ 63
    [ 8.747110] r8169 0000:03:00.1 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
    [ 8.749881] Console: switching to colour frame buffer device 240x67
    [ 8.755049] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [ 8.755050] i915 0000:00:02.0: registered panic notifier
    [ 8.755385] ACPI Exception: AE_NOT_FOUND, Evaluating _DOD (20131115/video-1117)
    [ 8.755388] ACPI: Video Device [PEGP] (multi-head: no rom: yes post: no)
    [ 8.755439] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:2d/LNXVIDEO:00/input/input14
    [ 8.756847] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 8.757196] acpi device:4a: registered as cooling_device4
    [ 8.757318] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input15
    [ 8.757484] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 8.762426] iwlwifi 0000:02:00.0: loaded firmware version 22.24.8.0 op_mode iwlmvm
    [ 8.763348] snd_hda_intel 0000:00:03.0: irq 64 for MSI/MSI-X
    [ 8.810630] iwlwifi 0000:02:00.0: Detected Intel(R) Dual Band Wireless N 7260, REV=0x144
    [ 8.810704] iwlwifi 0000:02:00.0: L1 Enabled; Disabling L0S
    [ 8.810940] iwlwifi 0000:02:00.0: L1 Enabled; Disabling L0S
    [ 8.822328] microcode: CPU0 sig=0x40651, pf=0x40, revision=0x17
    [ 8.822359] platform microcode: Direct firmware load failed with error -2
    [ 8.822364] platform microcode: Falling back to user helper
    [ 8.770050] systemd-udevd[156]: renamed network interface eth0 to enp3s0f1
    [ 8.822931] microcode: CPU1 sig=0x40651, pf=0x40, revision=0x17
    [ 8.822943] platform microcode: Direct firmware load failed with error -2
    [ 8.822944] platform microcode: Falling back to user helper
    [ 8.823271] microcode: CPU2 sig=0x40651, pf=0x40, revision=0x17
    [ 8.823284] platform microcode: Direct firmware load failed with error -2
    [ 8.823286] platform microcode: Falling back to user helper
    [ 8.823582] microcode: CPU3 sig=0x40651, pf=0x40, revision=0x17
    [ 8.823590] platform microcode: Direct firmware load failed with error -2
    [ 8.823592] platform microcode: Falling back to user helper
    [ 8.823879] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 9.143183] Adding 16777212k swap on /dev/sda8. Priority:-1 extents:1 across:16777212k FS
    [ 9.194383] input: HDA Intel HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card0/input18
    [ 9.194453] input: HDA Intel HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card0/input17
    [ 9.194518] input: HDA Intel HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input16
    [ 9.260650] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
    [ 9.639211] systemd-journald[126]: Received request to flush runtime journal from PID 1
    [ 9.662917] intel_rapl: domain uncore energy ctr 26416:26416 not working, skip
    [ 17.212850] iwlwifi 0000:02:00.0: L1 Enabled; Disabling L0S
    [ 17.213080] iwlwifi 0000:02:00.0: L1 Enabled; Disabling L0S
    [ 17.225790] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
    [ 17.335522] r8169 0000:03:00.1 enp3s0f1: link down
    [ 17.335561] IPv6: ADDRCONF(NETDEV_UP): enp3s0f1: link is not ready
    [ 18.882354] bbswitch: version 0.8
    [ 18.882360] bbswitch: Found integrated VGA device 0000:00:02.0: \_SB_.PCI0.GFX0
    [ 18.882367] bbswitch: Found discrete VGA device 0000:04:00.0: \_SB_.PCI0.RP05.PEGP
    [ 9.289785] systemd-udevd[150]: renamed network interface wlan0 to wlp2s0
    [ 18.882376] ACPI Warning: \_SB_.PCI0.RP05.PEGP._DSM:
    [ 18.882379] Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131115/nsarguments-95)
    [ 18.882497] bbswitch: detected an Optimus _DSM function
    [ 18.882511] pci 0000:04:00.0: enabling device (0006 -> 0007)
    [ 18.882569] bbswitch: Succesfully loaded. Discrete card 0000:04:00.0 is on
    [ 18.884220] bbswitch: disabling discrete graphics
    [ 18.884227] ACPI Warning

    Hi, I have the same laptop and had the same problem.
    I have solved it by adding the following arguments to the kernel command line:
    acpi_osi=Linux acpi_backlight=vendor
    Note: acpi_osi only did the trick, but then the backlight service fails. acpi_backlight fixes the service.

  • [SOLVED] [...] to an access point only immediately after booting.

    I recently got a new router (D-link DIR-615E3), and installed dd-wrt on it. Now, the wired connection works perfectly, and so do wireless connections from any device but my computer.
    The connection works well if I connect it right after booting,
    root /home/martin # iwconfig wlan0 essid Hochelaga
    root /home/martin # iwconfig wlan0
    wlan0 IEEE 802.11bgn ESSID:"Hochelaga"
    Mode:Managed Frequency:2.462 GHz Access Point: B8:A3:86:4B:67:D0
    Bit Rate=36 Mb/s Tx-Power=15 dBm
    Retry long limit:7 RTS thr:off Fragment thr:off
    Encryption key:off
    Power Management:on
    Link Quality=70/70 Signal level=-23 dBm
    Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
    Tx excessive retries:0 Invalid misc:1 Missed beacon:0
    Yet, if I try to do it again at any other time, the video card doesn't associate itself with the access point.
    root /home/martin # iwconfig wlan0 essid off
    root /home/martin # iwconfig wlan0 essid Hochelaga
    root /home/martin # iwconfig wlan0
    wlan0 IEEE 802.11bgn ESSID:"Hochelaga"
    Mode:Managed Access Point: Not-Associated Tx-Power=15 dBm
    Retry long limit:7 RTS thr:off Fragment thr:off
    Encryption key:off
    Power Management:on
    I feel as if I'm missing something obvious, yet I've been trying for a long time and I didn't find any solution. Can someone help me in here?
    Here's is my video card information.
    root /home/martin # lspci | grep Wireless
    04:00.0 Network controller: Atheros Communications Inc. AR9285 Wireless Network Adapter (PCI-Express) (rev 01)
    Last edited by mFixman (2012-04-14 03:24:25)

    skunktrader wrote:The ath9k driver is broken in 3.3.1 - either wait for 3.3.2 (a few days) or downgrade.  Search the forum -- there are MANY threads with workarounds
    Indeed, that was the problem.

  • Have to kill pulseaudio after boot the get audio to work

    I have a Logitech G35 USB Headset and I have this annoying problem where I have to kill pulseaudio with "pulseaudio -k" to get it to work for most apps.
    Audio only works right after boot in a few apps, like VLC and Firefox with Flash Player (e.g. youtube). But for most other apps, like Chrome, Amarok, Spotify, etc. I have to kill pulseaudio first.
    I've read the wiki up and down, my USB headset is set as default audio device and I have no external speakers I user.
    Here is some output that might be relevant:
    aplay -l:
    **** List of PLAYBACK Hardware Devices ****
    card 0: Headset [Logitech G35 Headset], device 0: USB Audio [USB Audio]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 1: PCH [HDA Intel PCH], device 0: ALC892 Analog [ALC892 Analog]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 1: PCH [HDA Intel PCH], device 1: ALC892 Digital [ALC892 Digital]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 2: HDMI [HDA ATI HDMI], device 3: HDMI 0 [HDMI 0]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    aplay -L:
    null
    Discard all samples (playback) or generate zero samples (capture)
    pulse
    PulseAudio Sound Server
    sysdefault:CARD=Headset
    Logitech G35 Headset, USB Audio
    Default Audio Device
    front:CARD=Headset,DEV=0
    Logitech G35 Headset, USB Audio
    Front speakers
    surround21:CARD=Headset,DEV=0
    Logitech G35 Headset, USB Audio
    2.1 Surround output to Front and Subwoofer speakers
    surround40:CARD=Headset,DEV=0
    Logitech G35 Headset, USB Audio
    4.0 Surround output to Front and Rear speakers
    surround41:CARD=Headset,DEV=0
    Logitech G35 Headset, USB Audio
    4.1 Surround output to Front, Rear and Subwoofer speakers
    surround50:CARD=Headset,DEV=0
    Logitech G35 Headset, USB Audio
    5.0 Surround output to Front, Center and Rear speakers
    surround51:CARD=Headset,DEV=0
    Logitech G35 Headset, USB Audio
    5.1 Surround output to Front, Center, Rear and Subwoofer speakers
    surround71:CARD=Headset,DEV=0
    Logitech G35 Headset, USB Audio
    7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
    sysdefault:CARD=PCH
    HDA Intel PCH, ALC892 Analog
    Default Audio Device
    front:CARD=PCH,DEV=0
    HDA Intel PCH, ALC892 Analog
    Front speakers
    surround21:CARD=PCH,DEV=0
    HDA Intel PCH, ALC892 Analog
    2.1 Surround output to Front and Subwoofer speakers
    surround40:CARD=PCH,DEV=0
    HDA Intel PCH, ALC892 Analog
    4.0 Surround output to Front and Rear speakers
    surround41:CARD=PCH,DEV=0
    HDA Intel PCH, ALC892 Analog
    4.1 Surround output to Front, Rear and Subwoofer speakers
    surround50:CARD=PCH,DEV=0
    HDA Intel PCH, ALC892 Analog
    5.0 Surround output to Front, Center and Rear speakers
    surround51:CARD=PCH,DEV=0
    HDA Intel PCH, ALC892 Analog
    5.1 Surround output to Front, Center, Rear and Subwoofer speakers
    surround71:CARD=PCH,DEV=0
    HDA Intel PCH, ALC892 Analog
    7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
    iec958:CARD=PCH,DEV=0
    HDA Intel PCH, ALC892 Digital
    IEC958 (S/PDIF) Digital Audio Output
    hdmi:CARD=HDMI,DEV=0
    HDA ATI HDMI, HDMI 0
    HDMI Audio Output
    Even "pacmd list-sink-inputs" will show something, when I for example open a Youtube video with Chromium, which will then play the video as an HTML Video element:
    1 sink input(s) available.
    index: 0
    driver: <protocol-native.c>
    flags: START_CORKED
    state: RUNNING
    sink: 1 <alsa_output.pci-0000_00_1b.0.analog-stereo>
    volume: front-left: 51764 / 79% / -6,15 dB, front-right: 51764 / 79% / -6,15 dB
    balance 0,00
    muted: no
    current latency: 45,90 ms
    requested latency: 23,22 ms
    sample spec: s16le 2ch 44100Hz
    channel map: front-left,front-right
    Stereo
    resample method: (null)
    module: 14
    client: 12 <Chromium>
    properties:
    application.icon_name = "chromium-browser"
    media.name = "Playback"
    application.name = "Chromium"
    native-protocol.peer = "UNIX socket client"
    native-protocol.version = "30"
    application.process.id = "3276"
    application.process.user = "simon"
    application.process.host = "archer"
    application.process.binary = "chromium"
    window.x11.display = ":0"
    application.language = "en_US.UTF-8"
    application.process.machine_id = "58c317e240fc4e4a925bf417ad9c6c99"
    application.process.session_id = "c2"
    module-stream-restore.id = "sink-input-by-application-name:Chromium"
    Also, "pulseaudio --check" will never ever output anything. Is this normal? What kind of output should I get?
    I think something is wrong with my pulseaudio, but I'm unable to fix it. I'd appreciate any hints and leads! Thanks

    Try moving to a backup folder any pulseaudio related .desktop files from the '/etc/xdg/autostart/' folder and reboot see if you still have to kill pulseaudio still.

Maybe you are looking for

  • ERROR OGG-00685  begin time : extract process abending

    Hi Gurus, I have installed Oracle Golden Gate in the below environment.But unable to start extract process I am newer to OGG and its production setup. Primary site (source): This is production DB and up and running. RAC 2 nodes Oracle RAC 11.2.0.1.0

  • My screen is now long horizontally and short from top to bottom.

    so now all the cars I search for are long! my friend who is computer savvy tried to help. HELP, Stranded in looooongville, Duckydoodle PS i still have the buttons at the top.

  • .configure gives an error

    Hi all, I'm trying to compile BerkeleyDB-C 4.7.25 on Linux but .configure gives me an error I don't know how to fix. uname -s -p -m -i -o -v Linux #1 SMP Wed May 27 17:14:37 EDT 2009 i686 i686 i386 GNU/Linux more /etc/redhat-release Fedora release 11

  • Voting file is offline

    Hi Gurus, I seen many time that Oracle Enterprise manager raise alert for "Voting disk offline". But this error does not appear into cluster alert log (alert<Node-name>.log). Even, I have checked O/S log (/var/log/messages) but never found error rele

  • Best place in publishServiceProvider to create collection sets on the server?

    I'm developing a LR publishing plugin that talks to a custom-built back-end.  Collections on the server are created as needed within the publishServiceProvider.processRenderedPhotos function, which is working fine. Looking towards supporting collecti