Need help with boot problem: Intel ME unconfiguration in progress

Hello,
several months ago I had an accident at work and spilled A LOT of water all over my T400...  so much that the laptop just powered down on its own (i guess those keyboard spill guards were overwelmed LOL).  I let it dry for a couple of days, and everything worked as normal, except that when I unplug the AC power, next reboot I get a message during BIOS that says "Intel ME unconfiguration in progress."  Then I get a screen listing a bunch of table mismatches, etc. (there are a whole bunch and it's a quick flash, so I haven't tried to write them all down).  Then it reboots, and I get the "Security chip is generating endorsement key pair."  Then it reboots again and everything is fine. 
As long as the AC power is connected, I can reboot many times without going through tthis process, but if I unplug it and run on battery power, I have to go through this again when I reboot.  It almost seems like I fried some kind of internal battery or something (?) that keeps track of the Intel ME?
Some have suggested that I disable TPM in the BIOS.  I tried that, but couldn't actually find that option in the BIOS.  I was able to disable Intel AMT (not sure if that is the same as TPM), but that had no effect.  I also tried to disable the security chip, and that didn't work either.
Does anyone have any idea of what might be going on here?
Thanks!

Hello mate, TPM is same as security chip.
Intel ME is related to AMT.
Does your system save date and hour and your BIOS settings ?
Knowledge is of two kinds. We know a subject ourselves, or we know where we can find information on it.
ThinkPad T510 4313-CTO Windows 8 x64 - Intel Core i7-620M - NVIDIA NVS 3100M - 8GB RAM - 240GB SSD- Intel Centrino Ultimate-N 6300 - Gobi 2000.
ThinkPad Helix 3697-CTO Windows 8.1 x64 - Intel Core i7-3667U - Intel HD Graphics 4000 - 8GB RAM- 256GB SSD - Intel Centrino Advanced-N 6205 - Ericsson C5621gw

Similar Messages

  • Need help with daq problem

    Hi,
    I need to generate a clock with a period of 20 micro seconds, duty cycle of
    approx 20% and a data line as well as an address line all linked to the clock
    pulse.
    I have tried many different solutions, all using the Daq PCI-1200 but nothing
    seems to work correctly. Usually the system bombs and I have to do a manual
    reset to over come the problem.
    Any suggestions?
    Ken

    Hallo, Ken,
    Du meintest am 20.02.00 zum Thema Need help with daq problem:
    > I need to generate a clock with a period of 20 micro seconds, duty
    > cycle of approx 20% and a data line as well as an address line all
    > linked to the clock pulse.
    You'll need an external clock, expecially under Windows.
    Windows ticks with appr. 18 Hz, and the CPU tick isn't always available
    when Windows tasks multi.
    Viele Gruesse!
    Helmut

  • Need help with getResource() problem under weblogic 6.1

    Hey all,
              I've got a serious problem that I can't figure out. This should be really
              simple - but it's alluding me. I have an ear file with a number of servlets
              inside it. This ear file also contains a resource that my servlets want to
              read from. This resource is located (within the ear file) at:
              "/content/structure/a.txt". The file contains raw ascii.
              To have my serlvet read from this file, I thought it would be as simple as:
              URL content =
              servlet.getServletContext().getResource("/content/structure/a.txt");
              // pw is an instance of PrintWriter
              pw.print(content.getContent());
              However, when I execute the above I get the following exception:
              java.lang.NullPointerException
              at
              java.net.URLConnection.stripOffParameters(URLConnection.java:1011)
              at java.net.URLConnection.getContentHandler(URLConnection.java:979)
              at java.net.URLConnection.getContent(URLConnection.java:581)
              OK, so fine - I figure that I'm new to this. The documentation for the URL
              class tells me there is another way around this. It says that rather then
              calling getContent() directly, I can open a stream on the URL and read from
              that, like so:
              URL content =
              servlet.getServletContext().getResource("/content/structure/scenario2resourc
              es.txt");
              FileInputStream fis = content.openStream();
              but when I do this I get the following different exception:
              java.lang.ClassCastException: weblogic.utils.zip.SafeZipFileInputStream^M
              at Utility.writeFileToOutput(Utility.java:134)^M
              Apparently this thing is trying to return a web-logic-specific stream (which
              is incompatible with an FileInputStream) - which I don't want to use or
              learn about since I want my stuff to work under other webservers.
              Can anyone tell me what I'm doing wrong? This should be simple.
              -john
              John Hilgedick
              WisdomTools, Inc.
              [email protected]
              

    Wenjin,
              I appreciate your response. I tried treating it as a normal InputStream -
              but it didn't make any difference. Here's what I did:
              URL content =
              servlet.getServletContext().getResource("/content/structure/scenario2resourc
              es.txt");
              InputStream is = (InputStream)content.getContent();
              And here's the exception:
              java.lang.NullPointerException^M
              at
              java.net.URLConnection.stripOffParameters(URLConnection.java:1011)^M
              at
              java.net.URLConnection.getContentHandler(URLConnection.java:979)^M
              at java.net.URLConnection.getContent(URLConnection.java:554)^M
              at java.net.URL.getContent(URL.java:807)^M
              at Utility.writeFileToOutput(Utility.java:134)^M
              You can see that it is definitely breaking somewhere in getContent().
              If you have any other ideas, I'd appreciate hearing about them.
              -john
              ----- Original Message -----
              From: "Wenjin Zhang" <[email protected]>
              Newsgroups: weblogic.developer.interest.servlet
              Sent: Wednesday, November 20, 2002 5:03 PM
              Subject: Re: Need help with getResource() problem under weblogic 6.1
              >
              > The "/" in getServletContext().getResource("/content/structure/a.txt")
              means the
              > web (WAR) application root, not your EAR root.
              >
              > The ClassCastException is because that content.openStream() is not
              FileInputStream
              > and has nothing to do with Weblogic. You should treat it as normal
              InputStream.
              >
              >
              > "John Hilgedick" <[email protected]> wrote:
              > >Hey all,
              > >
              > >I've got a serious problem that I can't figure out. This should be
              really
              > >simple - but it's alluding me. I have an ear file with a number of
              servlets
              > >inside it. This ear file also contains a resource that my servlets want
              > >to
              > >read from. This resource is located (within the ear file) at:
              > >"/content/structure/a.txt". The file contains raw ascii.
              > >
              > >To have my serlvet read from this file, I thought it would be as simple
              > >as:
              > >
              > >URL content =
              > >servlet.getServletContext().getResource("/content/structure/a.txt");
              > >// pw is an instance of PrintWriter
              > >pw.print(content.getContent());
              > >
              > >However, when I execute the above I get the following exception:
              > >
              > >java.lang.NullPointerException
              > > at
              > >java.net.URLConnection.stripOffParameters(URLConnection.java:1011)
              > > at
              java.net.URLConnection.getContentHandler(URLConnection.java:979)
              > > at java.net.URLConnection.getContent(URLConnection.java:581)
              > >
              > >OK, so fine - I figure that I'm new to this. The documentation for the
              > >URL
              > >class tells me there is another way around this. It says that rather
              > >then
              > >calling getContent() directly, I can open a stream on the URL and read
              > >from
              > >that, like so:
              > >
              > >URL content =
              >
              >servlet.getServletContext().getResource("/content/structure/scenario2resour
              c
              > >es.txt");
              > >FileInputStream fis = content.openStream();
              > >
              > >but when I do this I get the following different exception:
              > >
              > >java.lang.ClassCastException: weblogic.utils.zip.SafeZipFileInputStream^M
              > > at Utility.writeFileToOutput(Utility.java:134)^M
              > >
              > >Apparently this thing is trying to return a web-logic-specific stream
              > >(which
              > >is incompatible with an FileInputStream) - which I don't want to use
              > >or
              > >learn about since I want my stuff to work under other webservers.
              > >
              > >Can anyone tell me what I'm doing wrong? This should be simple.
              > >
              > >-john
              > >
              > >
              > >--
              > >John Hilgedick
              > >WisdomTools, Inc.
              > >[email protected]
              > >
              > >
              >
              

  • Need help with boot up password

    Hi I need help with my IBM G41 think pad I when to sleep one night and I put some papers on the keys then close the lid with the papers in between on top of the keys now I get need a password when I started my PC can some some help me with this . Or is there any one whom had this some problem . I see a lock on the screen .

    Sorry if this seems like a stupid question, but why don't you have the password already? did the computer just randomly lock you out of it? If that is the case, that would be really strange. If there is no bios password on the computer, you should be able to reset the password in the bios.
    http://www.google.com/search?q=lenovo+boot+password+reset&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:defficial&client=firefox-a

  • Need help with Boot Camp and Win 7

    I have iMac 27" (iMac11,1) 2.8 GHz, quad core, 8MB of L3, 8GB of Memory, Boot ROM Version IM111.0034.B02 and SMC Version 1.54f36 and can't get this machine to run Windows 7 using Boot Camp.  I have successfully loaded Win 7 but when it claims to be starting I only get a black screen after initial start up.
    I have checked and rechecked my software updates and have read and reread the instructions, however, I can't update my Boot Camp to 3.1 (my machine says i'm running 3.0.4) and I need 3.1 but can't load 3.1 because it is an exe file that has to be loaded into Windows after I load Windows but can't open Windows because I can't load Boot Camp 3.1.  That's my excuse anyway, so I'm missing something I just can't figure out what it is....this is where you come in!
    Thanks.
    Mike

    Mike,
    I'm not going to be much help with Boot Camp however I can direct you to the Boot Camp forum where there are more people that know how to troubleshoot it and Windoze 7. You can find it at:
    https://discussions.apple.com/community/windows_software/boot_camp
    Roger

  • Need Help with Scrolling Problem

    I have a JTree displayed in scrollpane. Based on search criterial I select the nodes where the search criteria is found. If the match is located off the screen further down into the tree, the node is highlighted but the scrollpane doesn't automatically scroll down to show it. Any help with this problem is appreciated.

    Wow.. Thanks. I thought I would need some fancy code to handle this problem. scrollPathToVisible did it for me. Thanks.

  • Need help with boot camp.

    Hi. I bought Windows Vista Home Basic today to install on my mac with boot camp. I let boot camp partition the drive with 32GB, and when I ran the Vista installer, it said that the partition needs to be formatted with NTFS. I go ahead and quit the installer, the machine reboots, but it boots from the CD. I tried holding down X and Option-Cmd-Shift-Del to no avail.
    How can I just boot from the HDD instead of the optical drive?
    Help would be much appreciated.

    Thanks for answering, but I figured out the problem the minute after I posted. First of all, I didn't read the info 2 pages after the page I was on about boot camp (didn't know you could format it then and there), and all I had to do was press the eject key after the startup chime sounded
    So now I successfully have a 50GB partition to Vista, fired up the Halo Trial, and fragged some noobz.
    However I do have another problem that I need some help with, whenever I boot into vista, my internet is extremely slow. I looked up the problem and I found that I needed to install another driver called Broadcom or something, however when I double clicked on it, Vista asked me to cancel or allow (chuckles) and nothing happens. If I reset my router, however, the problems are fixed and I'm back at 10Mbps.
    P.S. I didn't back up Leopard since I hardly have anything on my Mac for now as I just bought it 2 weeks ago, and it only takes an hour or so to reinstall; but I'll buy a drive for Time Machine soon. Time Machine does allow you to restore your files after a Leopard reinstall right?
    Thanks.

  • Need help with a problem after cloning my HD....

    I recently cloned my HD to a backup drive. I did an erase and install of Tiger on my original drive. I recently cloned everything back onto my original drive from my backup drive. Now when I go to boot up on my original drive, for the first time ever I must type a Username and Password to log on to the computer. Trouble with this is, I tried my username and password and it would not work. I double, triple, quadruple checked my spelling and tried different combinations just in case i was being stupid, NOPE. It won't let me log on to my main HD. Can anyone help with this?

    Let me get this straight. You did
    1: Cloned your original boot drive to a external - not a problem
    (did you boot from the clone to check it out?, did you use cloning software or???)
    2: You erased your original boot drive - ok no problem.
    3: You then installed Tiger on your original boot drive - ok no problem there
    4: But you cloned from your clone back onto your original, freshly installed Tiger drive?
    Why did you do this?
    Cloning copies the whole drive, all the little hidden stuff, copy protection etc.
    That's why it's called a clone.
    Did you mean to say you copied certain folders/files from the clone onto the new Tiger install on your original boot drive?
    What folders/files was these?
    You need to copy the contents of certain folders inside your User folder, not the folders themselves.
    What software did you use to clone with?
    Read my detailed instructions here
    http://homepage.mac.com/hogfish/Personal6.html
    http://homepage.mac.com/hogfish/Personal10.html

  • I need help with Boot Camp 2.1! Win XP

    I have downloaded the update on Windows XP SP2, but it will not install.
    "The installation encountered errors.... Try again at a different time." That's what comes up.
    I have tried everything! The command shell thing where you have to type the path of the update file (cmd.exe), I have checked the language code (yes it is 1033) and I have downloaded the files seperately. NOTHING WORKS! I have even re-installed Boot Camp.
    I have:
    Mac Pro
    10.5.4 Leopard
    Windows XP SP2
    Any help will be appreciated!

    I have found a solution!
    Well not for installing Boot Camp 2.1 but for installing XP SP3 with Boot Camp 2.0!
    I found it on a website but I can't remember which one. But here is what I did.
    Start> Run:
    Type: regedit
    Click "OK"
    On the left side of the window there should be a panel with folders name similar to "HKEY_....". Click on:
    HKEYLOCALMACHINE> SOFTWARE> Microsoft> Windows> Current Version> Double click "Setup"
    On the window should appear a few files next to the panel on the left. The file type should have "REG" then something after it.
    Check in the "Name" column that you DO NOT have "BootDir". If you do then this is not the answer for you!
    If you don't have that file:
    Click EDIT> NEW> STRING VALUE
    Name it: BootDir
    Right click the file and go to Modify.
    Then type in: C:\ and press OK (Or if another drive is your main drive (eg. D) then type in the letter of that drive instead of C (eg. D:\)).
    Restart the computer and go into Windows again. Then download the SP3 update in whatever way you have done before.
    The installation should continue without the message saying "You need more memory" or something.
    FOR WINDOWS XP!

  • Help with boot problems

    I was trying to install XP last night on my imac with boot camp and ran into this problem.
    The partition I would create in Boot Camp would never show when rebooting with the XP cd so I thought, Maybe its on the next screen of XP install.
    I SELECTED the only partition it showed me and realized that was not the one and exited XP setup. Now It shows my Mac HD as "windows". Note: I did NOT format the drive, nor tell it to do anything... I think it only erased the boot record?
    How can I restore the boot record of OS X or is there any way to get data off that drive before formatting/reinstalling OS X?
    Any help would be appreciated!! Thanks guys!

    More info that might help, still having the problem.
    I had been following along on the Boot Camp Installation Guide, when I boot into Windows Setup, I was looking for the correct partition, all I see is one partition "C:Partition1 Unknown"....
    I SELECTED it, and then I backed out of the Setup. I didn't format it.
    I didn't see the <BOOTCAMP> partition in the list, and that's what I was looking for.
    Now the OS X drive shows as "windows" and unable to boot into OS X.....

  • I need help with simple problems. im a student.

    i'd like to be advanced with my studies so i will post questions.. i need help on how to answer. thank you.
    1. create a java program that will evaluate if the value entered is a positive, negative, vowel, consonant and special characters.
    im actually done with the positive and negative using if else statements.. i used an integer data type. now my question is how do conjoin the characters when i need to evaluate a vowel and a consonant. i cant use char either. please help. i dont know what to do yet.
    2. create java program that will translate the input from numbers to words. e.g. input:123 output: one hundred twenty-three.
    i have an idea to use a switch case statement. but i have no idea on how will i be able to do it. so if you guys can help me.. well then thankies..

    Welcome to the Sun forums. First, please note that you have posted in the wrong forum. This forum is for topics related to Sun's JavaHelp product. You should post your questions in the New to Java forum.
    As part of your learning, you will have to develop the ability to select an approach to a problem, create a design that reflects that approach, and then implement the design with code that you create.
    So, it's inappropriate for us to take the problem statement that you have been given and short-circuit your learning process by giving you the implemented problem solution. We can comment on the individual questions that you may have, and point out problems and errors that we see in the code that you develop.
    As a hint, when you are stuck, forget about Java and programming. Just start with a sheet of paper and a pencil, and figure out how to layout the task on paper. The consider how to translate that to programming.
    If you have problems, post short example code that shows the problem, and explain your question clearly. We can't read minds.
    Make sure you post code correctly so that it's not mangled by the forum software, and so that formatting is maintained. Select your typed or pasted code block and press the CODE button above the typing area.

  • I like many need help with a problem of burning cds

    I am trying to burn a simple playlist to a memorex music cd-r. Every time I try a message pops up with the error code of 4261 and then pops out the cd. Any help will be very much appriciated as I am at my wits end with this problem. Thank you so very much!
    Windows, Media Center PC    

    Place the PSU in and connect the 20 pins connector and the 4 pins connector will do.
    You may also try swapping the RAMs with another one to test f the RAM is to be at fault.

  • Need help with boot

    Hello all!
    After some weeks I didn't turn on my pc, now it doesn't boot. Udev doesn't start while booting. Just writes what can't mount /dev/sda3 partition whitch is my / partition and I need to type my root password or press Ctrl+D to restart. I use grub2, whe menu.lst file is almost original and I have no idea what's wrong. Help me please.
    P.S. when I type my password system takes me to console and I am allowed to use console programs like ranger. In ranger I can see my / partition, but where is no my home partition in /home directory, which is /dev/sda4.
    LiveCD works ok and I am allowed to use all my data and partitions.

    MoonSwan wrote:If you have a kernel log or faillog or dmesg.log or syslog ... assuming they have errors that they are spitting out for us to look at.
    dmesg.log:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 2.6.39-ARCH (thomas@evey) (gcc version 4.6.0 20110603 (prerelease) (GCC) ) #1 SMP PREEMPT Mon Jun 27 21:26:22 CEST 2011
    [ 0.000000] Command line: root=/dev/disk/by-uuid/de5aed76-4351-4c19-a82f-699a9f2661f9 ro nomodeset
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
    [ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 00000000cfee0000 (usable)
    [ 0.000000] BIOS-e820: 00000000cfee0000 - 00000000cfee3000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000cfee3000 - 00000000cfef0000 (ACPI data)
    [ 0.000000] BIOS-e820: 00000000cfef0000 - 00000000cff00000 (reserved)
    [ 0.000000] BIOS-e820: 00000000e0000000 - 00000000e4000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
    [ 0.000000] BIOS-e820: 0000000100000000 - 0000000130000000 (usable)
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI 2.4 present.
    [ 0.000000] DMI: Gigabyte Technology Co., Ltd. EP43-S3L/EP43-S3L, BIOS F8 09/22/2008
    [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [ 0.000000] No AGP bridge found
    [ 0.000000] last_pfn = 0x130000 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-CFFFF write-protect
    [ 0.000000] D0000-EFFFF uncachable
    [ 0.000000] F0000-FFFFF write-through
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F00000000 write-back
    [ 0.000000] 1 base 0E0000000 mask FE0000000 uncachable
    [ 0.000000] 2 base 0D0000000 mask FF0000000 uncachable
    [ 0.000000] 3 base 100000000 mask FC0000000 write-back
    [ 0.000000] 4 base 130000000 mask FF0000000 uncachable
    [ 0.000000] 5 base 0CFF00000 mask FFFF00000 uncachable
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820 update range: 00000000cff00000 - 0000000100000000 (usable) ==> (reserved)
    [ 0.000000] last_pfn = 0xcfee0 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [ffff8800000f5690] f5690
    [ 0.000000] initial memory mapped : 0 - 20000000
    [ 0.000000] Base memory trampoline at [ffff88000009a000] 9a000 size 20480
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000cfee0000
    [ 0.000000] 0000000000 - 00cfe00000 page 2M
    [ 0.000000] 00cfe00000 - 00cfee0000 page 4k
    [ 0.000000] kernel direct mapping tables up to cfee0000 @ cfeda000-cfee0000
    [ 0.000000] init_memory_mapping: 0000000100000000-0000000130000000
    [ 0.000000] 0100000000 - 0130000000 page 2M
    [ 0.000000] kernel direct mapping tables up to 130000000 @ 12fffa000-130000000
    [ 0.000000] RAMDISK: 37e40000 - 37ff0000
    [ 0.000000] ACPI: RSDP 00000000000f7080 00014 (v00 GBT )
    [ 0.000000] ACPI: RSDT 00000000cfee3040 00038 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    [ 0.000000] ACPI: FACP 00000000cfee30c0 00074 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    [ 0.000000] ACPI: DSDT 00000000cfee3180 04B8A (v01 GBT GBTUACPI 00001000 MSFT 0100000C)
    [ 0.000000] ACPI: FACS 00000000cfee0000 00040
    [ 0.000000] ACPI: HPET 00000000cfee7e80 00038 (v01 GBT GBTUACPI 42302E31 GBTU 00000098)
    [ 0.000000] ACPI: MCFG 00000000cfee7f00 0003C (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    [ 0.000000] ACPI: APIC 00000000cfee7d80 00084 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    [ 0.000000] ACPI: SSDT 00000000cfee85a0 003AB (v01 PmRef CpuPm 00003000 INTL 20040311)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at 0000000000000000-0000000130000000
    [ 0.000000] NUMA: Using 63 for the hash shift.
    [ 0.000000] Initmem setup node 0 0000000000000000-0000000130000000
    [ 0.000000] NODE_DATA [000000012fffb000 - 000000012fffffff]
    [ 0.000000] [ffffea0000000000-ffffea00043fffff] PMD -> [ffff88012b600000-ffff88012effffff] on node 0
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] DMA32 0x00001000 -> 0x00100000
    [ 0.000000] Normal 0x00100000 -> 0x00130000
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] early_node_map[3] active PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009f
    [ 0.000000] 0: 0x00000100 -> 0x000cfee0
    [ 0.000000] 0: 0x00100000 -> 0x00130000
    [ 0.000000] On node 0 totalpages: 1048175
    [ 0.000000] DMA zone: 56 pages used for memmap
    [ 0.000000] DMA zone: 5 pages reserved
    [ 0.000000] DMA zone: 3922 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 14280 pages used for memmap
    [ 0.000000] DMA32 zone: 833304 pages, LIFO batch:31
    [ 0.000000] Normal zone: 2688 pages used for memmap
    [ 0.000000] Normal zone: 193920 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] disabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 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: 0x8086a201 base: 0xfed00000
    [ 0.000000] SMP: Allowing 4 CPUs, 2 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
    [ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 00000000cfee0000 - 00000000cfee3000
    [ 0.000000] PM: Registered nosave memory: 00000000cfee3000 - 00000000cfef0000
    [ 0.000000] PM: Registered nosave memory: 00000000cfef0000 - 00000000cff00000
    [ 0.000000] PM: Registered nosave memory: 00000000cff00000 - 00000000e0000000
    [ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000e4000000
    [ 0.000000] PM: Registered nosave memory: 00000000e4000000 - 00000000fec00000
    [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 0000000100000000
    [ 0.000000] Allocating PCI resources starting at e4000000 (gap: e4000000:1ac00000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88012fc00000 s83136 r8192 d23360 u524288
    [ 0.000000] pcpu-alloc: s83136 r8192 d23360 u524288 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1031146
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: root=/dev/disk/by-uuid/de5aed76-4351-4c19-a82f-699a9f2661f9 ro nomodeset
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240
    [ 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: 4055384k/4980736k available (4019k kernel code, 788036k absent, 137316k reserved, 3335k data, 712k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Preemptable hierarchical RCU implementation.
    [ 0.000000] RCU-based detection of stalled CPUs is disabled.
    [ 0.000000] Verbose stalled-CPUs detection is disabled.
    [ 0.000000] NR_IRQS:2304
    [ 0.000000] Console: colour VGA+ 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] Fast TSC calibration using PIT
    [ 0.000000] Detected 3166.654 MHz processor.
    [ 0.003336] Calibrating delay loop (skipped), value calculated using timer frequency.. 6335.19 BogoMIPS (lpj=10555513)
    [ 0.003395] pid_max: default: 32768 minimum: 301
    [ 0.003510] Security Framework initialized
    [ 0.003542] AppArmor: AppArmor disabled by boot time parameter
    [ 0.006914] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.008537] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.009309] Mount-cache hash table entries: 256
    [ 0.009640] Initializing cgroup subsys ns
    [ 0.009670] ns_cgroup deprecated: consider using the 'clone_children' flag without the ns_cgroup.
    [ 0.009705] Initializing cgroup subsys cpuacct
    [ 0.009756] Initializing cgroup subsys memory
    [ 0.009796] Initializing cgroup subsys devices
    [ 0.009825] Initializing cgroup subsys freezer
    [ 0.009854] Initializing cgroup subsys net_cls
    [ 0.009882] Initializing cgroup subsys blkio
    [ 0.009950] CPU: Physical Processor ID: 0
    [ 0.009978] CPU: Processor Core ID: 0
    [ 0.010007] mce: CPU supports 6 MCE banks
    [ 0.010041] CPU0: Thermal monitoring enabled (TM2)
    [ 0.010071] using mwait in idle threads.
    [ 0.010933] ACPI: Core revision 20110316
    [ 0.013361] ftrace: allocating 15965 entries in 63 pages
    [ 0.016697] Setting APIC routing to flat
    [ 0.017018] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.052003] CPU0: Intel(R) Core(TM)2 Duo CPU E8500 @ 3.16GHz stepping 0a
    [ 0.053330] Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver.
    [ 0.053330] ... version: 2
    [ 0.053330] ... bit width: 40
    [ 0.053330] ... generic registers: 2
    [ 0.053330] ... value mask: 000000ffffffffff
    [ 0.053330] ... max period: 000000007fffffff
    [ 0.053330] ... fixed-purpose events: 3
    [ 0.053330] ... event mask: 0000000700000003
    [ 0.070071] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.096674] Booting Node 0, Processors #1
    [ 0.096727] smpboot cpu 1: start_ip = 9a000
    [ 0.193346] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.203325] Brought up 2 CPUs
    [ 0.203357] Total of 2 processors activated (12706.79 BogoMIPS).
    [ 0.204779] devtmpfs: initialized
    [ 0.204779] PM: Registering ACPI NVS region at cfee0000 (12288 bytes)
    [ 0.204779] print_constraints: dummy:
    [ 0.204779] NET: Registered protocol family 16
    [ 0.204779] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.204779] ACPI: bus type pci registered
    [ 0.204779] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
    [ 0.204779] PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] reserved in E820
    [ 0.211260] PCI: Using configuration type 1 for base access
    [ 0.213358] bio: create slab <bio-0> at 0
    [ 0.213894] ACPI: EC: Look up EC in DSDT
    [ 0.218082] ACPI: SSDT 00000000cfee7f80 0022A (v01 PmRef Cpu0Ist 00003000 INTL 20040311)
    [ 0.218283] ACPI: Dynamic OEM Table Load:
    [ 0.218356] ACPI: SSDT (null) 0022A (v01 PmRef Cpu0Ist 00003000 INTL 20040311)
    [ 0.218513] ACPI: SSDT 00000000cfee8440 00152 (v01 PmRef Cpu1Ist 00003000 INTL 20040311)
    [ 0.218704] ACPI: Dynamic OEM Table Load:
    [ 0.218776] ACPI: SSDT (null) 00152 (v01 PmRef Cpu1Ist 00003000 INTL 20040311)
    [ 0.218946] ACPI: Interpreter enabled
    [ 0.218976] ACPI: (supports S0 S3 S4 S5)
    [ 0.219103] ACPI: Using IOAPIC for interrupt routing
    [ 0.221962] ACPI: No dock devices found.
    [ 0.221991] HEST: Table not found.
    [ 0.222020] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.222086] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
    [ 0.222185] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7]
    [ 0.222216] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff]
    [ 0.222246] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
    [ 0.222279] pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff]
    [ 0.222847] pci_root PNP0A03:00: host bridge window [mem 0xcff00000-0xfebfffff]
    [ 0.222888] pci 0000:00:00.0: [8086:2e20] type 0 class 0x000600
    [ 0.222915] pci 0000:00:01.0: [8086:2e21] type 1 class 0x000604
    [ 0.222936] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.222938] pci 0000:00:01.0: PME# disabled
    [ 0.222966] pci 0000:00:1a.0: [8086:3a37] type 0 class 0x000c03
    [ 0.223000] pci 0000:00:1a.0: reg 20: [io 0xe100-0xe11f]
    [ 0.223034] pci 0000:00:1a.1: [8086:3a38] type 0 class 0x000c03
    [ 0.223067] pci 0000:00:1a.1: reg 20: [io 0xe200-0xe21f]
    [ 0.223101] pci 0000:00:1a.2: [8086:3a39] type 0 class 0x000c03
    [ 0.223134] pci 0000:00:1a.2: reg 20: [io 0xe000-0xe01f]
    [ 0.223172] pci 0000:00:1a.7: [8086:3a3c] type 0 class 0x000c03
    [ 0.223185] pci 0000:00:1a.7: reg 10: [mem 0xe8104000-0xe81043ff]
    [ 0.223249] pci 0000:00:1b.0: [8086:3a3e] type 0 class 0x000403
    [ 0.223261] pci 0000:00:1b.0: reg 10: [mem 0xe8100000-0xe8103fff 64bit]
    [ 0.223303] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.223305] pci 0000:00:1b.0: PME# disabled
    [ 0.223319] pci 0000:00:1c.0: [8086:3a40] type 1 class 0x000604
    [ 0.223354] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.223357] pci 0000:00:1c.0: PME# disabled
    [ 0.223376] pci 0000:00:1c.4: [8086:3a48] type 1 class 0x000604
    [ 0.223418] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 0.223421] pci 0000:00:1c.4: PME# disabled
    [ 0.223436] pci 0000:00:1c.5: [8086:3a4a] type 1 class 0x000604
    [ 0.223478] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
    [ 0.223480] pci 0000:00:1c.5: PME# disabled
    [ 0.223498] pci 0000:00:1d.0: [8086:3a34] type 0 class 0x000c03
    [ 0.223531] pci 0000:00:1d.0: reg 20: [io 0xe300-0xe31f]
    [ 0.223565] pci 0000:00:1d.1: [8086:3a35] type 0 class 0x000c03
    [ 0.223599] pci 0000:00:1d.1: reg 20: [io 0xe400-0xe41f]
    [ 0.223633] pci 0000:00:1d.2: [8086:3a36] type 0 class 0x000c03
    [ 0.223666] pci 0000:00:1d.2: reg 20: [io 0xe500-0xe51f]
    [ 0.223704] pci 0000:00:1d.7: [8086:3a3a] type 0 class 0x000c03
    [ 0.223717] pci 0000:00:1d.7: reg 10: [mem 0xe8105000-0xe81053ff]
    [ 0.223779] pci 0000:00:1e.0: [8086:244e] type 1 class 0x000604
    [ 0.223822] pci 0000:00:1f.0: [8086:3a18] type 0 class 0x000601
    [ 0.223909] pci 0000:00:1f.2: [8086:3a20] type 0 class 0x000101
    [ 0.223921] pci 0000:00:1f.2: reg 10: [io 0x0000-0x0007]
    [ 0.223927] pci 0000:00:1f.2: reg 14: [io 0x0000-0x0003]
    [ 0.223933] pci 0000:00:1f.2: reg 18: [io 0x0000-0x0007]
    [ 0.223939] pci 0000:00:1f.2: reg 1c: [io 0x0000-0x0003]
    [ 0.223945] pci 0000:00:1f.2: reg 20: [io 0xf000-0xf00f]
    [ 0.223951] pci 0000:00:1f.2: reg 24: [io 0xf100-0xf10f]
    [ 0.223978] pci 0000:00:1f.3: [8086:3a30] type 0 class 0x000c05
    [ 0.223990] pci 0000:00:1f.3: reg 10: [mem 0xe8106000-0xe81060ff 64bit]
    [ 0.224006] pci 0000:00:1f.3: reg 20: [io 0x0500-0x051f]
    [ 0.224030] pci 0000:00:1f.5: [8086:3a26] type 0 class 0x000101
    [ 0.224041] pci 0000:00:1f.5: reg 10: [io 0xe700-0xe707]
    [ 0.224047] pci 0000:00:1f.5: reg 14: [io 0xe800-0xe803]
    [ 0.224053] pci 0000:00:1f.5: reg 18: [io 0xe900-0xe907]
    [ 0.224059] pci 0000:00:1f.5: reg 1c: [io 0xea00-0xea03]
    [ 0.224065] pci 0000:00:1f.5: reg 20: [io 0xeb00-0xeb0f]
    [ 0.224071] pci 0000:00:1f.5: reg 24: [io 0xec00-0xec0f]
    [ 0.224118] pci 0000:01:00.0: [1002:9440] type 0 class 0x000300
    [ 0.224129] pci 0000:01:00.0: reg 10: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.224137] pci 0000:01:00.0: reg 18: [mem 0xe5000000-0xe500ffff 64bit]
    [ 0.224143] pci 0000:01:00.0: reg 20: [io 0xb000-0xb0ff]
    [ 0.224153] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
    [ 0.224167] pci 0000:01:00.0: supports D1 D2
    [ 0.224181] pci 0000:01:00.1: [1002:aa30] type 0 class 0x000403
    [ 0.224191] pci 0000:01:00.1: reg 10: [mem 0xe5010000-0xe5013fff 64bit]
    [ 0.224228] pci 0000:01:00.1: supports D1 D2
    [ 0.224244] pci 0000:00:01.0: PCI bridge to [bus 01-01]
    [ 0.224274] pci 0000:00:01.0: bridge window [io 0xb000-0xbfff]
    [ 0.224276] pci 0000:00:01.0: bridge window [mem 0xe4000000-0xe5ffffff]
    [ 0.224279] pci 0000:00:01.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.224309] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
    [ 0.224339] pci 0000:00:1c.0: bridge window [io 0xf000-0x0000] (disabled)
    [ 0.224342] pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    [ 0.224347] pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 0.224391] pci 0000:03:00.0: [197b:2368] type 0 class 0x000101
    [ 0.224417] pci 0000:03:00.0: reg 10: [io 0xc000-0xc007]
    [ 0.224429] pci 0000:03:00.0: reg 14: [io 0xc100-0xc103]
    [ 0.224441] pci 0000:03:00.0: reg 18: [io 0xc200-0xc207]
    [ 0.224452] pci 0000:03:00.0: reg 1c: [io 0xc300-0xc303]
    [ 0.224464] pci 0000:03:00.0: reg 20: [io 0xc400-0xc40f]
    [ 0.224534] pci 0000:00:1c.4: PCI bridge to [bus 03-03]
    [ 0.224565] pci 0000:00:1c.4: bridge window [io 0xc000-0xcfff]
    [ 0.224567] pci 0000:00:1c.4: bridge window [mem 0xe6000000-0xe6ffffff]
    [ 0.224571] pci 0000:00:1c.4: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 0.224616] pci 0000:04:00.0: [10ec:8168] type 0 class 0x000200
    [ 0.224630] pci 0000:04:00.0: reg 10: [io 0xd000-0xd0ff]
    [ 0.224654] pci 0000:04:00.0: reg 18: [mem 0xe8010000-0xe8010fff 64bit pref]
    [ 0.224669] pci 0000:04:00.0: reg 20: [mem 0xe8000000-0xe800ffff 64bit pref]
    [ 0.224679] pci 0000:04:00.0: reg 30: [mem 0x00000000-0x0000ffff pref]
    [ 0.224712] pci 0000:04:00.0: supports D1 D2
    [ 0.224714] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.224718] pci 0000:04:00.0: PME# disabled
    [ 0.224746] pci 0000:00:1c.5: PCI bridge to [bus 04-04]
    [ 0.224777] pci 0000:00:1c.5: bridge window [io 0xd000-0xdfff]
    [ 0.224779] pci 0000:00:1c.5: bridge window [mem 0xe7000000-0xe7ffffff]
    [ 0.224784] pci 0000:00:1c.5: bridge window [mem 0xe8000000-0xe80fffff 64bit pref]
    [ 0.224832] pci 0000:00:1e.0: PCI bridge to [bus 05-05] (subtractive decode)
    [ 0.224863] pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled)
    [ 0.224866] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    [ 0.224870] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 0.224872] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.224874] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.224875] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.224877] pci 0000:00:1e.0: bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
    [ 0.224879] pci 0000:00:1e.0: bridge window [mem 0xcff00000-0xfebfffff] (subtractive decode)
    [ 0.224895] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.224961] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX0._PRT]
    [ 0.224984] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX4._PRT]
    [ 0.225008] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX5._PRT]
    [ 0.225027] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
    [ 0.225077] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.225107] Unable to assume _OSC PCIe control. Disabling ASPM
    [ 0.230967] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 *10 11 12 14 15)
    [ 0.231315] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 *5 6 7 9 10 11 12 14 15)
    [ 0.231663] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)
    [ 0.232011] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)
    [ 0.232358] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
    [ 0.232750] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 *10 11 12 14 15)
    [ 0.233097] ACPI: PCI Interrupt Link [LNK0] (IRQs *3 4 5 6 7 9 10 11 12 14 15)
    [ 0.233419] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 *9 10 11 12 14 15)
    [ 0.233809] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.233844] vgaarb: loaded
    [ 0.233931] PCI: Using ACPI for IRQ routing
    [ 0.233960] PCI: pci_cache_line_size set to 64 bytes
    [ 0.234020] reserve RAM buffer: 000000000009f800 - 000000000009ffff
    [ 0.234022] reserve RAM buffer: 00000000cfee0000 - 00000000cfffffff
    [ 0.234113] NetLabel: Initializing
    [ 0.234141] NetLabel: domain hash size = 128
    [ 0.234169] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.234208] NetLabel: unlabeled traffic allowed by default
    [ 0.234246] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
    [ 0.234278] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    [ 0.234418] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
    [ 0.243335] Switching to clocksource hpet
    [ 0.243372] Switched to NOHz mode on CPU #0
    [ 0.246609] Switched to NOHz mode on CPU #1
    [ 0.247851] pnp: PnP ACPI init
    [ 0.247887] ACPI: bus type pnp registered
    [ 0.247960] pnp 00:00: [bus 00-3f]
    [ 0.247962] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.247963] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.247965] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.247966] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.247968] pnp 00:00: [mem 0x000c0000-0x000dffff window]
    [ 0.247969] pnp 00:00: [mem 0xcff00000-0xfebfffff window]
    [ 0.248003] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
    [ 0.248049] pnp 00:01: [io 0x0010-0x001f]
    [ 0.248051] pnp 00:01: [io 0x0022-0x003f]
    [ 0.248052] pnp 00:01: [io 0x0044-0x005f]
    [ 0.248053] pnp 00:01: [io 0x0062-0x0063]
    [ 0.248054] pnp 00:01: [io 0x0065-0x006f]
    [ 0.248055] pnp 00:01: [io 0x0074-0x007f]
    [ 0.248056] pnp 00:01: [io 0x0091-0x0093]
    [ 0.248057] pnp 00:01: [io 0x00a2-0x00bf]
    [ 0.248059] pnp 00:01: [io 0x00e0-0x00ef]
    [ 0.248060] pnp 00:01: [io 0x04d0-0x04d1]
    [ 0.248061] pnp 00:01: [io 0x0290-0x029f]
    [ 0.248062] pnp 00:01: [io 0x0800-0x087f]
    [ 0.248063] pnp 00:01: [io 0x0290-0x0294]
    [ 0.248064] pnp 00:01: [io 0x0880-0x088f]
    [ 0.248065] pnp 00:01: [io 0x04c0-0x04ff]
    [ 0.248113] system 00:01: [io 0x04d0-0x04d1] has been reserved
    [ 0.248143] system 00:01: [io 0x0290-0x029f] has been reserved
    [ 0.248173] system 00:01: [io 0x0800-0x087f] has been reserved
    [ 0.248203] system 00:01: [io 0x0290-0x0294] has been reserved
    [ 0.248232] system 00:01: [io 0x0880-0x088f] has been reserved
    [ 0.248262] system 00:01: [io 0x04c0-0x04ff] could not be reserved
    [ 0.248293] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.248300] pnp 00:02: [dma 4]
    [ 0.248302] pnp 00:02: [io 0x0000-0x000f]
    [ 0.248303] pnp 00:02: [io 0x0080-0x0090]
    [ 0.248304] pnp 00:02: [io 0x0094-0x009f]
    [ 0.248305] pnp 00:02: [io 0x00c0-0x00df]
    [ 0.248324] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.248356] pnp 00:03: [irq 0 disabled]
    [ 0.248363] pnp 00:03: [irq 8]
    [ 0.248364] pnp 00:03: [mem 0xfed00000-0xfed003ff]
    [ 0.248387] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.248403] pnp 00:04: [io 0x0070-0x0073]
    [ 0.248424] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.248431] pnp 00:05: [io 0x0061]
    [ 0.248452] pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.248458] pnp 00:06: [io 0x00f0-0x00ff]
    [ 0.248462] pnp 00:06: [irq 13]
    [ 0.248483] pnp 00:06: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.248557] pnp 00:07: [io 0x03f0-0x03f5]
    [ 0.248559] pnp 00:07: [io 0x03f7]
    [ 0.248562] pnp 00:07: [irq 6]
    [ 0.248563] pnp 00:07: [dma 2]
    [ 0.248592] pnp 00:07: Plug and Play ACPI device, IDs PNP0700 (active)
    [ 0.248697] pnp 00:08: [io 0x03f8-0x03ff]
    [ 0.248701] pnp 00:08: [irq 4]
    [ 0.248742] pnp 00:08: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.248856] pnp 00:09: [io 0x0378-0x037f]
    [ 0.248860] pnp 00:09: [irq 7]
    [ 0.248893] pnp 00:09: Plug and Play ACPI device, IDs PNP0400 (active)
    [ 0.248958] pnp 00:0a: [io 0x0060]
    [ 0.248959] pnp 00:0a: [io 0x0064]
    [ 0.248963] pnp 00:0a: [irq 12]
    [ 0.248984] pnp 00:0a: Plug and Play ACPI device, IDs PNP0f13 (active)
    [ 0.249017] pnp 00:0b: [io 0x0400-0x04bf]
    [ 0.249052] system 00:0b: [io 0x0400-0x04bf] has been reserved
    [ 0.249083] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.249196] pnp 00:0c: [mem 0xe0000000-0xe3ffffff]
    [ 0.249236] system 00:0c: [mem 0xe0000000-0xe3ffffff] has been reserved
    [ 0.249267] system 00:0c: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.249343] pnp 00:0d: [mem 0x000f0000-0x000f3fff]
    [ 0.249344] pnp 00:0d: [mem 0x000f4000-0x000f7fff]
    [ 0.249346] pnp 00:0d: [mem 0x000f8000-0x000fbfff]
    [ 0.249347] pnp 00:0d: [mem 0x000fc000-0x000fffff]
    [ 0.249348] pnp 00:0d: [mem 0xcfee0000-0xcfefffff]
    [ 0.249349] pnp 00:0d: [mem 0x00000000-0x0009ffff]
    [ 0.249351] pnp 00:0d: [mem 0x00100000-0xcfedffff]
    [ 0.249352] pnp 00:0d: [mem 0xfec00000-0xfec00fff]
    [ 0.249355] pnp 00:0d: [mem 0xfed10000-0xfed1dfff]
    [ 0.249356] pnp 00:0d: [mem 0xfed20000-0xfed8ffff]
    [ 0.249357] pnp 00:0d: [mem 0xfee00000-0xfee00fff]
    [ 0.249359] pnp 00:0d: [mem 0xffb00000-0xffb7ffff]
    [ 0.249360] pnp 00:0d: [mem 0xfff00000-0xffffffff]
    [ 0.249361] pnp 00:0d: [mem 0x000e0000-0x000effff]
    [ 0.249408] system 00:0d: [mem 0x000f0000-0x000f3fff] could not be reserved
    [ 0.249439] system 00:0d: [mem 0x000f4000-0x000f7fff] could not be reserved
    [ 0.249470] system 00:0d: [mem 0x000f8000-0x000fbfff] could not be reserved
    [ 0.249500] system 00:0d: [mem 0x000fc000-0x000fffff] could not be reserved
    [ 0.249531] system 00:0d: [mem 0xcfee0000-0xcfefffff] could not be reserved
    [ 0.249561] system 00:0d: [mem 0x00000000-0x0009ffff] could not be reserved
    [ 0.249592] system 00:0d: [mem 0x00100000-0xcfedffff] could not be reserved
    [ 0.249622] system 00:0d: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.249652] system 00:0d: [mem 0xfed10000-0xfed1dfff] has been reserved
    [ 0.249683] system 00:0d: [mem 0xfed20000-0xfed8ffff] has been reserved
    [ 0.249713] system 00:0d: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.249743] system 00:0d: [mem 0xffb00000-0xffb7ffff] has been reserved
    [ 0.249773] system 00:0d: [mem 0xfff00000-0xffffffff] has been reserved
    [ 0.249803] system 00:0d: [mem 0x000e0000-0x000effff] has been reserved
    [ 0.249833] system 00:0d: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.249845] pnp 00:0e: [mem 0xffb80000-0xffbfffff]
    [ 0.249874] pnp 00:0e: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.249878] pnp: PnP ACPI: found 15 devices
    [ 0.249906] ACPI: ACPI bus type pnp unregistered
    [ 0.255617] pci 0000:00:1c.4: BAR 15: assigned [mem 0xe8200000-0xe83fffff 64bit pref]
    [ 0.255652] pci 0000:00:1c.0: BAR 14: assigned [mem 0xe8400000-0xe85fffff]
    [ 0.255684] pci 0000:00:1c.0: BAR 15: assigned [mem 0xe8600000-0xe87fffff 64bit pref]
    [ 0.255718] pci 0000:00:1c.0: BAR 13: assigned [io 0x1000-0x1fff]
    [ 0.255748] pci 0000:01:00.0: BAR 6: assigned [mem 0xe4000000-0xe401ffff pref]
    [ 0.255782] pci 0000:00:01.0: PCI bridge to [bus 01-01]
    [ 0.255811] pci 0000:00:01.0: bridge window [io 0xb000-0xbfff]
    [ 0.255841] pci 0000:00:01.0: bridge window [mem 0xe4000000-0xe5ffffff]
    [ 0.255872] pci 0000:00:01.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.255907] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
    [ 0.255936] pci 0000:00:1c.0: bridge window [io 0x1000-0x1fff]
    [ 0.255968] pci 0000:00:1c.0: bridge window [mem 0xe8400000-0xe85fffff]
    [ 0.255999] pci 0000:00:1c.0: bridge window [mem 0xe8600000-0xe87fffff 64bit pref]
    [ 0.256035] pci 0000:00:1c.4: PCI bridge to [bus 03-03]
    [ 0.256065] pci 0000:00:1c.4: bridge window [io 0xc000-0xcfff]
    [ 0.256097] pci 0000:00:1c.4: bridge window [mem 0xe6000000-0xe6ffffff]
    [ 0.256128] pci 0000:00:1c.4: bridge window [mem 0xe8200000-0xe83fffff 64bit pref]
    [ 0.256164] pci 0000:04:00.0: BAR 6: assigned [mem 0xe8020000-0xe802ffff pref]
    [ 0.256197] pci 0000:00:1c.5: PCI bridge to [bus 04-04]
    [ 0.256227] pci 0000:00:1c.5: bridge window [io 0xd000-0xdfff]
    [ 0.256259] pci 0000:00:1c.5: bridge window [mem 0xe7000000-0xe7ffffff]
    [ 0.256290] pci 0000:00:1c.5: bridge window [mem 0xe8000000-0xe80fffff 64bit pref]
    [ 0.256326] pci 0000:00:1e.0: PCI bridge to [bus 05-05]
    [ 0.256355] pci 0000:00:1e.0: bridge window [io disabled]
    [ 0.256386] pci 0000:00:1e.0: bridge window [mem disabled]
    [ 0.256416] pci 0000:00:1e.0: bridge window [mem pref disabled]
    [ 0.256453] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.256484] pci 0000:00:01.0: setting latency timer to 64
    [ 0.256488] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.256520] pci 0000:00:1c.0: setting latency timer to 64
    [ 0.256524] pci 0000:00:1c.4: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.256555] pci 0000:00:1c.4: setting latency timer to 64
    [ 0.256560] pci 0000:00:1c.5: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 0.256591] pci 0000:00:1c.5: setting latency timer to 64
    [ 0.256596] pci 0000:00:1e.0: setting latency timer to 64
    [ 0.256598] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.256600] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.256601] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.256603] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff]
    [ 0.256604] pci_bus 0000:00: resource 8 [mem 0xcff00000-0xfebfffff]
    [ 0.256606] pci_bus 0000:01: resource 0 [io 0xb000-0xbfff]
    [ 0.256607] pci_bus 0000:01: resource 1 [mem 0xe4000000-0xe5ffffff]
    [ 0.256609] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.256610] pci_bus 0000:02: resource 0 [io 0x1000-0x1fff]
    [ 0.256612] pci_bus 0000:02: resource 1 [mem 0xe8400000-0xe85fffff]
    [ 0.256613] pci_bus 0000:02: resource 2 [mem 0xe8600000-0xe87fffff 64bit pref]
    [ 0.256615] pci_bus 0000:03: resource 0 [io 0xc000-0xcfff]
    [ 0.256617] pci_bus 0000:03: resource 1 [mem 0xe6000000-0xe6ffffff]
    [ 0.256618] pci_bus 0000:03: resource 2 [mem 0xe8200000-0xe83fffff 64bit pref]
    [ 0.256620] pci_bus 0000:04: resource 0 [io 0xd000-0xdfff]
    [ 0.256621] pci_bus 0000:04: resource 1 [mem 0xe7000000-0xe7ffffff]
    [ 0.256623] pci_bus 0000:04: resource 2 [mem 0xe8000000-0xe80fffff 64bit pref]
    [ 0.256624] pci_bus 0000:05: resource 4 [io 0x0000-0x0cf7]
    [ 0.256626] pci_bus 0000:05: resource 5 [io 0x0d00-0xffff]
    [ 0.256627] pci_bus 0000:05: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.256629] pci_bus 0000:05: resource 7 [mem 0x000c0000-0x000dffff]
    [ 0.256630] pci_bus 0000:05: resource 8 [mem 0xcff00000-0xfebfffff]
    [ 0.256691] NET: Registered protocol family 2
    [ 0.256846] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.257622] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 0.260343] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.260736] TCP: Hash tables configured (established 524288 bind 65536)
    [ 0.260766] TCP reno registered
    [ 0.260800] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.260856] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.261103] NET: Registered protocol family 1
    [ 0.261271] pci 0000:01:00.0: Boot video device
    [ 0.261279] PCI: CLS 32 bytes, default 64
    [ 0.261320] Unpacking initramfs...
    [ 0.280521] Freeing initrd memory: 1728k freed
    [ 0.280747] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.280777] Placing 64MB software IO TLB between ffff8800cbeda000 - ffff8800cfeda000
    [ 0.280811] software IO TLB at phys 0xcbeda000 - 0xcfeda000
    [ 0.281112] audit: initializing netlink socket (disabled)
    [ 0.281149] type=2000 audit(1309681092.279:1): initialized
    [ 0.281549] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.283195] VFS: Disk quotas dquot_6.5.2
    [ 0.283324] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.283483] msgmni has been set to 7924
    [ 0.283664] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 0.283722] io scheduler noop registered
    [ 0.283751] io scheduler deadline registered
    [ 0.283811] io scheduler cfq registered (default)
    [ 0.283920] pcieport 0000:00:01.0: setting latency timer to 64
    [ 0.283942] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 0.283973] pcieport 0000:00:1c.0: setting latency timer to 64
    [ 0.283999] pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X
    [ 0.284043] pcieport 0000:00:1c.4: setting latency timer to 64
    [ 0.284069] pcieport 0000:00:1c.4: irq 42 for MSI/MSI-X
    [ 0.284110] pcieport 0000:00:1c.5: setting latency timer to 64
    [ 0.284136] pcieport 0000:00:1c.5: irq 43 for MSI/MSI-X
    [ 0.284239] intel_idle: MWAIT substates: 0x22220
    [ 0.284240] intel_idle: does not run on family 6 model 23
    [ 0.284245] ERST: Table is not found!
    [ 0.284310] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.304821] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 0.520640] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 0.573586] Linux agpgart interface v0.103
    [ 0.573677] i8042: PNP: PS/2 Controller [PNP0f13:PS2M] at 0x60,0x64 irq 12
    [ 0.573707] i8042: PNP: PS/2 controller doesn't have KBD irq; using default 1
    [ 0.574077] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.574138] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.574260] mousedev: PS/2 mouse device common for all mice
    [ 0.574354] rtc_cmos 00:04: RTC can wake from S4
    [ 0.600105] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    [ 0.600160] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
    [ 0.600205] cpuidle: using governor ladder
    [ 0.600234] cpuidle: using governor menu
    [ 0.600407] TCP cubic registered
    [ 0.600436] NET: Registered protocol family 17
    [ 0.600470] Registering the dns_resolver key type
    [ 0.600564] PM: Hibernation image not present or could not be loaded.
    [ 0.600567] registered taskstats version 1
    [ 0.601031] rtc_cmos 00:04: setting system clock to 2011-07-03 08:18:13 UTC (1309681093)
    [ 0.601083] Initializing network drop monitor service
    [ 0.602022] Freeing unused kernel memory: 712k freed
    [ 0.602239] Write protecting the kernel read-only data: 6144k
    [ 0.602468] Freeing unused kernel memory: 60k freed
    [ 0.604398] Freeing unused kernel memory: 784k freed
    [ 0.611895] udevd[53]: starting version 171
    [ 0.669709] SCSI subsystem initialized
    [ 0.686607] libata version 3.00 loaded.
    [ 0.687348] pata_jmicron 0000:03:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.687411] pata_jmicron 0000:03:00.0: setting latency timer to 64
    [ 0.687623] scsi0 : pata_jmicron
    [ 0.687706] scsi1 : pata_jmicron
    [ 0.688068] ata1: PATA max UDMA/100 cmd 0xc000 ctl 0xc100 bmdma 0xc400 irq 16
    [ 0.688099] ata2: PATA max UDMA/100 cmd 0xc200 ctl 0xc300 bmdma 0xc408 irq 16
    [ 0.698563] ata_piix 0000:00:1f.2: version 2.13
    [ 0.698616] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    [ 0.698649] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
    [ 0.698816] ata_piix 0000:00:1f.2: setting latency timer to 64
    [ 0.699016] scsi2 : ata_piix
    [ 0.699082] scsi3 : ata_piix
    [ 0.699361] ata3: SATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14
    [ 0.699394] ata4: SATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15
    [ 0.699443] ata_piix 0000:00:1f.5: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    [ 0.699486] ata_piix 0000:00:1f.5: MAP [ P0 -- P1 -- ]
    [ 0.700200] ata_piix 0000:00:1f.5: setting latency timer to 64
    [ 0.700348] scsi4 : ata_piix
    [ 0.700415] scsi5 : ata_piix
    [ 0.700674] ata5: SATA max UDMA/133 cmd 0xe700 ctl 0xe800 bmdma 0xeb00 irq 19
    [ 0.700706] ata6: SATA max UDMA/133 cmd 0xe900 ctl 0xea00 bmdma 0xeb08 irq 19
    [ 0.847198] ata1.00: ATAPI: PIONEER DVD-RW DVR-112, 1.15, max UDMA/66
    [ 0.847229] ata1.00: limited to UDMA/33 due to 40-wire cable
    [ 0.860530] ata1.00: configured for UDMA/33
    [ 0.873346] scsi 0:0:0:0: CD-ROM PIONEER DVD-RW DVR-112 1.15 PQ: 0 ANSI: 5
    [ 1.030714] ata5: SATA link down (SStatus 0 SControl 300)
    [ 1.174170] ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.180268] ata6.00: HPA detected: current 1250261615, native 1250263728
    [ 1.180306] ata6.00: ATA-8: WDC WD6400AAKS-00E4A0, 05.01D05, max UDMA/133
    [ 1.180340] ata6.00: 1250261615 sectors, multi 16: LBA48 NCQ (depth 0/32)
    [ 1.186942] ata6.00: configured for UDMA/133
    [ 1.283819] Refined TSC clocksource calibration: 3166.306 MHz.
    [ 1.283855] Switching to clocksource tsc
    [ 1.497568] ata4.00: SATA link down (SStatus 0 SControl 300)
    [ 1.497610] ata4.01: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.508469] ata3.00: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.508508] ata3.01: SATA link down (SStatus 0 SControl 300)
    [ 1.508544] ata3.01: link offline, clearing class 3 to NONE
    [ 1.513515] ata4.01: ATA-8: WDC WD6400AAKS-65A7B0, 01.03B01, max UDMA/133
    [ 1.513553] ata4.01: 1250263728 sectors, multi 16: LBA48 NCQ (depth 0/32)
    [ 1.524091] ata3.00: failed to IDENTIFY (I/O error, err_mask=0x2)
    [ 6.507978] ata4.01: configured for UDMA/133
    [ 7.400696] ata3.00: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 7.400740] ata3.01: SATA link down (SStatus 0 SControl 300)
    [ 7.400781] ata3.01: link offline, clearing class 3 to NONE
    [ 12.400139] ata3.00: qc timeout (cmd 0xa1)
    [ 12.400172] ata3.00: failed to IDENTIFY (I/O error, err_mask=0x4)
    [ 12.400209] ata3.00: limiting SATA link speed to 1.5 Gbps
    [ 13.194235] ata3.00: SATA link up 1.5 Gbps (SStatus 113 SControl 310)
    [ 13.194279] ata3.01: SATA link down (SStatus 0 SControl 300)
    [ 13.194319] ata3.01: link offline, clearing class 3 to NONE
    [ 13.210692] ata3.00: failed to IDENTIFY (I/O error, err_mask=0x2)
    [ 19.993662] ata3.00: SATA link up 1.5 Gbps (SStatus 113 SControl 310)
    [ 19.993706] ata3.01: SATA link down (SStatus 0 SControl 300)
    [ 19.993747] ata3.01: link offline, clearing class 3 to NONE
    [ 19.993841] scsi 3:0:1:0: Direct-Access ATA WDC WD6400AAKS-6 01.0 PQ: 0 ANSI: 5
    [ 19.994011] scsi 5:0:0:0: Direct-Access ATA WDC WD6400AAKS-0 05.0 PQ: 0 ANSI: 5
    [ 20.002921] sd 3:0:1:0: [sda] 1250263728 512-byte logical blocks: (640 GB/596 GiB)
    [ 20.002987] sd 3:0:1:0: [sda] Write Protect is off
    [ 20.003017] sd 3:0:1:0: [sda] Mode Sense: 00 3a 00 00
    [ 20.003031] sd 3:0:1:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 20.003301] sd 5:0:0:0: [sdb] 1250261615 512-byte logical blocks: (640 GB/596 GiB)
    [ 20.003373] sd 5:0:0:0: [sdb] Write Protect is off
    [ 20.003403] sd 5:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 20.003418] sd 5:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 20.015573] sdb: sdb1
    [ 20.015681] sda: sda1 sda2 sda3 sda4
    [ 20.015805] sd 5:0:0:0: [sdb] Attached SCSI disk
    [ 20.015955] sd 3:0:1:0: [sda] Attached SCSI disk
    [ 20.025385] sr0: scsi3-mmc drive: 40x/40x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 20.025426] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 20.025626] sr 0:0:0:0: Attached scsi CD-ROM sr0
    [ 20.503523] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    [ 21.720234] udevd[241]: starting version 171
    [ 21.849284] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
    [ 21.849289] ACPI: Power Button [PWRB]
    [ 21.849336] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
    [ 21.849338] ACPI: Power Button [PWRF]
    [ 21.909230] fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel.
    [ 21.909234] Disabling lock debugging due to kernel taint
    [ 21.960993] [fglrx] Maximum main memory to use for locked dma buffers: 3801 MBytes.
    [ 21.961188] [fglrx] vendor: 1002 device: 9440 count: 1
    [ 21.961560] [fglrx] ioport: bar 4, base 0xb000, size: 0x100
    [ 21.961570] pci 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 21.961574] pci 0000:01:00.0: setting latency timer to 64
    [ 21.961775] [fglrx] Kernel PAT support is enabled
    [ 21.961791] [fglrx] module loaded - fglrx 8.85.6 [Apr 19 2011] with 1 minors
    [ 22.112266] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    [ 22.112311] HDA Intel 0000:00:1b.0: irq 44 for MSI/MSI-X
    [ 22.112329] HDA Intel 0000:00:1b.0: setting latency timer to 64
    [ 22.200599] ACPI: acpi_idle registered with cpuidle
    [ 22.200655] Marking TSC unstable due to TSC halts in idle
    [ 22.203161] Switching to clocksource hpet
    [ 22.216025] HDA Intel 0000:01:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 22.216082] HDA Intel 0000:01:00.1: irq 45 for MSI/MSI-X
    [ 22.216101] HDA Intel 0000:01:00.1: setting latency timer to 64
    [ 22.221167] iTCO_vendor_support: vendor-support=0
    [ 22.241200] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.06
    [ 22.241269] iTCO_wdt: Found a ICH10 TCO device (Version=2, TCOBASE=0x0460)
    [ 22.241300] i801_smbus 0000:00:1f.3: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 22.241314] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 22.279576] input: PC Speaker as /devices/platform/pcspkr/input/input2
    [ 22.305609] Floppy drive(s): fd0 is 1.44M
    [ 22.320314] FDC 0 is a post-1991 82077
    [ 22.423422] usbcore: registered new interface driver usbfs
    [ 22.423488] usbcore: registered new interface driver hub
    [ 22.423628] usbcore: registered new device driver usb
    [ 22.447059] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 22.447088] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 22.447114] ehci_hcd 0000:00:1a.7: setting latency timer to 64
    [ 22.447117] ehci_hcd 0000:00:1a.7: EHCI Host Controller
    [ 22.447134] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
    [ 22.461785] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 22.461798] r8169 0000:04:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    [ 22.461836] r8169 0000:04:00.0: setting latency timer to 64
    [ 22.461895] r8169 0000:04:00.0: irq 46 for MSI/MSI-X
    [ 22.462108] r8169 0000:04:00.0: eth0: RTL8168c/8111c at 0xffffc90000666000, 00:1f:d0:8c:36:ca, XID 1c4000c0 IRQ 46
    [ 22.463918] ehci_hcd 0000:00:1a.7: cache line size of 32 is not supported
    [ 22.463934] ehci_hcd 0000:00:1a.7: irq 18, io mem 0xe8104000
    [ 22.465525] IT8718 SuperIO detected.
    [ 22.465700] parport_pc 00:09: reported by Plug and Play ACPI
    [ 22.465755] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
    [ 22.471538] ppdev: user-space parallel port driver
    [ 22.476684] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    [ 22.476836] hub 1-0:1.0: USB hub found
    [ 22.476845] hub 1-0:1.0: 6 ports detected
    [ 22.476907] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    [ 22.476921] ehci_hcd 0000:00:1d.7: setting latency timer to 64
    [ 22.476923] ehci_hcd 0000:00:1d.7: EHCI Host Controller
    [ 22.476934] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
    [ 22.501210] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
    [ 22.501224] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xe8105000
    [ 22.513363] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 22.513456] hub 2-0:1.0: USB hub found
    [ 22.513459] hub 2-0:1.0: 6 ports detected
    [ 22.604551] uhci_hcd: USB Universal Host Controller Interface driver
    [ 22.604601] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 22.604608] uhci_hcd 0000:00:1a.0: setting latency timer to 64
    [ 22.604610] uhci_hcd 0000:00:1a.0: UHCI Host Controller
    [ 22.604620] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    [ 22.609461] sr 0:0:0:0: Attached scsi generic sg0 type 5
    [ 22.609490] sd 3:0:1:0: Attached scsi generic sg1 type 0
    [ 22.609513] sd 5:0:0:0: Attached scsi generic sg2 type 0
    [ 22.616717] uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000e100
    [ 22.616861] hub 3-0:1.0: USB hub found
    [ 22.616865] hub 3-0:1.0: 2 ports detected
    [ 22.616919] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
    [ 22.616924] uhci_hcd 0000:00:1a.1: setting latency timer to 64
    [ 22.616926] uhci_hcd 0000:00:1a.1: UHCI Host Controller
    [ 22.616932] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
    [ 22.626727] uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000e200
    [ 22.626863] hub 4-0:1.0: USB hub found
    [ 22.626866] hub 4-0:1.0: 2 ports detected
    [ 22.626916] uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 22.626921] uhci_hcd 0000:00:1a.2: setting latency timer to 64
    [ 22.626923] uhci_hcd 0000:00:1a.2: UHCI Host Controller
    [ 22.626929] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
    [ 22.640057] uhci_hcd 0000:00:1a.2: irq 18, io base 0x0000e000
    [ 22.640206] hub 5-0:1.0: USB hub found
    [ 22.640209] hub 5-0:1.0: 2 ports detected
    [ 22.640287] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    [ 22.640292] uhci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 22.640294] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 22.640301] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
    [ 22.653412] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000e300
    [ 22.653525] hub 6-0:1.0: USB hub found
    [ 22.653528] hub 6-0:1.0: 2 ports detected
    [ 22.653580] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    [ 22.653585] uhci_hcd 0000:00:1d.1: setting latency timer to 64
    [ 22.653587] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 22.653592] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
    [ 22.663388] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000e400
    [ 22.663483] hub 7-0:1.0: USB hub found
    [ 22.663486] hub 7-0:1.0: 2 ports detected
    [ 22.663537] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 22.663542] uhci_hcd 0000:00:1d.2: setting latency timer to 64
    [ 22.663545] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 22.663550] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
    [ 22.673377] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000e500
    [ 22.673517] hub 8-0:1.0: USB hub found
    [ 22.673520] hub 8-0:1.0: 2 ports detected
    [ 22.890030] usb 2-6: new high speed USB device number 2 using ehci_hcd
    [ 23.088194] input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input3
    [ 23.320022] usb 3-2: new full speed USB device number 2 using uhci_hcd
    [ 23.501917] EXT4-fs (sdb1): warning: maximal mount count reached, running e2fsck is recommended
    [ 23.519193] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null)
    [ 23.856585] Linux media interface: v0.10
    [ 23.893017] Linux video capture interface: v2.00
    [ 23.913937] uvcvideo: Found UVC 1.00 device Sirius USB2.0 Camera (0ac8:3330)
    [ 23.916866] input: Sirius USB2.0 Camera as /devices/pci0000:00/0000:00:1d.7/usb2/2-6/2-6:1.0/input/input4
    [ 23.916907] usbcore: registered new interface driver uvcvideo
    [ 23.916909] USB Video Class driver (v1.0.0)
    [ 23.936777] input: Logitech Logitech Illuminated Keyboard as /devices/pci0000:00/0000:00:1a.0/usb3/3-2/3-2:1.0/input/input5
    [ 23.936831] generic-usb 0003:046D:C318.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech Logitech Illuminated Keyboard] on usb-0000:00:1a.0-2/input0
    [ 23.941854] input: Logitech Logitech Illuminated Keyboard as /devices/pci0000:00/0000:00:1a.0/usb3/3-2/3-2:1.1/input/input6
    [ 23.941970] generic-usb 0003:046D:C318.0002: input,hiddev0,hidraw1: USB HID v1.11 Device [Logitech Logitech Illuminated Keyboard] on usb-0000:00:1a.0-2/input1
    [ 23.941986] usbcore: registered new interface driver usbhid
    [ 23.941987] usbhid: USB HID core driver
    [ 24.403677] EXT4-fs (sda3): re-mounted. Opts: (null)
    [ 24.564686] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
    [ 24.592114] Adding 2104508k swap on /dev/sda2. Priority:-1 extents:1 across:2104508k

  • Need help troubleshooting: booting problems

    I'm a bit stuck troubleshooting and could do with some advice.
    A quick backstory: my mid-2010 13" MBP started to refuse to boot and displayed the flashing question mark, so the Geniuses replaced the hard drive connector cable - which sorted the problem for a few months.
    So the flashing ? reappeared and I've tried a few fixes but need advice on where to go now, I think it might be a RAM problem.
    What I've tried so far:
    I've tried erasing and then verify and repair the HD through disk utility, using the OSX DVD, which came up OK.
    Reset NVRAM
    Clean Install: the HD would show up, but would fail after 30 mins; "Install failed... could not copy the necessary support files."
    Ran Apple Hardware Test: showed error 4mem/4/40000000 0xabd93398
    Took out each RAM card separately, cleaned with compressed air, tried out each one separately in either slot - still get a flashing ? on startup.
    Any thoughts on what I could do would be really appreciated. Thanks for any advice!

    If the OS installer failed removing RAM will not fix the damage.
    The question mark means a bootable OS couldn't be found. You will need to reinstall the OS & see if the Mac stays stable. You may need to do this with one RAM module to see if the other is causing the crash. The AHT message is a RAM error, re-run the test & change modules to see if it is a particular module or slot that causes it.
    You can try booting from external disk to try to rule out the internal HD, but that isn't a practical solution for a laptop, it's more to help diagnose where the fault could be.
    You could take it to an Apple store to see if they can help, but I doubt there will be any chance of repairs unless you pay. The first visit will be free, but there is a limited amount of testing that can be done.

  • Need help with video problems

    Hi!
    Back in May I was having problems with video on my Mac. I was helped by this site and am hoping for more help. I downloaded the realaudio, but was still having problems. I assumed because I was on dial up. It was so slow. It would take forever to load and then play for a few minutes then need to load some more. I now have DSL and was looking forward to kissing the video problems good-bye! My new problem is that when I try to watch or listen to anything like innertube it "stutters." Is there something else I should be doing? How can I fix this problem?

    With those specs you should be absolutely fine. I would suggest that you update to 10.4.10 at least (download the full Combo updater). Once you are on that:
    These are the downloads and the settings you need in order to view/hear pretty much everything that the net can throw at you: The setup described below has proved repeatedly successful on both PPC and Intel macs, but nothing in life carries a guarantee!
    It is known to work in the great majority of cases with Safari 3.0.4, QT 7.3 and OS 10.4.11. (If you are running Leopard, ensure that all plug-ins have been updated for OS 10.5)
    Assuming you already run Tiger versions OS 10.4.9 or above (this has not yet been verified with Leopard) and have Quicktime 7.2 or above, and are using Safari 2 or 3, download and install (or re-install even if you already had them) the latest versions, suitable for your flavor of Mac, of:
    RealPlayer 10 for Mac from http://forms.real.com/real/player/blackjack.html?platform2=Mac%20OS%20X&product= RealPlayer%2010&proc=g3&lang=&show_list=0&src=macjack
    Flip4Mac WMV Player from http://www.microsoft.com/windows/windowsmedia/player/wmcomponents.mspx (Windows Media Player for the Mac is no longer supported, even by Microsoft)
    Perian from http://perian.org/
    Adobe FlashPlayer from http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlash
    (You can check here: http://www.adobe.com/products/flash/about/ to see which version you should install for your Mac and OS. This: http://www.macworld.co.uk/news/index.cfm?email&NewsID=19845 may also interest you.)
    In Quicktime Preferences, under advanced, UNcheck Enable Flash, and under Mime settings/Miscellananeous only check Quicktime HTML (QHTM).
    See also the very informative post from QuickTimeKirk dated Dec 3, 2007 in this thread: http://discussions.apple.com/thread.jspa?threadID=1268489&tstart=0
    In Macintosh HD/Library/Quicktime/ delete any files relating to DivX (Perian already has them).
    Now go to Safari Preferences/Security, and tick the boxes under Web Content (all 4 of them).
    Lastly open Audio Midi Setup (which you will find in the Utilities Folder of your Applications Folder) and click on Audio Devices. Make sure that both Audio Input and Audio Output, under Format, are set to 44100 Hz.
    Important: Now repair permissions and restart.
    The world should now be your oyster!
    You should also consider having the free VLC Player from http://www.videolan.org/ in your armory, as this plays almost anything that DVD Player might not.

Maybe you are looking for

  • How do I reset the password of an old login with an email account that no longer exists?

    Years ago, I bought songs in the iTunes store with an old email account that no longer exists.  I type my answers to the security questions, but the answers aren't working for some reason.  So neither of the normal ways to reset a password.  Is there

  • Combining several iMovie projects when disk space is limited

    I have searched the Forum but cannot find a precise solution to my problem. If it already exists, could someone kindly point me in the right direction? I have created three separate iMovie 06 projects which need to be combined into one continuous mov

  • Wo ist die Datumsansicht in PSE 13 ?

    Hallo, bisher arbeite ich mit PSE 8. In der "Datumsansicht" habe ich viele Kommentare in der "Tagesanmerkung" eingetragen. Heute teste ich PSE 13. Meinen Katalog habe ich konvertiert. Wo finde ich die "Datumsansicht"? Der Reiter "Ereignisse" lässt mi

  • Macbook Pro Retina BOOTCAMP & StarCraft 2 Issues

    I am using a Macbook Pro with Retina Display 13-inch (256GB, late 2014). 1. I run StarCraft 2 on Mac OS. The fan speed gets really high whenever I do so. I do know that this is a heavy task (so I don't really thing there are any problems here), but j

  • Question re iMac Search function Spotlight

    Hello.  When I type a query into the iMac search function, Spotlight,  top right hand corner of the screen, magnifier icon, it brings up all the possibles available.  I can click on the one I want and it will open up, however prior to Lion I used to