Buffer Flush

So, I'm trying to play streaming video from Dlash Media
Server.
nc = new NetConnection();
nc.connect('rtmp://mysite/myapp');
ns = new NetStream(nc);
var startBufferLength = 2;
ns.setBufferTime(startBufferLength);
// create and set sound object
var snd = this.createEmptyMovieClip("snd5",
this.getNextHighestDepth());
snd.attachAudio(ns);
audio = new Sound(snd);
audio.setVolume(80);
// attach videodisplay
videoDisplay.attachVideo(ns);
videoDisplay.smoothing = true;
ns.play("video",0);
It's starts playing but near the end of the clip when in
buffer is less than 2 seconds but data don't streams any more,
buffer flushes and the data that is in the buffer didn't display.
Help me please what to do to display this last seconds.

I tried the code and it seemed to work with a video I have on
FMS server hosted at Influxis.
You might want to use the normal template and listen for the
onStatus messages coming from the NetStream ns object and see if
you are getting a status message at the time you think you are
losing the data.
stream_ns.onStatus = function(infoObject:Object) {
trace("NetStream.onStatus called: ("+getTimer()+" ms)");
for (var prop in infoObject) {
trace("\t"+prop+":\t"+infoObject[prop]);
trace("");
Also you might want to try other video sources that you
recorded or from another source.

Similar Messages

  • How do I know when the buffer flushed all the data out?

    I am using a very high sampling rate (500000 Hz) and acquire 1024 data points continuously.   It takes 370000 data points in 10 second.   I use a counter to help with the retrigger PFI line.   I have a huge buffer so that I can make sure that the buffer is not overflowed.  The code is attached below.  My problem is that the data acquisition is done so fast (in 10 seconds)  but the processing of the data is not.  In :nEvent, I basically save and plot the data.  The saving process is not slow.   However, our videocard is so SSSSLOOOW and can not keep up with realtime data display.    After the user is done collecting the data, they do not want to wait for the screen to plot the data from the buffer.   So after the data collection is done, I basically stop the plotting process but we still need to flush the data out from the buffer for saving.  My question is that how can I tell when the buffer is empty.
    Thanks,
    Yajai
    m_task = std::auto_ptr<CNiDAQmxTask>(new CNiDAQmxTask("aiTask"));
    m_counter = std::auto_ptr<CNiDAQmxTask>(new CNiDAQmxTask("coTask"));
    m_task->Stream.Timeout = -1;
    //Create a channel
    m_task->AIChannels.CreateVoltageChannel(physicalChannel, "",
    static_cast<DAQmxAITerminalConfiguration>(DAQmxAITerminalConfigurationRse), minimum, maximum,
    DAQmxAIVoltageUnitsVolts);
    m_task->Timing.ConfigureSampleClock(counterSource, sampleRate,DAQmxSampleClockActiveEdgeRising,DAQmxSampleQuantityModeContinuousSamples, samplesPerChannel);
    m_task->Stream.Buffer.InputBufferSize = samplesPerChannel * 2000;
    m_counter->COChannels.CreatePulseChannelFrequency(counterChannel, "coChannel", DAQmxCOPulseFrequencyUnitsHertz, DAQmxCOPulseIdleStateLow, 0, sampleRate, 0.5);
    m_counter->Timing.ConfigureImplicit(DAQmxSampleQuantityModeFiniteSamples, samplesPerChannel);
    m_task->Control(DAQmxTaskVerify);
    m_counter->Control(DAQmxTaskVerify);
    m_counter->Triggers.StartTrigger.ConfigureDigitalEdgeTrigger(
    referenceTriggerSource, DAQmxDigitalEdgeStartTriggerEdgeRising);
    m_counter->Triggers.StartTrigger.Retriggerable = true;
    m_taskRunning = true;
    m_counter->Start();
    // Set up the graph
    m_Graph.Plots.RemoveAll();
    for (unsigned int i = 0; i < m_task->AIChannels.Count; i++)
    m_Graph.Plots.Add();
    m_Graph.Plots.Item(i+1).LineColor = m_colors[i % 8];
    // Create Multi-channel Reader
    m_reader = std::auto_ptr<CNiDAQmxAnalogMultiChannelReader>(new CNiDAQmxAnalogMultiChannelReader(m_task->Stream));
    m_reader->InstallEventHandler(*this, OnEvent);
    m_reader->ReadMultiSampleAsync(samplesPerChannel, m_data);

    Yajai,
    I'm a little confused about your acquisiton. Do you intend for it to be
    finite, or continuous? I'm also unclear about your rates. You state
    that you are acquiring 1024 samples at 500kHz, yet you get only 370k
    samples in 10 seconds. Are you periodically acquiring 1024 samples at
    500kHz?  Do you do any reads other than the final m_reader->ReadMultiSampleAsync(samplesPerChannel, m_data)? Could you provide the code where you stop the plotting process?
    Thanks,
    Ryan V.
    Ryan Verret
    Product Marketing Engineer
    Signal Generators
    National Instruments

  • JSP clear a buffer -- FLUSH ERROR

    Hai everybody!
    I've 3 jsp files. The First and the Second jsp file's will be forwarded to the Third jsp file when it completed certain process in each of the page.
    The problem that I faced is that, the First page can be forwarded to Third jsp file, but the Second page cant and this exception is cought.
    "org.apache.jasper.JasperException: Error: Attempt to clear a buffer that's already been flushed"
    So how should I solved this problem?
    I tried to put <%@ page autoFlush="true" %> at the begining of the Third jsp file but still doesnt work.
    in First.jsp
    ....< do some process here >
    ..<jsp:forward page="Third.jsp"/>
    in Second.jsp
    .....< do some process here >
    ..<jsp:forward page="Third.jsp"/>
    in Third.jsp
    <%@ page autoFlush="true" %>
    ....< other code goes here >
    ........Any help...Thanks
    ....Any help.

    there can be some errors on your 2nd jsp

  • 10G NEW FEATURE-HOW TO FLUSH THE BUFFER CACHE

    제품 : ORACLE SERVER
    작성날짜 : 2004-05-25
    10G NEW FEATURE-HOW TO FLUSH THE BUFFER CACHE
    ===============================================
    PURPOSE
    이 자료는 Oracle 10g new feature 로 manual 하게
    buffer cache 를 flush 할 수 있는 기능에 대하여 알아보도록 한다.
    Explanation
    Oracle 10g 에서 new feature 로 소개된 내용으로 SGA 내 buffer cache 의
    모든 data 를 command 수행으로 clear 할 수 있다.
    이 작업을 위해서는 "alter system" privileges 가 있어야 한다.
    Buffer cache flush 를 위한 command 는 다음과 같다.
    주의) 이 작업은 database performance 에 영향을 줄 수 있으므로 주의하여 사용하여야 한다.
    SQL > alter system flush buffer_cache;
    Example
    x$bh 를 query 하여 buffer cache 내 존재하는 정보를 확인한다.
    x$bh view 는 buffer cache headers 정보를 확인할 수 있는 view 이다.
    우선 test 로 table 을 생성하고 insert 를 수행하고
    x$bh 에서 barfil column(Relative file number of block) 과 file# 를 조회한다.
    1) Test table 생성
    SQL> Create table Test_buffer (a number)
    2 tablespace USERS;
    Table created.
    2) Test table 에 insert
    SQL> begin
    2 for i in 1..1000
    3 loop
    4 insert into test_buffer values (i);
    5 end loop;
    6 commit;
    7 end;
    8 /
    PL/SQL procedure successfully completed.
    3) Object_id 확인
    SQL> select OBJECT_id from dba_objects
    2 where object_name='TEST_BUFFER';
    OBJECT_ID
    42817
    4) x$bh 에서 buffer cache 내에 올라와 있는 DBARFIL(file number of block) 를 조회한다.
    SQL> select ts#,file#,dbarfil,dbablk,class,state,mode_held,obj
    2 from x$bh where obj= 42817;
    TS# FILE# DBARFIL DBABLK CLASS STATE MODE_HELD J
    9 23 23 1297 8 1 0 7
    9 23 23 1298 9 1 0 7
    9 23 23 1299 4 1 0 7
    9 23 23 1300 1 1 0 7
    9 23 23 1301 1 1 0 7
    9 23 23 1302 1 1 0 7
    9 23 23 1303 1 1 0 7
    9 23 23 1304 1 1 0 7
    8 rows selected.
    5) 다음과 같이 buffer cache 를 flush 하고 위 query 를 재수행한다.
    SQL > alter system flush buffer_cache ;
    SQL> select ts#,file#,dbarfil,dbablk,class,state,mode_held,obj
    2 from x$bh where obj= 42817;
    6) x$bh 에서 state column 이 0 인지 확인한다.
    0 은 free buffer 를 의미한다. flush 이후에 state 가 0 인지 확인함으로써
    flushing 이 command 를 통해 manual 하게 수행되었음을 확인할 수 있다.
    Reference Documents
    <NOTE. 251326.1>

    I am also having the same issue. Can this be addressed or does BEA provide 'almost'
    working code for the bargin price of $80k/cpu?
    "Prashanth " <[email protected]> wrote:
    >
    Hi ALL,
    I am using wl:cache tag for caching purpose. My reqmnt is such that I
    have to
    flush the cache based on user activity.
    I have tried all the combinations, but could not achieve the desired
    result.
    Can somebody guide me on how can we flush the cache??
    TIA, Prashanth Bhat.

  • Labview VISA Flush I/O Buffer, how can they be used?

    I need to flush the i/o serial buffer and the VISA Flush I/O Buffer or
    VISA Clear seems to be useful.
    How can they be used? I can't find any examples.
    I am using Labview 7.1
    Regards
    kas

    Do you mean what value to wire to the mask?
    If so, here is a description:
    VISA Flush I/O Buffer
    Flushes the I/O buffer specified by mask.
    mask designates the buffer to flush. Combine the buffer masks by bit to flush more than one buffer simultaneously. Use logical OR, also known as OR-ing or adding, to combine the values.
    Mask Values
    Hex Codes
    Description
    16
    0x10
    Flushes and discards contents of the receive buffer.
    32
    0x20
    Flushes and discards contents of the transmit buffer by writing all the buffered data to the device.
    64
    0x40
    Flushes and discards contents of the receive buffer.
    128
    0x80
    No I/O to the device.

  • Sitting on "Flushing buffers"

    ZfD 7.00 SP1.
    We haev seen this on a NetWare 6.5 box and a couple of OES SP3 Linux boxes.
    When restoring an image from the server, the initial restore takes the
    normal amount of time.
    However, when it gets to the point where it says "Flushing Buffers", it
    will sit there for 15 or more minutes. We don't see any hard drive
    activity during that time.
    We first noticed this problem on the admittedly underpowered Netware 6.5
    box. We have since brought up a couple of OES Linux boxes and installed
    the imaging stuff onto them. Some of them have the buffer flush issue,
    one or two do not.
    Our old imaging server was running Netware 6.5 with ZfD 7.00 HP3.
    So far we have only seen this with ZEN 7.00 SP1.
    Anyone have any ideas?
    Jeremy Mlazovsky
    Senior System Engineer - Enterprise Desktop
    UDit-Central Hardware Systems & Network Storage
    University of Dayton
    http://forge.novell.com/modules/xfmod/project/?udimage
    http://vmpconfig.sourceforge.net/
    http://regeditpe.sourceforge.net

    Hello Jeremy,
    I have the same problems with ZLM7 imaging NLD9 with ext2 and ext3. I also
    have seen problems with extended partitions. Today at LinuxWorld 2006 (in
    the Netherlands) I met an other customer who has also those restore
    problems with ZLM7. He was working with a LVM partition.
    In all the scenarios we dont have problems with the making off an image
    but we have serious problems with the restore. I hope Novell will check is
    problem in there own lab very soon.
    Because I have now 2 customers who has the same problems.
    I think ZLM7 is a very nice product but the have to fix this very quick
    because my customers are looking for other solutions.
    Regards,
    Johan Steenks
    RealOpen IT
    The Netherlands
    > Jeremy,
    >
    > It appears that in the past few days you have not received a response to
    your posting. That concerns us, and has triggered this automated reply.
    >
    > Has your problem been resolved? If not, you might try one of the
    following options:
    >
    > - Do a search of our knowledgebase at
    http://support.novell.com/search/kb_index.jsp
    > - Check all of the other support tools and options available at
    http://support.novell.com in both the "free product support" and "paid
    product support" drop down boxes.
    > - You could also try posting your message again. Make sure it is posted
    in the correct newsgroup. (http://support.novell.com/forums)
    >
    > If this is a reply to a duplicate posting, please ignore and accept our
    apologies and rest assured we will issue a stern reprimand to our posting bot.
    >
    > Good luck!
    >
    > Your Novell Product Support Forums Team
    > http://support.novell.com/forums/
    >

  • What is the default buffer size if we dont specify in buffer write?

    If we dont specify what is the default buffer size in BufferedWriter. How to increase/decrease the size of it?
    What is the purpose of flush?
    If flush() is not used, only partial content is written to the file. Is it because of the default size of the buffer.

    THis is the bufferedwriter class, it helps to look at them, look at the bold underlined, thats answers your defualt buffer size
    * @(#)BufferedWriter.java     1.26 03/12/19
    * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
    * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
    package java.io;
    * Write text to a character-output stream, buffering characters so as to
    * provide for the efficient writing of single characters, arrays, and strings.
    * <p> The buffer size may be specified, or the default size may be accepted.
    * The default is large enough for most purposes.
    * <p> A newLine() method is provided, which uses the platform's own notion of
    * line separator as defined by the system property <tt>line.separator</tt>.
    * Not all platforms use the newline character ('\n') to terminate lines.
    * Calling this method to terminate each output line is therefore preferred to
    * writing a newline character directly.
    * <p> In general, a Writer sends its output immediately to the underlying
    * character or byte stream. Unless prompt output is required, it is advisable
    * to wrap a BufferedWriter around any Writer whose write() operations may be
    * costly, such as FileWriters and OutputStreamWriters. For example,
    * <pre>
    * PrintWriter out
    * = new PrintWriter(new BufferedWriter(new FileWriter("foo.out")));
    * </pre>
    * will buffer the PrintWriter's output to the file. Without buffering, each
    * invocation of a print() method would cause characters to be converted into
    * bytes that would then be written immediately to the file, which can be very
    * inefficient.
    * @see PrintWriter
    * @see FileWriter
    * @see OutputStreamWriter
    * @version      1.26, 03/12/19
    * @author     Mark Reinhold
    * @since     JDK1.1
    public class BufferedWriter extends Writer {
    private Writer out;
    private char cb[];
    private int nChars, nextChar;
    private static int defaultCharBufferSize = 8192;
    * Line separator string. This is the value of the line.separator
    * property at the moment that the stream was created.
    private String lineSeparator;
    * Create a buffered character-output stream that uses a default-sized
    * output buffer.
    * @param out A Writer
    *public BufferedWriter(Writer out) {*
    *     this(out, defaultCharBufferSize);*
    * Create a new buffered character-output stream that uses an output
    * buffer of the given size.
    * @param out A Writer
    * @param sz Output-buffer size, a positive integer
    * @exception IllegalArgumentException If sz is <= 0
    public BufferedWriter(Writer out, int sz) {
         super(out);
         if (sz <= 0)
         throw new IllegalArgumentException("Buffer size <= 0");
         this.out = out;
         cb = new char[sz];
         nChars = sz;
         nextChar = 0;
         lineSeparator =     (String) java.security.AccessController.doPrivileged(
    new sun.security.action.GetPropertyAction("line.separator"));
    /** Check to make sure that the stream has not been closed */
    private void ensureOpen() throws IOException {
         if (out == null)
         throw new IOException("Stream closed");
    * Flush the output buffer to the underlying character stream, without
    * flushing the stream itself. This method is non-private only so that it
    * may be invoked by PrintStream.
    void flushBuffer() throws IOException {
         synchronized (lock) {
         ensureOpen();
         if (nextChar == 0)
              return;
         out.write(cb, 0, nextChar);
         nextChar = 0;
    * Write a single character.
    * @exception IOException If an I/O error occurs
    public void write(int c) throws IOException {
         synchronized (lock) {
         ensureOpen();
         if (nextChar >= nChars)
              flushBuffer();
         cb[nextChar++] = (char) c;
    * Our own little min method, to avoid loading java.lang.Math if we've run
    * out of file descriptors and we're trying to print a stack trace.
    private int min(int a, int b) {
         if (a < b) return a;
         return b;
    * Write a portion of an array of characters.
    * <p> Ordinarily this method stores characters from the given array into
    * this stream's buffer, flushing the buffer to the underlying stream as
    * needed. If the requested length is at least as large as the buffer,
    * however, then this method will flush the buffer and write the characters
    * directly to the underlying stream. Thus redundant
    * <code>BufferedWriter</code>s will not copy data unnecessarily.
    * @param cbuf A character array
    * @param off Offset from which to start reading characters
    * @param len Number of characters to write
    * @exception IOException If an I/O error occurs
    public void write(char cbuf[], int off, int len) throws IOException {
         synchronized (lock) {
         ensureOpen();
    if ((off < 0) || (off > cbuf.length) || (len < 0) ||
    ((off + len) > cbuf.length) || ((off + len) < 0)) {
    throw new IndexOutOfBoundsException();
    } else if (len == 0) {
    return;
         if (len >= nChars) {
              /* If the request length exceeds the size of the output buffer,
              flush the buffer and then write the data directly. In this
              way buffered streams will cascade harmlessly. */
              flushBuffer();
              out.write(cbuf, off, len);
              return;
         int b = off, t = off + len;
         while (b < t) {
              int d = min(nChars - nextChar, t - b);
              System.arraycopy(cbuf, b, cb, nextChar, d);
              b += d;
              nextChar += d;
              if (nextChar >= nChars)
              flushBuffer();
    * Write a portion of a String.
    * <p> If the value of the <tt>len</tt> parameter is negative then no
    * characters are written. This is contrary to the specification of this
    * method in the {@linkplain java.io.Writer#write(java.lang.String,int,int)
    * superclass}, which requires that an {@link IndexOutOfBoundsException} be
    * thrown.
    * @param s String to be written
    * @param off Offset from which to start reading characters
    * @param len Number of characters to be written
    * @exception IOException If an I/O error occurs
    public void write(String s, int off, int len) throws IOException {
         synchronized (lock) {
         ensureOpen();
         int b = off, t = off + len;
         while (b < t) {
              int d = min(nChars - nextChar, t - b);
              s.getChars(b, b + d, cb, nextChar);
              b += d;
              nextChar += d;
              if (nextChar >= nChars)
              flushBuffer();
    * Write a line separator. The line separator string is defined by the
    * system property <tt>line.separator</tt>, and is not necessarily a single
    * newline ('\n') character.
    * @exception IOException If an I/O error occurs
    public void newLine() throws IOException {
         write(lineSeparator);
    * Flush the stream.
    * @exception IOException If an I/O error occurs
    public void flush() throws IOException {
         synchronized (lock) {
         flushBuffer();
         out.flush();
    * Close the stream.
    * @exception IOException If an I/O error occurs
    public void close() throws IOException {
         synchronized (lock) {
         if (out == null)
              return;
         flushBuffer();
         out.close();
         out = null;
         cb = null;
    What Flush(); does
    Example, you have a file called c, your writer is b and buffereredwriter is a. so your programs calls a, a talks to b, and b talks to c. when you call the Flush method, the information is sent to the outfile which is c immediately before you even close the file, because when you write to the file, it does not write directly, it writes to a buffer, so flush actually causes the buffer to write to file. Also if you call the close method on that file without the flush, the buffer will still get flushed.
    consider BufferedWriter c = new BufferedWriter(new PrintWriter("c:\\c"));
    you wrap printwriter into a buffered writer, now if you close this "connection" to the file, the buffer will get flushed, noting that all the data is sitting in the buffered and not yet in the file, and this happens if something dont break...

  • [solved] No sound, ALSA finds soundcard, pulseaudio does not.

    Problem:
    pulseaudio can't find my soundcard (or it can't find ALSA, not sure). It falls back to a dummy-output and no input so i can't play sounds or use my mic.
    First appeared when:
    Installing software updates like a month ago. I ignored it at first in the hopes it will resolve itself with the next update an few dates later. It didn't so far. None of the packets I updated had linux|pulse|alsa|sound|audio in its name. So i guess it just triggered the problem in a indirect way.
    What did not help:
    Reinstalling packets with pulse|alsa|sound|audio in its name.
    Deleting ${HOME}/.pulse* .
    Rebooting.
    Resetting /etc/pulse/* or /etc/asound.conf to the defaults of the packaes they come with.
    Adding or removing my user to the audio group.
    Googling. Other threads i this forum.
    Additional infos:
    (Stuff that was requested from others which had similar problems. No other [solved]-threads were helping me so far.)
    /dev/dsp does not exist.
    fuser -v /dev/snd/* returns nothing
    aplay whatever.wav produces no sound.
    aplay -D sysdefault whatever.wav works.
    Using Gnome 3 started with gdm.
    aplay -l
    **** List of PLAYBACK Hardware Devices ****
    card 0: Intel [HDA Intel], device 0: ALC272 Analog [ALC272 Analog]
    Subdevices: 0/1
    Subdevice #0: subdevice #0
    card 0: Intel [HDA Intel], 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
    default
    Default ALSA Output (currently PulseAudio Sound Server)
    sysdefault:CARD=Intel
    HDA Intel, ALC272 Analog
    Default Audio Device
    front:CARD=Intel,DEV=0
    HDA Intel, ALC272 Analog
    Front speakers
    surround40:CARD=Intel,DEV=0
    HDA Intel, ALC272 Analog
    4.0 Surround output to Front and Rear speakers
    surround41:CARD=Intel,DEV=0
    HDA Intel, ALC272 Analog
    4.1 Surround output to Front, Rear and Subwoofer speakers
    surround50:CARD=Intel,DEV=0
    HDA Intel, ALC272 Analog
    5.0 Surround output to Front, Center and Rear speakers
    surround51:CARD=Intel,DEV=0
    HDA Intel, ALC272 Analog
    5.1 Surround output to Front, Center, Rear and Subwoofer speakers
    surround71:CARD=Intel,DEV=0
    HDA Intel, ALC272 Analog
    7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
    hdmi:CARD=Intel,DEV=0
    HDA Intel, HDMI 0
    HDMI Audio Output
    dmesg
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.6.7-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.2 (GCC) ) #1 SMP PREEMPT Sun Nov 18 10:11:22 CET 2012
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux cryptdevice=/dev/sda7:root root=/dev/mapper/root ro quiet init=/bin/systemd
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f3ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009f400-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000d2000-0x00000000000d3fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000d8000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000b76a0fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000b76a1000-0x00000000b76a6fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000b76a7000-0x00000000b77d1fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000b77d2000-0x00000000b780efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000b780f000-0x00000000b7908fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000b7909000-0x00000000b7b0efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000b7b0f000-0x00000000b7b18fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000b7b19000-0x00000000b7b1efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000b7b1f000-0x00000000b7b62fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000b7b63000-0x00000000b7b9efff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000b7b9f000-0x00000000b7be4fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000b7be5000-0x00000000b7bfefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000b7bff000-0x00000000b7bfffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000b7c00000-0x00000000b7dfffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000b8000000-0x00000000bfffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed003ff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed8ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI present.
    [ 0.000000] DMI: Dell Inc. Inspiron 1370/0R8PR3, BIOS A01 09/15/2009
    [ 0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0xb7c00 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-D3FFF write-protect
    [ 0.000000] D4000-DBFFF uncachable
    [ 0.000000] DC000-EFFFF write-back
    [ 0.000000] F0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0B8000000 mask FF8000000 uncachable
    [ 0.000000] 1 base 000000000 mask F80000000 write-back
    [ 0.000000] 2 base 080000000 mask FC0000000 write-back
    [ 0.000000] 3 base 0FFE40000 mask FFFFC0000 write-protect
    [ 0.000000] 4 base 0B7E00000 mask FFFE00000 uncachable
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] found SMP MP-table at [mem 0x000f6bf0-0x000f6bff] mapped at [ffff8800000f6bf0]
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
    [ 0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0xb7bfffff]
    [ 0.000000] [mem 0x00000000-0xb7bfffff] page 2M
    [ 0.000000] kernel direct mapping tables up to 0xb7bfffff @ [mem 0x1fffc000-0x1fffffff]
    [ 0.000000] RAMDISK: [mem 0x376e2000-0x37b68fff]
    [ 0.000000] ACPI: RSDP 00000000000f6b10 00024 (v02 DELL )
    [ 0.000000] ACPI: XSDT 00000000b7bf7369 00064 (v01 DELL CL09 06040000 LTP 00000000)
    [ 0.000000] ACPI: FACP 00000000b7be7000 000F4 (v03 TOSCPL CRESTLNE 06040000 ALAN 00000001)
    [ 0.000000] ACPI: DSDT 00000000b7be8000 077A9 (v02 Dell CANTIGA 06040000 INTL 20060608)
    [ 0.000000] ACPI: FACS 00000000b7b9efc0 00040
    [ 0.000000] ACPI: HPET 00000000b7bfed16 00038 (v01 INTEL CRESTLNE 06040000 LOHR 0000005A)
    [ 0.000000] ACPI: MCFG 00000000b7bfed4e 0003C (v01 INTEL CRESTLNE 06040000 LOHR 0000005A)
    [ 0.000000] ACPI: OSFR 00000000b7bfed8a 00070 (v01 DELL DELL 06040000 ASL 00000061)
    [ 0.000000] ACPI: APIC 00000000b7bfedfa 00068 (v01 PTLTD ? APIC 06040000 LTP 00000000)
    [ 0.000000] ACPI: BOOT 00000000b7bfee62 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001)
    [ 0.000000] ACPI: SLIC 00000000b7bfee8a 00176 (v01 DELL CL09 06040000 LTP 00000000)
    [ 0.000000] ACPI: SSDT 00000000b7be6000 00655 (v01 PmRef CpuPm 00003000 INTL 20050624)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x00000000b7bfffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0xb7bfffff]
    [ 0.000000] NODE_DATA [mem 0xb7be1000-0xb7be4fff]
    [ 0.000000] [ffffea0000000000-ffffea0002dfffff] PMD -> [ffff8800b4000000-ffff8800b6dfffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00010000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal empty
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00010000-0x0009efff]
    [ 0.000000] node 0: [mem 0x00100000-0xb76a0fff]
    [ 0.000000] node 0: [mem 0xb76a7000-0xb77d1fff]
    [ 0.000000] node 0: [mem 0xb780f000-0xb7908fff]
    [ 0.000000] node 0: [mem 0xb7b0f000-0xb7b18fff]
    [ 0.000000] node 0: [mem 0xb7b1f000-0xb7b62fff]
    [ 0.000000] node 0: [mem 0xb7b9f000-0xb7be4fff]
    [ 0.000000] node 0: [mem 0xb7bff000-0xb7bfffff]
    [ 0.000000] On node 0 totalpages: 751850
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 6 pages reserved
    [ 0.000000] DMA zone: 3913 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 11696 pages used for memmap
    [ 0.000000] DMA32 zone: 736171 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 2 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000d2000
    [ 0.000000] PM: Registered nosave memory: 00000000000d2000 - 00000000000d4000
    [ 0.000000] PM: Registered nosave memory: 00000000000d4000 - 00000000000d8000
    [ 0.000000] PM: Registered nosave memory: 00000000000d8000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 00000000b76a1000 - 00000000b76a7000
    [ 0.000000] PM: Registered nosave memory: 00000000b77d2000 - 00000000b780f000
    [ 0.000000] PM: Registered nosave memory: 00000000b7909000 - 00000000b7b0f000
    [ 0.000000] PM: Registered nosave memory: 00000000b7b19000 - 00000000b7b1f000
    [ 0.000000] PM: Registered nosave memory: 00000000b7b63000 - 00000000b7b9f000
    [ 0.000000] PM: Registered nosave memory: 00000000b7be5000 - 00000000b7bff000
    [ 0.000000] e820: [mem 0xc0000000-0xdfffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:2 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff8800b7400000 s84608 r8192 d21888 u1048576
    [ 0.000000] pcpu-alloc: s84608 r8192 d21888 u1048576 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 740084
    [ 0.000000] Policy zone: DMA32
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux cryptdevice=/dev/sda7:root root=/dev/mapper/root ro quiet init=/bin/systemd
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] __ex_table already sorted, skipping sort
    [ 0.000000] xsave: 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: 2944188k/3010560k available (4727k kernel code, 3160k absent, 63212k reserved, 4143k data, 772k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=2.
    [ 0.000000] NR_IRQS:4352 nr_irqs:512 16
    [ 0.000000] Extended CMOS year: 2000
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 12058624 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.000000] tsc: Detected 1296.696 MHz processor
    [ 0.003337] Calibrating delay loop (skipped), value calculated using timer frequency.. 2594.45 BogoMIPS (lpj=4322320)
    [ 0.003343] pid_max: default: 32768 minimum: 301
    [ 0.003400] Security Framework initialized
    [ 0.003407] AppArmor: AppArmor disabled by boot time parameter
    [ 0.003948] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.006850] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.008132] Mount-cache hash table entries: 256
    [ 0.008498] Initializing cgroup subsys cpuacct
    [ 0.008503] Initializing cgroup subsys memory
    [ 0.008517] Initializing cgroup subsys devices
    [ 0.008520] Initializing cgroup subsys freezer
    [ 0.008522] Initializing cgroup subsys net_cls
    [ 0.008525] Initializing cgroup subsys blkio
    [ 0.008570] CPU: Physical Processor ID: 0
    [ 0.008572] CPU: Processor Core ID: 0
    [ 0.008575] mce: CPU supports 6 MCE banks
    [ 0.008587] CPU0: Thermal monitoring enabled (TM2)
    [ 0.008592] process: using mwait in idle threads
    [ 0.008600] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
    Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32
    tlb_flushall_shift is 0xffffffff
    [ 0.010851] ACPI: Core revision 20120711
    [ 0.016699] ftrace: allocating 18348 entries in 72 pages
    [ 0.027201] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.061706] smpboot: CPU0: Genuine Intel(R) CPU U7300 @ 1.30GHz stepping 0a
    [ 0.063329] Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
    [ 0.063329] ... version: 2
    [ 0.063329] ... bit width: 40
    [ 0.063329] ... generic registers: 2
    [ 0.063329] ... value mask: 000000ffffffffff
    [ 0.063329] ... max period: 000000007fffffff
    [ 0.063329] ... fixed-purpose events: 3
    [ 0.063329] ... event mask: 0000000700000003
    [ 0.086782] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.100007] smpboot: Booting Node 0, Processors #1 OK
    [ 0.113162] Brought up 2 CPUs
    [ 0.113162] smpboot: Total of 2 processors activated (5188.90 BogoMIPS)
    [ 0.113436] devtmpfs: initialized
    [ 0.116686] PM: Registering ACPI NVS region [mem 0xb7b63000-0xb7b9efff] (245760 bytes)
    [ 0.121465] NET: Registered protocol family 16
    [ 0.121699] ACPI: bus type pci registered
    [ 0.121824] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.121828] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    [ 0.174683] PCI: Using configuration type 1 for base access
    [ 0.175619] bio: create slab <bio-0> at 0
    [ 0.175619] ACPI: Added _OSI(Module Device)
    [ 0.175619] ACPI: Added _OSI(Processor Device)
    [ 0.175619] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.175619] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.178073] ACPI: EC: Look up EC in DSDT
    [ 0.182902] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.188123] ACPI: SSDT 00000000b7b1aca0 00223 (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
    [ 0.188671] ACPI: Dynamic OEM Table Load:
    [ 0.188676] ACPI: SSDT (null) 00223 (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
    [ 0.188875] ACPI: SSDT 00000000b7b19620 00568 (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
    [ 0.189399] ACPI: Dynamic OEM Table Load:
    [ 0.189404] ACPI: SSDT (null) 00568 (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
    [ 0.189425] ACPI: SSDT 00000000b7b1aa20 001CF (v01 PmRef ApIst 00003000 INTL 20050624)
    [ 0.190407] ACPI: Dynamic OEM Table Load:
    [ 0.190412] ACPI: SSDT (null) 001CF (v01 PmRef ApIst 00003000 INTL 20050624)
    [ 0.190429] ACPI: SSDT 00000000b7b1af20 0008D (v01 PmRef ApCst 00003000 INTL 20050624)
    [ 0.190693] ACPI: Dynamic OEM Table Load:
    [ 0.190698] ACPI: SSDT (null) 0008D (v01 PmRef ApCst 00003000 INTL 20050624)
    [ 0.190715] ACPI: Interpreter enabled
    [ 0.190715] ACPI: (supports S0 S3 S4 S5)
    [ 0.190715] ACPI: Using IOAPIC for interrupt routing
    [ 0.323314] ACPI: EC: GPE = 0x1c, I/O: command/status = 0x66, data = 0x62
    [ 0.323314] ACPI: No dock devices found.
    [ 0.323314] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.323314] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.323314] PCI host bridge to bus 0000:00
    [ 0.323314] pci_bus 0000:00: busn_res: [bus 00-ff] is inserted under domain [bus 00-ff]
    [ 0.323314] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.323314] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.323314] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.323314] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.323314] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.323314] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xdfffffff]
    [ 0.323314] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfebfffff]
    [ 0.323314] pci 0000:00:00.0: [8086:2a40] type 00 class 0x060000
    [ 0.323314] DMAR: Forcing write-buffer flush capability
    [ 0.323314] DMAR: Disabling IOMMU for graphics on this chipset
    [ 0.323314] pci 0000:00:02.0: [8086:2a42] type 00 class 0x030000
    [ 0.323314] pci 0000:00:02.0: reg 10: [mem 0xf0000000-0xf03fffff 64bit]
    [ 0.323314] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.323314] pci 0000:00:02.0: reg 20: [io 0x1800-0x1807]
    [ 0.323314] pci 0000:00:02.1: [8086:2a43] type 00 class 0x038000
    [ 0.323314] pci 0000:00:02.1: reg 10: [mem 0xf0400000-0xf04fffff 64bit]
    [ 0.323314] pci 0000:00:1a.0: [8086:2937] type 00 class 0x0c0300
    [ 0.323314] pci 0000:00:1a.0: reg 20: [io 0x1820-0x183f]
    [ 0.323314] pci 0000:00:1a.1: [8086:2938] type 00 class 0x0c0300
    [ 0.323314] pci 0000:00:1a.1: reg 20: [io 0x1840-0x185f]
    [ 0.323314] pci 0000:00:1a.2: [8086:2939] type 00 class 0x0c0300
    [ 0.323314] pci 0000:00:1a.2: reg 20: [io 0x1860-0x187f]
    [ 0.323314] pci 0000:00:1a.7: [8086:293c] type 00 class 0x0c0320
    [ 0.323314] pci 0000:00:1a.7: reg 10: [mem 0xf0804800-0xf0804bff]
    [ 0.323314] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    [ 0.323314] pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300
    [ 0.323314] pci 0000:00:1b.0: reg 10: [mem 0xf0800000-0xf0803fff 64bit]
    [ 0.323314] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.323342] pci 0000:00:1c.0: [8086:2940] type 01 class 0x060400
    [ 0.323470] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.323513] pci 0000:00:1c.1: [8086:2942] type 01 class 0x060400
    [ 0.323640] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.323688] pci 0000:00:1c.5: [8086:294a] type 01 class 0x060400
    [ 0.323816] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
    [ 0.323860] pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300
    [ 0.323931] pci 0000:00:1d.0: reg 20: [io 0x1880-0x189f]
    [ 0.324017] pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300
    [ 0.324087] pci 0000:00:1d.1: reg 20: [io 0x18a0-0x18bf]
    [ 0.324173] pci 0000:00:1d.2: [8086:2936] type 00 class 0x0c0300
    [ 0.324243] pci 0000:00:1d.2: reg 20: [io 0x18c0-0x18df]
    [ 0.324346] pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320
    [ 0.324379] pci 0000:00:1d.7: reg 10: [mem 0xf0804c00-0xf0804fff]
    [ 0.324516] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    [ 0.324552] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    [ 0.324666] pci 0000:00:1f.0: [8086:2917] type 00 class 0x060100
    [ 0.324866] pci 0000:00:1f.2: [8086:2929] type 00 class 0x010601
    [ 0.324900] pci 0000:00:1f.2: reg 10: [io 0x1818-0x181f]
    [ 0.324915] pci 0000:00:1f.2: reg 14: [io 0x180c-0x180f]
    [ 0.324931] pci 0000:00:1f.2: reg 18: [io 0x1810-0x1817]
    [ 0.324946] pci 0000:00:1f.2: reg 1c: [io 0x1808-0x180b]
    [ 0.324960] pci 0000:00:1f.2: reg 20: [io 0x18e0-0x18ff]
    [ 0.324975] pci 0000:00:1f.2: reg 24: [mem 0xf0804000-0xf08047ff]
    [ 0.325062] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.325096] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500
    [ 0.325123] pci 0000:00:1f.3: reg 10: [mem 0x00000000-0x000000ff 64bit]
    [ 0.325160] pci 0000:00:1f.3: reg 20: [io 0x1c00-0x1c1f]
    [ 0.325277] pci_bus 0000:02: busn_res: [bus 02] is inserted under [bus 00-ff]
    [ 0.325283] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.325366] pci_bus 0000:08: busn_res: [bus 08] is inserted under [bus 00-ff]
    [ 0.325632] pci 0000:08:00.0: [14e4:4315] type 00 class 0x028000
    [ 0.325707] pci 0000:08:00.0: reg 10: [mem 0xf0500000-0xf0503fff 64bit]
    [ 0.326109] pci 0000:08:00.0: supports D1 D2
    [ 0.326112] pci 0000:08:00.0: PME# supported from D0 D3hot D3cold
    [ 0.326304] pci 0000:00:1c.1: PCI bridge to [bus 08]
    [ 0.326314] pci 0000:00:1c.1: bridge window [mem 0xf0500000-0xf05fffff]
    [ 0.326391] pci_bus 0000:20: busn_res: [bus 20] is inserted under [bus 00-ff]
    [ 0.326477] pci 0000:20:00.0: [10ec:8168] type 00 class 0x020000
    [ 0.326546] pci 0000:20:00.0: reg 10: [io 0x2000-0x20ff]
    [ 0.326670] pci 0000:20:00.0: reg 18: [mem 0xf0904000-0xf0904fff 64bit pref]
    [ 0.326745] pci 0000:20:00.0: reg 20: [mem 0xf0900000-0xf0903fff 64bit pref]
    [ 0.326794] pci 0000:20:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
    [ 0.327093] pci 0000:20:00.0: supports D1 D2
    [ 0.327096] pci 0000:20:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.327302] pci 0000:00:1c.5: PCI bridge to [bus 20]
    [ 0.327309] pci 0000:00:1c.5: bridge window [io 0x2000-0x2fff]
    [ 0.327323] pci 0000:00:1c.5: bridge window [mem 0xf0900000-0xf09fffff 64bit pref]
    [ 0.327363] pci_bus 0000:26: busn_res: [bus 26] is inserted under [bus 00-ff]
    [ 0.327435] pci 0000:00:1e.0: PCI bridge to [bus 26] (subtractive decode)
    [ 0.327452] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.327456] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.327460] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.327463] pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    [ 0.327467] pci 0000:00:1e.0: bridge window [mem 0xc0000000-0xdfffffff] (subtractive decode)
    [ 0.327471] pci 0000:00:1e.0: bridge window [mem 0xf0000000-0xfebfffff] (subtractive decode)
    [ 0.327505] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.327638] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT]
    [ 0.327717] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
    [ 0.327766] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
    [ 0.327824] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP06._PRT]
    [ 0.327883] pci0000:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    [ 0.327886] pci0000:00: Unable to request _OSC control (_OSC support mask: 0x08)
    [ 0.334993] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    [ 0.335069] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    [ 0.335141] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 *5 6 7 10 12 14 15)
    [ 0.335212] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    [ 0.335283] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
    [ 0.335355] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 *7 11 12 14 15)
    [ 0.335424] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    [ 0.335495] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    [ 0.336671] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.336689] vgaarb: loaded
    [ 0.336691] vgaarb: bridge control possible 0000:00:02.0
    [ 0.336769] PCI: Using ACPI for IRQ routing
    [ 0.348092] PCI: pci_cache_line_size set to 64 bytes
    [ 0.348605] e820: reserve RAM buffer [mem 0x0009f400-0x0009ffff]
    [ 0.348608] e820: reserve RAM buffer [mem 0xb76a1000-0xb7ffffff]
    [ 0.348614] e820: reserve RAM buffer [mem 0xb77d2000-0xb7ffffff]
    [ 0.348619] e820: reserve RAM buffer [mem 0xb7909000-0xb7ffffff]
    [ 0.348623] e820: reserve RAM buffer [mem 0xb7b19000-0xb7ffffff]
    [ 0.348627] e820: reserve RAM buffer [mem 0xb7b63000-0xb7ffffff]
    [ 0.348631] e820: reserve RAM buffer [mem 0xb7be5000-0xb7ffffff]
    [ 0.348634] e820: reserve RAM buffer [mem 0xb7c00000-0xb7ffffff]
    [ 0.348791] NetLabel: Initializing
    [ 0.348794] NetLabel: domain hash size = 128
    [ 0.348796] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.348816] NetLabel: unlabeled traffic allowed by default
    [ 0.348840] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
    [ 0.348847] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    [ 0.348855] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
    [ 0.370000] Switching to clocksource hpet
    [ 0.381464] pnp: PnP ACPI init
    [ 0.381496] ACPI: bus type pnp registered
    [ 0.382022] pnp 00:00: [bus 00-ff]
    [ 0.382027] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.382031] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.382035] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.382039] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.382042] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
    [ 0.382046] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
    [ 0.382050] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
    [ 0.382053] pnp 00:00: [mem 0x000cc000-0x000cffff window]
    [ 0.382057] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
    [ 0.382060] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
    [ 0.382064] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
    [ 0.382067] pnp 00:00: [mem 0x000dc000-0x000dffff window]
    [ 0.382071] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
    [ 0.382075] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
    [ 0.382078] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
    [ 0.382086] pnp 00:00: [mem 0x000ec000-0x000effff window]
    [ 0.382089] pnp 00:00: [mem 0x000f0000-0x000fffff window]
    [ 0.382093] pnp 00:00: [mem 0xc0000000-0xdfffffff window]
    [ 0.382097] pnp 00:00: [mem 0xf0000000-0xfebfffff window]
    [ 0.382100] pnp 00:00: [mem 0xfed40000-0xfed44fff window]
    [ 0.382200] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    [ 0.440057] pnp 00:01: [io 0x0000-0x001f]
    [ 0.440061] pnp 00:01: [io 0x0081-0x0091]
    [ 0.440065] pnp 00:01: [io 0x0093-0x009f]
    [ 0.440068] pnp 00:01: [io 0x00c0-0x00df]
    [ 0.440072] pnp 00:01: [dma 4]
    [ 0.440121] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.440232] pnp 00:02: [mem 0xfed00000-0xfed003ff]
    [ 0.440329] system 00:02: [mem 0xfed00000-0xfed003ff] has been reserved
    [ 0.440336] system 00:02: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
    [ 0.440353] pnp 00:03: [io 0x00f0]
    [ 0.440369] pnp 00:03: [irq 13]
    [ 0.440414] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.440433] pnp 00:04: [io 0x002e-0x002f]
    [ 0.440436] pnp 00:04: [io 0x0061]
    [ 0.440439] pnp 00:04: [io 0x0063]
    [ 0.440443] pnp 00:04: [io 0x0065]
    [ 0.440446] pnp 00:04: [io 0x0067]
    [ 0.440449] pnp 00:04: [io 0x0070]
    [ 0.440452] pnp 00:04: [io 0x0080]
    [ 0.440456] pnp 00:04: [io 0x0092]
    [ 0.440459] pnp 00:04: [io 0x00b2-0x00b3]
    [ 0.440462] pnp 00:04: [io 0x0480-0x048f]
    [ 0.440466] pnp 00:04: [io 0xffff]
    [ 0.440469] pnp 00:04: [io 0xffff]
    [ 0.440472] pnp 00:04: [io 0x0400-0x047f]
    [ 0.440475] pnp 00:04: [io 0x1180-0x11ff]
    [ 0.440479] pnp 00:04: [io 0xfe00]
    [ 0.440482] pnp 00:04: [io 0xff2c-0xff7f]
    [ 0.440574] system 00:04: [io 0x0480-0x048f] has been reserved
    [ 0.440578] system 00:04: [io 0xffff] has been reserved
    [ 0.440583] system 00:04: [io 0xffff] has been reserved
    [ 0.440587] system 00:04: [io 0x0400-0x047f] has been reserved
    [ 0.440591] system 00:04: [io 0x1180-0x11ff] has been reserved
    [ 0.440596] system 00:04: [io 0xfe00] has been reserved
    [ 0.440600] system 00:04: [io 0xff2c-0xff7f] has been reserved
    [ 0.440606] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.440620] pnp 00:05: [io 0x0070-0x0077]
    [ 0.440629] pnp 00:05: [irq 8]
    [ 0.440674] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.440691] pnp 00:06: [io 0x0060]
    [ 0.440694] pnp 00:06: [io 0x0064]
    [ 0.440703] pnp 00:06: [irq 1]
    [ 0.440753] pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.440772] pnp 00:07: [irq 12]
    [ 0.440819] pnp 00:07: Plug and Play ACPI device, IDs DLL0418 PNP0f13 (active)
    [ 0.441027] pnp 00:08: [mem 0xfed1c000-0xfed1ffff]
    [ 0.441031] pnp 00:08: [mem 0xfed10000-0xfed13fff]
    [ 0.441034] pnp 00:08: [mem 0xfed18000-0xfed18fff]
    [ 0.441038] pnp 00:08: [mem 0xfed19000-0xfed19fff]
    [ 0.441041] pnp 00:08: [mem 0xe0000000-0xefffffff]
    [ 0.441045] pnp 00:08: [mem 0xfed20000-0xfed3ffff]
    [ 0.441048] pnp 00:08: [mem 0xfed45000-0xfed8ffff]
    [ 0.441146] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.441151] system 00:08: [mem 0xfed10000-0xfed13fff] has been reserved
    [ 0.441155] system 00:08: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.441159] system 00:08: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.441164] system 00:08: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.441168] system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.441172] system 00:08: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.441178] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.441356] pnp: PnP ACPI: found 9 devices
    [ 0.441359] ACPI: ACPI bus type pnp unregistered
    [ 0.449759] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 02] add_size 1000
    [ 0.449766] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
    [ 0.449771] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 02] add_size 200000
    [ 0.449786] pci 0000:00:1c.1: bridge window [io 0x1000-0x0fff] to [bus 08] add_size 1000
    [ 0.449791] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 08] add_size 200000
    [ 0.449807] pci 0000:00:1c.5: bridge window [mem 0x00100000-0x001fffff] to [bus 20] add_size 400000
    [ 0.449828] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    [ 0.449833] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.449837] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.449841] pci 0000:00:1c.5: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 400000
    [ 0.449845] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.449849] pci 0000:00:1c.1: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.449858] pci 0000:00:1c.0: BAR 14: assigned [mem 0xc0000000-0xc01fffff]
    [ 0.449864] pci 0000:00:1c.0: BAR 15: assigned [mem 0xc0200000-0xc03fffff 64bit pref]
    [ 0.449869] pci 0000:00:1c.1: BAR 15: assigned [mem 0xc0400000-0xc05fffff 64bit pref]
    [ 0.449874] pci 0000:00:1c.5: BAR 14: assigned [mem 0xc0600000-0xc0afffff]
    [ 0.449880] pci 0000:00:1c.0: BAR 13: assigned [io 0x3000-0x3fff]
    [ 0.449885] pci 0000:00:1c.1: BAR 13: assigned [io 0x4000-0x4fff]
    [ 0.449890] pci 0000:00:1f.3: BAR 0: assigned [mem 0xc0b00000-0xc0b000ff 64bit]
    [ 0.449908] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.449913] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    [ 0.449922] pci 0000:00:1c.0: bridge window [mem 0xc0000000-0xc01fffff]
    [ 0.449929] pci 0000:00:1c.0: bridge window [mem 0xc0200000-0xc03fffff 64bit pref]
    [ 0.449939] pci 0000:00:1c.1: PCI bridge to [bus 08]
    [ 0.449944] pci 0000:00:1c.1: bridge window [io 0x4000-0x4fff]
    [ 0.449953] pci 0000:00:1c.1: bridge window [mem 0xf0500000-0xf05fffff]
    [ 0.449960] pci 0000:00:1c.1: bridge window [mem 0xc0400000-0xc05fffff 64bit pref]
    [ 0.449971] pci 0000:20:00.0: BAR 6: assigned [mem 0xf0920000-0xf093ffff pref]
    [ 0.449975] pci 0000:00:1c.5: PCI bridge to [bus 20]
    [ 0.449980] pci 0000:00:1c.5: bridge window [io 0x2000-0x2fff]
    [ 0.449989] pci 0000:00:1c.5: bridge window [mem 0xc0600000-0xc0afffff]
    [ 0.449996] pci 0000:00:1c.5: bridge window [mem 0xf0900000-0xf09fffff 64bit pref]
    [ 0.450021] pci 0000:00:1e.0: PCI bridge to [bus 26]
    [ 0.450083] pci 0000:00:1e.0: setting latency timer to 64
    [ 0.450089] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.450093] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.450097] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.450101] pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000d7fff]
    [ 0.450105] pci_bus 0000:00: resource 8 [mem 0xc0000000-0xdfffffff]
    [ 0.450108] pci_bus 0000:00: resource 9 [mem 0xf0000000-0xfebfffff]
    [ 0.450112] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
    [ 0.450116] pci_bus 0000:02: resource 1 [mem 0xc0000000-0xc01fffff]
    [ 0.450120] pci_bus 0000:02: resource 2 [mem 0xc0200000-0xc03fffff 64bit pref]
    [ 0.450124] pci_bus 0000:08: resource 0 [io 0x4000-0x4fff]
    [ 0.450127] pci_bus 0000:08: resource 1 [mem 0xf0500000-0xf05fffff]
    [ 0.450131] pci_bus 0000:08: resource 2 [mem 0xc0400000-0xc05fffff 64bit pref]
    [ 0.450135] pci_bus 0000:20: resource 0 [io 0x2000-0x2fff]
    [ 0.450139] pci_bus 0000:20: resource 1 [mem 0xc0600000-0xc0afffff]
    [ 0.450142] pci_bus 0000:20: resource 2 [mem 0xf0900000-0xf09fffff 64bit pref]
    [ 0.450146] pci_bus 0000:26: resource 4 [io 0x0000-0x0cf7]
    [ 0.450150] pci_bus 0000:26: resource 5 [io 0x0d00-0xffff]
    [ 0.450154] pci_bus 0000:26: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.450157] pci_bus 0000:26: resource 7 [mem 0x000d4000-0x000d7fff]
    [ 0.450161] pci_bus 0000:26: resource 8 [mem 0xc0000000-0xdfffffff]
    [ 0.450165] pci_bus 0000:26: resource 9 [mem 0xf0000000-0xfebfffff]
    [ 0.450219] NET: Registered protocol family 2
    [ 0.451401] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 0.456144] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.456812] TCP: Hash tables configured (established 524288 bind 65536)
    [ 0.456888] TCP: reno registered
    [ 0.456903] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.456958] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.457123] NET: Registered protocol family 1
    [ 0.457150] pci 0000:00:02.0: Boot video device
    [ 0.457669] PCI: CLS 64 bytes, default 64
    [ 0.457746] Unpacking initramfs...
    [ 0.626300] Freeing initrd memory: 4636k freed
    [ 0.628543] Simple Boot Flag at 0x3e set to 0x1
    [ 0.629045] audit: initializing netlink socket (disabled)
    [ 0.629069] type=2000 audit(1354288244.626:1): initialized
    [ 0.648430] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.651510] VFS: Disk quotas dquot_6.5.2
    [ 0.651590] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.651831] msgmni has been set to 5759
    [ 0.652156] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.652204] io scheduler noop registered
    [ 0.652208] io scheduler deadline registered
    [ 0.652301] io scheduler cfq registered (default)
    [ 0.652518] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
    [ 0.652689] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
    [ 0.652857] pcieport 0000:00:1c.5: irq 42 for MSI/MSI-X
    [ 0.653107] intel_idle: does not run on family 6 model 23
    [ 0.653156] GHES: HEST is not enabled!
    [ 0.653245] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.653953] Linux agpgart interface v0.103
    [ 0.654073] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 0.669080] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.669133] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.669294] mousedev: PS/2 mouse device common for all mice
    [ 0.670409] rtc_cmos 00:05: RTC can wake from S4
    [ 0.670599] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [ 0.670636] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 0.670648] cpuidle: using governor ladder
    [ 0.670651] cpuidle: using governor menu
    [ 0.670829] drop_monitor: Initializing network drop monitor service
    [ 0.670946] TCP: cubic registered
    [ 0.671122] NET: Registered protocol family 10
    [ 0.671359] NET: Registered protocol family 17
    [ 0.671373] Key type dns_resolver registered
    [ 0.671720] PM: Hibernation image not present or could not be loaded.
    [ 0.671743] registered taskstats version 1
    [ 0.672782] rtc_cmos 00:05: setting system clock to 2012-11-30 15:10:45 UTC (1354288245)
    [ 0.674872] Freeing unused kernel memory: 772k freed
    [ 0.675168] Write protecting the kernel read-only data: 8192k
    [ 0.682434] Freeing unused kernel memory: 1408k freed
    [ 0.683107] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.685881] Freeing unused kernel memory: 568k freed
    [ 0.698116] systemd-udevd[43]: starting version 195
    [ 0.701918] SCSI subsystem initialized
    [ 0.703991] ACPI: bus type scsi registered
    [ 0.704082] libata version 3.00 loaded.
    [ 0.705773] ahci 0000:00:1f.2: version 3.0
    [ 0.705858] ahci 0000:00:1f.2: irq 43 for MSI/MSI-X
    [ 0.705949] ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x3 impl SATA mode
    [ 0.705955] ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc sxs
    [ 0.705962] ahci 0000:00:1f.2: setting latency timer to 64
    [ 0.708617] scsi0 : ahci
    [ 0.709413] scsi1 : ahci
    [ 0.709823] scsi2 : ahci
    [ 0.710229] scsi3 : ahci
    [ 0.710359] ata1: SATA max UDMA/133 abar m2048@0xf0804000 port 0xf0804100 irq 43
    [ 0.710365] ata2: SATA max UDMA/133 abar m2048@0xf0804000 port 0xf0804180 irq 43
    [ 0.710367] ata3: DUMMY
    [ 0.710370] ata4: DUMMY
    [ 1.196712] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.196745] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.198401] ata1.00: ATA-8: WDC WD3200BEKT-75F3T0, 11.01A11, max UDMA/133
    [ 1.198405] ata1.00: 625142448 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
    [ 1.200123] ata1.00: configured for UDMA/133
    [ 1.200301] scsi 0:0:0:0: Direct-Access ATA WDC WD3200BEKT-7 11.0 PQ: 0 ANSI: 5
    [ 1.201956] sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
    [ 1.202042] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.202047] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.202083] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.213584] ata2.00: ATAPI: TSSTcorp DVD+/-RW TS-U633F, D500, max UDMA/100
    [ 1.213590] ata2.00: applying bridge limits
    [ 1.229911] ata2.00: configured for UDMA/100
    [ 1.232328] scsi 1:0:0:0: CD-ROM TSSTcorp DVD+-RW TS-U633F D500 PQ: 0 ANSI: 5
    [ 1.270602] sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 sda8 >
    [ 1.271452] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.273864] ACPI: bus type usb registered
    [ 1.273912] usbcore: registered new interface driver usbfs
    [ 1.273946] usbcore: registered new interface driver hub
    [ 1.273996] usbcore: registered new device driver usb
    [ 1.274813] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 1.274869] ehci_hcd 0000:00:1a.7: setting latency timer to 64
    [ 1.274876] ehci_hcd 0000:00:1a.7: EHCI Host Controller
    [ 1.274891] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
    [ 1.278814] ehci_hcd 0000:00:1a.7: debug port 1
    [ 1.278826] ehci_hcd 0000:00:1a.7: cache line size of 64 is not supported
    [ 1.278852] ehci_hcd 0000:00:1a.7: irq 19, io mem 0xf0804800
    [ 1.279113] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 1.279117] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.280054] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 1.286696] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    [ 1.286950] hub 1-0:1.0: USB hub found
    [ 1.286958] hub 1-0:1.0: 6 ports detected
    [ 1.287158] ehci_hcd 0000:00:1d.7: setting latency timer to 64
    [ 1.287164] ehci_hcd 0000:00:1d.7: EHCI Host Controller
    [ 1.287174] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
    [ 1.291082] ehci_hcd 0000:00:1d.7: debug port 1
    [ 1.291093] ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
    [ 1.291118] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xf0804c00
    [ 1.300028] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 1.300266] hub 2-0:1.0: USB hub found
    [ 1.300273] hub 2-0:1.0: 6 ports detected
    [ 1.301086] uhci_hcd: USB Universal Host Controller Interface driver
    [ 1.301130] uhci_hcd 0000:00:1a.0: setting latency timer to 64
    [ 1.301135] uhci_hcd 0000:00:1a.0: UHCI Host Controller
    [ 1.301145] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    [ 1.301191] uhci_hcd 0000:00:1a.0: irq 16, io base 0x00001820
    [ 1.301506] hub 3-0:1.0: USB hub found
    [ 1.301513] hub 3-0:1.0: 2 ports detected
    [ 1.301640] uhci_hcd 0000:00:1a.1: setting latency timer to 64
    [ 1.301645] uhci_hcd 0000:00:1a.1: UHCI Host Controller
    [ 1.301654] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
    [ 1.301701] uhci_hcd 0000:00:1a.1: irq 21, io base 0x00001840
    [ 1.301997] hub 4-0:1.0: USB hub found
    [ 1.302004] hub 4-0:1.0: 2 ports detected
    [ 1.302158] uhci_hcd 0000:00:1a.2: setting latency timer to 64
    [ 1.302164] uhci_hcd 0000:00:1a.2: UHCI Host Controller
    [ 1.302198] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
    [ 1.302230] uhci_hcd 0000:00:1a.2: irq 19, io base 0x00001860
    [ 1.302434] hub 5-0:1.0: USB hub found
    [ 1.302441] hub 5-0:1.0: 2 ports detected
    [ 1.302557] uhci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 1.302562] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 1.302572] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
    [ 1.302603] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001880
    [ 1.302824] hub 6-0:1.0: USB hub found
    [ 1.302833] hub 6-0:1.0: 2 ports detected
    [ 1.303165] uhci_hcd 0000:00:1d.1: setting latency timer to 64
    [ 1.303171] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 1.303186] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
    [ 1.303219] uhci_hcd 0000:00:1d.1: irq 19, io base 0x000018a0
    [ 1.303759] hub 7-0:1.0: USB hub found
    [ 1.303766] hub 7-0:1.0: 2 ports detected
    [ 1.303897] uhci_hcd 0000:00:1d.2: setting latency timer to 64
    [ 1.303903] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 1.303995] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
    [ 1.304040] uhci_hcd 0000:00:1d.2: irq 18, io base 0x000018c0
    [ 1.304881] hub 8-0:1.0: USB hub found
    [ 1.304888] hub 8-0:1.0: 2 ports detected
    [ 1.323613] SGI XFS with ACLs, security attributes, realtime, large block/inode numbers, no debug enabled
    [ 1.330105] [drm] Initialized drm 1.1.0 20060810
    [ 1.331660] agpgart-intel 0000:00:00.0: Intel GM45 Chipset
    [ 1.331843] agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
    [ 1.333755] agpgart-intel 0000:00:00.0: detected 131072K stolen memory
    [ 1.333940] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
    [ 1.334797] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input1
    [ 1.334889] ACPI: Lid Switch [LID0]
    [ 1.335079] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
    [ 1.335086] ACPI: Power Button [PWRB]
    [ 1.335191] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    [ 1.335196] ACPI: Power Button [PWRF]
    [ 1.341526] i915 0000:00:02.0: setting latency timer to 64
    [ 1.414990] i915 0000:00:02.0: irq 44 for MSI/MSI-X
    [ 1.415006] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 1.415008] [drm] Driver supports precise vblank timestamp query.
    [ 1.415071] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 1.606699] usb 2-4: new high-speed USB device number 2 using ehci_hcd
    [ 1.630029] tsc: Refined TSC clocksource calibration: 1296.749 MHz
    [ 1.630036] Switching to clocksource tsc
    [ 2.030864] fbcon: inteldrmfb (fb0) is primary device
    [ 2.090024] usb 2-5: new high-speed USB device number 3 using ehci_hcd
    [ 2.574662] Console: switching to colour frame buffer device 170x48
    [ 2.579271] fb0: inteldrmfb frame buffer device
    [ 2.579273] drm: registered panic notifier
    [ 2.680113] acpi device:07: registered as cooling_device0
    [ 2.780104] acpi device:08: registered as cooling_device1
    [ 2.780177] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 2.780313] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input4
    [ 2.780358] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 2.963907] device-mapper: uevent: version 1.0.3
    [ 2.964084] device-mapper: ioctl: 4.23.0-ioctl (2012-07-25) initialised: [email protected]
    [ 3.763615] atkbd serio0: Unknown key pressed (translated set 2, code 0x8e on isa0060/serio0).
    [ 3.763622] atkbd serio0: Use 'setkeycodes e00e <keycode>' to make it known.
    [ 9.679599] XFS (dm-0): Mounting Filesystem
    [ 9.807350] XFS (dm-0): Ending clean mount
    [ 10.447920] systemd[1]: RTC configured in localtime, applying delta of 60 minutes to system time.
    [ 10.481565] systemd[1]: systemd 196 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ; arch)
    [ 10.507375] systemd[1]: Set hostname to <xxx-laptop>.
    [ 11.844864] systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory. See system logs and 'systemctl status display-manager.service' for details.
    [ 11.845276] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 11.845371] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 11.845393] systemd[1]: Starting Login Prompts.
    [ 11.845414] systemd[1]: Reached target Login Prompts.
    [ 11.845429] systemd[1]: Starting Arch Daemons.
    [ 11.845447] systemd[1]: Reached target Arch Daemons.
    [ 11.845462] systemd[1]: Starting Remote File Systems.
    [ 11.845481] systemd[1]: Reached target Remote File Systems.
    [ 11.845496] systemd[1]: Starting Syslog Socket.
    [ 11.845558] systemd[1]: Listening on Syslog Socket.
    [ 11.845576] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 11.845615] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 11.845630] systemd[1]: Starting Delayed Shutdown Socket.
    [ 11.845668] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 11.845766] systemd[1]: Starting udev Kernel Socket.
    [ 11.845804] systemd[1]: Listening on udev Kernel Socket.
    [ 11.845885] systemd[1]: Starting udev Control Socket.
    [ 11.845927] systemd[1]: Listening on udev Control Socket.
    [ 11.845979] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 11.846139] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 11.846157] systemd[1]: Expecting device dev-mapper-home.device...
    [ 11.846175] systemd[1]: Expecting device dev-sda8.device...
    [ 11.846193] systemd[1]: Expecting device dev-mapper-swap.device...
    [ 11.846210] systemd[1]: Expecting device dev-sda6.device...
    [ 11.846232] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 11.846291] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 11.846308] systemd[1]: Expecting device dev-disk-by\x2duuid-f19efb1f\x2d9a5b\x2d4f22\x2db35d\x2d4a603145a436.device...
    [ 11.846328] systemd[1]: Expecting device dev-disk-by\x2duuid-bd984744\x2d036e\x2d47e5\x2db40f\x2d04fa9f6d0f35.device...
    [ 11.846347] systemd[1]: Expecting device dev-disk-by\x2duuid-f1bab4e5\x2de736\x2d443a\x2d827e\x2d59f202a548ab.device...
    [ 11.846368] systemd[1]: Starting Journal Socket.
    [ 11.846439] systemd[1]: Listening on Journal Socket.
    [ 11.846467] systemd[1]: Started File System Check on Root Device.
    [ 11.846485] systemd[1]: Starting Remount Root and Kernel File Systems...
    [ 11.850382] systemd[1]: Mounting Temporary Directory...
    [ 11.998839] systemd[1]: tmp.mount: Directory /tmp to mount over is not empty, mounting anyway. (To see the over-mounted files, please manually mount the underlying file system to a secondary location.)
    [ 12.026864] systemd[1]: Mounting Huge Pages File System...
    [ 12.040270] systemd[1]: Mounting POSIX Message Queue File System...
    [ 12.043518] systemd[1]: Starting udev Coldplug all Devices...
    [ 12.156149] systemd[1]: Starting Load Kernel Modules...
    [ 12.173525] systemd[1]: Mounting Debug File System...
    [ 12.186770] systemd[1]: Starting Setup Virtual Console...
    [ 12.484840] systemd[1]: Starting Apply Kernel Variables...
    [ 12.616915] systemd[1]: Starting Set Up Additional Binary Formats...
    [ 12.630266] systemd[1]: Starting udev Kernel Device Manager...
    [ 12.636850] systemd[1]: Starting Journal Service...
    [ 12.646587] systemd[1]: Started Journal Service.
    [ 12.646650] systemd[1]: Starting Syslog.
    [ 12.646684] systemd[1]: Reached target Syslog.
    [ 12.647637] systemd[1]: Started Remount Root and Kernel File Systems.
    [ 12.647816] systemd[1]: Mounted Temporary Directory.
    [ 12.647972] systemd[1]: Mounted Huge Pages File System.
    [ 12.648127] systemd[1]: Mounted POSIX Message Queue File System.
    [ 12.653654] systemd[1]: Mounted Debug File System.
    [ 12.653705] systemd[1]: Starting Local File Systems (Pre).
    [ 12.653726] systemd[1]: Reached target Local File Systems (Pre).
    [ 12.653749] systemd[1]: Starting Load Random Seed...
    [ 12.705203] FS-Cache: Loaded
    [ 12.740616] RPC: Registered named UNIX socket transport module.
    [ 12.740621] RPC: Registered udp transport module.
    [ 12.740624] RPC: Registered tcp transport module.
    [ 12.740626] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [ 12.881473] systemd-udevd[162]: starting version 196
    [ 12.988696] FS-Cache: Netfs 'nfs' registered for caching
    [ 13.298794] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 13.299212] r8169 0000:20:00.0: irq 45 for MSI/MSI-X
    [ 13.299501] r8169 0000:20:00.0: eth0: RTL8168d/8111d at 0xffffc9000060e000, 00:26:b9:ca:52:29, XID 081000c0 IRQ 45
    [ 13.299506] r8169 0000:20:00.0: eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
    [ 13.401185] input: PC Speaker as /devices/platform/pcspkr/input/input5
    [ 13.802403] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
    [ 14.148667] input: HDA Intel HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
    [ 14.148733] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
    [ 14.208405] cfg80211: Calling CRDA to update world regulatory domain
    [ 14.318480] microcode: CPU0 sig=0x1067a, pf=0x80, revision=0xa07
    [ 14.330974] lib80211: common routines for IEEE802.11 drivers
    [ 14.330979] lib80211_crypt: registered algorithm 'NULL'
    [ 14.375031] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
    [ 14.649332] microcode: CPU0 updated to revision 0xa0b, date = 2010-09-28
    [ 14.656959] microcode: CPU1 sig=0x1067a, pf=0x80, revision=0xa07
    [ 14.660799] microcode: CPU1 updated to revision 0xa0b, date = 2010-09-28
    [ 14.668564] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 14.709327] ACPI: Requesting acpi_cpufreq
    [ 14.714946] Monitor-Mwait will be used to enter C-1 state
    [ 14.714973] Monitor-Mwait will be used to enter C-2 state
    [ 14.714989] Monitor-Mwait will be used to enter C-3 state
    [ 14.715001] tsc: Marking TSC unstable due to TSC halts in idle
    [ 14.715031] ACPI: acpi_idle registered with cpuidle
    [ 14.720557] Switching to clocksource hpet
    [ 14.757813] wmi: Mapper loaded
    [ 15.215288] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20120711/utaddress-251)
    [ 15.215300] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 15.215306] ACPI Warning: 0x0000000000001180-0x00000000000011bf SystemIO conflicts with Region \GPIO 1 (20120711/utaddress-251)
    [ 15.215313] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 15.215315] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 15.303785] ACPI: Battery Slot [BAT1] (battery present)
    [ 15.405750] input: Dell WMI hotkeys as /devices/virtual/input/input8
    [ 15.417769] iTCO_vendor_support: vendor-support=0
    [ 15.430131] ACPI: AC Adapter [ACAD] (off-line)
    [ 15.471845] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 15.471895] iTCO_wdt: Found a ICH9M-E TCO device (Version=2, TCOBASE=0x0460)
    [ 15.472076] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 15.585541] wl: module license 'Mixed/Proprietary' taints kernel.
    [ 15.585549] Disabling lock debugging due to kernel taint
    [ 15.625424] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.0, id: 0x1a0b1, caps: 0xd04711/0xa00000/0x20000, board id: 3655, fw id: 528343
    [ 15.629342] INFO @wl_cfg80211_attach : Registered CFG80211 phy
    [ 15.654093] lib80211_crypt: registered algorithm 'TKIP'
    [ 15.654584] eth1: Broadcom BCM4315 802.11 Hybrid Wireless Controller 5.100.82.112
    [ 15.693893] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input9
    [ 15.816131] ACPI Warning: 0x0000000000001c00-0x0000000000001c1f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20120711/utaddress-251)
    [ 15.816143] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 16.108446] Linux media interface: v0.10
    [ 16.120558] Linux video capture interface: v2.00
    [ 16.169228] usbcore: registered new interface driver uas
    [ 16.281166] uvcvideo: Found UVC 1.00 device Laptop_Integrated_Webcam_1.3M (0c45:6415)
    [ 16.316308] Initializing USB Mass Storage driver...
    [ 16.316609] usbcore: registered new interface driver usb-storage
    [ 16.316613] USB Mass Storage support registered.
    [ 16.328744] input: Laptop_Integrated_Webcam_1.3M as /devices/pci0000:00/0000:00:1d.7/usb2/2-5/2-5:1.0/input/input10
    [ 16.328873] usbcore: registered new interface driver uvcvideo
    [ 16.328876] USB Video Class driver (1.1.1)
    [ 16.779720] usb 2-4: USB disconnect, device number 2
    [ 16.783629] scsi4 : usb-storage 2-4:1.0
    [ 16.783773] usbcore: registered new interface driver ums-realtek
    [ 17.381988] EXT4-fs (sda5): mounting ext3 file system using the ext4 subsystem
    [ 17.393596] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
    [ 21.567415] Adding 977880k swap on /dev/mapper/swap. Priority:-1 extents:1 across:977880k
    [ 21.656824] XFS (dm-1): Mounting Filesystem
    [ 21.839619] XFS (dm-1): Ending clean mount
    [ 21.940898] systemd-journald[163]: Received SIGUSR1
    [ 28.055735] r8169 0000:20:00.0: eth0: link down
    [ 28.055792] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 28.875645] Bluetooth: Core ver 2.16
    [ 28.875677] NET: Registered protocol family 31
    [ 28.875680] Bluetooth: HCI device and connection manager initialized
    [ 28.875684] Bluetooth: HCI socket layer initialized
    [ 28.875687] Bluetooth: L2CAP socket layer initialized
    [ 28.875695] Bluetooth: SCO socket layer initialized
    [ 29.041069] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
    [ 37.807702] fuse init (API version 7.20)
    [ 37.828734] EXT4-fs (sda5): re-mounted. Opts: commit=600
    lsmod
    Module Size Used by
    fuse 69173 2
    michael_mic 2074 8
    arc4 2039 4
    ecb 2105 0
    bnep 8857 2
    bluetooth 192120 7 bnep
    snd_seq 50881 1
    snd_seq_device 5268 1 snd_seq
    ums_realtek 7391 0
    usb_storage 47384 1 ums_realtek
    uvcvideo 72787 0
    videobuf2_vmalloc 2468 1 uvcvideo
    uas 11119 0
    videobuf2_memops 2246 1 videobuf2_vmalloc
    videobuf2_core 24030 1 uvcvideo
    videodev 100859 2 uvcvideo,videobuf2_core
    media 10405 2 uvcvideo,videodev
    i2c_i801 9571 0
    joydev 9991 0
    coretemp 6070 0
    kvm_intel 124749 0
    lib80211_crypt_tkip 7738 0
    wl 2558087 0
    kvm 373917 1 kvm_intel
    iTCO_wdt 5255 0
    iTCO_vendor_support 1929 1 iTCO_wdt
    dell_wmi 1485 0
    acpi_cpufreq 5933 1
    lpc_ich 10609 0
    ac 2536 0
    mperf 1267 1 acpi_cpufreq
    sparse_keymap 3056 1 dell_wmi
    battery 6773 0
    wmi 8379 1 dell_wmi
    dell_laptop 8787 0
    processor 26855 3 acpi_cpufreq
    evdev 10266 12
    psmouse 71909 0
    serio_raw 4689 0
    dcdbas 5520 1 dell_laptop
    lib80211 3949 2 wl,lib80211_crypt_tkip
    microcode 12377 0
    cfg80211 177108 1 wl
    rfkill 15604 5 cfg80211,bluetooth
    snd_hda_codec_hdmi 24487 1
    snd_hda_codec_realtek 61193 1
    snd_hda_intel 26180 3
    snd_hda_codec 98033 3 snd_hda_codec_realtek,snd_hda_codec_hdmi,snd_hda_intel
    snd_hwdep 6428 1 snd_hda_codec
    snd_pcm_oss 38992 0
    snd_pcm 75689 5 snd_pcm_oss,snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel
    snd_page_alloc 7217 2 snd_pcm,snd_hda_intel
    snd_timer 18934 3 snd_pcm,snd_seq
    snd_mixer_oss 15347 1 snd_pcm_oss
    snd 60188 16 snd_hda_codec_realtek,snd_pcm_oss,snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_seq,snd_hda_codec,snd_hda_intel,snd_seq_device,snd_mixer_oss
    soundcore 5442 1 snd
    pcspkr 1899 0
    r8169 56839 0
    mii 4091 1 r8169
    nfs 127007 0
    lockd 64904 1 nfs
    sunrpc 186092 2 nfs,lockd
    fscache 40995 1 nfs
    ablk_helper 1972 0
    cryptd 8741 1 ablk_helper
    aes_x86_64 7508 6
    aes_generic 26138 1 aes_x86_64
    xts 3101 3
    gf128mul 6050 1 xts
    dm_crypt 15799 3
    dm_mod 72105 7 dm_crypt
    i915 495521 3
    video 11276 1 i915
    button 4662 1 i915
    i2c_algo_bit 5391 1 i915
    intel_agp 10744 1 i915
    intel_gtt 15659 3 i915,intel_agp
    drm_kms_helper 32877 1 i915
    drm 218852 4 i915,drm_kms_helper
    i2c_core 20707 6 drm,i915,i2c_i801,drm_kms_helper,i2c_algo_bit,videodev
    vfat 10119 0
    fat 48338 1 vfat
    xfs 748207 2
    ext4 440434 1
    crc16 1359 2 ext4,bluetooth
    jbd2 78751 1 ext4
    mbcache 5977 1 ext4
    uhci_hcd 23436 0
    ehci_hcd 41816 0
    sr_mod 14823 0
    usbcore 150398 6 uas,uhci_hcd,uvcvideo,ums_realtek,usb_storage,ehci_hcd
    usb_common 954 1 usbcore
    cdrom 35520 1 sr_mod
    sd_mod 29559 5
    ahci 21360 4
    libahci 20023 1 ahci
    libata 167683 2 ahci,libahci
    scsi_mod 133386 5 uas,usb_storage,libata,sd_mod,sr_mod
    lspci
    00:00.0 Host bridge: Intel Corporation Mobile 4 Series Chipset Memory Controller Hub (rev 07)
    00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
    00:02.1 Display controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
    00:1a.0 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #4 (rev 03)
    00:1a.1 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #5 (rev 03)
    00:1a.2 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #6 (rev 03)
    00:1a.7 USB controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #2 (rev 03)
    00:1b.0 Audio device: Intel Corporation 82801I (ICH9 Family) HD Audio Controller (rev 03)
    00:1c.0 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 1 (rev 03)
    00:1c.1 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 2 (rev 03)
    00:1c.5 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 6 (rev 03)
    00:1d.0 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #1 (rev 03)
    00:1d.1 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #2 (rev 03)
    00:1d.2 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #3 (rev 03)
    00:1d.7 USB controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #1 (rev 03)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 93)
    00:1f.0 ISA bridge: Intel Corporation ICH9M-E LPC Interface Controller (rev 03)
    00:1f.2 SATA controller: Intel Corporation 82801IBM/IEM (ICH9M/ICH9M-E) 4 port SATA Controller [AHCI mode] (rev 03)
    00:1f.3 SMBus: Intel Corporation 82801I (ICH9 Family) SMBus Controller (rev 03)
    08:00.0 Network controller: Broadcom Corporation BCM4312 802.11b/g LP-PHY (rev 01)
    20:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 03)
    pacman -Q | grep ...
    alsa-lib 1.0.26-1
    alsa-plugins 1.0.26-1
    alsa-utils 1.0.26-1
    alsaplayer 0.99.81-5
    lib32-alsa-lib 1.0.26-1
    lib32-alsa-plugins 1.0.26-1
    lib32-libpulse 2.1-1
    lib32-libsndfile 1.0.25-2
    libcanberra-pulse 0.30-2
    libcdaudio 0.99.12-6
    libpulse 2.1-1
    libsndfile 1.0.25-2
    portaudio 19_20111121-1
    pulseaudio 2.1-1
    pulseaudio-alsa 2-1
    sound-juicer 3.5.0-1
    sound-theme-freedesktop 0.8-1
    soundtouch 1.6.0-1
    teamspeak-soundpack-portal 1-4
    webrtc-audio-processing 0.1-1
    pactl list
    Module #0
    Name: module-device-restore
    Argument:
    Usage counter: n/a
    Properties:
    module.author = "Lennart Poettering"
    module.description = "Automatically restore the volume/mute state of devices"
    module.version = "2.1"
    Module #1
    Name: module-stream-restore
    Argument:
    Usage counter: n/a
    Properties:
    module.author = "Lennart Poettering"
    module.description = "Automatically restore the volume/mute/device state of streams"
    module.version = "2.1"
    Module #2
    Name: module-card-restore
    Argument:
    Usage counter: n/a
    Properties:
    module.author = "Lennart Poettering"
    module.description = "Automatically restore profile of cards"
    module.version = "2.1"
    Module #3
    Name: module-augment-properties
    Argument:
    Usage counter: n/a
    Properties:
    module.author = "Lennart Poettering"
    module.description = "Augment the property sets of streams with additional static information"
    module.version = "2.1"
    Module #4
    Name: module-udev-detect
    Argument:
    Usage counter: n/a
    Properties:
    module.author = "Lennart Poettering"
    module.description = "Detect available audio hardware and load matching drivers"
    module.version = "2.1"
    Module #5
    Name: module-jackdbus-detect
    Argument:
    Usage counter: n/a
    Properties:
    module.author = "David Henningsson"
    module.descript

    I set the loglevel to debug and rebooted.
    grep -i pulse /var/log/everything.log
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: setrlimit(RLIMIT_NICE, (31, 31)) failed: Operation not permitted
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: setrlimit(RLIMIT_RTPRIO, (9, 9)) failed: Operation not permitted
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] core-rtclock.c: Timer slack is set to 50 us.
    Dec 3 00:06:34 localhost rtkit-daemon[442]: Successfully made thread 713 of process 713 (/usr/bin/pulseaudio) owned by '1000' high priority at nice level -11.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] core-util.c: RealtimeKit worked.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] core-util.c: Successfully gained nice level -11.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: This is PulseAudio 2.1
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Compilation host: x86_64-unknown-linux-gnu
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Compilation CFLAGS: -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -Wall -W -Wextra -Wno-long-long -Wvla -Wno-overlength-strings -Wunsafe-loop-optimizations -Wundef -Wformat=2 -Wlogical-op -Wsign-compare -Wformat-security -Wmissing-include-dirs -Wformat-nonliteral -Wpointer-arith -Winit-self -Wdeclaration-after-statement -Wfloat-equal -Wmissing-prototypes -Wredundant-decls -Wmissing-declarations -Wmissing-noreturn -Wshadow -Wendif-labels -Wcast-align -Wstrict-aliasing -Wwrite-strings -Wno-unused-parameter -ffast-math -Wp,-D_FORTIFY_SOURCE=2 -fno-common -fdiagnostics-show-option
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Running on host: Linux x86_64 3.6.8-1-ARCH #1 SMP PREEMPT Mon Nov 26 22:10:40 CET 2012
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Found 2 CPUs.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Page size is 4096 bytes
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Compiled with Valgrind support: no
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Running in valgrind mode: no
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Running in VM: no
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Optimized build: yes
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: FASTPATH defined, only fast path asserts disabled.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Machine ID is 883cea362d03be37758a39f4000006db.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Using runtime directory /home/whatever/.pulse/883cea362d03be37758a39f4000006db-runtime.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Using state directory /home/whatever/.pulse.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Using modules directory /usr/lib/pulse-2.1/modules.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Running in system mode: no
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Fresh high-resolution timers available! Bon appetit!
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] memblock.c: Using shared memory pool with 1024 slots of size 64.0 KiB each, total size is 64.0 MiB, maximum usable slot size is 65472
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] cpu-x86.c: CPU flags: CMOV MMX SSE SSE2 SSE3 SSSE3 SSE4_1
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] svolume_mmx.c: Initialising MMX optimized volume functions.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] remap_mmx.c: Initialising MMX optimized remappers.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] svolume_sse.c: Initialising SSE2 optimized volume functions.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] remap_sse.c: Initialising SSE2 optimized remappers.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] sconv_sse.c: Initialising SSE2 optimized conversions.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] svolume_orc.c: Initialising ORC optimized volume functions.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] database-tdb.c: Opened TDB database '/home/whatever/.pulse/883cea362d03be37758a39f4000006db-device-volumes.tdb'
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] module-device-restore.c: Successfully opened database file '/home/whatever/.pulse/883cea362d03be37758a39f4000006db-device-volumes'.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-device-restore" (index: #0; argument: "").
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] database-tdb.c: Opened TDB database '/home/whatever/.pulse/883cea362d03be37758a39f4000006db-stream-volumes.tdb'
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] module-stream-restore.c: Successfully opened database file '/home/whatever/.pulse/883cea362d03be37758a39f4000006db-stream-volumes'.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1 added for object /org/pulseaudio/stream_restore1
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry0
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry1
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry2
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry3
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry4
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry5
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-stream-restore" (index: #1; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] database-tdb.c: Opened TDB database '/home/whatever/.pulse/883cea362d03be37758a39f4000006db-card-database.tdb'
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-card-restore.c: Successfully opened database file '/home/whatever/.pulse/883cea362d03be37758a39f4000006db-card-database'.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-card-restore" (index: #2; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-augment-properties" (index: #3; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-2.1/modules/module-udev-detect.so': success
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-udev-detect.c: /dev/snd/controlC0 is accessible: yes
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-udev-detect.c: /devices/pci0000:00/0000:00:1b.0/sound/card0 is busy: yes
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-udev-detect.c: Found 1 cards.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-udev-detect" (index: #4; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-2.1/modules/module-jackdbus-detect.so': success
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] dbus-util.c: Successfully connected to D-Bus session bus f8aad50a9c72259e812fef8050bbed02 as :1.11
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-jackdbus-detect.c: jackdbus isn't running.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-jackdbus-detect" (index: #5; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-2.1/modules/module-bluetooth-discover.so': success
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] dbus-util.c: Successfully connected to D-Bus system bus aca7467032ad6386c1a812c250bbecf9 as :1.27
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] bluetooth-util.c: dbus: interface=org.freedesktop.DBus, path=/org/freedesktop/DBus, member=NameAcquired
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-bluetooth-discover" (index: #6; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-2.1/modules/module-esound-protocol-unix.so': success
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-esound-protocol-unix" (index: #7; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-native-protocol-unix" (index: #8; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-2.1/modules/module-gconf.so': success
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-gconf" (index: #9; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-default-device-restore.c: Saved default sink 'auto_null' not existent, not restoring default sink setting.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-default-device-restore.c: Saved default source 'auto_null.monitor' not existent, not restoring default source setting.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-default-device-restore" (index: #10; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-rescue-streams" (index: #11; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-always-sink.c: Autoloading null-sink as no other sinks detected.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-device-restore.c: Restoring volume for sink auto_null.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] sink.c: Created sink 0 "auto_null" with sample spec s16le 2ch 44100Hz and channel map front-left,front-right
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] sink.c: device.description = "Dummy Output"
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] sink.c: device.class = "abstract"
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] sink.c: device.icon_name = "audio-card"
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] source.c: Created source 0 "auto_null.monitor" with sample spec s16le 2ch 44100Hz and channel map front-left,front-right
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] source.c: device.description = "Monitor of Dummy Output"
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] source.c: device.class = "monitor"
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] source.c: device.icon_name = "audio-input-microphone"
    Dec 3 01:06:35 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Thread starting up
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-device-restore.c: Could not set format on sink auto_null
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-null-sink" (index: #12; argument: "sink_name=auto_null sink_properties='device.description="Dummy Output"'").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-always-sink" (index: #13; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-intended-roles" (index: #14; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null becomes idle, timeout in 5 seconds.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-suspend-on-idle" (index: #15; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-2.1/modules/module-console-kit.so': success
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-console-kit" (index: #16; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-2.1/modules/module-systemd-login.so': success
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] client.c: Created 0 "Login Session 1"
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-systemd-login.c: Added new session 1
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-systemd-login" (index: #17; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-position-event-sounds" (index: #18; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-role-cork.c: Using role 'phone' as trigger role.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-role-cork.c: Using roles 'music' and 'video' as cork roles.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-role-cork" (index: #19; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-filter-heuristics" (index: #20; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-filter-apply" (index: #21; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-2.1/modules/module-dbus-protocol.so': success
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Memstats added for object /org/pulseaudio/core1/memstats
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Device added for object /org/pulseaudio/core1/sink0
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Sink added for object /org/pulseaudio/core1/sink0
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Device added for object /org/pulseaudio/core1/source0
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Source added for object /org/pulseaudio/core1/source0
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module0
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module1
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module2
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module3
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module4
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module5
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module6
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module7
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module8
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module9
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module10
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module11
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module12
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module13
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module14
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module15
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module16
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module17
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module18
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module19
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module20
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module21
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client added for object /org/pulseaudio/core1/client0
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1 added for object /org/pulseaudio/core1
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-dbus-protocol" (index: #22; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-switch-on-port-available" (index: #23; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] main.c: Got org.PulseAudio1!
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] main.c: Got org.pulseaudio.Server!
    Dec 3 01:06:35 localhost pulseaudio[710]: [pulseaudio] main.c: Daemon startup successful.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] main.c: Daemon startup complete.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module22
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module23
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] client.c: Created 1 "Native client (UNIX socket client)"
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client added for object /org/pulseaudio/core1/client1
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Protocol version: remote 26, local 26
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=100 success=1
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: SHM possible: yes
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Negotiated SHM: yes
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-augment-properties.c: Looking for .desktop file for gnome-settings-daemon
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] client.c: Created 2 "Native client (UNIX socket client)"
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client added for object /org/pulseaudio/core1/client2
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Protocol version: remote 26, local 26
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=100 success=1
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: SHM possible: yes
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Negotiated SHM: yes
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] module-augment-properties.c: Looking for .desktop file for gnome-shell
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] module-augment-properties.c: Found /usr/share/applications/gnome-shell.desktop.
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] client.c: Created 3 "Native client (UNIX socket client)"
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client added for object /org/pulseaudio/core1/client3
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Protocol version: remote 26, local 26
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=100 success=1
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: SHM possible: yes
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Negotiated SHM: yes
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] module-augment-properties.c: Looking for .desktop file for canberra-gtk-play
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] client.c: Freed 3 "canberra-gtk-play"
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Connection died.
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client removed from object /org/pulseaudio/core1/client3
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: setrlimit(RLIMIT_NICE, (31, 31)) failed: Operation not permitted
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: setrlimit(RLIMIT_RTPRIO, (9, 9)) failed: Operation not permitted
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] core-rtclock.c: Timer slack is set to 50 us.
    Dec 3 00:06:38 localhost rtkit-daemon[442]: Successfully made thread 745 of process 745 (/usr/bin/pulseaudio) owned by '1000' high priority at nice level -11.
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] core-util.c: RealtimeKit worked.
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] core-util.c: Successfully gained nice level -11.
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: This is PulseAudio 2.1
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Compilation host: x86_64-unknown-linux-gnu
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Compilation CFLAGS: -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -Wall -W -Wextra -Wno-long-long -Wvla -Wno-overlength-strings -Wunsafe-loop-optimizations -Wundef -Wformat=2 -Wlogical-op -Wsign-compare -Wformat-security -Wmissing-include-dirs -Wformat-nonliteral -Wpointer-arith -Winit-self -Wdeclaration-after-statement -Wfloat-equal -Wmissing-prototypes -Wredundant-decls -Wmissing-declarations -Wmissing-noreturn -Wshadow -Wendif-labels -Wcast-align -Wstrict-aliasing -Wwrite-strings -Wno-unused-parameter -ffast-math -Wp,-D_FORTIFY_SOURCE=2 -fno-common -fdiagnostics-show-option
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Running on host: Linux x86_64 3.6.8-1-ARCH #1 SMP PREEMPT Mon Nov 26 22:10:40 CET 2012
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Found 2 CPUs.
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Page size is 4096 bytes
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Compiled with Valgrind support: no
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Running in valgrind mode: no
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Running in VM: no
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Optimized build: yes
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: FASTPATH defined, only fast path asserts disabled.
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Machine ID is 883cea362d03be37758a39f4000006db.
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Using runtime directory /home/whatever/.pulse/883cea362d03be37758a39f4000006db-runtime.
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Using state directory /home/whatever/.pulse.
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Using modules directory /usr/lib/pulse-2.1/modules.
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Running in system mode: no
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] pid.c: Daemon already running.
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] client.c: Created 4 "Native client (UNIX socket client)"
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client added for object /org/pulseaudio/core1/client4
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Protocol version: remote 26, local 26
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=100 success=1
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: SHM possible: yes
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Negotiated SHM: yes
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] module-augment-properties.c: Looking for .desktop file for pactl
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-x11-publish" (index: #24; argument: "display=:0").
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module24
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] client.c: Freed 4 "pactl"
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Connection died.
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client removed from object /org/pulseaudio/core1/client4
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] client.c: Created 5 "Native client (UNIX socket client)"
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client added for object /org/pulseaudio/core1/client5
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Protocol version: remote 26, local 26
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=100 success=1
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: SHM possible: yes
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Negotiated SHM: yes
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] module-augment-properties.c: Looking for .desktop file for pactl
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] module-x11-xsmp.c: Connected to session manager 'gnome-session' as '102459fa9aeb823737135449319899169800000005480030'.
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] client.c: Created 6 "XSMP Session on gnome-session as 102459fa9aeb823737135449319899169800000005480030"
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-x11-xsmp" (index: #25; argument: "display=:0 session_manager=local/whatever-laptop:@/tmp/.ICE-unix/548,unix/whatever-laptop:/tmp/.ICE-unix/548").
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client added for object /org/pulseaudio/core1/client6
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module25
    Dec 3 01:06:39 localhost pulseaudio[713]: [pulseaudio] client.c: Freed 5 "pactl"
    Dec 3 01:06:39 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Connection died.
    Dec 3 01:06:39 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client removed from object /org/pulseaudio/core1/client5
    Dec 3 01:06:40 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null idle for too long, suspending ...
    Dec 3 01:06:40 localhost pulseaudio[713]: [pulseaudio] sink.c: Suspend cause of sink auto_null is 0x0004, suspending
    Dec 3 01:06:40 localhost pulseaudio[713]: [pulseaudio] core.c: Hmm, no streams around, trying to vacuum.
    Dec 3 01:06:52 localhost pulseaudio[713]: [pulseaudio] client.c: Created 7 "Native client (UNIX socket client)"
    Dec 3 01:06:52 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client added for object /org/pulseaudio/core1/client7
    Dec 3 01:06:54 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Protocol version: remote 26, local 26
    Dec 3 01:06:54 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=100 success=1
    Dec 3 01:06:54 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: SHM possible: yes
    Dec 3 01:06:54 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Negotiated SHM: yes
    Dec 3 01:06:54 localhost pulseaudio[713]: [pulseaudio] module-augment-properties.c: Looking for .desktop file for gnome-shell
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Client gnome-shell changes volume of sink auto_null.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-device-restore.c: Storing volume/mute for device+port sink:auto_null:null.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-stream-restore.c: Restoring device for stream sink-input-by-media-role:event.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-intended-roles.c: Not setting device for stream audio-volume-change, because already set.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink.c: Suspend cause of sink auto_null is 0x0000, resuming
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null becomes idle, timeout in 5 seconds.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null becomes busy.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] memblockq.c: memblockq requested: maxlength=33554432, tlength=0, base=4, prebuf=0, minreq=1 maxrewind=0
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] memblockq.c: memblockq sanitized: maxlength=33554432, tlength=33554432, base=4, prebuf=0, minreq=4 maxrewind=0
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: Created input 0 "audio-volume-change" on auto_null with sample spec s16le 2ch 44100Hz and channel map front-left,front-right
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: event.id = "audio-volume-change"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: media.role = "event"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: media.name = "audio-volume-change"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: media.filename = "/usr/share//sounds/freedesktop/stereo/audio-volume-change.oga"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.name = "GNOME Shell"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: native-protocol.peer = "UNIX socket client"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: native-protocol.version = "26"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.id = "org.gnome.Shell"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.id = "717"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.user = "whatever"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.host = "whatever-laptop"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.binary = "gnome-shell"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.language = "en_US.utf8"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: window.x11.display = ":0"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.machine_id = "883cea362d03be37758a39f4000006db"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: module-stream-restore.id = "sink-input-by-media-role:event"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Requested tlength=2000.00 ms, minreq=20.00 ms
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Traditional mode enabled, modifying sink usec only for compat with minreq.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Requested latency=1960.00 ms, Received latency=1960.00 ms
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] memblockq.c: memblockq requested: maxlength=4194304, tlength=352800, base=4, prebuf=349276, minreq=3528 maxrewind=0
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] memblockq.c: memblockq sanitized: maxlength=4194304, tlength=352800, base=4, prebuf=349276, minreq=3528 maxrewind=0
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Final latency 3960.00 ms = 1960.00 ms + 2*20.00 ms + 1960.00 ms
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Stream added for object /org/pulseaudio/core1/playback_stream0
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] protocol-native.c: Requesting rewind due to end of underrun.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Requested to rewind 345744 bytes.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] sink.c: Processing rewind...
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] sink-input.c: Have to rewind 345744 bytes on render memblockq.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] source.c: Processing rewind...
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Rewound 345744 bytes.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] protocol-native.c: Underrun on 'audio-volume-change', 0 bytes in queue.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Client gnome-shell changes volume of sink auto_null.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Requested to rewind 345744 bytes.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] sink.c: Processing rewind...
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] sink-input.c: Have to rewind 345744 bytes on render memblockq.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] source.c: Processing rewind...
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Rewound 345744 bytes.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-device-restore.c: Storing volume/mute for device+port sink:auto_null:null.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Requested to rewind 352800 bytes.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] sink.c: Processing rewind...
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] source.c: Processing rewind...
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Rewound 54188 bytes.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null becomes idle, timeout in 5 seconds.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null becomes idle, timeout in 5 seconds.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] core.c: Hmm, no streams around, trying to vacuum.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Stream removed from object /org/pulseaudio/core1/playback_stream0
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: Freeing input 0 "audio-volume-change"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-stream-restore.c: Restoring device for stream sink-input-by-media-role:event.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-intended-roles.c: Not setting device for stream audio-volume-change, because already set.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null becomes busy.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] memblockq.c: memblockq requested: maxlength=33554432, tlength=0, base=4, prebuf=0, minreq=1 maxrewind=0
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] memblockq.c: memblockq sanitized: maxlength=33554432, tlength=33554432, base=4, prebuf=0, minreq=4 maxrewind=0
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: Created input 1 "audio-volume-change" on auto_null with sample spec s16le 2ch 44100Hz and channel map front-left,front-right
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: event.id = "audio-volume-change"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: media.role = "event"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: media.name = "audio-volume-change"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: media.filename = "/usr/share//sounds/freedesktop/stereo/audio-volume-change.oga"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.name = "GNOME Shell"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: native-protocol.peer = "UNIX socket client"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: native-protocol.version = "26"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.id = "org.gnome.Shell"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.id = "717"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.user = "whatever"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.host = "whatever-laptop"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.binary = "gnome-shell"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.language = "en_US.utf8"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: window.x11.display = ":0"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.machine_id = "883cea362d03be37758a39f4000006db"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: module-stream-restore.id = "sink-input-by-media-role:event"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Requested tlength=2000.00 ms, minreq=20.00 ms
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Traditional mode enabled, modifying sink usec only for compat with minreq.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Requested latency=1960.00 ms, Received latency=1960.00 ms
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] memblockq.c: memblockq requested: maxlength=4194304, tlength=352800, base=4, prebuf=349276, minreq=3528 maxrewind=0
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] memblockq.c: memblockq sanitized: maxlength=4194304, tlength=352800, base=4, prebuf=349276, minreq=3528 maxrewind=0
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Final latency 3960.00 ms = 1960.00 ms + 2*20.00 ms + 1960.00 ms
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Stream added for object /org/pulseaudio/core1/playback_stream1
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] protocol-native.c: Requesting rewind due to end of underrun.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Requested to rewind 345744 bytes.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] sink.c: Processing rewind...
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] sink-input.c: Have to rewind 345744 bytes on render memblockq.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] source.c: Processing rewind...
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Rewound 345744 bytes.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] protocol-native.c: Underrun on 'audio-volume-change', 0 bytes in queue.
    Dec 3 01:08:21 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Requested to rewind 352800 bytes.
    Dec 3 01:08:21 localhost pulseaudio[713]: [null-sink] sink.c: Processing rewind...
    Dec 3 01:08:21 localhost pulseaudio[713]: [null-sink] source.c: Processing rewind...
    Dec 3 01:08:21 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Rewound 352800 bytes.
    Dec 3 01:08:21 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null becomes idle, timeout in 5 seconds.
    Dec 3 01:08:21 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null becomes idle, timeout in 5 seconds.
    Dec 3 01:08:21 localhost pulseaudio[713]: [pulseaudio] core.c: Hmm, no streams around, trying to vacuum.
    Dec 3 01:08:21 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Stream removed from object /org/pulseaudio/core1/playback_stream1
    Dec 3 01:08:21 localhost pulseaudio[713]: [pulseaudio] sink-input.c: Freeing input 1 "audio-volume-change"
    Dec 3 01:08:26 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null idle for too long, suspending ...
    Dec 3 01:08:26 localhost pulseaudio[713]: [pulseaudio] sink.c: Suspend cause of sink auto_null is 0x0004, suspending
    Dec 3 01:08:26 localhost pulseaudio[713]: [pulseaudio] core.c: Hmm, no streams around, trying to vacuum.
    Dec 3 01:08:28 localhost pulseaudio[713]: [pulseaudio] module-device-restore.c: Synced.
    By now I also made my system not load any moudules which have oss in their name. Didn't help either.

  • [Solved]After upgrade: Random system stalls, invisible text. drm/i915?

    Hi,
    Short version: I think I have a problem with drm and my graphic card drivers after an update, but I'm not quite sure what to do about it.
    Longer version: ever since an update 2 days ago, I have a range of system problems.
    Most notably, the system stalls or hangs for between 2 and 10 seconds every few minutes. This may happen during any kind of activity - viewing pdfs (zathura or acroread), working in the terminal (lilyterm), web browsing (firefox) or reading/writing email (thunderbird). It also very often stalls during change of awesome's tags, but not every time (only every third or so).
    Then, similar to this recently necromanced thread ( https://bbs.archlinux.org/viewtopic.php?id=135259 ), I have random letters disappearing in thunderbird, but also random paragraphs disappearing in firefox, see screenshot here: http://imgur.com/RhOhL3a
    With the help of dmesg I discovered errors like
    [15170.335247] [drm] stuck on render ring
    [15170.335310] [drm:i915_set_reset_status] *ERROR* render ring hung inside bo (0xebf0000 ctx 0) at 0xec0a050
    popping up a lot, and google-found a few related threads or bug reports ( https://bugs.archlinux.org/task/34611 ,  https://bbs.archlinux.org/viewtopic.php?id=160186 ,  https://bbs.archlinux.org/viewtopic.php?pid=1251547 ). But then my troubles start, because I don't know just exactly what to do with this information. Some seem to speak of downgrading, but downgrade what exactly? Some say this is fixed/solved, but in what sense (reported upstream, fixed upstream, fixed in arch) and then what does is mean that I still get such errors? Should I re-report them, or what should I do to fix? Some system info below.
    Thanks for any pointers!
    $ uname -a
    Linux hostname 3.12.9-1-ARCH #1 SMP PREEMPT Sun Jan 26 09:01:37 CET 2014 x86_64 GNU/Linux
    $ Xorg -version
    X.Org X Server 1.15.0
    $lspci
    00:00.0 Host bridge: Intel Corporation Mobile 4 Series Chipset Memory Controller Hub (rev 07)
    00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
    00:02.1 Display controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
    00:03.0 Communication controller: Intel Corporation Mobile 4 Series Chipset MEI Controller (rev 07)
    00:03.2 IDE interface: Intel Corporation Mobile 4 Series Chipset PT IDER Controller (rev 07)
    00:03.3 Serial controller: Intel Corporation Mobile 4 Series Chipset AMT SOL Redirection (rev 07)
    00:19.0 Ethernet controller: Intel Corporation 82567LM Gigabit Network Connection (rev 03)
    00:1a.0 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #4 (rev 03)
    00:1a.1 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #5 (rev 03)
    00:1a.2 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #6 (rev 03)
    00:1a.7 USB controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #2 (rev 03)
    00:1b.0 Audio device: Intel Corporation 82801I (ICH9 Family) HD Audio Controller (rev 03)
    00:1c.0 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 1 (rev 03)
    00:1c.1 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 2 (rev 03)
    00:1d.0 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #1 (rev 03)
    00:1d.1 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #2 (rev 03)
    00:1d.2 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #3 (rev 03)
    00:1d.7 USB controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #1 (rev 03)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 93)
    00:1f.0 ISA bridge: Intel Corporation ICH9M-E LPC Interface Controller (rev 03)
    00:1f.2 SATA controller: Intel Corporation 82801IBM/IEM (ICH9M/ICH9M-E) 4 port SATA Controller [AHCI mode] (rev 03)
    00:1f.3 SMBus: Intel Corporation 82801I (ICH9 Family) SMBus Controller (rev 03)
    03:00.0 Network controller: Intel Corporation PRO/Wireless 5100 AGN [Shiloh] Network Connection
    15:00.0 CardBus bridge: Ricoh Co Ltd RL5c476 II (rev ba)
    15:00.2 SD Host controller: Ricoh Co Ltd R5C822 SD/SDIO/MMC/MS/MSPro Host Adapter (rev 21)
    15:00.4 System peripheral: Ricoh Co Ltd R5C592 Memory Stick Bus Host Adapter (rev 11)
    15:00.5 System peripheral: Ricoh Co Ltd xD-Picture Card Controller (rev 11)
    $ dmesg
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.12.9-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.2 20131219 (prerelease) (GCC) ) #1 SMP PREEMPT Sun Jan 26 09:01:37 CET 2014
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=37e98755-f4db-4377-8615-60068771034d rw quiet
    [ 0.000000] Disabled fast string operations
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ebff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009ec00-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bd6a0fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bd6a1000-0x00000000bd6a6fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bd6a7000-0x00000000bd7b6fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bd7b7000-0x00000000bd80efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bd80f000-0x00000000bd8c6fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bd8c7000-0x00000000bd8d1fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bd8d2000-0x00000000bd8d4fff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000bd8d5000-0x00000000bd8d8fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bd8d9000-0x00000000bd8dcfff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bd8dd000-0x00000000bd8dffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bd8e0000-0x00000000bd906fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bd907000-0x00000000bd907fff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000bd908000-0x00000000bdb0efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bdb0f000-0x00000000bdb9efff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bdb9f000-0x00000000bdbfefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000bdbff000-0x00000000bdbfffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bdc00000-0x00000000bfffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed003ff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed8ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff800000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013bffffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.4 present.
    [ 0.000000] DMI: LENOVO 2767WSD/2767WSD, BIOS 7UET70WW (3.00 ) 04/17/2009
    [ 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 = 0x13c000 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-D3FFF write-protect
    [ 0.000000] D4000-DBFFF uncachable
    [ 0.000000] DC000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 13C000000 mask FFC000000 uncachable
    [ 0.000000] 1 base 0BE000000 mask FFE000000 uncachable
    [ 0.000000] 2 base 000000000 mask F80000000 write-back
    [ 0.000000] 3 base 080000000 mask FC0000000 write-back
    [ 0.000000] 4 base 100000000 mask FC0000000 write-back
    [ 0.000000] 5 base 0BDE00000 mask FFFE00000 uncachable
    [ 0.000000] 6 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: update [mem 0xbde00000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xbdc00 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000f64d0-0x000f64df] mapped at [ffff8800000f64d0]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x01b32000, 0x01b32fff] PGTABLE
    [ 0.000000] BRK [0x01b33000, 0x01b33fff] PGTABLE
    [ 0.000000] BRK [0x01b34000, 0x01b34fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x13be00000-0x13bffffff]
    [ 0.000000] [mem 0x13be00000-0x13bffffff] page 2M
    [ 0.000000] BRK [0x01b35000, 0x01b35fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x138000000-0x13bdfffff]
    [ 0.000000] [mem 0x138000000-0x13bdfffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x137ffffff]
    [ 0.000000] [mem 0x100000000-0x137ffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0xbd6a0fff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0xbd5fffff] page 2M
    [ 0.000000] [mem 0xbd600000-0xbd6a0fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xbd6a7000-0xbd7b6fff]
    [ 0.000000] [mem 0xbd6a7000-0xbd7b6fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xbd80f000-0xbd8c6fff]
    [ 0.000000] [mem 0xbd80f000-0xbd8c6fff] page 4k
    [ 0.000000] BRK [0x01b36000, 0x01b36fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0xbdbff000-0xbdbfffff]
    [ 0.000000] [mem 0xbdbff000-0xbdbfffff] page 4k
    [ 0.000000] BRK [0x01b37000, 0x01b37fff] PGTABLE
    [ 0.000000] RAMDISK: [mem 0x37998000-0x37cc3fff]
    [ 0.000000] ACPI: RSDP 00000000000f6490 00024 (v02 LENOVO)
    [ 0.000000] ACPI: XSDT 00000000bdb4a35d 0008C (v01 LENOVO TP-7U 00003000 LTP 00000000)
    [ 0.000000] ACPI: FACP 00000000bdb4a500 000F4 (v03 LENOVO TP-7U 00003000 LNVO 00000001)
    [ 0.000000] ACPI: DSDT 00000000bdb4a8db 0F48F (v01 LENOVO TP-7U 00003000 MSFT 03000000)
    [ 0.000000] ACPI: FACS 00000000bdb8e000 00040
    [ 0.000000] ACPI: SSDT 00000000bdb4a6b4 00227 (v01 LENOVO TP-7U 00003000 MSFT 03000000)
    [ 0.000000] ACPI: ECDT 00000000bdb59d6a 00052 (v01 LENOVO TP-7U 00003000 LNVO 00000001)
    [ 0.000000] ACPI: APIC 00000000bdb59dbc 00078 (v01 LENOVO TP-7U 00003000 LNVO 00000001)
    [ 0.000000] ACPI: MCFG 00000000bdb59e34 0003C (v01 LENOVO TP-7U 00003000 LNVO 00000001)
    [ 0.000000] ACPI: HPET 00000000bdb59e70 00038 (v01 LENOVO TP-7U 00003000 LNVO 00000001)
    [ 0.000000] ACPI: BOOT 00000000bdb59f38 00028 (v01 LENOVO TP-7U 00003000 LTP 00000001)
    [ 0.000000] ACPI: ASF! 00000000bdb59f60 000A0 (v16 LENOVO TP-7U 00003000 PTL 00000001)
    [ 0.000000] ACPI: SSDT 00000000bdb8d213 0054F (v01 LENOVO TP-7U 00003000 INTL 20050513)
    [ 0.000000] ACPI: TCPA 00000000bd907000 00032 (v00 00000000 00000000)
    [ 0.000000] ACPI: SSDT 00000000bd8d4000 00655 (v01 PmRef CpuPm 00003000 INTL 20050624)
    [ 0.000000] ACPI: SSDT 00000000bd8d3000 00274 (v01 PmRef Cpu0Tst 00003000 INTL 20050624)
    [ 0.000000] ACPI: SSDT 00000000bd8d2000 00242 (v01 PmRef ApTst 00003000 INTL 20050624)
    [ 0.000000] ACPI: DMI detected: Lenovo ThinkPad T400
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000013bffffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x13bffffff]
    [ 0.000000] NODE_DATA [mem 0x13bff8000-0x13bffcfff]
    [ 0.000000] [ffffea0000000000-ffffea0004ffffff] PMD -> [ffff880137600000-ffff88013b5fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x13bffffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0009dfff]
    [ 0.000000] node 0: [mem 0x00100000-0xbd6a0fff]
    [ 0.000000] node 0: [mem 0xbd6a7000-0xbd7b6fff]
    [ 0.000000] node 0: [mem 0xbd80f000-0xbd8c6fff]
    [ 0.000000] node 0: [mem 0xbdbff000-0xbdbfffff]
    [ 0.000000] node 0: [mem 0x100000000-0x13bffffff]
    [ 0.000000] On node 0 totalpages: 1021959
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 21 pages reserved
    [ 0.000000] DMA zone: 3997 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 12066 pages used for memmap
    [ 0.000000] DMA32 zone: 772202 pages, LIFO batch:31
    [ 0.000000] Normal zone: 3840 pages used for memmap
    [ 0.000000] Normal zone: 245760 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x1008
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (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] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 1, 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] smpboot: Allowing 4 CPUs, 2 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbd6a1000-0xbd6a6fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbd7b7000-0xbd80efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbd8c7000-0xbd8d1fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbd8d2000-0xbd8d4fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbd8d5000-0xbd8d8fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbd8d9000-0xbd8dcfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbd8dd000-0xbd8dffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbd8e0000-0xbd906fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbd907000-0xbd907fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbd908000-0xbdb0efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbdb0f000-0xbdb9efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbdb9f000-0xbdbfefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbdc00000-0xbfffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xc0000000-0xdfffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec0ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec10000-0xfecfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed0ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed13fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed14000-0xfed17fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed18000-0xfed19fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed8ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed90000-0xfedfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xff7fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xff800000-0xffffffff]
    [ 0.000000] e820: [mem 0xc0000000-0xdfffffff] 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:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88013bc00000 s86464 r8192 d24128 u524288
    [ 0.000000] pcpu-alloc: s86464 r8192 d24128 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: 1005968
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=37e98755-f4db-4377-8615-60068771034d rw quiet
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: 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: 3940680K/4087836K available (5119K kernel code, 807K rwdata, 1628K rodata, 1144K init, 1288K bss, 147156K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, 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=4.
    [ 0.000000] NR_IRQS:8448 nr_irqs:712 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 16777216 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.000000] tsc: Detected 2527.053 MHz processor
    [ 0.003338] Calibrating delay loop (skipped), value calculated using timer frequency.. 5056.69 BogoMIPS (lpj=8423510)
    [ 0.003341] pid_max: default: 32768 minimum: 301
    [ 0.003375] Security Framework initialized
    [ 0.003387] AppArmor: AppArmor disabled by boot time parameter
    [ 0.003388] Yama: becoming mindful.
    [ 0.003735] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.007112] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.008042] Mount-cache hash table entries: 256
    [ 0.008292] Initializing cgroup subsys memory
    [ 0.008312] Initializing cgroup subsys devices
    [ 0.008315] Initializing cgroup subsys freezer
    [ 0.008317] Initializing cgroup subsys net_cls
    [ 0.008319] Initializing cgroup subsys blkio
    [ 0.008341] Disabled fast string operations
    [ 0.008346] CPU: Physical Processor ID: 0
    [ 0.008347] CPU: Processor Core ID: 0
    [ 0.008349] mce: CPU supports 6 MCE banks
    [ 0.008357] CPU0: Thermal monitoring enabled (TM2)
    [ 0.008365] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
    Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32
    tlb_flushall_shift: -1
    [ 0.008437] Freeing SMP alternatives memory: 20K (ffffffff819e9000 - ffffffff819ee000)
    [ 0.009258] ACPI: Core revision 20130725
    [ 0.015569] ACPI: All ACPI Tables successfully acquired
    [ 0.016678] ftrace: allocating 20320 entries in 80 pages
    [ 0.027168] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.061017] smpboot: CPU0: Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz (fam: 06, model: 17, stepping: 0a)
    [ 0.063333] Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
    [ 0.063333] ... version: 2
    [ 0.063333] ... bit width: 40
    [ 0.063333] ... generic registers: 2
    [ 0.063333] ... value mask: 000000ffffffffff
    [ 0.063333] ... max period: 000000007fffffff
    [ 0.063333] ... fixed-purpose events: 3
    [ 0.063333] ... event mask: 0000000700000003
    [ 0.083392] smpboot: Booting Node 0, Processors # 1 OK
    [ 0.006666] Disabled fast string operations
    [ 0.096626] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.096639] Brought up 2 CPUs
    [ 0.096642] smpboot: Total of 2 processors activated (10112.38 BogoMIPS)
    [ 0.098382] devtmpfs: initialized
    [ 0.105175] PM: Registering ACPI NVS region [mem 0xbd8c7000-0xbd8d1fff] (45056 bytes)
    [ 0.105175] PM: Registering ACPI NVS region [mem 0xbd8d9000-0xbd8dcfff] (16384 bytes)
    [ 0.105175] PM: Registering ACPI NVS region [mem 0xbd8e0000-0xbd906fff] (159744 bytes)
    [ 0.105175] PM: Registering ACPI NVS region [mem 0xbdb0f000-0xbdb9efff] (589824 bytes)
    [ 0.105175] RTC time: 9:58:53, date: 01/27/14
    [ 0.105175] NET: Registered protocol family 16
    [ 0.105175] cpuidle: using governor ladder
    [ 0.105175] cpuidle: using governor menu
    [ 0.105175] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.105175] ACPI: bus type PCI registered
    [ 0.105175] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.105175] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
    [ 0.105175] PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] reserved in E820
    [ 0.110884] PCI: Using configuration type 1 for base access
    [ 0.111004] mtrr: your CPUs had inconsistent variable MTRR settings
    [ 0.111005] mtrr: probably your BIOS does not setup all CPUs.
    [ 0.111006] mtrr: corrected configuration.
    [ 0.113386] bio: create slab <bio-0> at 0
    [ 0.113399] ACPI: Added _OSI(Module Device)
    [ 0.113399] ACPI: Added _OSI(Processor Device)
    [ 0.113399] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.113399] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.113399] ACPI: Added _OSI(Linux)
    [ 0.114883] ACPI: EC: EC description table is found, configuring boot EC
    [ 0.120617] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query honored via DMI
    [ 0.136948] ACPI: SSDT 00000000bd8d7c20 002C8 (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
    [ 0.137309] ACPI: Dynamic OEM Table Load:
    [ 0.137311] ACPI: SSDT (null) 002C8 (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
    [ 0.137428] ACPI: SSDT 00000000bd8d5020 0087A (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
    [ 0.137809] ACPI: Dynamic OEM Table Load:
    [ 0.137811] ACPI: SSDT (null) 0087A (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
    [ 0.156862] ACPI: SSDT 00000000bd8d6ca0 001CF (v01 PmRef ApIst 00003000 INTL 20050624)
    [ 0.157236] ACPI: Dynamic OEM Table Load:
    [ 0.157238] ACPI: SSDT (null) 001CF (v01 PmRef ApIst 00003000 INTL 20050624)
    [ 0.163404] ACPI: SSDT 00000000bd8d6f20 0008D (v01 PmRef ApCst 00003000 INTL 20050624)
    [ 0.166956] ACPI: Dynamic OEM Table Load:
    [ 0.166958] ACPI: SSDT (null) 0008D (v01 PmRef ApCst 00003000 INTL 20050624)
    [ 0.176786] ACPI: Interpreter enabled
    [ 0.176792] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130725/hwxface-571)
    [ 0.176796] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130725/hwxface-571)
    [ 0.176808] ACPI: (supports S0 S3 S4 S5)
    [ 0.176810] ACPI: Using IOAPIC for interrupt routing
    [ 0.176832] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.180490] ACPI: ACPI Dock Station Driver: 3 docks/bays found
    [ 0.200183] ACPI: Power Resource [PUBS] (on)
    [ 0.204053] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11)
    [ 0.204145] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11)
    [ 0.204234] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 *11)
    [ 0.204323] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11)
    [ 0.204413] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 *11)
    [ 0.204501] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 *11)
    [ 0.204593] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 *11)
    [ 0.204682] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 *11)
    [ 0.204732] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.204914] acpi PNP0A08:00: Requesting ACPI _OSC control (0x1d)
    [ 0.205251] acpi PNP0A08:00: ACPI _OSC control (0x1d) granted
    [ 0.205280] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
    [ 0.205450] PCI host bridge to bus 0000:00
    [ 0.205453] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.205455] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.205457] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.205459] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.205461] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.205462] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.205464] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.205466] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff]
    [ 0.205474] pci 0000:00:00.0: [8086:2a40] type 00 class 0x060000
    [ 0.205493] DMAR: Forcing write-buffer flush capability
    [ 0.205494] DMAR: Disabling IOMMU for graphics on this chipset
    [ 0.205570] pci 0000:00:02.0: [8086:2a42] type 00 class 0x030000
    [ 0.205582] pci 0000:00:02.0: reg 0x10: [mem 0xfa000000-0xfa3fffff 64bit]
    [ 0.205589] pci 0000:00:02.0: reg 0x18: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.205594] pci 0000:00:02.0: reg 0x20: [io 0x1800-0x1807]
    [ 0.205673] pci 0000:00:02.1: [8086:2a43] type 00 class 0x038000
    [ 0.205683] pci 0000:00:02.1: reg 0x10: [mem 0xf4100000-0xf41fffff 64bit]
    [ 0.205773] pci 0000:00:03.0: [8086:2a44] type 00 class 0x078000
    [ 0.205788] pci 0000:00:03.0: reg 0x10: [mem 0xfa626800-0xfa62680f 64bit]
    [ 0.205837] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
    [ 0.205906] pci 0000:00:03.2: [8086:2a46] type 00 class 0x010185
    [ 0.205919] pci 0000:00:03.2: reg 0x10: [io 0x1828-0x182f]
    [ 0.205926] pci 0000:00:03.2: reg 0x14: [io 0x180c-0x180f]
    [ 0.205932] pci 0000:00:03.2: reg 0x18: [io 0x1820-0x1827]
    [ 0.205939] pci 0000:00:03.2: reg 0x1c: [io 0x1808-0x180b]
    [ 0.205945] pci 0000:00:03.2: reg 0x20: [io 0x1810-0x181f]
    [ 0.206039] pci 0000:00:03.3: [8086:2a47] type 00 class 0x070002
    [ 0.206052] pci 0000:00:03.3: reg 0x10: [io 0x1830-0x1837]
    [ 0.206059] pci 0000:00:03.3: reg 0x14: [mem 0xfa424000-0xfa424fff]
    [ 0.206206] pci 0000:00:19.0: [8086:10f5] type 00 class 0x020000
    [ 0.206230] pci 0000:00:19.0: reg 0x10: [mem 0xfa400000-0xfa41ffff]
    [ 0.206241] pci 0000:00:19.0: reg 0x14: [mem 0xfa425000-0xfa425fff]
    [ 0.206252] pci 0000:00:19.0: reg 0x18: [io 0x1840-0x185f]
    [ 0.206338] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
    [ 0.206385] pci 0000:00:19.0: System wakeup disabled by ACPI
    [ 0.206423] pci 0000:00:1a.0: [8086:2937] type 00 class 0x0c0300
    [ 0.206478] pci 0000:00:1a.0: reg 0x20: [io 0x1860-0x187f]
    [ 0.206577] pci 0000:00:1a.0: System wakeup disabled by ACPI
    [ 0.206692] pci 0000:00:1a.1: [8086:2938] type 00 class 0x0c0300
    [ 0.206747] pci 0000:00:1a.1: reg 0x20: [io 0x1880-0x189f]
    [ 0.206860] pci 0000:00:1a.2: [8086:2939] type 00 class 0x0c0300
    [ 0.206915] pci 0000:00:1a.2: reg 0x20: [io 0x18a0-0x18bf]
    [ 0.207011] pci 0000:00:1a.2: System wakeup disabled by ACPI
    [ 0.207061] pci 0000:00:1a.7: [8086:293c] type 00 class 0x0c0320
    [ 0.207086] pci 0000:00:1a.7: reg 0x10: [mem 0xfa626c00-0xfa626fff]
    [ 0.207194] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    [ 0.207238] pci 0000:00:1a.7: System wakeup disabled by ACPI
    [ 0.207283] pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300
    [ 0.207303] pci 0000:00:1b.0: reg 0x10: [mem 0xfa420000-0xfa423fff 64bit]
    [ 0.207398] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.207451] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 0.207492] pci 0000:00:1c.0: [8086:2940] type 01 class 0x060400
    [ 0.207592] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.207640] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 0.207679] pci 0000:00:1c.1: [8086:2942] type 01 class 0x060400
    [ 0.207778] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.207826] pci 0000:00:1c.1: System wakeup disabled by ACPI
    [ 0.207874] pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300
    [ 0.207929] pci 0000:00:1d.0: reg 0x20: [io 0x18c0-0x18df]
    [ 0.208024] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.208063] pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300
    [ 0.208118] pci 0000:00:1d.1: reg 0x20: [io 0x18e0-0x18ff]
    [ 0.208231] pci 0000:00:1d.2: [8086:2936] type 00 class 0x0c0300
    [ 0.208286] pci 0000:00:1d.2: reg 0x20: [io 0x1c00-0x1c1f]
    [ 0.208410] pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320
    [ 0.208436] pci 0000:00:1d.7: reg 0x10: [mem 0xfa627000-0xfa6273ff]
    [ 0.208543] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    [ 0.208588] pci 0000:00:1d.7: System wakeup disabled by ACPI
    [ 0.208629] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    [ 0.208735] pci 0000:00:1e.0: System wakeup disabled by ACPI
    [ 0.208776] pci 0000:00:1f.0: [8086:2917] type 00 class 0x060100
    [ 0.208987] pci 0000:00:1f.2: [8086:2929] type 00 class 0x010601
    [ 0.209014] pci 0000:00:1f.2: reg 0x10: [io 0x1c48-0x1c4f]
    [ 0.209025] pci 0000:00:1f.2: reg 0x14: [io 0x183c-0x183f]
    [ 0.209036] pci 0000:00:1f.2: reg 0x18: [io 0x1c40-0x1c47]
    [ 0.209047] pci 0000:00:1f.2: reg 0x1c: [io 0x1838-0x183b]
    [ 0.209057] pci 0000:00:1f.2: reg 0x20: [io 0x1c20-0x1c3f]
    [ 0.209068] pci 0000:00:1f.2: reg 0x24: [mem 0xfa626000-0xfa6267ff]
    [ 0.209136] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.209212] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500
    [ 0.209233] pci 0000:00:1f.3: reg 0x10: [mem 0xfa627400-0xfa6274ff 64bit]
    [ 0.209262] pci 0000:00:1f.3: reg 0x20: [io 0x1c60-0x1c7f]
    [ 0.209416] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.209529] pci 0000:03:00.0: [8086:4237] type 00 class 0x028000
    [ 0.209568] pci 0000:03:00.0: reg 0x10: [mem 0xf4200000-0xf4201fff 64bit]
    [ 0.209761] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
    [ 0.216689] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 0.216696] pci 0000:00:1c.1: bridge window [mem 0xf4200000-0xf42fffff]
    [ 0.216780] pci 0000:15:00.0: [1180:0476] type 02 class 0x060700
    [ 0.216803] pci 0000:15:00.0: proprietary Ricoh MMC controller disabled (via cardbus function)
    [ 0.216805] pci 0000:15:00.0: MMC cards are now supported by standard SDHCI controller
    [ 0.216823] pci 0000:15:00.0: reg 0x10: [mem 0xf4300000-0xf4300fff]
    [ 0.216864] pci 0000:15:00.0: supports D1 D2
    [ 0.216866] pci 0000:15:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.216927] pci 0000:15:00.2: [1180:0822] type 00 class 0x080500
    [ 0.216953] pci 0000:15:00.2: reg 0x10: [mem 0xf4301000-0xf43010ff]
    [ 0.217066] pci 0000:15:00.2: supports D1 D2
    [ 0.217068] pci 0000:15:00.2: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.217125] pci 0000:15:00.4: [1180:0592] type 00 class 0x088000
    [ 0.217150] pci 0000:15:00.4: reg 0x10: [mem 0xf4301800-0xf43018ff]
    [ 0.217263] pci 0000:15:00.4: supports D1 D2
    [ 0.217265] pci 0000:15:00.4: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.217322] pci 0000:15:00.5: [1180:0852] type 00 class 0x088000
    [ 0.217347] pci 0000:15:00.5: reg 0x10: [mem 0xf4301c00-0xf4301cff]
    [ 0.217460] pci 0000:15:00.5: supports D1 D2
    [ 0.217462] pci 0000:15:00.5: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.217564] pci 0000:00:1e.0: PCI bridge to [bus 15-18] (subtractive decode)
    [ 0.217569] pci 0000:00:1e.0: bridge window [io 0x3000-0x6fff]
    [ 0.217574] pci 0000:00:1e.0: bridge window [mem 0xf4300000-0xf7ffffff]
    [ 0.217581] pci 0000:00:1e.0: bridge window [mem 0xf0000000-0xf3ffffff 64bit pref]
    [ 0.217583] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.217585] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.217586] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.217588] pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    [ 0.217590] pci 0000:00:1e.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    [ 0.217592] pci 0000:00:1e.0: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode)
    [ 0.217593] pci 0000:00:1e.0: bridge window [mem 0xc0000000-0xfebfffff] (subtractive decode)
    [ 0.217653] pci_bus 0000:16: busn_res: can not insert [bus 16-ff] under [bus 15-18] (conflicts with (null) [bus 15-18])
    [ 0.217657] pci_bus 0000:16: busn_res: [bus 16-ff] end is updated to 17
    [ 0.217685] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
    [ 0.223809] ACPI: Enabled 3 GPEs in block 00 to 3F
    [ 0.223820] ACPI: \_SB_.PCI0: notify handler is installed
    [ 0.223857] Found 1 acpi root devices
    [ 0.223922] ACPI: EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62
    [ 0.223986] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.223986] vgaarb: loaded
    [ 0.223986] vgaarb: bridge control possible 0000:00:02.0
    [ 0.223986] PCI: Using ACPI for IRQ routing
    [ 0.227502] PCI: pci_cache_line_size set to 64 bytes
    [ 0.227586] e820: reserve RAM buffer [mem 0x0009ec00-0x0009ffff]
    [ 0.227588] e820: reserve RAM buffer [mem 0xbd6a1000-0xbfffffff]
    [ 0.227590] e820: reserve RAM buffer [mem 0xbd7b7000-0xbfffffff]
    [ 0.227592] e820: reserve RAM buffer [mem 0xbd8c7000-0xbfffffff]
    [ 0.227594] e820: reserve RAM buffer [mem 0xbdc00000-0xbfffffff]
    [ 0.227685] NetLabel: Initializing
    [ 0.227687] NetLabel: domain hash size = 128
    [ 0.227688] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.227700] NetLabel: unlabeled traffic allowed by default
    [ 0.227715] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
    [ 0.227720] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    [ 0.227724] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
    [ 0.229742] Switched to clocksource hpet
    [ 0.232362] pnp: PnP ACPI init
    [ 0.232379] ACPI: bus type PNP registered
    [ 0.252696] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
    [ 0.252699] system 00:00: [mem 0x000c0000-0x000c3fff] could not be reserved
    [ 0.252701] system 00:00: [mem 0x000c4000-0x000c7fff] could not be reserved
    [ 0.252703] system 00:00: [mem 0x000c8000-0x000cbfff] has been reserved
    [ 0.252705] system 00:00: [mem 0x000cc000-0x000cffff] has been reserved
    [ 0.252707] system 00:00: [mem 0x000d0000-0x000d3fff] could not be reserved
    [ 0.252709] system 00:00: [mem 0x000e0000-0x000e3fff] could not be reserved
    [ 0.252711] system 00:00: [mem 0x000e4000-0x000e7fff] could not be reserved
    [ 0.252713] system 00:00: [mem 0x000e8000-0x000ebfff] could not be reserved
    [ 0.252715] system 00:00: [mem 0x000ec000-0x000effff] could not be reserved
    [ 0.252716] system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
    [ 0.252718] system 00:00: [mem 0x00100000-0xbfffffff] could not be reserved
    [ 0.252721] system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved
    [ 0.252723] system 00:00: [mem 0xfed4c000-0xffffffff] could not be reserved
    [ 0.252727] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.272659] system 00:01: [io 0x1000-0x107f] could not be reserved
    [ 0.272661] system 00:01: [io 0x1180-0x11ff] has been reserved
    [ 0.272664] system 00:01: [io 0x0800-0x080f] has been reserved
    [ 0.272666] system 00:01: [io 0x15e0-0x15ef] has been reserved
    [ 0.272667] system 00:01: [io 0x1600-0x167f] has been reserved
    [ 0.272669] system 00:01: [io 0x1680-0x169f] has been reserved
    [ 0.272672] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.272674] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.272676] system 00:01: [mem 0xfed10000-0xfed13fff] has been reserved
    [ 0.272678] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.272680] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.272682] system 00:01: [mem 0xfed45000-0xfed4bfff] has been reserved
    [ 0.272684] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.272739] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.272748] pnp 00:03: [dma 4]
    [ 0.272766] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.272792] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.272830] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.272861] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.272892] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.272921] pnp 00:08: Plug and Play ACPI device, IDs IBM0057 PNP0f13 (active)
    [ 0.292844] pnp 00:09: Plug and Play ACPI device, IDs PNP0c31 (active)
    [ 0.293234] pnp: PnP ACPI: found 10 devices
    [ 0.293236] ACPI: bus type PNP unregistered
    [ 0.300009] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 02] add_size 1000
    [ 0.300014] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
    [ 0.300016] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 02] add_size 200000
    [ 0.300026] pci 0000:00:1c.1: bridge window [io 0x1000-0x0fff] to [bus 03] add_size 1000
    [ 0.300029] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000
    [ 0.300052] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    [ 0.300054] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.300056] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.300058] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.300060] pci 0000:00:1c.1: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.300065] pci 0000:00:1c.0: BAR 14: assigned [mem 0xc0000000-0xc01fffff]
    [ 0.300068] pci 0000:00:1c.0: BAR 15: assigned [mem 0xc0200000-0xc03fffff 64bit pref]
    [ 0.300071] pci 0000:00:1c.1: BAR 15: assigned [mem 0xc0400000-0xc05fffff 64bit pref]
    [ 0.300074] pci 0000:00:1c.0: BAR 13: assigned [io 0x2000-0x2fff]
    [ 0.300076] pci 0000:00:1c.1: BAR 13: assigned [io 0x7000-0x7fff]
    [ 0.300079] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.300083] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
    [ 0.300088] pci 0000:00:1c.0: bridge window [mem 0xc0000000-0xc01fffff]
    [ 0.300093] pci 0000:00:1c.0: bridge window [mem 0xc0200000-0xc03fffff 64bit pref]
    [ 0.300100] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 0.300103] pci 0000:00:1c.1: bridge window [io 0x7000-0x7fff]
    [ 0.300108] pci 0000:00:1c.1: bridge window [mem 0xf4200000-0xf42fffff]
    [ 0.300112] pci 0000:00:1c.1: bridge window [mem 0xc0400000-0xc05fffff 64bit pref]
    [ 0.300121] pci 0000:15:00.0: res[15]=[mem 0x04000000-0x03ffffff pref] get_res_add_size add_size 4000000
    [ 0.300123] pci 0000:15:00.0: res[16]=[mem 0x04000000-0x03ffffff] get_res_add_size add_size 4000000
    [ 0.300125] pci 0000:15:00.0: res[13]=[io 0x0100-0x00ff] get_res_add_size add_size 100
    [ 0.300127] pci 0000:15:00.0: res[14]=[io 0x0100-0x00ff] get_res_add_size add_size 100
    [ 0.300129] pci 0000:15:00.0: BAR 15: assigned [mem 0xf0000000-0xf3ffffff pref]
    [ 0.300133] pci 0000:15:00.0: BAR 16: assigned [mem 0xc4000000-0xc7ffffff]
    [ 0.300135] pci 0000:15:00.0: BAR 13: assigned [io 0x3000-0x30ff]
    [ 0.300137] pci 0000:15:00.0: BAR 14: assigned [io 0x3400-0x34ff]
    [ 0.300139] pci 0000:15:00.0: CardBus bridge to [bus 16-17]
    [ 0.300140] pci 0000:15:00.0: bridge window [io 0x3000-0x30ff]
    [ 0.300146] pci 0000:15:00.0: bridge window [io 0x3400-0x34ff]
    [ 0.300151] pci 0000:15:00.0: bridge window [mem 0xf0000000-0xf3ffffff pref]
    [ 0.300156] pci 0000:15:00.0: bridge window [mem 0xc4000000-0xc7ffffff]
    [ 0.300162] pci 0000:00:1e.0: PCI bridge to [bus 15-18]
    [ 0.300165] pci 0000:00:1e.0: bridge window [io 0x3000-0x6fff]
    [ 0.300170] pci 0000:00:1e.0: bridge window [mem 0xf4300000-0xf7ffffff]
    [ 0.300174] pci 0000:00:1e.0: bridge window [mem 0xf0000000-0xf3ffffff 64bit pref]
    [ 0.300182] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.300184] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.300186] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.300187] pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000d7fff]
    [ 0.300189] pci_bus 0000:00: resource 8 [mem 0x000d8000-0x000dbfff]
    [ 0.300191] pci_bus 0000:00: resource 9 [mem 0x000dc000-0x000dffff]
    [ 0.300192] pci_bus 0000:00: resource 10 [mem 0xc0000000-0xfebfffff]
    [ 0.300195] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff]
    [ 0.300196] pci_bus 0000:02: resource 1 [mem 0xc0000000-0xc01fffff]
    [ 0.300198] pci_bus 0000:02: resource 2 [mem 0xc0200000-0xc03fffff 64bit pref]
    [ 0.300200] pci_bus 0000:03: resource 0 [io 0x7000-0x7fff]
    [ 0.300202] pci_bus 0000:03: resource 1 [mem 0xf4200000-0xf42fffff]
    [ 0.300203] pci_bus 0000:03: resource 2 [mem 0xc0400000-0xc05fffff 64bit pref]
    [ 0.300205] pci_bus 0000:15: resource 0 [io 0x3000-0x6fff]
    [ 0.300207] pci_bus 0000:15: resource 1 [mem 0xf4300000-0xf7ffffff]
    [ 0.300209] pci_bus 0000:15: resource 2 [mem 0xf0000000-0xf3ffffff 64bit pref]
    [ 0.300211] pci_bus 0000:15: resource 4 [io 0x0000-0x0cf7]
    [ 0.300212] pci_bus 0000:15: resource 5 [io 0x0d00-0xffff]
    [ 0.300214] pci_bus 0000:15: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.300216] pci_bus 0000:15: resource 7 [mem 0x000d4000-0x000d7fff]
    [ 0.300217] pci_bus 0000:15: resource 8 [mem 0x000d8000-0x000dbfff]
    [ 0.300219] pci_bus 0000:15: resource 9 [mem 0x000dc000-0x000dffff]
    [ 0.300221] pci_bus 0000:15: resource 10 [mem 0xc0000000-0xfebfffff]
    [ 0.300223] pci_bus 0000:16: resource 0 [io 0x3000-0x30ff]
    [ 0.300224] pci_bus 0000:16: resource 1 [io 0x3400-0x34ff]
    [ 0.300226] pci_bus 0000:16: resource 2 [mem 0xf0000000-0xf3ffffff pref]
    [ 0.300228] pci_bus 0000:16: resource 3 [mem 0xc4000000-0xc7ffffff]
    [ 0.300265] NET: Registered protocol family 2
    [ 0.300457] TCP established hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.300690] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.300878] TCP: Hash tables configured (established 32768 bind 32768)
    [ 0.300932] TCP: reno registered
    [ 0.300940] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.300970] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.301053] NET: Registered protocol family 1
    [ 0.301066] pci 0000:00:02.0: Boot video device
    [ 0.301991] PCI: CLS 64 bytes, default 64
    [ 0.302031] Unpacking initramfs...
    [ 0.363199] Freeing initrd memory: 3248K (ffff880037998000 - ffff880037cc4000)
    [ 0.363208] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.363210] software IO TLB [mem 0xb96a1000-0xbd6a1000] (64MB) mapped at [ffff8800b96a1000-ffff8800bd6a0fff]
    [ 0.363238] Simple Boot Flag at 0x35 set to 0x1
    [ 0.363417] Scanning for low memory corruption every 60 seconds
    [ 0.363745] audit: initializing netlink socket (disabled)
    [ 0.363761] type=2000 audit(1390816732.363:1): initialized
    [ 0.376055] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.377555] zbud: loaded
    [ 0.377716] VFS: Disk quotas dquot_6.5.2
    [ 0.377758] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.377933] msgmni has been set to 7703
    [ 0.378225] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.378261] io scheduler noop registered
    [ 0.378263] io scheduler deadline registered
    [ 0.378292] io scheduler cfq registered (default)
    [ 0.378503] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
    [ 0.378668] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
    [ 0.378786] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
    [ 0.378791] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
    [ 0.378813] pcieport 0000:00:1c.1: Signaling PME through PCIe PME interrupt
    [ 0.378816] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
    [ 0.378820] pcie_pme 0000:00:1c.1:pcie01: service driver pcie_pme loaded
    [ 0.378834] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.378869] pciehp 0000:00:1c.0:pcie04: HPC vendor_id 8086 device_id 2940 ss_vid 17aa ss_did 20f3
    [ 0.378898] pciehp 0000:00:1c.0:pcie04: service driver pciehp loaded
    [ 0.378910] pciehp 0000:00:1c.1:pcie04: HPC vendor_id 8086 device_id 2942 ss_vid 17aa ss_did 20f3
    [ 0.378934] pciehp 0000:00:1c.1:pcie04: service driver pciehp loaded
    [ 0.378939] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.378995] vesafb: mode is 1024x768x32, linelength=4096, pages=0
    [ 0.378997] vesafb: scrolling: redraw
    [ 0.378999] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.379450] vesafb: framebuffer at 0xd0000000, mapped to 0xffffc90004800000, using 3072k, total 3072k
    [ 0.403394] Console: switching to colour frame buffer device 128x48
    [ 0.427226] fb0: VESA VGA frame buffer device
    [ 0.427238] intel_idle: does not run on family 6 model 23
    [ 0.427277] GHES: HEST is not enabled!
    [ 0.427334] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.448019] 0000:00:03.3: ttyS0 at I/O 0x1830 (irq = 17, base_baud = 115200) is a 16550A
    [ 0.448162] Linux agpgart interface v0.103
    [ 0.448228] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
    [ 0.456045] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.456072] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.456170] mousedev: PS/2 mouse device common for all mice
    [ 0.456238] rtc_cmos 00:06: RTC can wake from S4
    [ 0.456379] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
    [ 0.456408] rtc_cmos 00:06: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 0.456472] drop_monitor: Initializing network drop monitor service
    [ 0.456534] TCP: cubic registered
    [ 0.456631] NET: Registered protocol family 10
    [ 0.456816] NET: Registered protocol family 17
    [ 0.456828] Key type dns_resolver registered
    [ 0.457049] registered taskstats version 1
    [ 0.457713] Magic number: 14:393:981
    [ 0.457799] rtc_cmos 00:06: setting system clock to 2014-01-27 09:58:53 UTC (1390816733)
    [ 0.457879] PM: Hibernation image not present or could not be loaded.
    [ 0.459170] Freeing unused kernel memory: 1144K (ffffffff818cb000 - ffffffff819e9000)
    [ 0.459172] Write protecting the kernel read-only data: 8192k
    [ 0.461316] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.462040] Freeing unused kernel memory: 1012K (ffff880001503000 - ffff880001600000)
    [ 0.463192] Freeing unused kernel memory: 420K (ffff880001797000 - ffff880001800000)
    [ 0.472217] systemd-udevd[47]: starting version 208
    [ 0.495432] ACPI: bus type USB registered
    [ 0.495458] usbcore: registered new interface driver usbfs
    [ 0.495469] usbcore: registered new interface driver hub
    [ 0.495512] usbcore: registered new device driver usb
    [ 0.495844] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.496041] uhci_hcd: USB Universal Host Controller Interface driver
    [ 0.496152] uhci_hcd 0000:00:1a.0: setting latency timer to 64
    [ 0.496156] uhci_hcd 0000:00:1a.0: UHCI Host Controller
    [ 0.496161] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 0.496201] uhci_hcd 0000:00:1a.0: irq 20, io base 0x00001860
    [ 0.496371] hub 1-0:1.0: USB hub found
    [ 0.496380] hub 1-0:1.0: 2 ports detected
    [ 0.496558] uhci_hcd 0000:00:1a.1: setting latency timer to 64
    [ 0.496562] uhci_hcd 0000:00:1a.1: UHCI Host Controller
    [ 0.496567] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 2
    [ 0.496602] uhci_hcd 0000:00:1a.1: irq 21, io base 0x00001880
    [ 0.496771] hub 2-0:1.0: USB hub found
    [ 0.496779] hub 2-0:1.0: 2 ports detected
    [ 0.496929] uhci_hcd 0000:00:1a.2: setting latency timer to 64
    [ 0.496932] uhci_hcd 0000:00:1a.2: UHCI Host Controller
    [ 0.496947] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 3
    [ 0.496967] SCSI subsystem initialized
    [ 0.496986] uhci_hcd 0000:00:1a.2: irq 22, io base 0x000018a0
    [ 0.497128] hub 3-0:1.0: USB hub found
    [ 0.497136] hub 3-0:1.0: 2 ports detected
    [ 0.497306] uhci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 0.497310] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 0.497315] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
    [ 0.497350] uhci_hcd 0000:00:1d.0: irq 16, io base 0x000018c0
    [ 0.497482] hub 4-0:1.0: USB hub found
    [ 0.497488] hub 4-0:1.0: 2 ports detected
    [ 0.497640] uhci_hcd 0000:00:1d.1: setting latency timer to 64
    [ 0.497643] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 0.497648] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 5
    [ 0.497684] uhci_hcd 0000:00:1d.1: irq 17, io base 0x000018e0
    [ 0.497810] hub 5-0:1.0: USB hub found
    [ 0.497817] hub 5-0:1.0: 2 ports detected
    [ 0.497957] uhci_hcd 0000:00:1d.2: setting latency timer to 64
    [ 0.497960] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 0.497965] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 6
    [ 0.498003] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00001c00
    [ 0.498556] hub 6-0:1.0: USB hub found
    [ 0.498564] hub 6-0:1.0: 2 ports detected
    [ 0.498723] libata version 3.00 loaded.
    [ 0.499070] pata_acpi 0000:00:03.2: setting latency timer to 64
    [ 0.499364] ata_generic 0000:00:03.2: setting latency timer to 64
    [ 0.499867] ehci-pci: EHCI PCI platform driver
    [ 0.500825] scsi0 : ata_generic
    [ 0.500976] scsi1 : ata_generic
    [ 0.501017] ata1: PATA max UDMA/100 cmd 0x1828 ctl 0x180c bmdma 0x1810 irq 18
    [ 0.501019] ata2: PATA max UDMA/100 cmd 0x1820 ctl 0x1808 bmdma 0x1818 irq 18
    [ 0.501120] ehci-pci 0000:00:1a.7: setting latency timer to 64
    [ 0.501420] ehci-pci 0000:00:1a.7: EHCI Host Controller
    [ 0.501427] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 7
    [ 0.501441] ehci-pci 0000:00:1a.7: debug port 1
    [ 0.505335] ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
    [ 0.505357] ehci-pci 0000:00:1a.7: irq 23, io mem 0xfa626c00
    [ 0.505888] sdhci: Secure Digital Host Controller Interface driver
    [ 0.505890] sdhci: Copyright(c) Pierre Ossman
    [ 0.506101] sdhci-pci 0000:15:00.2: SDHCI controller found [1180:0822] (rev 21)
    [ 0.506120] pci 0000:00:1e.0: setting latency timer to 64
    [ 0.507472] sdhci-pci 0000:15:00.2: Will use DMA mode even though HW doesn't fully claim to support it.
    [ 0.508483] sdhci-pci 0000:15:00.2: Will use DMA mode even though HW doesn't fully claim to support it.
    [ 0.508545] mmc0: SDHCI controller on PCI [0000:15:00.2] using DMA
    [ 0.513357] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    [ 0.513540] hub 7-0:1.0: USB hub found
    [ 0.513548] hub 7-0:1.0: 6 ports detected
    [ 0.536738] hub 1-0:1.0: USB hub found
    [ 0.536747] hub 1-0:1.0: 2 ports detected
    [ 0.560057] hub 2-0:1.0: USB hub found
    [ 0.560064] hub 2-0:1.0: 2 ports detected
    [ 0.583392] hub 3-0:1.0: USB hub found
    [ 0.583400] hub 3-0:1.0: 2 ports detected
    [ 0.583584] ehci-pci 0000:00:1d.7: setting latency timer to 64
    [ 0.583900] ehci-pci 0000:00:1d.7: EHCI Host Controller
    [ 0.583907] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 8
    [ 0.583922] ehci-pci 0000:00:1d.7: debug port 1
    [ 0.587822] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
    [ 0.587841] ehci-pci 0000:00:1d.7: irq 19, io mem 0xfa627000
    [ 0.596687] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 0.596823] hub 8-0:1.0: USB hub found
    [ 0.596830] hub 8-0:1.0: 6 ports detected
    [ 0.620052] hub 4-0:1.0: USB hub found
    [ 0.620059] hub 4-0:1.0: 2 ports detected
    [ 0.643388] hub 5-0:1.0: USB hub found
    [ 0.643395] hub 5-0:1.0: 2 ports detected
    [ 0.666727] hub 6-0:1.0: USB hub found
    [ 0.666736] hub 6-0:1.0: 2 ports detected
    [ 0.666812] ahci 0000:00:1f.2: version 3.0
    [ 0.666915] ahci 0000:00:1f.2: irq 42 for MSI/MSI-X
    [ 0.666955] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
    [ 0.666976] ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x1 impl SATA mode
    [ 0.666979] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ccc sxs
    [ 0.666984] ahci 0000:00:1f.2: setting latency timer to 64
    [ 0.667519] scsi2 : ahci
    [ 0.667582] scsi3 : ahci
    [ 0.667641] scsi4 : ahci
    [ 0.667699] scsi5 : ahci
    [ 0.667742] ata3: SATA max UDMA/133 abar m2048@0xfa626000 port 0xfa626100 irq 42
    [ 0.667743] ata4: DUMMY
    [ 0.667745] ata5: DUMMY
    [ 0.667746] ata6: DUMMY
    [ 0.986695] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 0.987559] ata3.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    [ 0.987562] ata3.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 0.987564] ata3.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    [ 0.988382] ata3.00: ATA-8: HGST HTS725050A7E630, GH2ZB550, max UDMA/133
    [ 0.988384] ata3.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 0.989285] ata3.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    [ 0.989287] ata3.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 0.989289] ata3.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    [ 0.990098] ata3.00: configured for UDMA/133
    [ 0.990208] scsi 2:0:0:0: Direct-Access ATA HGST HTS725050A7 GH2Z PQ: 0 ANSI: 5
    [ 0.992941] sd 2:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 0.992944] sd 2:0:0:0: [sda] 4096-byte physical blocks
    [ 0.992998] sd 2:0:0:0: [sda] Write Protect is off
    [ 0.993001] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 0.993036] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.076699] usb 7-6: new high-speed USB device number 3 using ehci-pci
    [ 1.077234] sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 sda8 >
    [ 1.077733] sd 2:0:0:0: [sda] Attached SCSI disk
    [ 1.363358] tsc: Refined TSC clocksource calibration: 2526.999 MHz
    [ 1.436698] usb 2-2: new full-speed USB device number 2 using uhci_hcd
    [ 1.826147] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    [ 2.363390] Switched to clocksource tsc
    [ 2.384837] systemd[1]: systemd 208 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 2.385108] systemd[1]: Set hostname to <hostname>.
    [ 3.020950] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 3.021003] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 3.021015] systemd[1]: Starting Remote File Systems.
    [ 3.021026] systemd[1]: Reached target Remote File Systems.
    [ 3.021034] systemd[1]: Starting Delayed Shutdown Socket.
    [ 3.021061] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 3.021070] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 3.021093] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 3.021102] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 3.021121] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 3.021129] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 3.021153] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 3.021165] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 3.021196] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 3.021205] systemd[1]: Starting Journal Socket.
    [ 3.021245] systemd[1]: Listening on Journal Socket.
    [ 3.021449] systemd[1]: Starting Apply Kernel Variables...
    [ 3.021979] systemd[1]: Starting Journal Service...
    [ 3.022329] systemd[1]: Started Journal Service.
    [ 3.527540] thinkpad_ec: thinkpad_ec 0.41 loaded.
    [ 3.548541] tp_smapi 0.41 loading...
    [ 3.548630] tp_smapi successfully loaded (smapi_port=0xb2).
    [ 3.692910] systemd-journald[104]: Vacuuming done, freed 0 bytes
    [ 4.052057] EXT4-fs (sda3): re-mounted. Opts: data=ordered
    [ 4.275058] systemd-udevd[135]: starting version 208
    [ 5.539050] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
    [ 5.539194] ACPI: Lid Switch [LID]
    [ 5.539249] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3
    [ 5.539253] ACPI: Sleep Button [SLPB]
    [ 5.539316] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 5.539319] ACPI: Power Button [PWRF]
    [ 5.558409] ACPI: Requesting acpi_cpufreq
    [ 5.576148] Monitor-Mwait will be used to enter C-1 state
    [ 5.576156] Monitor-Mwait will be used to enter C-2 state
    [ 5.576160] Monitor-Mwait will be used to enter C-3 state
    [ 5.576163] tsc: Marking TSC unstable due to TSC halts in idle
    [ 5.576179] ACPI: acpi_idle registered with cpuidle
    [ 5.576205] Switched to clocksource hpet
    [ 5.612079] agpgart-intel 0000:00:00.0: Intel GM45 Chipset
    [ 5.612185] agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
    [ 5.613189] agpgart-intel 0000:00:00.0: detected 32768K stolen memory
    [ 5.613498] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
    [ 5.624658] wmi: Mapper loaded
    [ 5.686902] [drm] Initialized drm 1.1.0 20060810
    [ 5.759536] Bluetooth: Core ver 2.16
    [ 5.759560] NET: Registered protocol family 31
    [ 5.759562] Bluetooth: HCI device and connection manager initialized
    [ 5.759578] Bluetooth: HCI socket layer initialized
    [ 5.759580] Bluetooth: L2CAP socket layer initialized
    [ 5.759587] Bluetooth: SCO socket layer initialized
    [ 5.775533] [drm] Memory usable by graphics device = 2048M
    [ 5.775538] checking generic (d0000000 300000) vs hw (d0000000 10000000)
    [ 5.775540] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
    [ 5.775561] Console: switching to colour dummy device 80x25
    [ 5.775662] i915 0000:00:02.0: setting latency timer to 64
    [ 5.813939] i915 0000:00:02.0: irq 43 for MSI/MSI-X
    [ 5.813948] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 5.813949] [drm] Driver supports precise vblank timestamp query.
    [ 5.813994] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 5.815326] pps_core: LinuxPPS API ver. 1 registered
    [ 5.815328] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
    [ 5.815860] PTP clock support registered
    [ 5.868929] ACPI: AC Adapter [AC] (on-line)
    [ 5.908828] fbcon: inteldrmfb (fb0) is primary device
    [ 5.973459] tpm_tis 00:09: 1.2 TPM (device-id 0x1020, rev-id 6)
    [ 5.973460] tpm_tis 00:09: Intel iTPM workaround enabled
    [ 5.993930] ACPI: Battery Slot [BAT0] (battery present)
    [ 5.995201] thermal LNXTHERM:00: registered as thermal_zone0
    [ 5.995202] ACPI: Thermal Zone [THM0] (18 C)
    [ 5.996577] thermal LNXTHERM:01: registered as thermal_zone1
    [ 5.996578] ACPI: Thermal Zone [THM1] (17 C)
    [ 6.007966] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
    [ 6.007967] e1000e: Copyright(c) 1999 - 2013 Intel Corporation.
    [ 6.040594] usbcore: registered new interface driver btusb
    [ 6.054550] Non-volatile memory driver v1.3
    [ 6.078033] thinkpad_acpi: ThinkPad ACPI Extras v0.24
    [ 6.078034] thinkpad_acpi: http://ibm-acpi.sf.net/
    [ 6.078035] thinkpad_acpi: ThinkPad BIOS 7UET70WW (3.00 ), EC 7VHT14WW-1.03
    [ 6.078035] thinkpad_acpi: Lenovo ThinkPad T400, model 2767WSD
    [ 6.097896] thinkpad_acpi: detected a 8-level brightness capable ThinkPad
    [ 6.098029] thinkpad_acpi: radio switch found; radios are enabled
    [ 6.098111] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
    [ 6.098111] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
    [ 6.100039] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
    [ 6.102704] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one
    [ 6.102770] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
    [ 6.103685] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input5
    [ 6.116703] tpm_tis 00:09: TPM is disabled/deactivated (0x6)
    [ 6.151185] media: Linux media interface: v0.10
    [ 6.188125] Linux video capture interface: v2.00
    [ 6.448191] yenta_cardbus 0000:15:00.0: CardBus bridge found [17aa:20c6]
    [ 6.459562] uvcvideo: Found UVC 1.00 device Integrated Camera (17ef:1004)
    [ 6.464806] input: Integrated Camera as /devices/pci0000:00/0000:00:1a.7/usb7/7-6/7-6:1.0/input/input6
    [ 6.464847] usbcore: registered new interface driver uvcvideo
    [ 6.464848] USB Video Class driver (1.1.1)
    [ 6.486718] Console: switching to colour frame buffer device 180x56
    [ 6.489860] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [ 6.489862] i915 0000:00:02.0: registered panic notifier
    [ 6.495027] acpi device:02: registered as cooling_device2
    [ 6.495078] ACPI: Video Device [VID] (multi-head: yes rom: no post: no)
    [ 6.495118] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input7
    [ 6.495167] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 6.495243] mei_me 0000:00:03.0: setting latency timer to 64
    [ 6.495270] mei_me 0000:00:03.0: irq 44 for MSI/MSI-X
    [ 6.501432] e1000e 0000:00:19.0: setting latency timer to 64
    [ 6.501513] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
    [ 6.501534] e1000e 0000:00:19.0: irq 45 for MSI/MSI-X
    [ 6.574169] yenta_cardbus 0000:15:00.0: ISA IRQ mask 0x0cb8, PCI irq 16
    [ 6.574173] yenta_cardbus 0000:15:00.0: Socket status: 30000006
    [ 6.574179] yenta_cardbus 0000:15:00.0: pcmcia: parent PCI bridge window: [io 0x3000-0x6fff]
    [ 6.574181] yenta_cardbus 0000:15:00.0: pcmcia: parent PCI bridge window: [mem 0xf4300000-0xf7ffffff]
    [ 6.574184] pcmcia_socket pcmcia_socket0: cs: memory probe 0xf4300000-0xf7ffffff:
    [ 6.574188] excluding 0xf4300000-0xf46cffff
    [ 6.574196] yenta_cardbus 0000:15:00.0: pcmcia: parent PCI bridge window: [mem 0xf0000000-0xf3ffffff 64bit pref]
    [ 6.574198] pcmcia_socket pcmcia_socket0: cs: memory probe 0xf0000000-0xf3ffffff:
    [ 6.574207] excluding 0xf0000000-0xf3ffffff
    [ 6.576532] r592: driver successfully loaded
    [ 6.695857] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 00:24:7e:6a:db:bf
    [ 6.695861] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
    [ 6.695887] e1000e 0000:00:19.0 eth0: MAC: 7, PHY: 8, PBA No: 1008FF-0FF
    [ 6.695952] ACPI Warning: 0x0000000000001028-0x000000000000102f SystemIO conflicts with Region \_SB_.PCI0.LPC_.PMIO 1 (20130725/utaddress-251)
    [ 6.695957] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 6.695961] ACPI Warning: 0x00000000000011b0-0x00000000000011bf SystemIO conflicts with Region \_SB_.PCI0.LPC_.LPIO 1 (20130725/utaddress-251)
    [ 6.695964] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 6.695966] ACPI Warning: 0x0000000000001180-0x00000000000011af SystemIO conflicts with Region \_SB_.PCI0.LPC_.LPIO 1 (20130725/utaddress-251)
    [ 6.695968] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 6.695969] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 6.695997] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 6.696201] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
    [ 6.715445] input: PC Speaker as /devices/platform/pcspkr/input/input9
    [ 6.781879] cfg80211: Calling CRDA to update world regulatory domain
    [ 6.810601] microcode: CPU0 sig=0x1067a, pf=

    I have the same problem, but only with firefox, because is the only program that i use (also watch videos with VLC, but this have no problem).
    I think we should report, but i'm not sure where.
    A screenshot: http://imgur.com/QKrisQa
    $lspci
    00:00.0 Host bridge: Intel Corporation 4 Series Chipset DRAM Controller (rev 03)
    00:01.0 PCI bridge: Intel Corporation 4 Series Chipset PCI Express Root Port (rev 03)
    00:02.0 VGA compatible controller: Intel Corporation 4 Series Chipset Integrated Graphics Controller (rev 03)
    00:1b.0 Audio device: Intel Corporation NM10/ICH7 Family High Definition Audio Controller (rev 01)
    00:1c.0 PCI bridge: Intel Corporation NM10/ICH7 Family PCI Express Port 1 (rev 01)
    00:1c.1 PCI bridge: Intel Corporation NM10/ICH7 Family PCI Express Port 2 (rev 01)
    00:1d.0 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI Controller #1 (rev 01)
    00:1d.1 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI Controller #2 (rev 01)
    00:1d.2 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI Controller #3 (rev 01)
    00:1d.3 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI Controller #4 (rev 01)
    00:1d.7 USB controller: Intel Corporation NM10/ICH7 Family USB2 EHCI Controller (rev 01)
    00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev e1)
    00:1f.0 ISA bridge: Intel Corporation 82801GB/GR (ICH7 Family) LPC Interface Bridge (rev 01)
    00:1f.1 IDE interface: Intel Corporation 82801G (ICH7 Family) IDE Controller (rev 01)
    00:1f.2 IDE interface: Intel Corporation NM10/ICH7 Family SATA Controller [IDE mode] (rev 01)
    00:1f.3 SMBus: Intel Corporation NM10/ICH7 Family SMBus Controller (rev 01)
    03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 03)
    04:01.0 Multimedia controller: Philips Semiconductors SAA7134/SAA7135HL Video Broadcast Decoder (rev 01)
    PD: Sorry for my bad grammar.

  • App-V 5 Full Infrastructure Apps take long time to stream to the client

    Hi was wondering if anyone has the same issue as i am or knows a fix for this, below is my problem and the troubleshooting i have done.
    Overview of problem
    App-V 5 apps delivered via App-V 5 full infrastructure take a long time to stream to the client and this means the user has to wait if they try and run an application before it has streamed to the client. Users sometimes have to
    wait 2 or 3 minutes for an application to stream and this is about 40 times slower than basic SMB and HTTP transfer tests show the system is capable of (see performance results below).
    App-V 4.6 apps delivered via App-V 4.6 full infrastructure and HTTP streaming are fine.
    Overview of environment
    App-V 5.0 SP1 Full Infrastructure.
    App-V servers are running Server 2012 on Hyper-V 3 or ESX 5.1 with 2 x vCPU and 4GB RAM.
    SQL servers are a SQL 2012 cluster.
    Separate servers for SQL, management, publishing, content and reporting.
    Management, Publishing and Content servers have two servers per role and NLB to provide load balancing. So 7 servers (2 x Man, 2 x Pub, 2 x Content, 1 x Reporting)
    Two further sites with 2 x Pub and 2 x Content each. All publishing servers pointed at the load balance address for management.
    Content delivered via HTTP
    Clients are physical desktops and laptops running Windows 7 SP1 x86 and Windows 8 x86
    App-V client is 5.0SP1
    Clients are pointed at their nearest publishing server NLB via a script which looks up the client IP address and uses PowerShell to configure the publishing server
    Content is streamed from the nearest content server NLB by setting the PackageSourceRoot to the nearest content NLB (via the same PowerShell script above).
    App-V apps delivered per-user via AD group. One AD group per application. Approximately 200 App-V apps published so far - will eventually reach 400 as we sequence more. About 9000 users.
    Analysis performed so far
    Servers not heavily loaded. CPU averages 5%. Lots of RAM free. Very low disk IO. Problem also occurs out-of-hours so we are 99.9% certain that server resources are not a cause.
    Streaming performance is the same from all 6 content servers and all 3 NLB addresses (tested by changing the value of PackageSourceRoot). Wireshark used to confirm packages are really streaming from the correct location, enforcing
    our belief that the problem isn't at the server end (unless all 6 servers are affected).
    Streaming via both HTTP and SMB2.1 is approximately the same (tested by changing the value of PackageSourceRoot between http://xxxx and \\server\AppVContent).
    Wireshark used to confirm we really are using the protocol we think we are using.
    All clients exhibit the same behaviour. Issue reported by many users. 5 test PCs chosen at random at all 3 sites confirmed to have the slow streaming problem.
    Slow streaming from both Hyper-V and VMware ESX servers.
    Client not heavily loaded.
    Affects all App-V apps although it obviously affects the larger ones more.
    All App-V apps have a Feature Block 1 setup.
    If we copy the ".appv" file from the server to the client via either HTTP or SMB then it's reasonably quick (up to 480Mb/s). So we don't believe the network or servers are at fault. For example:
    We can copy a 149MB .appv file via SMB from the content server to the client in 5 seconds.
    We copy HTTP download the .appv file from the content server using IE on the client in 5 seconds.
    But if you ask the App-V 5 client to fully download the sequence then it takes 2 - 3 minutes.
    The App-V 4.6 client takes about 8 - 10 seconds to fully download a similar sized application.
    App-V 5 publishing works fine - when a new user logs on they get their list of application straight away, it's just the streaming which is slow.
    Once the App-V app has streamed locally it runs fine and with a decent performance.
    Looking at a Wireshark trace of the streaming you can see that the slow performance is due to the transfer stopping and starting a lot. You only notice this when you zoom into the performance graph a fair bit.
    Each time the HTTP server stops sending traffic, it doesn't start again until the client sends a "TCP Window update". Each "stop" is of a different length, but just taking a few from the middle I get 0.06s, 0.11s,
    0.13s wasted etc.
    I can see that it's the client stopping the transfer by reducing its advertised TCP Window Size. I'll provide an example:
    Server sends 9 x 1514 bytes. Client responds with an ACK and a Window size of 54016 bytes (256x211)
    Server sends 11 x 1514 bytes. Client responds with an ACK and a Window size of 37888 bytes (256x148)
    Server sends 10 x 1514 bytes. Client responds with an ACK and a Window size of 23296 bytes (256x91)
    Server sends 15 x 1514 bytes. Client responds with an ACK and a Window size of 1280 bytes (5 x 256)
    Server stops sending (I'm guessing because the client advertised Window size was less than a single packet's worth of bytes)
    <0.1 seconds passes>
    Client sends a "TCP Window Update" re-advertising a TCP window size of 65536 (256x256).
    Server starts transmitting again
    So the way I see this is that the App-V 5 client is controlling the transfer speed by utilising TCP Window flow control. The trace was taken at the client end so there's no room for anything on the network to be fiddling with flow
    control (and we've confirmed there are no traffic shapers in the loop).
    We've also tried streaming directly from the local client by copying some App-V 5 apps down to the client, creating a SMB share on the client and changing PackageSourceRoot to \\localhost\AppVContent (i.e. so we are streaming directly
    from the client to the client - to remove the network from the equation) and there is only an improvement of 5 to 10 seconds. So we know it's nothing to do with the network or the servers.
    We've tried turning off TCP auto-tuning on the client with:
    netsh interface tcp set global autotuninglevel=disabled
    and turning off TCP chimney offloading (which is off anyway because the NIC doesn't support it and Netstat -t output shows "InHost" for offload state for all connections) with:
    netsh int tcp set global chimney=disabled
    and nothing has improved.
    So we've now focussed on the extraction of the .appv (ZIP) file on the client.
    Using Windows Explorer it takes 75 seconds to extract the ZIP file
    Using 7ZIP it takes 9 seconds to extract the ZIP file
    Yeah we've always known that the Explorer ZIP engine is terrible. That's why we use 7ZIP or WinRAR on our clients.
    So we've started to wonder if the problem with the slow App-V 5 streaming is because the client is downloading the .appv file and extracting it as it goes along in a single thread. If the App-V 5 client is using the same terrible
    ZIP engine that Explorer does then that would explain the slow performance. The "download" appears to take a long time because the client is using TCP flow control to slow the transfer since it's extracting the .appv file using a very slow ZIP engine
    and it's all in a single thread.

    Guys,
    Just wanted to give you a brief update basically close this thread as Answered.
    We had submitted 4 App-V 5 Bugs to Microsoft and these were reproducible and an explanation was given on work around to them. Microsoft
    sent down a App-v developer to have a look at our problems. They said they will try and include the Bug fixes in SP2 which should be out in a few weeks or they will definitely be included in SP3.
    In regards to the slow streaming it all came down to the Disk IO.
    We found that you could simply enable "Turn off
    Windows write-cache buffer flushing on the device", then start streaming the app and then disable "Turn
    off Windows write-cache buffer flushing on the device" immediately after
    (we don't want to leave it on) and that basically fixed the issue.
    But a normal user would not have permissions to do
    this, so a code was written to enable and disable this option.
    Apology for not going in detail, like my opening thread, its very late. 
    but if you would like a detailed analysis please message me.
    I would like to Thank the Talented Consultant who designed and implemented are App-V infrastructure who found the bugs and created all
    the work around and who also emailed the detailed analysis of the problems to Microsoft that got them interested.
    Simon Bond from Ultima Business Solutions.
    Thank you

  • Libreoffice crashes after plug in external monitor

    Hi
    I have XFCE. When i plug in external monitor i get a crash from libreoffice. The message says that libreoffice has crashed and that documents will be saved. Has anybody got simillar issues?
    LibreOffice error message:
    Due to an unexpected errot, LibreOffice vrashed. All the files you were working on will be saved now. The next time LibreOffice is launched, your files will be recovered automatically.
    dmesg:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.0-ARCH (thomas@evey) (gcc version 4.6.1 (GCC) ) #1 SMP PREEMPT Sat Aug 6 16:49:00 CEST 2011
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 0000000000097c00 (usable)
    [ 0.000000] BIOS-e820: 0000000000097c00 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000e1000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 000000007dd80000 (usable)
    [ 0.000000] BIOS-e820: 000000007dd80000 - 000000007dd8f000 (ACPI data)
    [ 0.000000] BIOS-e820: 000000007dd8f000 - 000000007dde0000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 000000007dde0000 - 000000007de00000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed20000 - 00000000fed40000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    [ 0.000000] BIOS-e820: 00000000ffb00000 - 0000000100000000 (reserved)
    [ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
    [ 0.000000] DMI 2.5 present.
    [ 0.000000] DMI: ASUSTeK Computer Inc. K50IJ /K50IJ , BIOS 209 07/10/2009
    [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [ 0.000000] last_pfn = 0x7dd80 max_arch_pfn = 0x100000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-CFFFF write-protect
    [ 0.000000] D0000-DFFFF uncachable
    [ 0.000000] E0000-EFFFF write-through
    [ 0.000000] F0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F80000000 write-back
    [ 0.000000] 1 base 07DE00000 mask FFFE00000 uncachable
    [ 0.000000] 2 base 07E000000 mask FFE000000 uncachable
    [ 0.000000] 3 disabled
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] found SMP MP-table at [c00ff780] ff780
    [ 0.000000] initial memory mapped : 0 - 00c00000
    [ 0.000000] Base memory trampoline at [c0093000] 93000 size 16384
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
    [ 0.000000] 0000000000 - 0000400000 page 4k
    [ 0.000000] 0000400000 - 0037400000 page 2M
    [ 0.000000] 0037400000 - 00377fe000 page 4k
    [ 0.000000] kernel direct mapping tables up to 377fe000 @ bfb000-c00000
    [ 0.000000] RAMDISK: 7db5b000 - 7dd70000
    [ 0.000000] Allocated new RAMDISK: 375e9000 - 377fd327
    [ 0.000000] Move RAMDISK from 000000007db5b000 - 000000007dd6f326 to 375e9000 - 377fd326
    [ 0.000000] ACPI: RSDP 000f93d0 00024 (v02 ACPIAM)
    [ 0.000000] ACPI: XSDT 7dd80100 00084 (v01 071009 XSDT1636 20090710 MSFT 00000097)
    [ 0.000000] ACPI: FACP 7dd80290 000F4 (v03 071009 FACP1636 20090710 MSFT 00000097)
    [ 0.000000] ACPI: DSDT 7dd80680 0CD1D (v01 K50IJ K50IJ209 00000209 INTL 20051117)
    [ 0.000000] ACPI: FACS 7dd8f000 00040
    [ 0.000000] ACPI: APIC 7dd80390 0005C (v01 071009 APIC1636 20090710 MSFT 00000097)
    [ 0.000000] ACPI: MCFG 7dd80430 0003C (v01 071009 OEMMCFG 20090710 MSFT 00000097)
    [ 0.000000] ACPI: OEMX 7dd80470 00176 (v01 071009 OEMX1636 20090710 MSFT 00000097)
    [ 0.000000] ACPI: ECDT 7dd80620 00054 (v01 071009 OEMECDT 20090710 MSFT 00000097)
    [ 0.000000] ACPI: DBGP 7dd803f0 00034 (v01 071009 DBGP1636 20090710 MSFT 00000097)
    [ 0.000000] ACPI: BOOT 7dd805f0 00028 (v01 071009 BOOT1636 20090710 MSFT 00000097)
    [ 0.000000] ACPI: OEMB 7dd8f040 00071 (v01 071009 OEMB1636 20090710 MSFT 00000097)
    [ 0.000000] ACPI: HPET 7dd8d3a0 00038 (v01 071009 OEMHPET 20090710 MSFT 00000097)
    [ 0.000000] ACPI: GSCI 7dd8f0c0 02024 (v01 071009 GMCHSCI 20090710 MSFT 00000097)
    [ 0.000000] ACPI: ATKG 7dd912f0 08024 (v01 022008 OEMATKG 20080220 MSFT 00000097)
    [ 0.000000] ACPI: SSDT 7dd99b20 004F0 (v01 PmRef CpuPm 00003000 INTL 20051117)
    [ 0.000000] ACPI: DMI detected: ASUS K50IJ
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] 1125MB HIGHMEM available.
    [ 0.000000] 887MB LOWMEM available.
    [ 0.000000] mapped low ram: 0 - 377fe000
    [ 0.000000] low ram: 0 - 377fe000
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] Normal 0x00001000 -> 0x000377fe
    [ 0.000000] HighMem 0x000377fe -> 0x0007dd80
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] early_node_map[2] active PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x00000097
    [ 0.000000] 0: 0x00000100 -> 0x0007dd80
    [ 0.000000] On node 0 totalpages: 515335
    [ 0.000000] free_area_init_node: node 0, pgdat c05add00, node_mem_map f6628200
    [ 0.000000] DMA zone: 32 pages used for memmap
    [ 0.000000] DMA zone: 0 pages reserved
    [ 0.000000] DMA zone: 3943 pages, LIFO batch:0
    [ 0.000000] Normal zone: 1744 pages used for memmap
    [ 0.000000] Normal zone: 221486 pages, LIFO batch:31
    [ 0.000000] HighMem zone: 2252 pages used for memmap
    [ 0.000000] HighMem zone: 285878 pages, LIFO batch:31
    [ 0.000000] Using APIC driver default
    [ 0.000000] ACPI: PM-Timer IO Port: 0x808
    [ 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: 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: 0x8086a301 base: 0xfed00000
    [ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 0000000000097000 - 0000000000098000
    [ 0.000000] PM: Registered nosave memory: 0000000000098000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e1000
    [ 0.000000] PM: Registered nosave memory: 00000000000e1000 - 0000000000100000
    [ 0.000000] Allocating PCI resources starting at 7de00000 (gap: 7de00000:80f20000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 12 pages/cpu @f6000000 s25472 r0 d23680 u2097152
    [ 0.000000] pcpu-alloc: s25472 r0 d23680 u2097152 alloc=1*4194304
    [ 0.000000] pcpu-alloc: [0] 0 1
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 511307
    [ 0.000000] Kernel command line: root=/dev/sda1 ro quiet
    [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
    [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    [ 0.000000] Initializing CPU#0
    [ 0.000000] xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240
    [ 0.000000] allocated 8247040 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] Initializing HighMem for node 0 (000377fe:0007dd80)
    [ 0.000000] Memory: 2027804k/2061824k available (3414k kernel code, 33536k reserved, 1408k data, 500k init, 1152520k highmem)
    [ 0.000000] virtual kernel memory layout:
    [ 0.000000] fixmap : 0xfff16000 - 0xfffff000 ( 932 kB)
    [ 0.000000] pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    [ 0.000000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    [ 0.000000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    [ 0.000000] .init : 0xc05b6000 - 0xc0633000 ( 500 kB)
    [ 0.000000] .data : 0xc04559d5 - 0xc05b5a00 (1408 kB)
    [ 0.000000] .text : 0xc0100000 - 0xc04559d5 (3414 kB)
    [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] Verbose stalled-CPUs detection is disabled.
    [ 0.000000] NR_IRQS:512
    [ 0.000000] CPU 0 irqstacks, hard=f540c000 soft=f540e000
    [ 0.000000] Extended CMOS year: 2000
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] hpet clockevent registered
    [ 0.000000] Fast TSC calibration using PIT
    [ 0.000000] Detected 1795.332 MHz processor.
    [ 0.003337] Calibrating delay loop (skipped), value calculated using timer frequency.. 3592.27 BogoMIPS (lpj=5984440)
    [ 0.003343] pid_max: default: 32768 minimum: 301
    [ 0.003394] Security Framework initialized
    [ 0.003400] AppArmor: AppArmor disabled by boot time parameter
    [ 0.003424] Mount-cache hash table entries: 512
    [ 0.003645] Initializing cgroup subsys cpuacct
    [ 0.003661] Initializing cgroup subsys memory
    [ 0.003672] Initializing cgroup subsys devices
    [ 0.003674] Initializing cgroup subsys freezer
    [ 0.003677] Initializing cgroup subsys net_cls
    [ 0.003679] Initializing cgroup subsys blkio
    [ 0.003723] CPU: Physical Processor ID: 0
    [ 0.003725] CPU: Processor Core ID: 0
    [ 0.003728] mce: CPU supports 6 MCE banks
    [ 0.003736] CPU0: Thermal monitoring handled by SMI
    [ 0.003740] using mwait in idle threads.
    [ 0.006852] ACPI: Core revision 20110413
    [ 0.016682] ftrace: allocating 15362 entries in 31 pages
    [ 0.020055] Enabling APIC mode: Flat. Using 1 I/O APICs
    [ 0.020414] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.054743] CPU0: Intel Celeron(R) Dual-Core CPU T3000 @ 1.80GHz stepping 0a
    [ 0.056663] Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver.
    [ 0.056663] ... version: 2
    [ 0.056663] ... bit width: 40
    [ 0.056663] ... generic registers: 2
    [ 0.056663] ... value mask: 000000ffffffffff
    [ 0.056663] ... max period: 000000007fffffff
    [ 0.056663] ... fixed-purpose events: 3
    [ 0.056663] ... event mask: 0000000700000003
    [ 0.073448] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.100011] CPU 1 irqstacks, hard=f54e8000 soft=f54ea000
    [ 0.100014] Booting Node 0, Processors #1 Ok.
    [ 0.100017] smpboot cpu 1: start_ip = 93000
    [ 0.006666] Initializing CPU#1
    [ 0.006666] CPU1: Thermal monitoring handled by SMI
    [ 0.196686] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.203325] Brought up 2 CPUs
    [ 0.203328] Total of 2 processors activated (7184.88 BogoMIPS).
    [ 0.204206] devtmpfs: initialized
    [ 0.204206] PM: Registering ACPI NVS region at 7dd8f000 (331776 bytes)
    [ 0.204614] print_constraints: dummy:
    [ 0.204682] NET: Registered protocol family 16
    [ 0.204804] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.204807] ACPI: bus type pci registered
    [ 0.204906] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.204910] PCI: not using MMCONFIG
    [ 0.205140] PCI: PCI BIOS revision 3.00 entry at 0xf0031, last bus=4
    [ 0.205142] PCI: Using configuration type 1 for base access
    [ 0.206964] bio: create slab <bio-0> at 0
    [ 0.206964] ACPI: Deleted _OSI(Windows 2009)
    [ 0.209160] ACPI: EC: EC description table is found, configuring boot EC
    [ 0.209166] ACPI: EC: Look up EC in DSDT
    [ 0.218122] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.221024] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.230152] ACPI Warning: Incorrect checksum in table [ATKG] - 0x84, should be 0xE5 (20110413/tbutils-314)
    [ 0.230496] ACPI: SSDT 7dd993b0 00765 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.231045] ACPI: Dynamic OEM Table Load:
    [ 0.231049] ACPI: SSDT (null) 00765 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.231346] ACPI: SSDT 7dd99320 00085 (v01 PmRef Cpu1Cst 00003000 INTL 20051117)
    [ 0.231894] ACPI: Dynamic OEM Table Load:
    [ 0.231897] ACPI: SSDT (null) 00085 (v01 PmRef Cpu1Cst 00003000 INTL 20051117)
    [ 0.232248] ACPI: Interpreter enabled
    [ 0.232260] ACPI: (supports S0 S3 S4 S5)
    [ 0.232287] ACPI: Using IOAPIC for interrupt routing
    [ 0.232319] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.234032] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    [ 0.234035] PCI: Using MMCONFIG for extended config space
    [ 0.243183] ACPI: EC: GPE = 0x1b, I/O: command/status = 0x66, data = 0x62
    [ 0.243546] ACPI: No dock devices found.
    [ 0.243548] HEST: Table not found.
    [ 0.243553] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.243848] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.244065] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
    [ 0.244068] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
    [ 0.244072] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    [ 0.244075] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000dffff]
    [ 0.244078] pci_root PNP0A08:00: host bridge window [mem 0x7de00000-0xffffffff]
    [ 0.244094] pci 0000:00:00.0: [8086:2a40] type 0 class 0x000600
    [ 0.244121] DMAR: Forcing write-buffer flush capability
    [ 0.244147] pci 0000:00:02.0: [8086:2a42] type 0 class 0x000300
    [ 0.244164] pci 0000:00:02.0: reg 10: [mem 0xfe400000-0xfe7fffff 64bit]
    [ 0.244174] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.244181] pci 0000:00:02.0: reg 20: [io 0xdc00-0xdc07]
    [ 0.244219] pci 0000:00:02.1: [8086:2a43] type 0 class 0x000380
    [ 0.244232] pci 0000:00:02.1: reg 10: [mem 0xfe800000-0xfe8fffff 64bit]
    [ 0.244330] pci 0000:00:1a.0: [8086:2937] type 0 class 0x000c03
    [ 0.244399] pci 0000:00:1a.0: reg 20: [io 0xd880-0xd89f]
    [ 0.244468] pci 0000:00:1a.1: [8086:2938] type 0 class 0x000c03
    [ 0.244535] pci 0000:00:1a.1: reg 20: [io 0xd800-0xd81f]
    [ 0.244604] pci 0000:00:1a.2: [8086:2939] type 0 class 0x000c03
    [ 0.244672] pci 0000:00:1a.2: reg 20: [io 0xd480-0xd49f]
    [ 0.244753] pci 0000:00:1a.7: [8086:293c] type 0 class 0x000c03
    [ 0.244784] pci 0000:00:1a.7: reg 10: [mem 0xfe9fbc00-0xfe9fbfff]
    [ 0.244890] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    [ 0.244896] pci 0000:00:1a.7: PME# disabled
    [ 0.244932] pci 0000:00:1b.0: [8086:293e] type 0 class 0x000403
    [ 0.244957] pci 0000:00:1b.0: reg 10: [mem 0xfe9f4000-0xfe9f7fff 64bit]
    [ 0.245049] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.245054] pci 0000:00:1b.0: PME# disabled
    [ 0.245086] pci 0000:00:1c.0: [8086:2940] type 1 class 0x000604
    [ 0.245179] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.245185] pci 0000:00:1c.0: PME# disabled
    [ 0.245218] pci 0000:00:1c.1: [8086:2942] type 1 class 0x000604
    [ 0.245311] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.245317] pci 0000:00:1c.1: PME# disabled
    [ 0.245356] pci 0000:00:1c.5: [8086:294a] type 1 class 0x000604
    [ 0.245451] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
    [ 0.245457] pci 0000:00:1c.5: PME# disabled
    [ 0.245494] pci 0000:00:1d.0: [8086:2934] type 0 class 0x000c03
    [ 0.245563] pci 0000:00:1d.0: reg 20: [io 0xd400-0xd41f]
    [ 0.245634] pci 0000:00:1d.1: [8086:2935] type 0 class 0x000c03
    [ 0.245702] pci 0000:00:1d.1: reg 20: [io 0xd080-0xd09f]
    [ 0.245771] pci 0000:00:1d.2: [8086:2936] type 0 class 0x000c03
    [ 0.245839] pci 0000:00:1d.2: reg 20: [io 0xd000-0xd01f]
    [ 0.245920] pci 0000:00:1d.7: [8086:293a] type 0 class 0x000c03
    [ 0.245951] pci 0000:00:1d.7: reg 10: [mem 0xfe9fb800-0xfe9fbbff]
    [ 0.246056] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    [ 0.246062] pci 0000:00:1d.7: PME# disabled
    [ 0.246091] pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604
    [ 0.246183] pci 0000:00:1f.0: [8086:2919] type 0 class 0x000601
    [ 0.246345] pci 0000:00:1f.2: [8086:2929] type 0 class 0x000106
    [ 0.246377] pci 0000:00:1f.2: reg 10: [io 0xcc00-0xcc07]
    [ 0.246390] pci 0000:00:1f.2: reg 14: [io 0xc880-0xc883]
    [ 0.246404] pci 0000:00:1f.2: reg 18: [io 0xc800-0xc807]
    [ 0.246417] pci 0000:00:1f.2: reg 1c: [io 0xc480-0xc483]
    [ 0.246430] pci 0000:00:1f.2: reg 20: [io 0xc400-0xc41f]
    [ 0.246443] pci 0000:00:1f.2: reg 24: [mem 0xfe9fb000-0xfe9fb7ff]
    [ 0.246501] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.246506] pci 0000:00:1f.2: PME# disabled
    [ 0.246598] pci 0000:00:1c.0: PCI bridge to [bus 01-01]
    [ 0.246604] pci 0000:00:1c.0: bridge window [io 0xf000-0x0000] (disabled)
    [ 0.246610] pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    [ 0.246619] pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 0.246718] pci 0000:02:00.0: [168c:002b] type 0 class 0x000280
    [ 0.246751] pci 0000:02:00.0: reg 10: [mem 0xfeaf0000-0xfeafffff 64bit]
    [ 0.246873] pci 0000:02:00.0: supports D1
    [ 0.246876] pci 0000:02:00.0: PME# supported from D0 D1 D3hot D3cold
    [ 0.246883] pci 0000:02:00.0: PME# disabled
    [ 0.246929] pci 0000:00:1c.1: PCI bridge to [bus 02-02]
    [ 0.246935] pci 0000:00:1c.1: bridge window [io 0xf000-0x0000] (disabled)
    [ 0.246941] pci 0000:00:1c.1: bridge window [mem 0xfea00000-0xfeafffff]
    [ 0.246950] pci 0000:00:1c.1: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 0.247043] pci 0000:03:00.0: [1969:1026] type 0 class 0x000200
    [ 0.247076] pci 0000:03:00.0: reg 10: [mem 0xfebc0000-0xfebfffff 64bit]
    [ 0.247094] pci 0000:03:00.0: reg 18: [io 0xec00-0xec7f]
    [ 0.247203] pci 0000:03:00.0: PME# supported from D3hot D3cold
    [ 0.247210] pci 0000:03:00.0: PME# disabled
    [ 0.247248] pci 0000:00:1c.5: PCI bridge to [bus 03-03]
    [ 0.247254] pci 0000:00:1c.5: bridge window [io 0xe000-0xefff]
    [ 0.247259] pci 0000:00:1c.5: bridge window [mem 0xfeb00000-0xfebfffff]
    [ 0.247268] pci 0000:00:1c.5: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 0.247370] pci 0000:00:1e.0: PCI bridge to [bus 04-04] (subtractive decode)
    [ 0.247376] pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled)
    [ 0.247382] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    [ 0.247391] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 0.247394] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.247397] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.247400] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.247403] pci 0000:00:1e.0: bridge window [mem 0x000d0000-0x000dffff] (subtractive decode)
    [ 0.247407] pci 0000:00:1e.0: bridge window [mem 0x7de00000-0xffffffff] (subtractive decode)
    [ 0.247437] pci_bus 0000:00: on NUMA node 0
    [ 0.247441] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.247651] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P2._PRT]
    [ 0.247695] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P7._PRT]
    [ 0.247885] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.248174] pci0000:00: ACPI _OSC control (0x1d) granted
    [ 0.259190] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *10 11 12)
    [ 0.259248] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 *5 10 12)
    [ 0.259304] ACPI: PCI Interrupt Link [LNKC] (IRQs *6)
    [ 0.259356] ACPI: PCI Interrupt Link [LNKD] (IRQs *3 4 5 7 10 12)
    [ 0.259410] ACPI: PCI Interrupt Link [LNKE] (IRQs 6) *0, disabled.
    [ 0.259462] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 *7 10 12)
    [ 0.259517] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 *4 5 6 7 10 12)
    [ 0.259572] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 *10 12)
    [ 0.259683] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.259697] vgaarb: loaded
    [ 0.259699] vgaarb: bridge control possible 0000:00:02.0
    [ 0.259809] PCI: Using ACPI for IRQ routing
    [ 0.259812] PCI: pci_cache_line_size set to 64 bytes
    [ 0.259912] reserve RAM buffer: 0000000000097c00 - 000000000009ffff
    [ 0.259915] reserve RAM buffer: 000000007dd80000 - 000000007fffffff
    [ 0.260058] NetLabel: Initializing
    [ 0.260060] NetLabel: domain hash size = 128
    [ 0.260062] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.260077] NetLabel: unlabeled traffic allowed by default
    [ 0.260094] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
    [ 0.260103] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    [ 0.260108] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
    [ 0.270003] Switching to clocksource hpet
    [ 0.273239] Switched to NOHz mode on CPU #0
    [ 0.273288] Switched to NOHz mode on CPU #1
    [ 0.277882] pnp: PnP ACPI init
    [ 0.277905] ACPI: bus type pnp registered
    [ 0.278057] pnp 00:00: [bus 00-ff]
    [ 0.278061] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.278064] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.278069] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.278072] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.278075] pnp 00:00: [mem 0x000d0000-0x000dffff window]
    [ 0.278078] pnp 00:00: [mem 0x7de00000-0xffffffff window]
    [ 0.278081] pnp 00:00: [mem 0x00000000-0xffffffff window]
    [ 0.278186] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    [ 0.278198] pnp 00:01: [mem 0xfed10000-0xfed19fff]
    [ 0.278259] system 00:01: [mem 0xfed10000-0xfed19fff] has been reserved
    [ 0.278264] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.278299] pnp 00:02: [dma 4]
    [ 0.278301] pnp 00:02: [io 0x0000-0x000f]
    [ 0.278304] pnp 00:02: [io 0x0081-0x0083]
    [ 0.278306] pnp 00:02: [io 0x0087]
    [ 0.278309] pnp 00:02: [io 0x0089-0x008b]
    [ 0.278311] pnp 00:02: [io 0x008f]
    [ 0.278313] pnp 00:02: [io 0x00c0-0x00df]
    [ 0.278345] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.278357] pnp 00:03: [io 0x0070-0x0071]
    [ 0.278371] pnp 00:03: [irq 8]
    [ 0.278402] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.278441] pnp 00:04: [io 0x0060]
    [ 0.278443] pnp 00:04: [io 0x0064]
    [ 0.278449] pnp 00:04: [irq 1]
    [ 0.278483] pnp 00:04: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
    [ 0.278536] pnp 00:05: [irq 12]
    [ 0.278575] pnp 00:05: Plug and Play ACPI device, IDs ETD0001 PNP0f0e PNP0f0b PNP0f03 PNP0f13 PNP0f12 (active)
    [ 0.278586] pnp 00:06: [io 0x0061]
    [ 0.278618] pnp 00:06: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.278628] pnp 00:07: [io 0x00f0-0x00ff]
    [ 0.278634] pnp 00:07: [irq 13]
    [ 0.278667] pnp 00:07: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.278826] pnp 00:08: [io 0x0010-0x001f]
    [ 0.278829] pnp 00:08: [io 0x0022-0x003f]
    [ 0.278831] pnp 00:08: [io 0x0044-0x005f]
    [ 0.278833] pnp 00:08: [io 0x0063]
    [ 0.278836] pnp 00:08: [io 0x0065]
    [ 0.278838] pnp 00:08: [io 0x0067-0x006f]
    [ 0.278840] pnp 00:08: [io 0x0072-0x007f]
    [ 0.278842] pnp 00:08: [io 0x0080]
    [ 0.278845] pnp 00:08: [io 0x0084-0x0086]
    [ 0.278847] pnp 00:08: [io 0x0088]
    [ 0.278849] pnp 00:08: [io 0x008c-0x008e]
    [ 0.278852] pnp 00:08: [io 0x0090-0x009f]
    [ 0.278854] pnp 00:08: [io 0x00a2-0x00bf]
    [ 0.278856] pnp 00:08: [io 0x00e0-0x00ef]
    [ 0.278859] pnp 00:08: [io 0x04d0-0x04d1]
    [ 0.278861] pnp 00:08: [io 0x0800-0x087f]
    [ 0.278863] pnp 00:08: [io 0x0400-0x041f]
    [ 0.278866] pnp 00:08: [io 0x0500-0x057f]
    [ 0.278869] pnp 00:08: [mem 0xfe9fac00-0xfe9facff window]
    [ 0.278871] pnp 00:08: [mem 0xfed1c000-0xfed1ffff]
    [ 0.278874] pnp 00:08: [mem 0xfed20000-0xfed3ffff]
    [ 0.278876] pnp 00:08: [mem 0xfed45000-0xfed89fff]
    [ 0.278879] pnp 00:08: [mem 0xfed90000-0xfed90fff]
    [ 0.278881] pnp 00:08: [mem 0xfed91000-0xfed91fff]
    [ 0.278884] pnp 00:08: [mem 0xfed92000-0xfed92fff]
    [ 0.278886] pnp 00:08: [mem 0xfed93000-0xfed93fff]
    [ 0.278888] pnp 00:08: [mem 0xffb00000-0xffbfffff]
    [ 0.278891] pnp 00:08: [mem 0xfff00000-0xffffffff]
    [ 0.278969] system 00:08: [io 0x04d0-0x04d1] has been reserved
    [ 0.278973] system 00:08: [io 0x0800-0x087f] has been reserved
    [ 0.278976] system 00:08: [io 0x0400-0x041f] has been reserved
    [ 0.278979] system 00:08: [io 0x0500-0x057f] has been reserved
    [ 0.278982] system 00:08: [mem 0xfe9fac00-0xfe9facff window] has been reserved
    [ 0.278986] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.278989] system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.278993] system 00:08: [mem 0xfed45000-0xfed89fff] has been reserved
    [ 0.278996] system 00:08: [mem 0xfed90000-0xfed90fff] has been reserved
    [ 0.278999] system 00:08: [mem 0xfed91000-0xfed91fff] has been reserved
    [ 0.279002] system 00:08: [mem 0xfed92000-0xfed92fff] has been reserved
    [ 0.279006] system 00:08: [mem 0xfed93000-0xfed93fff] has been reserved
    [ 0.279009] system 00:08: [mem 0xffb00000-0xffbfffff] has been reserved
    [ 0.279012] system 00:08: [mem 0xfff00000-0xffffffff] has been reserved
    [ 0.279016] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.279083] pnp 00:09: [mem 0xfed00000-0xfed003ff]
    [ 0.279119] pnp 00:09: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.279178] pnp 00:0a: [mem 0xffa00000-0xffbfffff]
    [ 0.279181] pnp 00:0a: [mem 0xffe00000-0xffffffff]
    [ 0.279236] system 00:0a: [mem 0xffa00000-0xffbfffff] could not be reserved
    [ 0.279239] system 00:0a: [mem 0xffe00000-0xffffffff] could not be reserved
    [ 0.279243] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.279292] pnp 00:0b: [mem 0xffc00000-0xffdfffff]
    [ 0.279347] system 00:0b: [mem 0xffc00000-0xffdfffff] has been reserved
    [ 0.279351] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.279412] pnp 00:0c: [mem 0xfec00000-0xfec00fff]
    [ 0.279415] pnp 00:0c: [mem 0xfee00000-0xfee00fff]
    [ 0.279417] pnp 00:0c: [mem 0xfec10000-0xfec17fff]
    [ 0.279419] pnp 00:0c: [mem 0xfec18000-0xfec1ffff]
    [ 0.279422] pnp 00:0c: [mem 0xfec38000-0xfec3ffff]
    [ 0.279424] pnp 00:0c: [io 0x0250-0x0253]
    [ 0.279427] pnp 00:0c: [io 0x0256-0x025f]
    [ 0.279484] system 00:0c: [io 0x0250-0x0253] has been reserved
    [ 0.279487] system 00:0c: [io 0x0256-0x025f] has been reserved
    [ 0.279491] system 00:0c: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.279494] system 00:0c: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.279497] system 00:0c: [mem 0xfec10000-0xfec17fff] has been reserved
    [ 0.279501] system 00:0c: [mem 0xfec18000-0xfec1ffff] has been reserved
    [ 0.279504] system 00:0c: [mem 0xfec38000-0xfec3ffff] has been reserved
    [ 0.279508] system 00:0c: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.279585] pnp 00:0d: [mem 0xe0000000-0xefffffff]
    [ 0.279641] system 00:0d: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.279645] system 00:0d: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.279954] pnp 00:0e: [mem 0x00000000-0x0009ffff]
    [ 0.279957] pnp 00:0e: [mem 0x000c0000-0x000cffff]
    [ 0.279965] pnp 00:0e: [mem 0x000e0000-0x000fffff]
    [ 0.279967] pnp 00:0e: [mem 0x00100000-0x7ddfffff]
    [ 0.279970] pnp 00:0e: [mem 0x00000000-0xffffffff disabled]
    [ 0.280081] system 00:0e: [mem 0x00000000-0x0009ffff] could not be reserved
    [ 0.280085] system 00:0e: [mem 0x000c0000-0x000cffff] could not be reserved
    [ 0.280088] system 00:0e: [mem 0x000e0000-0x000fffff] could not be reserved
    [ 0.280092] system 00:0e: [mem 0x00100000-0x7ddfffff] could not be reserved
    [ 0.280095] system 00:0e: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.280257] pnp: PnP ACPI: found 15 devices
    [ 0.280259] ACPI: ACPI bus type pnp unregistered
    [ 0.316954] PCI: max bus depth: 1 pci_try_num: 2
    [ 0.317008] pci 0000:00:1c.5: BAR 15: assigned [mem 0x7de00000-0x7dffffff 64bit pref]
    [ 0.317012] pci 0000:00:1c.0: PCI bridge to [bus 01-01]
    [ 0.317014] pci 0000:00:1c.0: bridge window [io disabled]
    [ 0.317021] pci 0000:00:1c.0: bridge window [mem disabled]
    [ 0.317026] pci 0000:00:1c.0: bridge window [mem pref disabled]
    [ 0.317035] pci 0000:00:1c.1: PCI bridge to [bus 02-02]
    [ 0.317037] pci 0000:00:1c.1: bridge window [io disabled]
    [ 0.317045] pci 0000:00:1c.1: bridge window [mem 0xfea00000-0xfeafffff]
    [ 0.317050] pci 0000:00:1c.1: bridge window [mem pref disabled]
    [ 0.317059] pci 0000:00:1c.5: PCI bridge to [bus 03-03]
    [ 0.317063] pci 0000:00:1c.5: bridge window [io 0xe000-0xefff]
    [ 0.317070] pci 0000:00:1c.5: bridge window [mem 0xfeb00000-0xfebfffff]
    [ 0.317077] pci 0000:00:1c.5: bridge window [mem 0x7de00000-0x7dffffff 64bit pref]
    [ 0.317086] pci 0000:00:1e.0: PCI bridge to [bus 04-04]
    [ 0.317088] pci 0000:00:1e.0: bridge window [io disabled]
    [ 0.317094] pci 0000:00:1e.0: bridge window [mem disabled]
    [ 0.317100] pci 0000:00:1e.0: bridge window [mem pref disabled]
    [ 0.317124] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.317130] pci 0000:00:1c.0: setting latency timer to 64
    [ 0.317141] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 0.317147] pci 0000:00:1c.1: setting latency timer to 64
    [ 0.317156] pci 0000:00:1c.5: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 0.317162] pci 0000:00:1c.5: setting latency timer to 64
    [ 0.317171] pci 0000:00:1e.0: setting latency timer to 64
    [ 0.317176] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.317179] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.317181] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.317184] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff]
    [ 0.317187] pci_bus 0000:00: resource 8 [mem 0x7de00000-0xffffffff]
    [ 0.317191] pci_bus 0000:02: resource 1 [mem 0xfea00000-0xfeafffff]
    [ 0.317194] pci_bus 0000:03: resource 0 [io 0xe000-0xefff]
    [ 0.317197] pci_bus 0000:03: resource 1 [mem 0xfeb00000-0xfebfffff]
    [ 0.317200] pci_bus 0000:03: resource 2 [mem 0x7de00000-0x7dffffff 64bit pref]
    [ 0.317203] pci_bus 0000:04: resource 4 [io 0x0000-0x0cf7]
    [ 0.317206] pci_bus 0000:04: resource 5 [io 0x0d00-0xffff]
    [ 0.317209] pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.317211] pci_bus 0000:04: resource 7 [mem 0x000d0000-0x000dffff]
    [ 0.317214] pci_bus 0000:04: resource 8 [mem 0x7de00000-0xffffffff]
    [ 0.317261] NET: Registered protocol family 2
    [ 0.317339] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    [ 0.317587] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.318048] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    [ 0.318337] TCP: Hash tables configured (established 131072 bind 65536)
    [ 0.318341] TCP reno registered
    [ 0.318344] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.318357] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.318534] NET: Registered protocol family 1
    [ 0.318557] pci 0000:00:02.0: Boot video device
    [ 0.318744] PCI: CLS 32 bytes, default 64
    [ 0.318812] Unpacking initramfs...
    [ 0.362878] Freeing initrd memory: 2132k freed
    [ 0.363915] Simple Boot Flag at 0x51 set to 0x1
    [ 0.364233] apm: BIOS not found.
    [ 0.364425] audit: initializing netlink socket (disabled)
    [ 0.364441] type=2000 audit(1312909012.363:1): initialized
    [ 0.368688] highmem bounce pool size: 64 pages
    [ 0.368694] HugeTLB registered 4 MB page size, pre-allocated 0 pages
    [ 0.378607] VFS: Disk quotas dquot_6.5.2
    [ 0.378705] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    [ 0.378834] msgmni has been set to 1713
    [ 0.379068] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 0.379105] io scheduler noop registered
    [ 0.379108] io scheduler deadline registered
    [ 0.379123] io scheduler cfq registered (default)
    [ 0.379271] pcieport 0000:00:1c.0: setting latency timer to 64
    [ 0.379334] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
    [ 0.379455] pcieport 0000:00:1c.1: setting latency timer to 64
    [ 0.379513] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
    [ 0.379630] pcieport 0000:00:1c.5: setting latency timer to 64
    [ 0.379688] pcieport 0000:00:1c.5: irq 42 for MSI/MSI-X
    [ 0.379845] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
    [ 0.379852] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
    [ 0.379878] pcieport 0000:00:1c.1: Signaling PME through PCIe PME interrupt
    [ 0.379881] pci 0000:02:00.0: Signaling PME through PCIe PME interrupt
    [ 0.379887] pcie_pme 0000:00:1c.1:pcie01: service driver pcie_pme loaded
    [ 0.379912] pcieport 0000:00:1c.5: Signaling PME through PCIe PME interrupt
    [ 0.379915] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
    [ 0.379921] pcie_pme 0000:00:1c.5:pcie01: service driver pcie_pme loaded
    [ 0.380079] intel_idle: MWAIT substates: 0x2220
    [ 0.380081] intel_idle: does not run on family 6 model 23
    [ 0.380087] ERST: Table is not found!
    [ 0.380103] isapnp: Scanning for PnP cards...
    [ 0.737174] isapnp: No Plug & Play device found
    [ 0.737249] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.927374] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
    [ 0.930998] i8042: Detected active multiplexing controller, rev 1.1
    [ 0.934050] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.934091] serio: i8042 AUX0 port at 0x60,0x64 irq 12
    [ 0.934122] serio: i8042 AUX1 port at 0x60,0x64 irq 12
    [ 0.934155] serio: i8042 AUX2 port at 0x60,0x64 irq 12
    [ 0.934186] serio: i8042 AUX3 port at 0x60,0x64 irq 12
    [ 0.934296] mousedev: PS/2 mouse device common for all mice
    [ 0.934388] rtc_cmos 00:03: RTC can wake from S4
    [ 0.934524] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
    [ 0.934557] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 0.934588] cpuidle: using governor ladder
    [ 0.934590] cpuidle: using governor menu
    [ 0.934876] TCP cubic registered
    [ 0.934879] NET: Registered protocol family 17
    [ 0.934888] Registering the dns_resolver key type
    [ 0.934915] Using IPI No-Shortcut mode
    [ 0.935017] PM: Hibernation image not present or could not be loaded.
    [ 0.935024] registered taskstats version 1
    [ 0.939311] rtc_cmos 00:03: setting system clock to 2011-08-09 16:56:53 UTC (1312909013)
    [ 0.939352] Initializing network drop monitor service
    [ 0.939447] Freeing unused kernel memory: 500k freed
    [ 0.939681] Write protecting the kernel text: 3416k
    [ 0.939709] Write protecting the kernel read-only data: 1036k
    [ 0.953922] udevd[54]: starting version 173
    [ 0.977498] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.019140] usbcore: registered new interface driver usbfs
    [ 1.019176] usbcore: registered new interface driver hub
    [ 1.049312] usbcore: registered new device driver usb
    [ 1.050500] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 1.050540] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 1.050563] ehci_hcd 0000:00:1a.7: setting latency timer to 64
    [ 1.050567] ehci_hcd 0000:00:1a.7: EHCI Host Controller
    [ 1.050604] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
    [ 1.050644] ehci_hcd 0000:00:1a.7: debug port 1
    [ 1.068233] SCSI subsystem initialized
    [ 1.068335] ehci_hcd 0000:00:1a.7: cache line size of 32 is not supported
    [ 1.068361] ehci_hcd 0000:00:1a.7: irq 18, io mem 0xfe9fbc00
    [ 1.079182] libata version 3.00 loaded.
    [ 1.080102] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    [ 1.080303] hub 1-0:1.0: USB hub found
    [ 1.080309] hub 1-0:1.0: 6 ports detected
    [ 1.080423] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    [ 1.080445] ehci_hcd 0000:00:1d.7: setting latency timer to 64
    [ 1.080450] ehci_hcd 0000:00:1d.7: EHCI Host Controller
    [ 1.080461] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
    [ 1.080495] ehci_hcd 0000:00:1d.7: debug port 1
    [ 1.084638] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
    [ 1.084665] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xfe9fb800
    [ 1.096705] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 1.097358] hub 2-0:1.0: USB hub found
    [ 1.097365] hub 2-0:1.0: 6 ports detected
    [ 1.097486] ahci 0000:00:1f.2: version 3.0
    [ 1.097508] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    [ 1.097565] ahci 0000:00:1f.2: irq 43 for MSI/MSI-X
    [ 1.097619] ahci: SSS flag set, parallel bus scan disabled
    [ 1.097653] ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x3 impl SATA mode
    [ 1.097657] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ccc ems sxs
    [ 1.097664] ahci 0000:00:1f.2: setting latency timer to 64
    [ 1.103903] scsi0 : ahci
    [ 1.104030] scsi1 : ahci
    [ 1.104126] scsi2 : ahci
    [ 1.104218] scsi3 : ahci
    [ 1.104495] ata1: SATA max UDMA/133 abar m2048@0xfe9fb000 port 0xfe9fb100 irq 43
    [ 1.104500] ata2: SATA max UDMA/133 abar m2048@0xfe9fb000 port 0xfe9fb180 irq 43
    [ 1.104502] ata3: DUMMY
    [ 1.104504] ata4: DUMMY
    [ 1.163917] uhci_hcd: USB Universal Host Controller Interface driver
    [ 1.163984] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 1.163997] uhci_hcd 0000:00:1a.0: setting latency timer to 64
    [ 1.164113] uhci_hcd 0000:00:1a.0: UHCI Host Controller
    [ 1.164129] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    [ 1.164178] uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000d880
    [ 1.164368] hub 3-0:1.0: USB hub found
    [ 1.164373] hub 3-0:1.0: 2 ports detected
    [ 1.164477] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
    [ 1.164486] uhci_hcd 0000:00:1a.1: setting latency timer to 64
    [ 1.164490] uhci_hcd 0000:00:1a.1: UHCI Host Controller
    [ 1.164500] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
    [ 1.164539] uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000d800
    [ 1.164699] hub 4-0:1.0: USB hub found
    [ 1.164704] hub 4-0:1.0: 2 ports detected
    [ 1.164787] uhci_hcd 0000:00:1a.2: PCI INT D -> GSI 19 (level, low) -> IRQ 19
    [ 1.164795] uhci_hcd 0000:00:1a.2: setting latency timer to 64
    [ 1.164799] uhci_hcd 0000:00:1a.2: UHCI Host Controller
    [ 1.164808] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
    [ 1.164848] uhci_hcd 0000:00:1a.2: irq 19, io base 0x0000d480
    [ 1.165008] hub 5-0:1.0: USB hub found
    [ 1.165012] hub 5-0:1.0: 2 ports detected
    [ 1.165099] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    [ 1.165107] uhci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 1.165111] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 1.165122] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
    [ 1.165154] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000d400
    [ 1.165311] hub 6-0:1.0: USB hub found
    [ 1.165316] hub 6-0:1.0: 2 ports detected
    [ 1.165398] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    [ 1.165408] uhci_hcd 0000:00:1d.1: setting latency timer to 64
    [ 1.165412] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 1.165421] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
    [ 1.165450] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000d080
    [ 1.165607] hub 7-0:1.0: USB hub found
    [ 1.165611] hub 7-0:1.0: 2 ports detected
    [ 1.165696] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 1.165704] uhci_hcd 0000:00:1d.2: setting latency timer to 64
    [ 1.165708] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 1.165717] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
    [ 1.165747] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000d000
    [ 1.165914] hub 8-0:1.0: USB hub found
    [ 1.165919] hub 8-0:1.0: 2 ports detected
    [ 1.366705] Refined TSC clocksource calibration: 1795.499 MHz.
    [ 1.366711] Switching to clocksource tsc
    [ 1.386680] usb 1-3: new high speed USB device number 2 using ehci_hcd
    [ 1.423359] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.425060] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.425379] ata1.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.425384] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    [ 1.427244] ata1.00: ATA-8: ST9320325AS, 0002SDM1, max UDMA/133
    [ 1.427247] ata1.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32)
    [ 1.429377] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.429687] ata1.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.429691] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    [ 1.431520] ata1.00: configured for UDMA/133
    [ 1.431677] scsi 0:0:0:0: Direct-Access ATA ST9320325AS 0002 PQ: 0 ANSI: 5
    [ 1.750027] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.765044] ata2.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.765049] ata2.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    [ 1.778146] ata2.00: ATAPI: Optiarc DVD RW AD-7580S, FX20, max UDMA/100
    [ 1.794186] ata2.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.794191] ata2.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    [ 1.807014] ata2.00: configured for UDMA/100
    [ 1.810609] scsi 1:0:0:0: CD-ROM Optiarc DVD RW AD-7580S FX20 PQ: 0 ANSI: 5
    [ 1.817797] sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
    [ 1.817854] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.817857] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.817881] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.822707] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 1.822711] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.823032] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 1.836683] usb 6-2: new low speed USB device number 2 using uhci_hcd
    [ 1.859083] sda: sda1 sda2 sda3 sda4 < sda5 >
    [ 1.859555] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 2.023721] input: MosArt Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb6/6-2/6-2:1.0/input/input1
    [ 2.023829] generic-usb 0003:13EE:0003.0001: input,hidraw0: USB HID v1.10 Mouse [MosArt Optical Mouse] on usb-0000:00:1d.0-2/input0
    [ 2.023850] usbcore: registered new interface driver usbhid
    [ 2.023852] usbhid: USB HID core driver
    [ 2.650851] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
    [ 4.258021] udevd[287]: starting version 173
    [ 4.739711] asus_acpi: Asus Laptop ACPI Extras version 0.30
    [ 4.739876] asus_acpi: unsupported model K50IJ, trying default values
    [ 4.739878] asus_acpi: send /proc/acpi/dsdt to the developers
    [ 4.816300] iTCO_vendor_support: vendor-support=0
    [ 4.824448] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.06
    [ 4.824569] iTCO_wdt: Found a ICH9M TCO device (Version=2, TCOBASE=0x0860)
    [ 4.824660] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 4.827238] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 4.827382] ACPI: AC Adapter [AC0] (on-line)
    [ 4.828155] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input2
    [ 4.828165] ACPI: Sleep Button [SLPB]
    [ 4.828230] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input3
    [ 4.831492] ACPI: Lid Switch [LID]
    [ 4.831614] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 4.831621] ACPI: Power Button [PWRF]
    [ 4.865124] Linux agpgart interface v0.103
    [ 4.921369] cfg80211: Calling CRDA to update world regulatory domain
    [ 4.936814] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 4.936824] ACPI: Battery Slot [BAT0] (battery present)
    [ 4.941752] ATL1E 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    [ 4.941770] ATL1E 0000:03:00.0: setting latency timer to 64
    [ 4.945788] thermal LNXTHERM:00: registered as thermal_zone0
    [ 4.945792] ACPI: Thermal Zone [THRM] (44 C)
    [ 4.970466] ACPI: acpi_idle registered with cpuidle
    [ 4.974411] Monitor-Mwait will be used to enter C-1 state
    [ 4.974445] Monitor-Mwait will be used to enter C-2 state
    [ 4.974469] Monitor-Mwait will be used to enter C-3 state
    [ 4.974477] Marking TSC unstable due to TSC halts in idle
    [ 4.975874] Switching to clocksource hpet
    [ 5.032723] agpgart-intel 0000:00:00.0: Intel GM45 Chipset
    [ 5.032822] agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
    [ 5.033439] agpgart-intel 0000:00:00.0: detected 32768K stolen memory
    [ 5.033728] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
    [ 5.105663] [drm] Initialized drm 1.1.0 20060810
    [ 5.107962] ath9k 0000:02:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    [ 5.107977] ath9k 0000:02:00.0: setting latency timer to 64
    [ 5.142586] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 5.142593] i915 0000:00:02.0: setting latency timer to 64
    [ 5.159185] ath: EEPROM regdomain: 0x60
    [ 5.159188] ath: EEPROM indicates we should expect a direct regpair map
    [ 5.159191] ath: Country alpha2 being used: 00
    [ 5.159193] ath: Regpair used: 0x60
    [ 5.168070] i915 0000:00:02.0: irq 44 for MSI/MSI-X
    [ 5.168078] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 5.168080] [drm] Driver supports precise vblank timestamp query.
    [ 5.168129] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 5.191736] ieee80211 phy0: Selected rate control algorithm 'ath9k_rate_control'
    [ 5.192424] Registered led device: ath9k-phy0
    [ 5.192433] ieee80211 phy0: Atheros AR9285 Rev:2 mem=0xf81a0000, irq=17
    [ 5.288322] asus_laptop: Asus Laptop Support version 0.42
    [ 5.288486] asus_laptop: K50IJ model detected
    [ 5.288978] asus_laptop: Backlight controlled by ACPI video driver
    [ 5.289084] input: Asus Laptop extra buttons as /devices/platform/asus_laptop/input/input5
    [ 5.393429] sd 0:0:0:0: Attached scsi generic sg0 type 0
    [ 5.393627] sr 1:0:0:0: Attached scsi generic sg1 type 5
    [ 5.597755] psmouse serio4: ID: 10 00 64
    [ 5.702553] elantech: assuming hardware version 2, firmware version 4.1.1
    [ 5.738839] elantech: Synaptics capabilities query result 0x7e, 0x13, 0x0d.
    [ 5.780864] fbcon: inteldrmfb (fb0) is primary device
    [ 5.825826] Console: switching to colour frame buffer device 170x48
    [ 5.831063] fb0: inteldrmfb frame buffer device
    [ 5.831065] drm: registered panic notifier
    [ 5.833323] ACPI Warning: _BQC returned an invalid level (20110413/video-473)
    [ 5.834567] acpi device:38: registered as cooling_device2
    [ 5.834817] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input6
    [ 5.834975] ACPI: Video Device [VGA] (multi-head: yes rom: no post: no)
    [ 5.835272] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 5.835329] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    [ 5.835420] HDA Intel 0000:00:1b.0: irq 45 for MSI/MSI-X
    [ 5.835458] HDA Intel 0000:00:1b.0: setting latency timer to 64
    [ 5.840235] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio4/input/input7
    [ 6.069285] Linux media interface: v0.10
    [ 6.088833] Linux video capture interface: v2.00
    [ 6.097205] uvcvideo: Found UVC 1.00 device CNF7129 (04f2:b071)
    [ 6.120085] input: CNF7129 as /devices/pci0000:00/0000:00:1a.7/usb1/1-3/1-3:1.0/input/input8
    [ 6.120179] usbcore: registered new interface driver uvcvideo
    [ 6.120181] USB Video Class driver (v1.1.0)
    [ 7.622339] EXT4-fs (sda1): re-mounted. Opts: (null)
    [ 7.907480] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    [ 7.987363] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    [ 8.044201] Adding 4213756k swap on /dev/sda5. Priority:-1 extents:1 across:4213756k
    Xorg.0.log:
    [ 25.092]
    This is a pre-release version of the X server from The X.Org Foundation.
    It is not supported in any way.
    Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
    Select the "xorg" product for bugs you find in this release.
    Before reporting bugs in pre-release versions please check the
    latest version in the X.Org Foundation git repository.
    See http://wiki.x.org/wiki/GitPage for git access instructions.
    [ 25.092]
    X.Org X Server 1.10.3.901 (1.10.4 RC 1)
    Release Date: 2011-07-29
    [ 25.092] X Protocol Version 11, Revision 0
    [ 25.092] Build Operating System: Linux 3.0.0-ARCH i686
    [ 25.092] Current Operating System: Linux saso-laptop 3.0-ARCH #1 SMP PREEMPT Sat Aug 6 16:49:00 CEST 2011 i686
    [ 25.093] Kernel command line: root=/dev/sda1 ro quiet
    [ 25.093] Build Date: 08 August 2011 08:28:07AM
    [ 25.093]
    [ 25.093] Current version of pixman: 0.22.2
    [ 25.093] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 25.093] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 25.093] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Aug 9 18:57:17 2011
    [ 25.215] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 25.248] (==) No Layout section. Using the first Screen section.
    [ 25.248] (==) No screen section available. Using defaults.
    [ 25.248] (**) |-->Screen "Default Screen Section" (0)
    [ 25.248] (**) | |-->Monitor "<default monitor>"
    [ 25.248] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 25.248] (==) Automatically adding devices
    [ 25.248] (==) Automatically enabling devices
    [ 25.303] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 25.303] Entry deleted from font path.
    [ 25.339] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 25.339] Entry deleted from font path.
    [ 25.339] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 25.340] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 25.340] Entry deleted from font path.
    [ 25.340] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 25.340] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 25.340] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 25.340] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 25.340] (II) Loader magic: 0x822e4e0
    [ 25.340] (II) Module ABI versions:
    [ 25.340] X.Org ANSI C Emulation: 0.4
    [ 25.340] X.Org Video Driver: 10.0
    [ 25.340] X.Org XInput driver : 12.2
    [ 25.340] X.Org Server Extension : 5.0
    [ 25.341] (--) PCI:*(0:0:2:0) 8086:2a42:1043:1862 rev 9, Mem @ 0xfe400000/4194304, 0xd0000000/268435456, I/O @ 0x0000dc00/8
    [ 25.341] (--) PCI: (0:0:2:1) 8086:2a43:1043:1862 rev 9, Mem @ 0xfe800000/1048576
    [ 25.341] (II) Open ACPI successful (/var/run/acpid.socket)
    [ 25.341] (II) LoadModule: "extmod"
    [ 25.358] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 25.373] (II) Module extmod: vendor="X.Org Foundation"
    [ 25.373] compiled for 1.10.3.901, module version = 1.0.0
    [ 25.373] Module class: X.Org Server Extension
    [ 25.373] ABI class: X.Org Server Extension, version 5.0
    [ 25.373] (II) Loading extension MIT-SCREEN-SAVER
    [ 25.373] (II) Loading extension XFree86-VidModeExtension
    [ 25.373] (II) Loading extension XFree86-DGA
    [ 25.374] (II) Loading extension DPMS
    [ 25.374] (II) Loading extension XVideo
    [ 25.374] (II) Loading extension XVideo-MotionCompensation
    [ 25.374] (II) Loading extension X-Resource
    [ 25.374] (II) LoadModule: "dbe"
    [ 25.374] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 25.387] (II) Module dbe: vendor="X.Org Foundation"
    [ 25.387] compiled for 1.10.3.901, module version = 1.0.0
    [ 25.387] Module class: X.Org Server Extension
    [ 25.387] ABI class: X.Org Server Extension, version 5.0
    [ 25.387] (II) Loading extension DOUBLE-BUFFER
    [ 25.387] (II) LoadModule: "glx"
    [ 25.387] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 25.411] (II) Module glx: vendor="X.Org Foundation"
    [ 25.411] compiled for 1.10.3.901, module version = 1.0.0
    [ 25.411] ABI class: X.Org Server Extension, version 5.0
    [ 25.411] (==) AIGLX enabled
    [ 25.411] (II) Loading extension GLX
    [ 25.411] (II) LoadModule: "record"
    [ 25.411] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 25.412] (II) Module record: vendor="X.Org Foundation"
    [ 25.412] compiled for 1.10.3.901, module version = 1.13.0
    [ 25.412] Module class: X.Org Server Extension
    [ 25.412] ABI class: X.Org Server Extension, version 5.0
    [ 25.412] (II) Loading extension RECORD
    [ 25.412] (II) LoadModule: "dri"
    [ 25.412] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 25.420] (II) Module dri: vendor="X.Org Foundation"
    [ 25.420] compiled for 1.10.3.901, module version = 1.0.0
    [ 25.420] ABI class: X.Org Server Extension, version 5.0
    [ 25.420] (II) Loading extension XFree86-DRI
    [ 25.420] (II) LoadModule: "dri2"
    [ 25.420] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 25.428] (II) Module dri2: vendor="X.Org Foundation"
    [ 25.428] compiled for 1.10.3.901, module version = 1.2.0
    [ 25.428] ABI class: X.Org Server Extension, version 5.0
    [ 25.429] (II) Loading extension DRI2
    [ 25.429] (==) Matched intel as autoconfigured driver 0
    [ 25.429] (==) Matched vesa as autoconfigured driver 1
    [ 25.429] (==) Matched fbdev as autoconfigured driver 2
    [ 25.429] (==) Assigned the driver to the xf86ConfigLayout
    [ 25.429] (II) LoadModule: "intel"
    [ 25.429] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 25.448] (II) Module intel: vendor="X.Org Foundation"
    [ 25.448] compiled for 1.10.2, module version = 2.15.0
    [ 25.448] Module class: X.Org Video Driver
    [ 25.448] ABI class: X.Org Video Driver, version 10.0
    [ 25.448] (II) LoadModule: "vesa"
    [ 25.449] (WW) Warning, couldn't open module vesa
    [ 25.449] (II) UnloadModule: "vesa"
    [ 25.449] (II) Unloading vesa
    [ 25.449] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 25.451] (II) LoadModule: "fbdev"
    [ 25.451] (WW) Warning, couldn't open module fbdev
    [ 25.451] (II) UnloadModule: "fbdev"
    [ 25.451] (II) Unloading fbdev
    [ 25.451] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 25.453] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G,
    965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45,
    4 Series, G45/G43, Q45/Q43, G41, B43, B43, Clarkdale, Arrandale,
    Sandybridge Desktop (GT1), Sandybridge Desktop (GT2),
    Sandybridge Desktop (GT2+), Sandybridge Mobile (GT1),
    Sandybridge Mobile (GT2), Sandybridge Mobile (GT2+),
    Sandybridge Server, Ivybridge Mobile (GT1), Ivybridge Mobile (GT2),
    Ivybridge Desktop (GT1), Ivybridge Desktop (GT2), Ivybridge Server
    [ 25.454] (--) using VT number 7
    [ 25.461] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 25.461] drmOpenDevice: node name is /dev/dri/card0
    [ 25.461] drmOpenDevice: open result is 9, (OK)
    [ 25.462] drmOpenByBusid: Searching for BusID pci:0000:00:02.0
    [ 25.462] drmOpenDevice: node name is /dev/dri/card0
    [ 25.462] drmOpenDevice: open result is 9, (OK)
    [ 25.462] drmOpenByBusid: drmOpenMinor returns 9
    [ 25.462] drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
    [ 25.462] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 25.462] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 25.462] (==) intel(0): RGB weight 888
    [ 25.462] (==) intel(0): Default visual is TrueColor
    [ 25.462] (II) intel(0): Integrated Graphics Chipset: Intel(R) GM45
    [ 25.462] (--) intel(0): Chipset: "GM45"
    [ 25.462] (**) intel(0): Relaxed fencing enabled
    [ 25.462] (**) intel(0): Framebuffer tiled
    [ 25.462] (**) intel(0): Pixmaps tiled
    [ 25.462] (**) intel(0): 3D buffers tiled
    [ 25.462] (**) intel(0): SwapBuffers wait enabled
    [ 25.462] (==) intel(0): video overlay key set to 0x101fe
    [ 25.462] (II) intel(0): Output LVDS1 has no monitor section
    [ 25.462] (II) intel(0): found backlight control interface /sys/class/backlight/acpi_video0
    [ 25.480] (II) intel(0): Output VGA1 has no monitor section
    [ 26.013] (II) intel(0): Output HDMI1 has no monitor section
    [ 26.014] (II) intel(0): Output DP1 has no monitor section
    [ 26.015] (II) intel(0): Output DP2 has no monitor section
    [ 26.015] (II) intel(0): EDID for output LVDS1
    [ 26.015] (II) intel(0): Manufacturer: LGD Model: 1e8 Serial#: 0
    [ 26.015] (II) intel(0): Year: 2008 Week: 0
    [ 26.015] (II) intel(0): EDID Version: 1.3
    [ 26.015] (II) intel(0): Digital Display Input
    [ 26.015] (II) intel(0): Max Image Size [cm]: horiz.: 34 vert.: 19
    [ 26.015] (II) intel(0): Gamma: 2.20
    [ 26.015] (II) intel(0): No DPMS capabilities specified
    [ 26.015] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 26.015] (II) intel(0): First detailed timing is preferred mode
    [ 26.015] (II) intel(0): redX: 0.618 redY: 0.355 greenX: 0.335 greenY: 0.584
    [ 26.015] (II) intel(0): blueX: 0.150 blueY: 0.102 whiteX: 0.313 whiteY: 0.329
    [ 26.015] (II) intel(0): Manufacturer's mask: 0
    [ 26.015] (II) intel(0): Supported detailed timing:
    [ 26.015] (II) intel(0): clock: 72.3 MHz Image Size: 344 x 194 mm
    [ 26.015] (II) intel(0): h_active: 1366 h_sync: 1414 h_sync_end 1446 h_blank_end 1526 h_border: 0
    [ 26.015] (II) intel(0): v_active: 768 v_sync: 771 v_sync_end 776 v_blanking: 790 v_border: 0
    [ 26.015] (II) intel(0): LG Display
    [ 26.015] (II) intel(0): LP156WH2-TLA1
    [ 26.015] (II) intel(0): EDID (in hex):
    [ 26.015] (II) intel(0): 00ffffffffffff0030e4e80100000000
    [ 26.015] (II) intel(0): 00120103802213780a4e859e5b559526
    [ 26.015] (II) intel(0): 1a505400000001010101010101010101
    [ 26.015] (II) intel(0): 0101010101013e1c56a0500016303020
    [ 26.015] (II) intel(0): 350058c2100000190000000000000000
    [ 26.015] (II) intel(0): 00000000000000000000000000fe004c
    [ 26.015] (II) intel(0): 4720446973706c61790a2020000000fe
    [ 26.016] (II) intel(0): 004c503135365748322d544c4131004d
    [ 26.016] (II) intel(0): EDID vendor "LGD", prod id 488
    [ 26.016] (II) intel(0): Printing DDC gathered Modelines:
    [ 26.016] (II) intel(0): Modeline "1366x768"x0.0 72.30 1366 1414 1446 1526 768 771 776 790 -hsync -vsync (47.4 kHz)
    [ 26.016] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
    [ 26.016] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 26.016] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 26.016] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
    [ 26.016] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
    [ 26.016] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
    [ 26.016] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
    [ 26.016] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
    [ 26.016] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
    [ 26.016] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
    [ 26.016] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
    [ 26.016] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
    [ 26.016] (II) intel(0): Printing probed modes for output LVDS1
    [ 26.016] (II) intel(0): Modeline "1366x768"x60.0 72.30 1366 1414 1446 1526 768 771 776 790 -hsync -vsync (47.4 kHz)
    [ 26.016] (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 26.016] (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 26.016] (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 26.016] (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 26.033] (II) intel(0): EDID for output VGA1
    [ 26.566] (II) intel(0): EDID for output HDMI1
    [ 26.567] (II) intel(0): EDID for output DP1
    [ 26.568] (II) intel(0): EDID for output DP2
    [ 26.568] (II) intel(0): Output LVDS1 connected
    [ 26.568] (II) intel(0): Output VGA1 disconnected
    [ 26.568] (II) intel(0): Output HDMI1 disconnected
    [ 26.568] (II) intel(0): Output DP1 disconnected
    [ 26.568] (II) intel(0): Output DP2 disconnected
    [ 26.568] (II) intel(0): Using exact sizes for initial modes
    [ 26.568] (II) intel(0): Output LVDS1 using initial mode 1366x768
    [ 26.568] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 26.568] (II) intel(0): Kernel page flipping support detected, enabling
    [ 26.568] (**) intel(0): Display dimensions: (340, 190) mm
    [ 26.568] (**) intel(0): DPI set to (102, 102)
    [ 26.568] (II) Loading sub module "fb"
    [ 26.569] (II) LoadModule: "fb"
    [ 26.569] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 26.584] (II) Module fb: vendor="X.Org Foundation"
    [ 26.584] compiled for 1.10.3.901, module version = 1.0.0
    [ 26.584] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 26.584] (II) Loading sub module "dri2"
    [ 26.585] (II) LoadModule: "dri2"
    [ 26.585] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 26.585] (II) Module dri2: vendor="X.Org Foundation"
    [ 26.585] compiled for 1.10.3.901, module version = 1.2.0
    [ 26.585] ABI class: X.Org Server Extension, version 5.0
    [ 26.585] (==) Depth 24 pixmap format is 32 bpp
    [ 26.585] (II) intel(0): [DRI2] Setup complete
    [ 26.585] (II) intel(0): [DRI2] DRI driver: i965
    [ 26.585] (II) intel(0): Allocated new frame buffer 1408x768 stride 5632, tiled
    [ 26.600] (II) UXA(0): Driver registered support for the following operations:
    [ 26.600] (II) solid
    [ 26.600] (II) copy
    [ 26.600] (II) composite (RENDER acceleration)
    [ 26.600] (II) put_image
    [ 26.600] (II) get_image
    [ 26.600] (==) intel(0): Backing store disabled
    [ 26.600] (==) intel(0): Silken mouse enabled
    [ 26.601] (II) intel(0): Initializing HW Cursor
    [ 26.613] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 26.614] (==) intel(0): DPMS enabled
    [ 26.614] (==) intel(0): Intel XvMC decoder enabled
    [ 26.614] (II) intel(0): Set up textured video
    [ 26.614] (II) intel(0): [XvMC] xvmc_vld driver initialized.
    [ 26.614] (II) intel(0): direct rendering: DRI2 Enabled
    [ 26.614] (==) intel(0): hotplug detection: "enabled"
    [ 26.614] (--) RandR disabled
    [ 26.614] (II) Initializing built-in extension Generic Event Extension
    [ 26.614] (II) Initializing built-in extension SHAPE
    [ 26.614] (II) Initializing built-in extension MIT-SHM
    [ 26.614] (II) Initializing built-in extension XInputExtension
    [ 26.614] (II) Initializing built-in extension XTEST
    [ 26.614] (II) Initializing built-in extension BIG-REQUESTS
    [ 26.614] (II) Initializing built-in extension SY

    Sorry for that. I had some issues with reproducing the problem. It seems that i can reproduce it only on fresh restart.
    Last edited by Shark (2011-08-09 18:27:10)

  • Xfce takes long to start

    Hi!
    Since the day before yesterday, xfce is taking longer than normal to start. It is taking 15-20 seconds to boot to the desktop after the password is input on SLiM. At first I thought it was a matter of slim, since I switched to it recently from lightdm. But switching back to lightdm renders no improvement, So I doubt it is related to that.
    A week ago it took only a couple of seconds from the password to the full xfce desktop.
    I don't know which log files to look at, or where the problem may lie, so any help is appreciated.
    Here is the output of dmesg:
    ~❱ dmesg ✔
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.16.3-1-ARCH (nobody@var-lib-archbuild-testing-i686-tobias) (gcc version 4.9.1 20140903 (prerelease) (GCC) ) #1 SMP PREEMPT Wed Sep 17 22:00:02 CEST 2014
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009bbff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009bc00-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007fca7fff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000007fca8000-0x000000007fccffff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000007fcd0000-0x000000007fce0fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000007fce1000-0x000000007fce1fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000007fce2000-0x000000007fd09fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000007fd0a000-0x000000007fd0afff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000007fd0b000-0x000000007fd0bfff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000007fd0c000-0x000000007fd16fff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x000000007fd17000-0x000000007fd1cfff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000007fd1d000-0x000000007fd38fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000007fd39000-0x000000007fdfffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ffa00000-0x00000000ffbfffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ffe00000-0x00000000ffffffff] reserved
    [ 0.000000] Malformed early option 'acpi'
    [ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
    [ 0.000000] SMBIOS 2.4 present.
    [ 0.000000] DMI: Sony Corporation VGN-NS12M_W/VAIO, BIOS R0190Y3 07/09/2008
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] e820: last_pfn = 0x7fe00 max_arch_pfn = 0x100000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-D3FFF write-protect
    [ 0.000000] D4000-E7FFF write-through
    [ 0.000000] E8000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F80000000 write-back
    [ 0.000000] 1 base 07FE00000 mask FFFE00000 uncachable
    [ 0.000000] 2 disabled
    [ 0.000000] 3 disabled
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] found SMP MP-table at [mem 0x000fd690-0x000fd69f] mapped at [c00fd690]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x01bfffff]
    [ 0.000000] Base memory trampoline at [c0097000] 97000 size 16384
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x37000000-0x373fffff]
    [ 0.000000] [mem 0x37000000-0x373fffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x30000000-0x36ffffff]
    [ 0.000000] [mem 0x30000000-0x36ffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x2fffffff]
    [ 0.000000] [mem 0x00100000-0x003fffff] page 4k
    [ 0.000000] [mem 0x00400000-0x2fffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x37400000-0x377fdfff]
    [ 0.000000] [mem 0x37400000-0x377fdfff] page 4k
    [ 0.000000] BRK [0x01798000, 0x01798fff] PGTABLE
    [ 0.000000] RAMDISK: [mem 0x37900000-0x37c77fff]
    [ 0.000000] Allocated new RAMDISK: [mem 0x37486000-0x377fdddb]
    [ 0.000000] Move RAMDISK from [mem 0x37900000-0x37c77ddb] to [mem 0x37486000-0x377fdddb]
    [ 0.000000] ACPI: Early table checksum verification disabled
    [ 0.000000] ACPI: RSDP 0x000F03B0 000024 (v02 Sony )
    [ 0.000000] ACPI: XSDT 0x7FD15F10 00005C (v01 Sony VAIO 20080709 MSFT 00010013)
    [ 0.000000] ACPI: FACP 0x7FD0AA90 0000F4 (v04 Sony VAIO 20080709 MSFT 00010013)
    [ 0.000000] ACPI BIOS Warning (bug): 32/64X FACS address mismatch in FADT: 0x7FD1CE40/0x000000007FD1CD40, using 32-bit address (20140424/tbfadt-283)
    [ 0.000000] ACPI: DSDT 0x7FD0C010 007AFE (v01 Sony VAIO 20080709 INTL 20051117)
    [ 0.000000] ACPI: FACS 0x7FD1CE40 000040
    [ 0.000000] ACPI: APIC 0x7FD14F10 00006C (v02 Sony VAIO 20080709 MSFT 00010013)
    [ 0.000000] ACPI: MCFG 0x7FD1BC90 00003C (v01 Sony VAIO 20080709 MSFT 00000097)
    [ 0.000000] ACPI: HPET 0x7FD1BC10 000038 (v01 Sony VAIO 20080709 MSFT 00010013)
    [ 0.000000] ACPI: SLIC 0x7FD17C10 000176 (v01 Sony VAIO 20080709 Sony 01000000)
    [ 0.000000] ACPI: SSDT 0x7FCE1590 000505 (v01 Sony VAIO 20080709 INTL 20051117)
    [ 0.000000] ACPI: SSDT 0x7FCCCC10 0002E4 (v01 Sony VAIO 20080709 INTL 20051117)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] 1158MB HIGHMEM available.
    [ 0.000000] 887MB LOWMEM available.
    [ 0.000000] mapped low ram: 0 - 377fe000
    [ 0.000000] low ram: 0 - 377fe000
    [ 0.000000] BRK [0x01799000, 0x01799fff] PGTABLE
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] Normal [mem 0x01000000-0x377fdfff]
    [ 0.000000] HighMem [mem 0x377fe000-0x7fdfffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0009afff]
    [ 0.000000] node 0: [mem 0x00100000-0x7fca7fff]
    [ 0.000000] node 0: [mem 0x7fd39000-0x7fdfffff]
    [ 0.000000] On node 0 totalpages: 523529
    [ 0.000000] free_area_init_node: node 0, pgdat c161c180, node_mem_map f6486020
    [ 0.000000] DMA zone: 32 pages used for memmap
    [ 0.000000] DMA zone: 0 pages reserved
    [ 0.000000] DMA zone: 3994 pages, LIFO batch:0
    [ 0.000000] Normal zone: 1744 pages used for memmap
    [ 0.000000] Normal zone: 223230 pages, LIFO batch:31
    [ 0.000000] HighMem zone: 2317 pages used for memmap
    [ 0.000000] HighMem zone: 296305 pages, LIFO batch:31
    [ 0.000000] Using APIC driver default
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 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] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] disabled)
    [ 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: 0x8086a301 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 4 CPUs, 2 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009b000-0x0009bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009c000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    [ 0.000000] e820: [mem 0x7fe00000-0xdfffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 14 pages/cpu @f6442000 s33344 r0 d24000 u57344
    [ 0.000000] pcpu-alloc: s33344 r0 d24000 u57344 alloc=14*4096
    [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 521753
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=1a4fcdfd-1e9f-47e4-97f5-1ebf0a0a629e rw acpi=nonvs quiet
    [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
    [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    [ 0.000000] Initializing CPU#0
    [ 0.000000] allocated 4190200 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] Initializing HighMem for node 0 (000377fe:0007fe00)
    [ 0.000000] Initializing Movable for node 0 (00000000:00000000)
    [ 0.000000] Memory: 2061160K/2094116K available (4513K kernel code, 483K rwdata, 1328K rodata, 568K init, 824K bss, 32956K reserved, 1185220K highmem)
    [ 0.000000] virtual kernel memory layout:
    fixmap : 0xfff16000 - 0xfffff000 ( 932 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    .init : 0xc1630000 - 0xc16be000 ( 568 kB)
    .data : 0xc146887a - 0xc162ec80 (1817 kB)
    .text : 0xc1000000 - 0xc146887a (4514 kB)
    [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4.
    [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
    [ 0.000000] NR_IRQS:2304 nr_irqs:712 16
    [ 0.000000] CPU 0 irqstacks, hard=f5808000 soft=f580a000
    [ 0.000000] spurious 8259A interrupt: IRQ7.
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.000000] tsc: Detected 1994.620 MHz processor
    [ 0.003346] Calibrating delay loop (skipped), value calculated using timer frequency.. 3990.45 BogoMIPS (lpj=6648733)
    [ 0.003349] pid_max: default: 32768 minimum: 301
    [ 0.003357] ACPI: Core revision 20140424
    [ 0.012971] ACPI: All ACPI Tables successfully acquired
    [ 0.013373] Security Framework initialized
    [ 0.016688] Yama: becoming mindful.
    [ 0.016705] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [ 0.016708] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [ 0.017017] Initializing cgroup subsys memory
    [ 0.017044] Initializing cgroup subsys devices
    [ 0.017054] Initializing cgroup subsys freezer
    [ 0.017059] Initializing cgroup subsys net_cls
    [ 0.017066] Initializing cgroup subsys blkio
    [ 0.017095] CPU: Physical Processor ID: 0
    [ 0.017097] CPU: Processor Core ID: 0
    [ 0.017103] mce: CPU supports 6 MCE banks
    [ 0.017111] CPU0: Thermal monitoring enabled (TM2)
    [ 0.017121] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
    Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32, 1GB 0
    tlb_flushall_shift: -1
    [ 0.017238] Freeing SMP alternatives memory: 16K (c16be000 - c16c2000)
    [ 0.017990] ftrace: allocating 19359 entries in 38 pages
    [ 0.023444] Enabling APIC mode: Flat. Using 1 I/O APICs
    [ 0.023818] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
    [ 0.058393] smpboot: CPU0: Intel(R) Core(TM)2 Duo CPU T5800 @ 2.00GHz (fam: 06, model: 0f, stepping: 0d)
    [ 0.059999] Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
    [ 0.059999] perf_event_intel: PEBS disabled due to CPU errata
    [ 0.059999] ... version: 2
    [ 0.059999] ... bit width: 40
    [ 0.059999] ... generic registers: 2
    [ 0.059999] ... value mask: 000000ffffffffff
    [ 0.059999] ... max period: 000000007fffffff
    [ 0.059999] ... fixed-purpose events: 3
    [ 0.059999] ... event mask: 0000000700000003
    [ 0.076780] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.083412] CPU 1 irqstacks, hard=f5962000 soft=f5964000
    [ 0.083414] x86: Booting SMP configuration:
    [ 0.083417] .... node #0, CPUs: #1
    [ 0.006666] Initializing CPU#1
    [ 0.096575] x86: Booted up 1 node, 2 CPUs
    [ 0.096580] smpboot: Total of 2 processors activated (7981.91 BogoMIPS)
    [ 0.096780] devtmpfs: initialized
    [ 0.097002] PM: Registering ACPI NVS region [mem 0x7fca8000-0x7fccffff] (163840 bytes)
    [ 0.097008] PM: Registering ACPI NVS region [mem 0x7fce1000-0x7fce1fff] (4096 bytes)
    [ 0.097011] PM: Registering ACPI NVS region [mem 0x7fd0a000-0x7fd0afff] (4096 bytes)
    [ 0.097013] PM: Registering ACPI NVS region [mem 0x7fd17000-0x7fd1cfff] (24576 bytes)
    [ 0.098411] pinctrl core: initialized pinctrl subsystem
    [ 0.098470] RTC time: 10:19:33, date: 10/07/14
    [ 0.098470] NET: Registered protocol family 16
    [ 0.098470] cpuidle: using governor ladder
    [ 0.098470] cpuidle: using governor menu
    [ 0.098470] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.098470] ACPI: bus type PCI registered
    [ 0.098470] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.098470] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.098470] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    [ 0.098470] PCI: Using MMCONFIG for extended config space
    [ 0.098470] PCI: Using configuration type 1 for base access
    [ 0.098470] mtrr: your CPUs had inconsistent variable MTRR settings
    [ 0.098470] mtrr: probably your BIOS does not setup all CPUs.
    [ 0.098470] mtrr: corrected configuration.
    [ 0.113396] ACPI: Added _OSI(Module Device)
    [ 0.113399] ACPI: Added _OSI(Processor Device)
    [ 0.113402] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.113404] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.117050] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.126692] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.139873] ACPI: Dynamic OEM Table Load:
    [ 0.139882] ACPI: SSDT 0xF5A38800 000265 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    [ 0.140517] ACPI: Dynamic OEM Table Load:
    [ 0.140526] ACPI: SSDT 0xF5873000 0007A2 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.160370] ACPI: Dynamic OEM Table Load:
    [ 0.160377] ACPI: SSDT 0xF5861300 0000FD (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.170086] ACPI: Dynamic OEM Table Load:
    [ 0.170093] ACPI: SSDT 0xF583CDE0 000047 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.386736] ACPI: Interpreter enabled
    [ 0.386754] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140424/hwxface-580)
    [ 0.386760] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140424/hwxface-580)
    [ 0.386779] ACPI: (supports S0 S3 S4 S5)
    [ 0.386781] ACPI: Using IOAPIC for interrupt routing
    [ 0.386819] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.440953] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.440960] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    [ 0.441013] \_SB_.PCI0:_OSC invalid UUID
    [ 0.441015] _OSC request data:1 1f 0
    [ 0.441020] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
    [ 0.441925] PCI host bridge to bus 0000:00
    [ 0.441930] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.441933] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.441935] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.441938] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.441941] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 0.441943] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.441945] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.441948] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.441950] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    [ 0.441953] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    [ 0.441955] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff]
    [ 0.441969] pci 0000:00:00.0: [8086:2a40] type 00 class 0x060000
    [ 0.441996] DMAR: Forcing write-buffer flush capability
    [ 0.441998] DMAR: Disabling IOMMU for graphics on this chipset
    [ 0.442164] pci 0000:00:01.0: [8086:2a41] type 01 class 0x060400
    [ 0.442223] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.442433] pci 0000:00:1a.0: [8086:2937] type 00 class 0x0c0300
    [ 0.442498] pci 0000:00:1a.0: reg 0x20: [io 0xe0e0-0xe0ff]
    [ 0.442498] pci 0000:00:1a.0: System wakeup disabled by ACPI
    [ 0.442498] pci 0000:00:1a.1: [8086:2938] type 00 class 0x0c0300
    [ 0.442498] pci 0000:00:1a.1: reg 0x20: [io 0xe0c0-0xe0df]
    [ 0.442498] pci 0000:00:1a.1: System wakeup disabled by ACPI
    [ 0.442498] pci 0000:00:1a.2: [8086:2939] type 00 class 0x0c0300
    [ 0.442498] pci 0000:00:1a.2: reg 0x20: [io 0xe0a0-0xe0bf]
    [ 0.442498] pci 0000:00:1a.2: System wakeup disabled by ACPI
    [ 0.442498] pci 0000:00:1a.7: [8086:293c] type 00 class 0x0c0320
    [ 0.442498] pci 0000:00:1a.7: reg 0x10: [mem 0xd3e04c00-0xd3e04fff]
    [ 0.442498] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    [ 0.442498] pci 0000:00:1a.7: System wakeup disabled by ACPI
    [ 0.442498] pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300
    [ 0.442498] pci 0000:00:1b.0: reg 0x10: [mem 0xd3e00000-0xd3e03fff 64bit]
    [ 0.442498] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.442498] pci 0000:00:1c.0: [8086:2940] type 01 class 0x060400
    [ 0.442498] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.442498] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 0.442498] pci 0000:00:1c.1: [8086:2942] type 01 class 0x060400
    [ 0.442498] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.442498] pci 0000:00:1c.1: System wakeup disabled by ACPI
    [ 0.442498] pci 0000:00:1c.2: [8086:2944] type 01 class 0x060400
    [ 0.442498] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    [ 0.442498] pci 0000:00:1c.2: System wakeup disabled by ACPI
    [ 0.442498] pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300
    [ 0.442498] pci 0000:00:1d.0: reg 0x20: [io 0xe080-0xe09f]
    [ 0.442614] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.442685] pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300
    [ 0.442749] pci 0000:00:1d.1: reg 0x20: [io 0xe060-0xe07f]
    [ 0.442923] pci 0000:00:1d.1: System wakeup disabled by ACPI
    [ 0.442994] pci 0000:00:1d.2: [8086:2936] type 00 class 0x0c0300
    [ 0.443059] pci 0000:00:1d.2: reg 0x20: [io 0xe040-0xe05f]
    [ 0.443233] pci 0000:00:1d.2: System wakeup disabled by ACPI
    [ 0.443316] pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320
    [ 0.443352] pci 0000:00:1d.7: reg 0x10: [mem 0xd3e04800-0xd3e04bff]
    [ 0.443477] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    [ 0.443591] pci 0000:00:1d.7: System wakeup disabled by ACPI
    [ 0.443662] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    [ 0.443898] pci 0000:00:1f.0: [8086:2919] type 00 class 0x060100
    [ 0.444221] pci 0000:00:1f.2: [8086:2929] type 00 class 0x010601
    [ 0.444253] pci 0000:00:1f.2: reg 0x10: [io 0xe130-0xe137]
    [ 0.444266] pci 0000:00:1f.2: reg 0x14: [io 0xe120-0xe123]
    [ 0.444279] pci 0000:00:1f.2: reg 0x18: [io 0xe110-0xe117]
    [ 0.444292] pci 0000:00:1f.2: reg 0x1c: [io 0xe100-0xe103]
    [ 0.444305] pci 0000:00:1f.2: reg 0x20: [io 0xe020-0xe03f]
    [ 0.444319] pci 0000:00:1f.2: reg 0x24: [mem 0xd3e04000-0xd3e047ff]
    [ 0.444398] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.444574] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500
    [ 0.444599] pci 0000:00:1f.3: reg 0x10: [mem 0xd3e05000-0xd3e050ff 64bit]
    [ 0.444633] pci 0000:00:1f.3: reg 0x20: [io 0xe000-0xe01f]
    [ 0.444902] pci 0000:01:00.0: [1002:95c2] type 00 class 0x030000
    [ 0.444923] pci 0000:01:00.0: reg 0x10: [mem 0xc0000000-0xcfffffff pref]
    [ 0.444936] pci 0000:01:00.0: reg 0x14: [io 0xd000-0xd0ff]
    [ 0.444949] pci 0000:01:00.0: reg 0x18: [mem 0xd0020000-0xd002ffff]
    [ 0.444992] pci 0000:01:00.0: reg 0x30: [mem 0xd0000000-0xd001ffff pref]
    [ 0.445051] pci 0000:01:00.0: supports D1 D2
    [ 0.453349] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.453354] pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    [ 0.453358] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd00fffff]
    [ 0.453656] pci 0000:02:00.0: [11ab:4363] type 00 class 0x020000
    [ 0.453859] pci 0000:02:00.0: reg 0x10: [mem 0xd2920000-0xd2923fff 64bit]
    [ 0.453958] pci 0000:02:00.0: reg 0x18: [io 0xc000-0xc0ff]
    [ 0.454320] pci 0000:02:00.0: reg 0x30: [mem 0xd2900000-0xd291ffff pref]
    [ 0.454922] pci 0000:02:00.0: supports D1 D2
    [ 0.454925] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.455034] pci 0000:02:00.0: System wakeup disabled by ACPI
    [ 0.463412] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.463418] pci 0000:00:1c.0: bridge window [io 0xc000-0xcfff]
    [ 0.463424] pci 0000:00:1c.0: bridge window [mem 0xd2900000-0xd3cfffff]
    [ 0.463555] acpiphp: Slot [1] registered
    [ 0.463563] pci 0000:00:1c.1: PCI bridge to [bus 03-04]
    [ 0.463569] pci 0000:00:1c.1: bridge window [io 0xb000-0xbfff]
    [ 0.463575] pci 0000:00:1c.1: bridge window [mem 0xd1500000-0xd28fffff]
    [ 0.463800] pci 0000:05:00.0: [8086:4232] type 00 class 0x028000
    [ 0.463942] pci 0000:05:00.0: reg 0x10: [mem 0xd0100000-0xd0101fff 64bit]
    [ 0.464488] pci 0000:05:00.0: PME# supported from D0 D3hot D3cold
    [ 0.464612] pci 0000:05:00.0: System wakeup disabled by ACPI
    [ 0.464780] pci 0000:00:1c.2: PCI bridge to [bus 05]
    [ 0.464786] pci 0000:00:1c.2: bridge window [io 0xa000-0xafff]
    [ 0.464792] pci 0000:00:1c.2: bridge window [mem 0xd0100000-0xd14fffff]
    [ 0.464875] pci 0000:06:03.0: [1180:0832] type 00 class 0x0c0010
    [ 0.464901] pci 0000:06:03.0: reg 0x10: [mem 0xd3d00000-0xd3d007ff]
    [ 0.465007] pci 0000:06:03.0: PME# supported from D0 D3hot D3cold
    [ 0.465089] pci 0000:06:03.1: [1180:0822] type 00 class 0x080500
    [ 0.465113] pci 0000:06:03.1: reg 0x10: [mem 0xd3d00900-0xd3d009ff]
    [ 0.465220] pci 0000:06:03.1: supports D1 D2
    [ 0.465222] pci 0000:06:03.1: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.465304] pci 0000:06:03.2: [1180:0592] type 00 class 0x088000
    [ 0.465329] pci 0000:06:03.2: reg 0x10: [mem 0xd3d00800-0xd3d008ff]
    [ 0.465437] pci 0000:06:03.2: supports D1 D2
    [ 0.465439] pci 0000:06:03.2: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.465571] pci 0000:00:1e.0: PCI bridge to [bus 06] (subtractive decode)
    [ 0.465580] pci 0000:00:1e.0: bridge window [mem 0xd3d00000-0xd3dfffff]
    [ 0.465589] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.465592] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.465595] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.465598] pci 0000:00:1e.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
    [ 0.465600] pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    [ 0.465603] pci 0000:00:1e.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    [ 0.465606] pci 0000:00:1e.0: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode)
    [ 0.465608] pci 0000:00:1e.0: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
    [ 0.465611] pci 0000:00:1e.0: bridge window [mem 0x000e4000-0x000e7fff] (subtractive decode)
    [ 0.465614] pci 0000:00:1e.0: bridge window [mem 0x80000000-0xfebfffff] (subtractive decode)
    [ 0.465695] pci_bus 0000:00: on NUMA node 0
    [ 0.466115] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    [ 0.466191] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 *4 5 6 7 11 12 14 15)
    [ 0.466265] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    [ 0.466338] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 *5 6 7 11 12 14 15)
    [ 0.466411] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
    [ 0.466486] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    [ 0.466562] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 *3 4 5 6 7 10 12 14 15)
    [ 0.466633] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    [ 0.490264] ACPI: Enabled 2 GPEs in block 00 to 3F
    [ 0.490336] ACPI : EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    [ 0.490408] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.490408] vgaarb: loaded
    [ 0.490408] vgaarb: bridge control possible 0000:01:00.0
    [ 0.490408] PCI: Using ACPI for IRQ routing
    [ 0.502523] PCI: pci_cache_line_size set to 64 bytes
    [ 0.502694] e820: reserve RAM buffer [mem 0x0009bc00-0x0009ffff]
    [ 0.502697] e820: reserve RAM buffer [mem 0x7fca8000-0x7fffffff]
    [ 0.502700] e820: reserve RAM buffer [mem 0x7fe00000-0x7fffffff]
    [ 0.502859] NetLabel: Initializing
    [ 0.502861] NetLabel: domain hash size = 128
    [ 0.502862] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.502879] NetLabel: unlabeled traffic allowed by default
    [ 0.502923] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
    [ 0.502930] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    [ 0.502936] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
    [ 0.504352] Switched to clocksource hpet
    [ 0.511715] pnp: PnP ACPI init
    [ 0.511744] ACPI: bus type PNP registered
    [ 0.511964] system 00:00: [mem 0xfed00000-0xfed003ff] has been reserved
    [ 0.511969] system 00:00: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
    [ 0.512056] system 00:01: [io 0x0680-0x069f] has been reserved
    [ 0.512060] system 00:01: [io 0x1000-0x100f] has been reserved
    [ 0.512063] system 00:01: [io 0x0800-0x0803] has been reserved
    [ 0.512066] system 00:01: [io 0x0400-0x047f] could not be reserved
    [ 0.512069] system 00:01: [io 0x0500-0x053f] has been reserved
    [ 0.512072] system 00:01: [io 0x164e-0x164f] has been reserved
    [ 0.512076] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.512132] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.512179] pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.512228] pnp 00:04: Plug and Play ACPI device, IDs SNY9008 PNP0f13 (active)
    [ 0.512505] system 00:05: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.512509] system 00:05: [mem 0xfed14000-0xfed17fff] has been reserved
    [ 0.512512] system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.512515] system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.512519] system 00:05: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.512522] system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.512525] system 00:05: [mem 0xfeb00000-0xfeb03fff] has been reserved
    [ 0.512528] system 00:05: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.512532] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.530948] pnp: PnP ACPI: found 6 devices
    [ 0.530951] ACPI: bus type PNP unregistered
    [ 0.568799] pci 0000:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000
    [ 0.568813] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
    [ 0.568826] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03-04] add_size 200000
    [ 0.568839] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 05] add_size 200000
    [ 0.568856] pci 0000:00:01.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.568860] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.568863] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.568866] pci 0000:00:1c.2: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.568876] pci 0000:00:01.0: BAR 15: assigned [mem 0x80000000-0x801fffff 64bit pref]
    [ 0.568883] pci 0000:00:1c.0: BAR 15: assigned [mem 0x80200000-0x803fffff 64bit pref]
    [ 0.568888] pci 0000:00:1c.1: BAR 15: assigned [mem 0x80400000-0x805fffff 64bit pref]
    [ 0.568894] pci 0000:00:1c.2: BAR 15: assigned [mem 0x80600000-0x807fffff 64bit pref]
    [ 0.568897] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.568901] pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    [ 0.568906] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd00fffff]
    [ 0.568910] pci 0000:00:01.0: bridge window [mem 0x80000000-0x801fffff 64bit pref]
    [ 0.568916] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.568920] pci 0000:00:1c.0: bridge window [io 0xc000-0xcfff]
    [ 0.568927] pci 0000:00:1c.0: bridge window [mem 0xd2900000-0xd3cfffff]
    [ 0.568932] pci 0000:00:1c.0: bridge window [mem 0x80200000-0x803fffff 64bit pref]
    [ 0.568941] pci 0000:00:1c.1: PCI bridge to [bus 03-04]
    [ 0.568945] pci 0000:00:1c.1: bridge window [io 0xb000-0xbfff]
    [ 0.568952] pci 0000:00:1c.1: bridge window [mem 0xd1500000-0xd28fffff]
    [ 0.568958] pci 0000:00:1c.1: bridge window [mem 0x80400000-0x805fffff 64bit pref]
    [ 0.568966] pci 0000:00:1c.2: PCI bridge to [bus 05]
    [ 0.568970] pci 0000:00:1c.2: bridge window [io 0xa000-0xafff]
    [ 0.568977] pci 0000:00:1c.2: bridge window [mem 0xd0100000-0xd14fffff]
    [ 0.568983] pci 0000:00:1c.2: bridge window [mem 0x80600000-0x807fffff 64bit pref]
    [ 0.568991] pci 0000:00:1e.0: PCI bridge to [bus 06]
    [ 0.568998] pci 0000:00:1e.0: bridge window [mem 0xd3d00000-0xd3dfffff]
    [ 0.569010] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.569013] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.569016] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.569018] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
    [ 0.569021] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
    [ 0.569024] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
    [ 0.569026] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
    [ 0.569029] pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff]
    [ 0.569031] pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff]
    [ 0.569034] pci_bus 0000:00: resource 13 [mem 0x80000000-0xfebfffff]
    [ 0.569037] pci_bus 0000:01: resource 0 [io 0xd000-0xdfff]
    [ 0.569040] pci_bus 0000:01: resource 1 [mem 0xc0000000-0xd00fffff]
    [ 0.569043] pci_bus 0000:01: resource 2 [mem 0x80000000-0x801fffff 64bit pref]
    [ 0.569046] pci_bus 0000:02: resource 0 [io 0xc000-0xcfff]
    [ 0.569048] pci_bus 0000:02: resource 1 [mem 0xd2900000-0xd3cfffff]
    [ 0.569051] pci_bus 0000:02: resource 2 [mem 0x80200000-0x803fffff 64bit pref]
    [ 0.569054] pci_bus 0000:03: resource 0 [io 0xb000-0xbfff]
    [ 0.569056] pci_bus 0000:03: resource 1 [mem 0xd1500000-0xd28fffff]
    [ 0.569059] pci_bus 0000:03: resource 2 [mem 0x80400000-0x805fffff 64bit pref]
    [ 0.569062] pci_bus 0000:05: resource 0 [io 0xa000-0xafff]
    [ 0.569064] pci_bus 0000:05: resource 1 [mem 0xd0100000-0xd14fffff]
    [ 0.569067] pci_bus 0000:05: resource 2 [mem 0x80600000-0x807fffff 64bit pref]
    [ 0.569070] pci_bus 0000:06: resource 1 [mem 0xd3d00000-0xd3dfffff]
    [ 0.569072] pci_bus 0000:06: resource 4 [io 0x0000-0x0cf7]
    [ 0.569075] pci_bus 0000:06: resource 5 [io 0x0d00-0xffff]
    [ 0.569077] pci_bus 0000:06: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.569080] pci_bus 0000:06: resource 7 [mem 0x000d0000-0x000d3fff]
    [ 0.569082] pci_bus 0000:06: resource 8 [mem 0x000d4000-0x000d7fff]
    [ 0.569085] pci_bus 0000:06: resource 9 [mem 0x000d8000-0x000dbfff]
    [ 0.569087] pci_bus 0000:06: resource 10 [mem 0x000dc000-0x000dffff]
    [ 0.569090] pci_bus 0000:06: resource 11 [mem 0x000e0000-0x000e3fff]
    [ 0.569093] pci_bus 0000:06: resource 12 [mem 0x000e4000-0x000e7fff]
    [ 0.569095] pci_bus 0000:06: resource 13 [mem 0x80000000-0xfebfffff]
    [ 0.569130] NET: Registered protocol family 2
    [ 0.569375] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
    [ 0.569394] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
    [ 0.569434] TCP: Hash tables configured (established 8192 bind 8192)
    [ 0.569472] TCP: reno registered
    [ 0.569475] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.569485] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.569542] NET: Registered protocol family 1
    [ 0.571079] pci 0000:01:00.0: Boot video device
    [ 0.571140] PCI: CLS 64 bytes, default 64
    [ 0.571197] Unpacking initramfs...
    [ 0.659599] Freeing initrd memory: 3552K (f7486000 - f77fe000)
    [ 0.659867] apm: BIOS not found.
    [ 0.659927] Scanning for low memory corruption every 60 seconds
    [ 0.660498] futex hash table entries: 1024 (order: 4, 65536 bytes)
    [ 0.660923] HugeTLB registered 4 MB page size, pre-allocated 0 pages
    [ 0.663431] zbud: loaded
    [ 0.663572] VFS: Disk quotas dquot_6.5.2
    [ 0.663631] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    [ 0.663843] msgmni has been set to 1717
    [ 0.663926] Key type big_key registered
    [ 0.664103] bounce: pool size: 64 pages
    [ 0.664153] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.664217] io scheduler noop registered
    [ 0.664221] io scheduler deadline registered
    [ 0.664299] io scheduler cfq registered (default)
    [ 0.664550] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 0.664713] pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X
    [ 0.664908] pcieport 0000:00:1c.1: irq 42 for MSI/MSI-X
    [ 0.665104] pcieport 0000:00:1c.2: irq 43 for MSI/MSI-X
    [ 0.665248] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.665273] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.665324] vesafb: mode is 1024x768x32, linelength=4096, pages=0
    [ 0.665326] vesafb: scrolling: redraw
    [ 0.665329] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
    [ 0.665346] vesafb: framebuffer at 0xc0000000, mapped to 0xf8080000, using 3072k, total 3072k
    [ 0.713194] Console: switching to colour frame buffer device 128x48
    [ 0.760857] fb0: VESA VGA frame buffer device
    [ 0.760884] intel_idle: does not run on family 6 model 15
    [ 0.760924] GHES: HEST is not enabled!
    [ 0.760944] isapnp: Scanning for PnP cards...
    [ 1.074009] isapnp: No Plug & Play device found
    [ 1.074072] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 1.074824] rtc_cmos 00:02: RTC can wake from S4
    [ 1.075009] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
    [ 1.075046] rtc_cmos 00:02: alarms up to one year, y3k, 242 bytes nvram, hpet irqs
    [ 1.075093] ledtrig-cpu: registered to indicate activity on CPUs
    [ 1.075248] TCP: cubic registered
    [ 1.075444] NET: Registered protocol family 10
    [ 1.075715] NET: Registered protocol family 17
    [ 1.075928] Using IPI No-Shortcut mode
    [ 1.076096] registered taskstats version 1
    [ 1.076841] Magic number: 2:879:324
    [ 1.076851] tty tty49: hash matches
    [ 1.076876] acpi PNP0B00:00: hash matches
    [ 1.076924] rtc_cmos 00:02: setting system clock to 2014-10-07 10:19:34 UTC (1412677174)
    [ 1.077033] PM: Hibernation image not present or could not be loaded.
    [ 1.077295] Freeing unused kernel memory: 568K (c1630000 - c16be000)
    [ 1.077316] Write protecting the kernel text: 4516k
    [ 1.077349] Write protecting the kernel read-only data: 1332k
    [ 1.085296] random: systemd-tmpfile urandom read with 1 bits of entropy available
    [ 1.086959] systemd-udevd[47]: starting version 216
    [ 1.108059] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 1.114280] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 1.114515] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 1.115994] ACPI: bus type USB registered
    [ 1.116032] usbcore: registered new interface driver usbfs
    [ 1.116049] usbcore: registered new interface driver hub
    [ 1.116110] usbcore: registered new device driver usb
    [ 1.116598] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 1.117084] uhci_hcd: USB Universal Host Controller Interface driver
    [ 1.117254] uhci_hcd 0000:00:1a.0: UHCI Host Controller
    [ 1.117262] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 1.117272] uhci_hcd 0000:00:1a.0: detected 2 ports
    [ 1.117317] uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000e0e0
    [ 1.117584] hub 1-0:1.0: USB hub found
    [ 1.117594] hub 1-0:1.0: 2 ports detected
    [ 1.117865] uhci_hcd 0000:00:1a.1: UHCI Host Controller
    [ 1.117874] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 2
    [ 1.117883] uhci_hcd 0000:00:1a.1: detected 2 ports
    [ 1.117886] ehci-pci: EHCI PCI platform driver
    [ 1.117918] uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000e0c0
    [ 1.118335] hub 2-0:1.0: USB hub found
    [ 1.118349] hub 2-0:1.0: 2 ports detected
    [ 1.118777] uhci_hcd 0000:00:1a.2: UHCI Host Controller
    [ 1.118785] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 3
    [ 1.118796] uhci_hcd 0000:00:1a.2: detected 2 ports
    [ 1.118833] uhci_hcd 0000:00:1a.2: irq 19, io base 0x0000e0a0
    [ 1.123486] hub 3-0:1.0: USB hub found
    [ 1.123497] hub 3-0:1.0: 2 ports detected
    [ 1.123747] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 1.123755] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
    [ 1.123763] uhci_hcd 0000:00:1d.0: detected 2 ports
    [ 1.123799] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000e080
    [ 1.124033] hub 4-0:1.0: USB hub found
    [ 1.124044] hub 4-0:1.0: 2 ports detected
    [ 1.125585] ehci-pci 0000:00:1a.7: EHCI Host Controller
    [ 1.125596] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 5
    [ 1.125614] ehci-pci 0000:00:1a.7: debug port 1
    [ 1.128364] sdhci: Secure Digital Host Controller Interface driver
    [ 1.128368] sdhci: Copyright(c) Pierre Ossman
    [ 1.128740] sdhci-pci 0000:06:03.1: SDHCI controller found [1180:0822] (rev 22)
    [ 1.128843] sdhci-pci 0000:06:03.1: Will use DMA mode even though HW doesn't fully claim to support it.
    [ 1.128849] mmc0: no vqmmc regulator found
    [ 1.128851] mmc0: no vmmc regulator found
    [ 1.129538] ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
    [ 1.129548] ehci-pci 0000:00:1a.7: irq 19, io mem 0xd3e04c00
    [ 1.130351] SCSI subsystem initialized
    [ 1.132291] mmc0: SDHCI controller on PCI [0000:06:03.1] using DMA
    [ 1.137889] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    [ 1.138952] hub 5-0:1.0: USB hub found
    [ 1.139482] hub 5-0:1.0: 6 ports detected
    [ 1.140074] libata version 3.00 loaded.
    [ 1.163434] hub 1-0:1.0: USB hub found
    [ 1.163447] hub 1-0:1.0: 2 ports detected
    [ 1.174049] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.186753] hub 2-0:1.0: USB hub found
    [ 1.186763] hub 2-0:1.0: 2 ports detected
    [ 1.190058] firewire_ohci 0000:06:03.0: added OHCI v1.0 device as card 0, 4 IR + 4 IT contexts, quirks 0x11
    [ 1.210100] hub 3-0:1.0: USB hub found
    [ 1.210114] hub 3-0:1.0: 2 ports detected
    [ 1.210519] ehci-pci 0000:00:1d.7: EHCI Host Controller
    [ 1.210528] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 6
    [ 1.210546] ehci-pci 0000:00:1d.7: debug port 1
    [ 1.214465] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
    [ 1.214474] ehci-pci 0000:00:1d.7: irq 23, io mem 0xd3e04800
    [ 1.223360] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 1.223643] hub 6-0:1.0: USB hub found
    [ 1.223653] hub 6-0:1.0: 6 ports detected
    [ 1.246749] hub 4-0:1.0: USB hub found
    [ 1.246759] hub 4-0:1.0: 2 ports detected
    [ 1.246964] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 1.246972] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
    [ 1.246980] uhci_hcd 0000:00:1d.1: detected 2 ports
    [ 1.247004] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000e060
    [ 1.247338] hub 7-0:1.0: USB hub found
    [ 1.247349] hub 7-0:1.0: 2 ports detected
    [ 1.247602] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 1.247609] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
    [ 1.247620] uhci_hcd 0000:00:1d.2: detected 2 ports
    [ 1.247658] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000e040
    [ 1.247886] hub 8-0:1.0: USB hub found
    [ 1.247895] hub 8-0:1.0: 2 ports detected
    [ 1.248064] ahci 0000:00:1f.2: version 3.0
    [ 1.248219] ahci 0000:00:1f.2: irq 44 for MSI/MSI-X
    [ 1.248296] ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x3 impl SATA mode
    [ 1.248301] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ccc ems
    [ 1.254099] scsi0 : ahci
    [ 1.254260] scsi1 : ahci
    [ 1.254394] scsi2 : ahci
    [ 1.254531] scsi3 : ahci
    [ 1.254620] ata1: SATA max UDMA/133 abar m2048@0xd3e04000 port 0xd3e04100 irq 44
    [ 1.254624] ata2: SATA max UDMA/133 abar m2048@0xd3e04000 port 0xd3e04180 irq 44
    [ 1.254626] ata3: DUMMY
    [ 1.254628] ata4: DUMMY
    [ 1.446701] usb 5-2: new high-speed USB device number 2 using ehci-pci
    [ 1.573373] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.573417] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.574295] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    [ 1.586094] ata2.00: ATAPI: Optiarc DVD RW AD-7560S, SS02, max UDMA/100
    [ 1.599810] ata2.00: configured for UDMA/100
    [ 1.624700] ata1.00: ATA-8: ST9500325AS, 0001SDM1, max UDMA/133
    [ 1.624703] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
    [ 1.626521] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    [ 1.626525] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    [ 1.626792] ata1.00: configured for UDMA/133
    [ 1.626924] scsi 0:0:0:0: Direct-Access ATA ST9500325AS SDM1 PQ: 0 ANSI: 5
    [ 1.628271] scsi 1:0:0:0: CD-ROM Optiarc DVD RW AD-7560S SS02 PQ: 0 ANSI: 5
    [ 1.642555] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 1.642657] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.642661] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.642702] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.653151] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 1.653155] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.653396] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 1.660023] tsc: Refined TSC clocksource calibration: 1994.515 MHz
    [ 1.690129] firewire_core 0000:06:03.0: created device fw0: GUID 0800460302c7fa38, S400
    [ 1.736464] sda: sda1 sda2 sda3 < sda5 sda6 sda7 >
    [ 1.737116] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.853371] usb 4-2: new low-speed USB device number 2 using uhci_hcd
    [ 2.013017] hidraw: raw HID events driver (C) Jiri Kosina
    [ 2.026218] usbcore: registered new interface driver usbhid
    [ 2.026221] usbhid: USB HID core driver
    [ 2.027252] input: OM as /devices/pci0000:00/0000:00:1d.0/usb4/4-2/4-2:1.0/0003:04F3:0232.0001/input/input2
    [ 2.027320] hid-generic 0003:04F3:0232.0001: input,hidraw0: USB HID v1.11 Mouse [OM] on usb-0000:00:1d.0-2/input0
    [ 2.660076] Switched to clocksource tsc
    [ 3.022076] random: nonblocking pool is initialized
    [ 3.080690] EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: (null)
    [ 5.708375] EXT4-fs (sda7): re-mounted. Opts: data=ordered
    [ 6.402158] systemd-udevd[145]: starting version 216
    [ 7.329180] Monitor-Mwait will be used to enter C-1 state
    [ 7.329190] Monitor-Mwait will be used to enter C-2 state
    [ 7.329196] Monitor-Mwait will be used to enter C-3 state
    [ 7.329201] tsc: Marking TSC unstable due to TSC halts in idle
    [ 7.329221] ACPI: acpi_idle registered with cpuidle
    [ 7.329257] Switched to clocksource hpet
    [ 7.388619] [Firmware Bug]: ACPI(VGA) defines _DOD but not _DOS
    [ 7.388649] ACPI: Video Device [VGA] (multi-head: yes rom: no post: no)
    [ 7.391965] acpi device:19: registered as cooling_device2
    [ 7.392046] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:18/LNXVIDEO:01/input/input3
    [ 7.447312] ACPI: Battery Slot [BAT0] (battery present)
    [ 7.447434] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input4
    [ 7.448158] ACPI: Lid Switch [LID0]
    [ 7.448633] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input5
    [ 7.448638] ACPI: Power Button [PWRB]
    [ 7.453434] ACPI: AC Adapter [ADP1] (on-line)
    [ 7.499637] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 7.552327] Linux agpgart interface v0.103
    [ 7.579473] thermal LNXTHERM:00: registered as thermal_zone0
    [ 7.579478] ACPI: Thermal Zone [TZ00] (57 C)
    [ 7.580996] ACPI: Invalid active0 threshold
    [ 7.582951] thermal LNXTHERM:01: registered as thermal_zone1
    [ 7.582954] ACPI: Thermal Zone [TZ01] (57 C)
    [ 7.667982] input: Sony Vaio Keys as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/SNY5001:00/input/input6
    [ 7.668049] input: Sony Vaio Jogdial as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/SNY5001:00/input/input7
    [ 7.678388] sony_laptop: brightness ignored, must be controlled by ACPI video driver
    [ 7.678401] sony_laptop: SNC setup done.
    [ 7.782985] input: PC Speaker as /devices/platform/pcspkr/input/input8
    [ 7.787513] ACPI Warning: SystemIO range 0x00000428-0x0000042f conflicts with OpRegion 0x00000400-0x0000047f (\PMIO) (20140424/utaddress-258)
    [ 7.787522] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 7.787526] ACPI Warning: SystemIO range 0x00000530-0x0000053f conflicts with OpRegion 0x00000500-0x0000053b (\GPIO) (20140424/utaddress-258)
    [ 7.787531] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 7.787533] ACPI Warning: SystemIO range 0x00000500-0x0000052f conflicts with OpRegion 0x00000500-0x0000053b (\GPIO) (20140424/utaddress-258)
    [ 7.787538] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 7.787540] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 7.907516] microcode: CPU0 sig=0x6fd, pf=0x80, revision=0xa3
    [ 7.917945] i801_smbus 0000:00:1f.3: enabling device (0001 -> 0003)
    [ 7.918056] ACPI Warning: SystemIO range 0x0000e000-0x0000e01f conflicts with OpRegion 0x00000800-0xffff0803 (\SMI1) (20140424/utaddress-258)
    [ 7.918063] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 7.960046] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
    [ 7.962063] microcode: CPU1 sig=0x6fd, pf=0x80, revision=0xa3
    [ 7.962152] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 7.993425] iTCO_vendor_support: vendor-support=0
    [ 7.997746] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
    [ 7.997800] iTCO_wdt: Found a ICH9M TCO device (Version=2, TCOBASE=0x0460)
    [ 7.997942] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 7.997991] [drm] Initialized drm 1.1.0 20060810
    [ 8.047610] r592: driver successfully loaded
    [ 8.084641] [drm] radeon kernel modesetting enabled.
    [ 8.084720] checking generic (c0000000 300000) vs hw (c0000000 10000000)
    [ 8.084723] fb: switching to radeondrmfb from VESA VGA
    [ 8.084747] Console: switching to colour dummy device 80x25
    [ 8.085113] [drm] initializing kernel modesetting (RV620 0x1002:0x95C2 0x104D:0x9045).
    [ 8.085131] [drm] register mmio base: 0xD0020000
    [ 8.085133] [drm] register mmio size: 65536
    [ 8.085255] ATOM BIOS: SonyM790
    [ 8.085290] radeon 0000:01:00.0: VRAM: 256M 0x0000000000000000 - 0x000000000FFFFFFF (256M used)
    [ 8.085294] radeon 0000:01:00.0: GTT: 512M 0x0000000010000000 - 0x000000002FFFFFFF
    [ 8.085296] [drm] Detected VRAM RAM=256M, BAR=256M
    [ 8.085298] [drm] RAM width 64bits DDR
    [ 8.085369] [TTM] Zone kernel: Available graphics memory: 440038 kiB
    [ 8.085371] [TTM] Zone highmem: Available graphics memory: 1032648 kiB
    [ 8.085373] [TTM] Initializing pool allocator
    [ 8.085380] [TTM] Initializing DMA pool allocator
    [ 8.085408] [drm] radeon: 256M of VRAM memory ready
    [ 8.085410] [drm] radeon: 512M of GTT memory ready.
    [ 8.085423] [drm] Loading RV620 Microcode
    [ 8.095176] cfg80211: Calling CRDA to update world regulatory domain
    [ 8.095711] sound hdaudioC0D0: ALC262: SKU not ready 0x411111f0
    [ 8.095917] sound hdaudioC0D0: autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
    [ 8.095921] sound hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
    [ 8.095924] sound hdaudioC0D0: hp_outs=1 (0x15/0x0/0x0/0x0/0x0)
    [ 8.095927] sound hdaudioC0D0: mono: mono_out=0x0
    [ 8.095929] sound hdaudioC0D0: inputs:
    [ 8.095932] sound hdaudioC0D0: Mic=0x18
    [ 8.095935] sound hdaudioC0D0: Internal Mic=0x12
    [ 8.100437] sound hdaudioC0D1: autoconfig: line_outs=0 (0x0/0x0/0x0/0x0/0x0) type:line
    [ 8.100442] sound hdaudioC0D1: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
    [ 8.100446] sound hdaudioC0D1: hp_outs=0 (0x0/0x0/0x0/0x0/0x0)
    [ 8.100448] sound hdaudioC0D1: mono: mono_out=0x0
    [ 8.100451] sound hdaudioC0D1: inputs:
    [ 8.106995] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/hdaudioC0D0/input10
    [ 8.107610] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
    [ 8.107720] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
    [ 8.127655] sky2: driver version 1.30
    [ 8.127955] sky2 0000:02:00.0: Yukon-2 EC Ultra chip revision 3
    [ 8.128246] sky2 0000:02:00.0: irq 46 for MSI/MSI-X
    [ 8.128956] sky2 0000:02:00.0 eth0: addr 00:1d:ba:22:41:93
    [ 8.138358] Intel(R) Wireless WiFi driver for Linux, in-tree:
    [ 8.138362] Copyright(c) 2003- 2014 Intel Corporation
    [ 8.138697] iwlwifi 0000:05:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 8.138854] iwlwifi 0000:05:00.0: irq 47 for MSI/MSI-X
    [ 8.166978] mousedev: PS/2 mouse device common for all mice
    [ 8.359543] iwlwifi 0000:05:00.0: loaded firmware version 8.83.5.1 build 33692 op_mode iwldvm
    [ 8.450028] [drm] radeon: power management initialized
    [ 8.450038] [drm] GART: num cpu pages 131072, num gpu pages 131072
    [ 8.459438] systemd-udevd[151]: renamed network interface eth0 to enp2s0
    [ 8.480984] [drm] PCIE GART of 512M enabled (table at 0x0000000000040000).
    [ 8.481031] radeon 0000:01:00.0: WB enabled
    [ 8.481036] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000010000c00 and cpu addr 0xff862c00
    [ 8.481039] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [ 8.481041] [drm] Driver supports precise vblank timestamp query.
    [ 8.481068] radeon 0000:01:00.0: irq 48 for MSI/MSI-X
    [ 8.481085] radeon 0000:01:00.0: radeon: using MSI.
    [ 8.481117] [drm] radeon: irq initialized.
    [ 8.512790] [drm] ring test on 0 succeeded in 0 usecs
    [ 8.512924] [drm] ib test on ring 0 succeeded in 0 usecs
    [ 8.513633] Raw EDID:
    [ 8.513639] 36 7f 40 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 8.513644] 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 8.513648] 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 8.513652] ff ff ff ff 3f 00 00 00 ff ff ff ff 3f 00 00 00
    [ 8.513656] ff ff ff ff 3f 00 00 00 00 00 00 00 00 00 00 00
    [ 8.513660] 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 8.513664] 40 43 5d c1 80 43 5d c1 c0 ae 5d c1 ec 50 05 f5
    [ 8.513668] 10 2f 07 c1 00 00 00 00 00 00 00 00 00 00 00 00
    [ 8.513773] [drm] radeon atom DIG backlight initialized
    [ 8.513775] [drm] Radeon Display Connectors
    [ 8.513777] [drm] Connector 0:
    [ 8.513779] [drm] VGA-1
    [ 8.513781] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
    [ 8.513783] [drm] Encoders:
    [ 8.513785] [drm] CRT1: INTERNAL_KLDSCP_DAC1
    [ 8.513786] [drm] Connector 1:
    [ 8.513788] [drm] LVDS-1
    [ 8.513789] [drm] Encoders:
    [ 8.513791] [drm] LCD1: INTERNAL_KLDSCP_LVTMA
    [ 8.612347] iwlwifi 0000:05:00.0: CONFIG_IWLWIFI_DEBUG disabled
    [ 8.612352] iwlwifi 0000:05:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
    [ 8.612354] iwlwifi 0000:05:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
    [ 8.612358] iwlwifi 0000:05:00.0: Detected Intel(R) WiFi Link 5100 AGN, REV=0x54
    [ 8.612403] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.0, id: 0x1c0b1, caps: 0xd04711/0xa00000/0x20000, board id: 3655, fw id: 474059
    [ 8.612460] iwlwifi 0000:05:00.0: L1 Enabled; Disabling L0S
    [ 8.663147] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input9
    [ 8.680967] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
    [ 8.736839] systemd-udevd[152]: renamed network interface wlan0 to wlp5s0
    [ 8.828178] media: Linux media interface: v0.10
    [ 8.842407] Linux video capture interface: v2.00
    [ 8.965340] uvcvideo: Found UVC 1.00 device <unnamed> (05ca:18b3)
    [ 8.966809] input: UVC Camera (05ca:18b3) as /devices/pci0000:00/0000:00:1a.7/usb5/5-2/5-2:1.0/input/input13
    [ 8.966907] usbcore: registered new interface driver uvcvideo
    [ 8.966910] USB Video Class driver (1.1.1)
    [ 9.438912] [drm] fb mappable at 0xC0141000
    [ 9.438915] [drm] vram apper at 0xC0000000
    [ 9.438917] [drm] size 4096000
    [ 9.438919] [drm] fb depth is 24
    [ 9.438921] [drm] pitch is 5120
    [ 9.439044] fbcon: radeondrmfb (fb0) is primary device
    [ 9.493414] Console: switching to colour frame buffer device 160x50
    [ 9.498518] radeon 0000:01:00.0: fb0: radeondrmfb frame buffer device
    [ 9.498521] radeon 0000:01:00.0: registered panic notifier
    [ 9.523878] [drm] Initialized radeon 2.39.0 20080528 for 0000:01:00.0 on minor 0
    [ 9.596873] Adding 6291452k swap on /dev/sda2. Priority:-1 extents:1 across:6291452k FS
    [ 10.682619] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
    [ 10.777545] systemd-journald[126]: Received request to flush runtime journal from PID 1
    [ 15.392287] sky2 0000:02:00.0 enp2s0: enabling interface
    [ 15.392779] IPv6: ADDRCONF(NETDEV_UP): enp2s0: link is not ready
    [ 15.398848] iwlwifi 0000:05:00.0: L1 Enabled; Disabling L0S
    [ 15.403170] iwlwifi 0000:05:00.0: Radio type=0x1-0x2-0x0
    [ 15.498641] iwlwifi 0000:05:00.0: L1 Enabled; Disabling L0S
    [ 15.501625] iwlwifi 0000:05:00.0: Radio type=0x1-0x2-0x0
    [ 15.528195] IPv6: ADDRCONF(NETDEV_UP): wlp5s0: link is not ready
    [ 16.614242] cfg80211: Calling CRDA to update world regulatory domain
    [ 16.672892] cfg80211: Calling CRDA to update world regulatory domain
    [ 16.823470] cfg80211: Calling CRDA to update world regulatory domain
    [ 19.214957] wlp5s0: authenticate with 34:a8:4e:ba:ad:e1
    [ 19.221013] wlp5s0: send auth to 34:a8:4e:ba:ad:e1 (try 1/3)
    [ 19.227206] wlp5s0: authenticated
    [ 19.230045] wlp5s0: associate with 34:a8:4e:ba:ad:e1 (try 1/3)
    [ 19.248588] wlp5s0: RX AssocResp from 34:a8:4e:ba:ad:e1 (capab=0x431 status=0 aid=23)
    [ 19.257832] wlp5s0: associated
    [ 19.257908] IPv6: ADDRCONF(NETDEV_CHANGE): wlp5s0: link becomes ready
    [ 19.257975] cfg80211: Calling CRDA to update world regulatory domain
    [ 30.859993] fuse init (API version 7.23)
    [ 61.490049] Corrupted low memory at c000be3c (be3c phys) = b0360004
    [ 61.490058] ------------[ cut here ]------------
    [ 61.490067] WARNING: CPU: 1 PID: 15 at arch/x86/kernel/check.c:140 check_for_bios_corruption+0x8d/0xd0()
    [ 61.490068] Memory corruption detected in low memory
    [ 61.490070] Modules linked in: fuse ctr ccm uvcvideo videobuf2_vmalloc videobuf2_memops videobuf2_core v4l2_common videodev media joydev arc4 iwldvm mac80211 mousedev iwlwifi sky2 snd_hda_codec_realtek cfg80211 snd_hda_codec_generic radeon r592 ttm coretemp drm_kms_helper iTCO_wdt drm iTCO_vendor_support hwmon snd_hda_intel i2c_i801 microcode i2c_algo_bit snd_hda_controller memstick snd_hda_codec evdev mac_hid snd_hwdep snd_pcm psmouse lpc_ich pcspkr i2c_core serio_raw snd_timer sony_laptop snd rfkill thermal intel_agp intel_gtt agpgart soundcore shpchp ac button battery video acpi_cpufreq processor ext4 crc16 mbcache jbd2 hid_generic usbhid hid sd_mod sr_mod crc_t10dif cdrom crct10dif_common atkbd libps2 ahci libahci libata firewire_ohci scsi_mod sdhci_pci sdhci led_class mmc_core firewire_core
    [ 61.490135] crc_itu_t ehci_pci uhci_hcd ehci_hcd usbcore usb_common i8042 serio
    [ 61.490144] CPU: 1 PID: 15 Comm: kworker/1:0 Not tainted 3.16.3-1-ARCH #1
    [ 61.490146] Hardware name: Sony Corporation VGN-NS12M_W/VAIO, BIOS R0190Y3 07/09/2008
    [ 61.490150] Workqueue: events check_corruption
    [ 61.490153] 00000000 5313ea34 00000000 f5957e7c c1461b35 f5957ec0 f5957eb0 c104f322
    [ 61.490159] c152e99c f5957ee0 0000000f c1526b8d 0000008c c103f67d 0000008c c103f67d
    [ 61.490165] c0010000 00000000 c16d2b10 f5957ecc c104f37e 00000009 f5957ec0 c152e99c
    [ 61.490171] Call Trace:
    [ 61.490177] [<c1461b35>] dump_stack+0x48/0x69
    [ 61.490182] [<c104f322>] warn_slowpath_common+0x82/0xa0
    [ 61.490185] [<c103f67d>] ? check_for_bios_corruption+0x8d/0xd0
    [ 61.490189] [<c103f67d>] ? check_for_bios_corruption+0x8d/0xd0
    [ 61.490192] [<c104f37e>] warn_slowpath_fmt+0x3e/0x60
    [ 61.490196] [<c103f67d>] check_for_bios_corruption+0x8d/0xd0
    [ 61.490200] [<c103f6d0>] check_corruption+0x10/0x40
    [ 61.490204] [<c106807c>] process_one_work+0x10c/0x3b0
    [ 61.490208] [<c10685d1>] worker_thread+0x41/0x4c0
    [ 61.490211] [<c1068590>] ? init_pwq.part.25+0x10/0x10
    [ 61.490214] [<c106dbe3>] kthread+0xb3/0xd0
    [ 61.490219] [<c1466a41>] ret_from_kernel_thread+0x21/0x30
    [ 61.490222] [<c106db30>] ? kthread_create_on_node+0x130/0x130
    [ 61.490225] ---[ end trace 6a662771a9f66f05 ]---
    [ 829.749973] perf interrupt took too long (2511 > 2495), lowering kernel.perf_event_max_sample_rate to 50100

    Hi,
    I've been trying several of the things suggested, with the following results
    - Clearing the session cache did nothing (I never saved a session, so it was no surprise)
    - Starting xfce4 without slim (startxfce4) yielded different results, the first time after booting up it takes the same long time to load xfce, and the console messages leads to a log called xorg.log in .local/share:
    [ 113.303]
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    [ 113.304] X Protocol Version 11, Revision 0
    [ 113.304] Build Operating System: Linux 3.16.1-1-ARCH i686
    [ 113.304] Current Operating System: Linux tetto-arch 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 22:00:02 CEST 2014 i686
    [ 113.304] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=1a4fcdfd-1e9f-47e4-97f5-1ebf0a0a629e rw acpi=nonvs quiet
    [ 113.304] Build Date: 21 September 2014 10:55:38AM
    [ 113.304]
    [ 113.304] Current version of pixman: 0.32.6
    [ 113.304] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 113.304] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 113.305] (==) Log file: "/home/chikitulfo/.local/share/xorg/Xorg.0.log", Time: Wed Oct 8 13:58:55 2014
    [ 113.400] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 113.400] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 113.457] (==) No Layout section. Using the first Screen section.
    [ 113.457] (==) No screen section available. Using defaults.
    [ 113.457] (**) |-->Screen "Default Screen Section" (0)
    [ 113.457] (**) | |-->Monitor "<default monitor>"
    [ 113.473] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 113.473] (**) | |-->Device "Radeon"
    [ 113.473] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 113.473] (==) Automatically adding devices
    [ 113.473] (==) Automatically enabling devices
    [ 113.473] (==) Automatically adding GPU devices
    [ 113.609] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 113.609] Entry deleted from font path.
    [ 113.609] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 113.610] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 113.610] Entry deleted from font path.
    [ 113.610] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 113.610] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/
    [ 113.610] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 113.610] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 113.631] (II) Loader magic: 0x82a0700
    [ 113.631] (II) Module ABI versions:
    [ 113.631] X.Org ANSI C Emulation: 0.4
    [ 113.631] X.Org Video Driver: 18.0
    [ 113.631] X.Org XInput driver : 21.0
    [ 113.631] X.Org Server Extension : 8.0
    [ 113.634] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c1
    [ 113.634] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 113.634] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 8 paused 0
    [ 113.637] (--) PCI:*(0:1:0:0) 1002:95c2:104d:9045 rev 0, Mem @ 0xc0000000/268435456, 0xd0020000/65536, I/O @ 0x0000d000/256, BIOS @ 0x????????/131072
    [ 113.637] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 113.638] (II) LoadModule: "glx"
    [ 113.653] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 113.999] (II) Module glx: vendor="X.Org Foundation"
    [ 113.999] compiled for 1.16.1, module version = 1.0.0
    [ 113.999] ABI class: X.Org Server Extension, version 8.0
    [ 113.999] (==) AIGLX enabled
    [ 113.999] (II) LoadModule: "radeon"
    [ 113.999] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 114.031] (II) Module radeon: vendor="X.Org Foundation"
    [ 114.031] compiled for 1.16.1, module version = 7.5.0
    [ 114.031] Module class: X.Org Video Driver
    [ 114.031] ABI class: X.Org Video Driver, version 18.0
    [ 114.031] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI FireMV 2400 PCI,
    ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP),
    ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP),
    ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
    ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
    ATI Mobility Radeon HD 4670, ATI FirePro M5750,
    ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
    ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
    ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
    ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
    ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
    ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
    SUMO, SUMO, SUMO2, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
    ATI Radeon 4100, ATI Mobility Radeon HD 4200,
    ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, PALM, PALM, PALM, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
    ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
    CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
    BARTS, BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
    OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
    HAINAN, HAINAN, HAINAN, HAINAN, HAINAN, HAINAN, BONAIRE, BONAIRE,
    BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE,
    BONAIRE, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
    MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
    MULLINS, MULLINS, MULLINS, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII,
    HAWAII, HAWAII, HAWAII, HAWAII, HAWAII
    [ 114.037] (++) using VT number 1
    [ 114.037] (--) controlling tty is VT number 1, auto-enabling KeepTty
    [ 114.046] (II) [KMS] Kernel modesetting enabled.
    [ 114.046] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
    [ 114.046] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 114.046] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 114.046] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 114.046] (==) RADEON(0): Default visual is TrueColor
    [ 114.046] (**) RADEON(0): Option "EnablePageFlip"
    [ 114.046] (**) RADEON(0): Option "ColorTiling"
    [ 114.046] (**) RADEON(0): Option "RenderAccel"
    [ 114.046] (WW) RADEON(0): Option "AccelMethod" requires a string value
    [ 114.046] (**) RADEON(0): Option "EXAVSync"
    [ 114.046] (**) RADEON(0): Option "EXAPixmaps"
    [ 114.046] (==) RADEON(0): RGB weight 888
    [ 114.046] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 114.046] (--) RADEON(0): Chipset: "ATI Mobility Radeon HD 3430" (ChipID = 0x95c2)
    [ 114.046] (II) Loading sub module "dri2"
    [ 114.046] (II) LoadModule: "dri2"
    [ 114.046] (II) Module "dri2" already built-in
    [ 114.046] (II) Loading sub module "exa"
    [ 114.046] (II) LoadModule: "exa"
    [ 114.046] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 114.061] (II) Module exa: vendor="X.Org Foundation"
    [ 114.061] compiled for 1.16.1, module version = 2.6.0
    [ 114.061] ABI class: X.Org Video Driver, version 18.0
    [ 114.061] (II) RADEON(0): KMS Color Tiling: enabled
    [ 114.061] (II) RADEON(0): KMS Color Tiling 2D: enabled
    [ 114.062] (II) RADEON(0): KMS Pageflipping: enabled
    [ 114.062] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 114.080] (II) RADEON(0): Output VGA-0 has no monitor section
    [ 114.080] (II) RADEON(0): Output LVDS has no monitor section
    [ 114.100] (II) RADEON(0): EDID for output VGA-0
    [ 114.100] (II) RADEON(0): EDID for output LVDS
    [ 114.100] (II) RADEON(0): Printing probed modes for output LVDS
    [ 114.100] (II) RADEON(0): Modeline "1280x800"x59.8 68.00 1280 1312 1376 1408 800 802 804 808 -hsync -vsync (48.3 kHz eP)
    [ 114.100] (II) RADEON(0): Modeline "1280x720"x59.9 74.50 1280 1344 1472 1664 720 723 728 748 -hsync +vsync (44.8 kHz)
    [ 114.100] (II) RADEON(0): Modeline "1152x768"x59.8 71.75 1152 1216 1328 1504 768 771 781 798 -hsync +vsync (47.7 kHz)
    [ 114.100] (II) RADEON(0): Modeline "1024x768"x59.9 63.50 1024 1072 1176 1328 768 771 775 798 -hsync +vsync (47.8 kHz)
    [ 114.100] (II) RADEON(0): Modeline "800x600"x59.9 38.25 800 832 912 1024 600 603 607 624 -hsync +vsync (37.4 kHz)
    [ 114.100] (II) RADEON(0): Modeline "848x480"x59.7 31.50 848 872 952 1056 480 483 493 500 -hsync +vsync (29.8 kHz)
    [ 114.100] (II) RADEON(0): Modeline "720x480"x59.7 26.75 720 744 808 896 480 483 493 500 -hsync +vsync (29.9 kHz)
    [ 114.100] (II) RADEON(0): Modeline "640x480"x59.4 23.75 640 664 720 800 480 483 487 500 -hsync +vsync (29.7 kHz)
    [ 114.101] (II) RADEON(0): Output VGA-0 disconnected
    [ 114.101] (II) RADEON(0): Output LVDS connected
    [ 114.101] (II) RADEON(0): Using exact sizes for initial modes
    [ 114.101] (II) RADEON(0): Output LVDS using initial mode 1280x800
    [ 114.101] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 114.101] (II) RADEON(0): mem size init: gart size :1fdff000 vram size: s:10000000 visible:fbd8000
    [ 114.101] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
    [ 114.101] (==) RADEON(0): DPI set to (96, 96)
    [ 114.101] (II) Loading sub module "fb"
    [ 114.101] (II) LoadModule: "fb"
    [ 114.101] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 114.114] (II) Module fb: vendor="X.Org Foundation"
    [ 114.114] compiled for 1.16.1, module version = 1.0.0
    [ 114.114] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 114.114] (II) Loading sub module "ramdac"
    [ 114.114] (II) LoadModule: "ramdac"
    [ 114.114] (II) Module "ramdac" already built-in
    [ 114.114] (--) Depth 24 pixmap format is 32 bpp
    [ 114.115] (II) RADEON(0): [DRI2] Setup complete
    [ 114.115] (II) RADEON(0): [DRI2] DRI driver: r600
    [ 114.115] (II) RADEON(0): [DRI2] VDPAU driver: r600
    [ 114.115] (II) RADEON(0): Front buffer size: 4000K
    [ 114.115] (II) RADEON(0): VRAM usage limit set to 228470K
    [ 114.127] (==) RADEON(0): Backing store enabled
    [ 114.127] (II) RADEON(0): Direct rendering enabled
    [ 114.127] (II) RADEON(0): EXA VSync enabled
    [ 114.127] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 114.127] (II) EXA(0): Driver registered support for the following operations:
    [ 114.127] (II) Solid
    [ 114.127] (II) Copy
    [ 114.127] (II) Composite (RENDER acceleration)
    [ 114.127] (II) UploadToScreen
    [ 114.127] (II) DownloadFromScreen
    [ 114.127] (II) RADEON(0): Acceleration enabled
    [ 114.127] (==) RADEON(0): DPMS enabled
    [ 114.127] (==) RADEON(0): Silken mouse enabled
    [ 114.128] (II) RADEON(0): Set up textured video
    [ 114.128] (II) RADEON(0): [XvMC] Associated with Radeon Textured Video.
    [ 114.128] (II) RADEON(0): [XvMC] Extension initialized.
    [ 114.128] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 114.129] (WW) RADEON(0): Option "AccelDFS" is not used
    [ 114.129] (--) RandR disabled
    [ 114.964] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 114.964] (II) AIGLX: enabled GLX_ARB_create_context
    [ 114.964] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 114.964] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 114.964] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 114.964] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 114.964] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 114.964] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 114.964] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 114.965] (II) AIGLX: Loaded and initialized r600
    [ 114.965] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 114.966] (II) RADEON(0): Setting screen physical size to 338 x 211
    [ 115.291] (II) config/udev: Adding input device Sony Vaio Keys (/dev/input/event6)
    [ 115.291] (**) Sony Vaio Keys: Applying InputClass "evdev keyboard catchall"
    [ 115.291] (II) LoadModule: "evdev"
    [ 115.292] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 115.331] (II) Module evdev: vendor="X.Org Foundation"
    [ 115.331] compiled for 1.16.0, module version = 2.9.0
    [ 115.331] Module class: X.Org XInput Driver
    [ 115.331] ABI class: X.Org XInput driver, version 21.0
    [ 115.331] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 11 paused 0
    [ 115.331] (II) Using input driver 'evdev' for 'Sony Vaio Keys'
    [ 115.331] (**) Sony Vaio Keys: always reports core events
    [ 115.332] (**) evdev: Sony Vaio Keys: Device: "/dev/input/event6"
    [ 115.332] (--) evdev: Sony Vaio Keys: Vendor 0x104d Product 0
    [ 115.332] (--) evdev: Sony Vaio Keys: Found keys
    [ 115.332] (II) evdev: Sony Vaio Keys: Configuring as keyboard
    [ 115.332] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/SNY5001:00/input/input8/event6"
    [ 115.332] (II) XINPUT: Adding extended input device "Sony Vaio Keys" (type: KEYBOARD, id 6)
    [ 115.332] (**) Option "xkb_rules" "evdev"
    [ 115.332] (**) Option "xkb_model" "pc104"
    [ 115.332] (**) Option "xkb_layout" "us"
    [ 115.365] (II) config/udev: Adding input device Sony Vaio Jogdial (/dev/input/event7)
    [ 115.365] (II) No input driver specified, ignoring this device.
    [ 115.365] (II) This device may have been added with another device file.
    [ 115.366] (II) config/udev: Adding input device Sony Vaio Jogdial (/dev/input/mouse1)
    [ 115.366] (II) No input driver specified, ignoring this device.
    [ 115.366] (II) This device may have been added with another device file.
    [ 115.366] (II) config/udev: Adding input device Video Bus (/dev/input/event2)
    [ 115.366] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 115.367] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 12 paused 0
    [ 115.367] (II) Using input driver 'evdev' for 'Video Bus'
    [ 115.367] (**) Video Bus: always reports core events
    [ 115.367] (**) evdev: Video Bus: Device: "/dev/input/event2"
    [ 115.367] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 115.367] (--) evdev: Video Bus: Found keys
    [ 115.367] (II) evdev: Video Bus: Configuring as keyboard
    [ 115.367] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:18/LNXVIDEO:01/input/input3/event2"
    [ 115.367] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 115.367] (**) Option "xkb_rules" "evdev"
    [ 115.367] (**) Option "xkb_model" "pc104"
    [ 115.367] (**) Option "xkb_layout" "us"
    [ 115.368] (II) config/udev: Adding input device Power Button (/dev/input/event4)
    [ 115.368] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 115.368] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 13 paused 0
    [ 115.368] (II) Using input driver 'evdev' for 'Power Button'
    [ 115.368] (**) Power Button: always reports core events
    [ 115.368] (**) evdev: Power Button: Device: "/dev/input/event4"
    [ 115.368] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 115.368] (--) evdev: Power Button: Found keys
    [ 115.368] (II) evdev: Power Button: Configuring as keyboard
    [ 115.368] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input5/event4"
    [ 115.368] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
    [ 115.368] (**) Option "xkb_rules" "evdev"
    [ 115.368] (**) Option "xkb_model" "pc104"
    [ 115.368] (**) Option "xkb_layout" "us"
    [ 115.369] (II) config/udev: Adding input device Lid Switch (/dev/input/event3)
    [ 115.369] (II) No input driver specified, ignoring this device.
    [ 115.369] (II) This device may have been added with another device file.
    [ 115.370] (II) config/udev: Adding input device UVC Camera (05ca:18b3) (/dev/input/event12)
    [ 115.370] (**) UVC Camera (05ca:18b3): Applying InputClass "evdev keyboard catchall"
    [ 115.370] (II) systemd-logind: got fd for /dev/input/event12 13:76 fd 14 paused 0
    [ 115.370] (II) Using input driver 'evdev' for 'UVC Camera (05ca:18b3)'
    [ 115.370] (**) UVC Camera (05ca:18b3): always reports core events
    [ 115.370] (**) evdev: UVC Camera (05ca:18b3): Device: "/dev/input/event12"
    [ 115.370] (--) evdev: UVC Camera (05ca:18b3): Vendor 0x5ca Product 0x18b3
    [ 115.370] (--) evdev: UVC Camera (05ca:18b3): Found keys
    [ 115.370] (II) evdev: UVC Camera (05ca:18b3): Configuring as keyboard
    [ 115.370] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.7/usb1/1-2/1-2:1.0/input/input13/event12"
    [ 115.370] (II) XINPUT: Adding extended input device "UVC Camera (05ca:18b3)" (type: KEYBOARD, id 9)
    [ 115.370] (**) Option "xkb_rules" "evdev"
    [ 115.370] (**) Option "xkb_model" "pc104"
    [ 115.370] (**) Option "xkb_layout" "us"
    [ 115.371] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event8)
    [ 115.371] (II) No input driver specified, ignoring this device.
    [ 115.371] (II) This device may have been added with another device file.
    [ 115.371] (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event9)
    [ 115.371] (II) No input driver specified, ignoring this device.
    [ 115.371] (II) This device may have been added with another device file.
    [ 115.372] (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event10)
    [ 115.372] (II) No input driver specified, ignoring this device.
    [ 115.372] (II) This device may have been added with another device file.
    [ 115.372] (II) config/udev: Adding input device OM (/dev/input/event1)
    [ 115.372] (**) OM: Applying InputClass "evdev pointer catchall"
    [ 115.373] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 15 paused 0
    [ 115.373] (II) Using input driver 'evdev' for 'OM'
    [ 115.373] (**) OM: always reports core events
    [ 115.373] (**) evdev: OM: Device: "/dev/input/event1"
    [ 115.373] (--) evdev: OM: Vendor 0x4f3 Product 0x232
    [ 115.373] (--) evdev: OM: Found 3 mouse buttons
    [ 115.373] (--) evdev: OM: Found scroll wheel(s)
    [ 115.373] (--) evdev: OM: Found relative axes
    [ 115.373] (--) evdev: OM: Found x and y relative axes
    [ 115.373] (II) evdev: OM: Configuring as mouse
    [ 115.373] (II) evdev: OM: Adding scrollwheel support
    [ 115.373] (**) evdev: OM: YAxisMapping: buttons 4 and 5
    [ 115.373] (**) evdev: OM: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 115.373] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb5/5-2/5-2:1.0/0003:04F3:0232.0001/input/input2/event1"
    [ 115.373] (II) XINPUT: Adding extended input device "OM" (type: MOUSE, id 10)
    [ 115.373] (II) evdev: OM: initialized for relative axes.
    [ 115.373] (**) OM: (accel) keeping acceleration scheme 1
    [ 115.373] (**) OM: (accel) acceleration profile 0
    [ 115.373] (**) OM: (accel) acceleration factor: 2.000
    [ 115.373] (**) OM: (accel) acceleration threshold: 4
    [ 115.374] (II) config/udev: Adding input device OM (/dev/input/mouse0)
    [ 115.374] (II) No input driver specified, ignoring this device.
    [ 115.374] (II) This device may have been added with another device file.
    [ 115.374] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 115.374] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 115.375] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 16 paused 0
    [ 115.375] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 115.375] (**) AT Translated Set 2 keyboard: always reports core events
    [ 115.375] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 115.375] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 115.375] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 115.375] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 115.375] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 115.375] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 11)
    [ 115.375] (**) Option "xkb_rules" "evdev"
    [ 115.375] (**) Option "xkb_model" "pc104"
    [ 115.375] (**) Option "xkb_layout" "us"
    [ 115.376] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event11)
    [ 115.376] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 115.376] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 115.376] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
    [ 115.376] (II) LoadModule: "synaptics"
    [ 115.376] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 115.391] (II) Module synaptics: vendor="X.Org Foundation"
    [ 115.392] compiled for 1.16.0, module version = 1.8.1
    [ 115.392] Module class: X.Org XInput Driver
    [ 115.392] ABI class: X.Org XInput driver, version 21.0
    [ 115.392] (II) systemd-logind: got fd for /dev/input/event11 13:75 fd 17 paused 0
    [ 115.392] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 115.392] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 115.392] (**) Option "Device" "/dev/input/event11"
    [ 115.426] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5696 (res 64)
    [ 115.427] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 5232 (res 106)
    [ 115.427] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 115.427] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 115.427] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right
    [ 115.427] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 115.427] (**) Option "TapButton1" "1"
    [ 115.427] (**) Option "TapButton2" "2"
    [ 115.427] (**) Option "TapButton3" "3"
    [ 115.427] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 115.427] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 115.427] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input6/event11"
    [ 115.427] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 12)
    [ 115.427] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 115.427] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
    [ 115.427] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.035
    [ 115.428] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 115.428] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 115.428] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 115.428] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 115.428] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 115.429] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse2)
    [ 115.429] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 115.430] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
    [ 115.430] (II) No input driver specified, ignoring this device.
    [ 115.430] (II) This device may have been added with another device file.
    [ 140.030] (II) UnloadModule: "synaptics"
    [ 140.030] (II) systemd-logind: releasing fd for 13:75
    [ 140.063] (II) evdev: AT Translated Set 2 keyboard: Close
    [ 140.063] (II) UnloadModule: "evdev"
    [ 140.063] (II) systemd-logind: releasing fd for 13:64
    [ 140.113] (II) evdev: OM: Close
    [ 140.113] (II) UnloadModule: "evdev"
    [ 140.113] (II) systemd-logind: releasing fd for 13:65
    [ 140.166] (II) evdev: UVC Camera (05ca:18b3): Close
    [ 140.166] (II) UnloadModule: "evdev"
    [ 140.166] (II) systemd-logind: releasing fd for 13:76
    [ 140.230] (II) evdev: Power Button: Close
    [ 140.230] (II) UnloadModule: "evdev"
    [ 140.230] (II) systemd-logind: releasing fd for 13:68
    [ 140.254] (II) evdev: Video Bus: Close
    [ 140.255] (II) UnloadModule: "evdev"
    [ 140.255] (II) systemd-logind: releasing fd for 13:66
    [ 140.283] (II) evdev: Sony Vaio Keys: Close
    [ 140.283] (II) UnloadModule: "evdev"
    [ 140.283] (II) systemd-logind: releasing fd for 13:70
    [ 140.498] (EE) Server terminated successfully (0). Closing log file.
    If I log out to the console and run startxfce4 again then it does load faster.
    The messages that show on the console I didn't know how to copy them, is there any easy way?
    Last edited by Chikitulfo (2014-10-08 12:24:02)

  • Cisco ASA 5505 peculiarities

    I am just starting out using a Cisco ASA 5505 device, but have to say that I have encountered some peculiarities with the software.
    To start, when I try to connect to the device from my Microsoft Windows XP service pack 3 machine via the Cisco ASDM Launcher that it tries to connect and then fails with the typical error message saying to check the configuration or connection.
    After playing around with the settings on the GUI I discovered that clearing the internal log buffer would then enable the Launcher to connect to the device without a hitch.  Apparently garbage in the internal log buffer is interfering with connecting?
    Next I found that not only me, but other users were having problems using the ASA5505 with a static IP modem.  Initially I thought it was just me, but then did the Google search to discover that about a dozen other people had the same identical problem.  I didn't feel so bad then.  After some reading of other tips and information, after exhausting the Cisco documents dry, I did find one person who said to set the NAT table.
    That almost fixed the problem.  Things started working after I opened up the outside interface net mask.  (and strangely enough kept working after I narrowed back down from 255.255.255.240 to 255.255.255.248)
    Things were cruising along, until I saw a computer on the other side of my company's gateway try to connect to one in the LAN.  This forced me to create an access rule (or so I thought) and immediately all the local computers lost connectivity with the DNSs and thus with the internet.
    Strangely enough, while looking at the log file, I did see that the packets were being dropped due to an access list violation, but which access list??  I didn't create any, so I thought, and chasing down the access lists led to nothing.
    Slowly I realized that the Cisco firmware was creating its own internal access control lists, from the rules that I created in the Security rules section of the GUI.  How about letting the poor administrator see those access lists?  I would like to feel that I really can administer the machine, not be a hapless victim of some "user friendly" software.
    So I had to play around with the rules for awhile, until I was able to successfully allow access to the local group, but block any connection attempts from the sister LAN (thanks Microsoft for your windows browser protocols and file sharing which causes the computers to connect to every other MS OS computer in the world)
    Another nit pick that I had is when I saw the security rules that let the inside interface have access to every other low security interface.  Clicking upon that interface never showed just exactly how this is done.  Did someone forget to put some of the CLI software into the ASDM GUI software?  I strongly suspect that CLI was how all this originally started, but its feature rich command set just didn't quite make it into the GUI software?  Anyone listening?
    I do appreciate that Cisco did allow CLI from the GUI.
    The start up guide that came with the ASA was only 50% usable, due to the fact that I had to work into a static IP, not DHCP.  I would like to see Cisco add a section in Chapter 5 to address this type of configuration for their first time people.
    Finally, I would like to see that irritating internal log buffer flush problem fixed so my ASDM launcher will always connect the first time.
    Thanks for bearing with me, I would give the software overall a 80% rating.  More discussion needs to be shown about how the device is really working with the default settings, and I would like to some more administration control of those "automatic" access control lists.
    Randall

    I am just starting out using a Cisco ASA 5505 device, but have to say that I have encountered some peculiarities with the software.
    To start, when I try to connect to the device from my Microsoft Windows XP service pack 3 machine via the Cisco ASDM Launcher that it tries to connect and then fails with the typical error message saying to check the configuration or connection.
    After playing around with the settings on the GUI I discovered that clearing the internal log buffer would then enable the Launcher to connect to the device without a hitch.  Apparently garbage in the internal log buffer is interfering with connecting?
    Next I found that not only me, but other users were having problems using the ASA5505 with a static IP modem.  Initially I thought it was just me, but then did the Google search to discover that about a dozen other people had the same identical problem.  I didn't feel so bad then.  After some reading of other tips and information, after exhausting the Cisco documents dry, I did find one person who said to set the NAT table.
    That almost fixed the problem.  Things started working after I opened up the outside interface net mask.  (and strangely enough kept working after I narrowed back down from 255.255.255.240 to 255.255.255.248)
    Things were cruising along, until I saw a computer on the other side of my company's gateway try to connect to one in the LAN.  This forced me to create an access rule (or so I thought) and immediately all the local computers lost connectivity with the DNSs and thus with the internet.
    Strangely enough, while looking at the log file, I did see that the packets were being dropped due to an access list violation, but which access list??  I didn't create any, so I thought, and chasing down the access lists led to nothing.
    Slowly I realized that the Cisco firmware was creating its own internal access control lists, from the rules that I created in the Security rules section of the GUI.  How about letting the poor administrator see those access lists?  I would like to feel that I really can administer the machine, not be a hapless victim of some "user friendly" software.
    So I had to play around with the rules for awhile, until I was able to successfully allow access to the local group, but block any connection attempts from the sister LAN (thanks Microsoft for your windows browser protocols and file sharing which causes the computers to connect to every other MS OS computer in the world)
    Another nit pick that I had is when I saw the security rules that let the inside interface have access to every other low security interface.  Clicking upon that interface never showed just exactly how this is done.  Did someone forget to put some of the CLI software into the ASDM GUI software?  I strongly suspect that CLI was how all this originally started, but its feature rich command set just didn't quite make it into the GUI software?  Anyone listening?
    I do appreciate that Cisco did allow CLI from the GUI.
    The start up guide that came with the ASA was only 50% usable, due to the fact that I had to work into a static IP, not DHCP.  I would like to see Cisco add a section in Chapter 5 to address this type of configuration for their first time people.
    Finally, I would like to see that irritating internal log buffer flush problem fixed so my ASDM launcher will always connect the first time.
    Thanks for bearing with me, I would give the software overall a 80% rating.  More discussion needs to be shown about how the device is really working with the default settings, and I would like to some more administration control of those "automatic" access control lists.
    Randall

  • Help!! Kernel panics after installation!!

    Hi,
    I am new to Arch Linux (migrating from Fedora). I am having some problems with the installation on my Sony VAIO CW (C2D, Nvidia GT230M). At first I couldn't get past the installation of X in the Beginner's guide, but after some tweaking with conf files I finally got it to work. But after reboot, kernel panic occured. This started happening intermittently from there onwards. Then I tried to install GNOME which failed miserably as in it panics and crashes everytime system starts.
    Then I tried KDE and things are much better compared to GNOME. The problem is whenever I try logging into a new KDE session, kernel panics. Only KDE Failsafe mode works (with sound). I honestly dont know what to do as I have no idea why the problem is occuring also. I plan to stay with Arch, as nouveau works much better than it used to in Fedora (3d support). Can anybody help with this issue?
    Linux myhost 2.6.36-ARCH #1 SMP PREEMPT Wed Nov 24 00:39:57 CET 2010 x86_64 Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz GenuineIntel GNU/Linux
    10-nouveau.conf
    Section "Device"
    Identifier "n"
    Driver "nouveau"
    EndSection
    Xorg.0.log
    [ 50.605]
    X.Org X Server 1.9.2
    Release Date: 2010-10-30
    [ 50.605] X Protocol Version 11, Revision 0
    [ 50.605] Build Operating System: Linux 2.6.35-ARCH x86_64
    [ 50.605] Current Operating System: Linux myhost 2.6.36-ARCH #1 SMP PREEMPT Wed Nov 24 00:39:57 CET 2010 x86_64
    [ 50.605] Kernel command line: root=/dev/sda5 ro
    [ 50.605] Build Date: 01 November 2010 10:29:19PM
    [ 50.605]
    [ 50.605] Current version of pixman: 0.20.0
    [ 50.605] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 50.605] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 50.605] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Nov 28 01:33:51 2010
    [ 50.606] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 50.617] (==) No Layout section. Using the first Screen section.
    [ 50.617] (==) No screen section available. Using defaults.
    [ 50.617] (**) |-->Screen "Default Screen Section" (0)
    [ 50.617] (**) | |-->Monitor "<default monitor>"
    [ 50.617] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 50.617] (**) | |-->Device "n"
    [ 50.617] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 50.617] (==) Automatically adding devices
    [ 50.617] (==) Automatically enabling devices
    [ 50.618] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 50.618] Entry deleted from font path.
    [ 50.618] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 50.618] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 50.618] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 50.618] (II) Loader magic: 0x7d3360
    [ 50.618] (II) Module ABI versions:
    [ 50.618] X.Org ANSI C Emulation: 0.4
    [ 50.618] X.Org Video Driver: 8.0
    [ 50.618] X.Org XInput driver : 11.0
    [ 50.618] X.Org Server Extension : 4.0
    [ 50.619] (--) PCI:*(0:1:0:0) 10de:0a2a:104d:905e rev 162, Mem @ 0xd2000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x0000d000/128, BIOS @ 0x????????/524288
    [ 50.619] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 50.619] (II) LoadModule: "extmod"
    [ 50.620] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 50.629] (II) Module extmod: vendor="X.Org Foundation"
    [ 50.629] compiled for 1.9.2, module version = 1.0.0
    [ 50.629] Module class: X.Org Server Extension
    [ 50.629] ABI class: X.Org Server Extension, version 4.0
    [ 50.629] (II) Loading extension MIT-SCREEN-SAVER
    [ 50.629] (II) Loading extension XFree86-VidModeExtension
    [ 50.629] (II) Loading extension XFree86-DGA
    [ 50.629] (II) Loading extension DPMS
    [ 50.629] (II) Loading extension XVideo
    [ 50.629] (II) Loading extension XVideo-MotionCompensation
    [ 50.629] (II) Loading extension X-Resource
    [ 50.629] (II) LoadModule: "dbe"
    [ 50.630] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 50.637] (II) Module dbe: vendor="X.Org Foundation"
    [ 50.637] compiled for 1.9.2, module version = 1.0.0
    [ 50.637] Module class: X.Org Server Extension
    [ 50.637] ABI class: X.Org Server Extension, version 4.0
    [ 50.637] (II) Loading extension DOUBLE-BUFFER
    [ 50.637] (II) LoadModule: "glx"
    [ 50.637] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 50.650] (II) Module glx: vendor="X.Org Foundation"
    [ 50.650] compiled for 1.9.2, module version = 1.0.0
    [ 50.650] ABI class: X.Org Server Extension, version 4.0
    [ 50.650] (==) AIGLX enabled
    [ 50.650] (II) Loading extension GLX
    [ 50.651] (II) LoadModule: "record"
    [ 50.651] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 50.652] (II) Module record: vendor="X.Org Foundation"
    [ 50.652] compiled for 1.9.2, module version = 1.13.0
    [ 50.652] Module class: X.Org Server Extension
    [ 50.652] ABI class: X.Org Server Extension, version 4.0
    [ 50.652] (II) Loading extension RECORD
    [ 50.652] (II) LoadModule: "dri"
    [ 50.652] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 50.661] (II) Module dri: vendor="X.Org Foundation"
    [ 50.661] compiled for 1.9.2, module version = 1.0.0
    [ 50.661] ABI class: X.Org Server Extension, version 4.0
    [ 50.661] (II) Loading extension XFree86-DRI
    [ 50.661] (II) LoadModule: "dri2"
    [ 50.661] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 50.662] (II) Module dri2: vendor="X.Org Foundation"
    [ 50.662] compiled for 1.9.2, module version = 1.2.0
    [ 50.662] ABI class: X.Org Server Extension, version 4.0
    [ 50.662] (II) Loading extension DRI2
    [ 50.662] (II) LoadModule: "nouveau"
    [ 50.662] (II) Loading /usr/lib/xorg/modules/drivers/nouveau_drv.so
    [ 50.675] (II) Module nouveau: vendor="X.Org Foundation"
    [ 50.675] compiled for 1.9.0, module version = 0.0.16
    [ 50.675] Module class: X.Org Video Driver
    [ 50.675] ABI class: X.Org Video Driver, version 8.0
    [ 50.675] (II) NOUVEAU driver
    [ 50.675] (II) NOUVEAU driver for NVIDIA chipset families :
    [ 50.675] RIVA TNT (NV04)
    [ 50.675] RIVA TNT2 (NV05)
    [ 50.675] GeForce 256 (NV10)
    [ 50.675] GeForce 2 (NV11, NV15)
    [ 50.675] GeForce 4MX (NV17, NV18)
    [ 50.675] GeForce 3 (NV20)
    [ 50.675] GeForce 4Ti (NV25, NV28)
    [ 50.675] GeForce FX (NV3x)
    [ 50.675] GeForce 6 (NV4x)
    [ 50.675] GeForce 7 (G7x)
    [ 50.675] GeForce 8 (G8x)
    [ 50.675] (++) using VT number 7
    [ 50.676] drmOpenDevice: node name is /dev/dri/card0
    [ 50.676] drmOpenDevice: open result is 7, (OK)
    [ 50.676] drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    [ 50.676] drmOpenDevice: node name is /dev/dri/card0
    [ 50.676] drmOpenDevice: open result is 7, (OK)
    [ 50.676] drmOpenByBusid: drmOpenMinor returns 7
    [ 50.676] drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    [ 50.676] (II) [drm] nouveau interface version: 0.0.16
    [ 50.676] (II) Loading sub module "dri"
    [ 50.676] (II) LoadModule: "dri"
    [ 50.677] (II) Reloading /usr/lib/xorg/modules/extensions/libdri.so
    [ 50.677] (II) NOUVEAU(0): Loaded DRI module
    [ 50.677] drmOpenDevice: node name is /dev/dri/card0
    [ 50.677] drmOpenDevice: open result is 8, (OK)
    [ 50.677] drmOpenDevice: node name is /dev/dri/card0
    [ 50.677] drmOpenDevice: open result is 8, (OK)
    [ 50.677] drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    [ 50.677] drmOpenDevice: node name is /dev/dri/card0
    [ 50.677] drmOpenDevice: open result is 8, (OK)
    [ 50.677] drmOpenByBusid: drmOpenMinor returns 8
    [ 50.677] drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    [ 50.677] (II) [drm] DRM interface version 1.4
    [ 50.677] (II) [drm] DRM open master succeeded.
    [ 50.677] (--) NOUVEAU(0): Chipset: "NVIDIA NVa5"
    [ 50.677] (II) NOUVEAU(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 50.677] (==) NOUVEAU(0): Depth 24, (--) framebuffer bpp 32
    [ 50.677] (==) NOUVEAU(0): RGB weight 888
    [ 50.677] (==) NOUVEAU(0): Default visual is TrueColor
    [ 50.677] (==) NOUVEAU(0): Using HW cursor
    [ 50.696] (II) NOUVEAU(0): Output LVDS-1 has no monitor section
    [ 50.794] (II) NOUVEAU(0): Output VGA-1 has no monitor section
    [ 50.803] (II) NOUVEAU(0): Output HDMI-1 has no monitor section
    [ 50.804] (II) NOUVEAU(0): EDID for output LVDS-1
    [ 50.804] (II) NOUVEAU(0): Manufacturer: SNY Model: 5fa Serial#: 0
    [ 50.804] (II) NOUVEAU(0): Year: 2002 Week: 45
    [ 50.804] (II) NOUVEAU(0): EDID Version: 1.4
    [ 50.804] (II) NOUVEAU(0): Digital Display Input
    [ 50.804] (II) NOUVEAU(0): 6 bits per channel
    [ 50.804] (II) NOUVEAU(0): Digital interface is undefined
    [ 50.804] (II) NOUVEAU(0): Max Image Size [cm]: horiz.: 31 vert.: 17
    [ 50.804] (II) NOUVEAU(0): Gamma: 1.00
    [ 50.804] (II) NOUVEAU(0): DPMS capabilities: StandBy Suspend Off
    [ 50.804] (II) NOUVEAU(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 50.804] (II) NOUVEAU(0): First detailed timing is preferred mode
    [ 50.804] (II) NOUVEAU(0): Preferred mode is native pixel format and refresh rate
    [ 50.804] (II) NOUVEAU(0): redX: 0.600 redY: 0.342 greenX: 0.295 greenY: 0.570
    [ 50.804] (II) NOUVEAU(0): blueX: 0.147 blueY: 0.111 whiteX: 0.312 whiteY: 0.328
    [ 50.804] (II) NOUVEAU(0): Manufacturer's mask: 0
    [ 50.804] (II) NOUVEAU(0): Supported detailed timing:
    [ 50.804] (II) NOUVEAU(0): clock: 72.0 MHz Image Size: 309 x 174 mm
    [ 50.804] (II) NOUVEAU(0): h_active: 1366 h_sync: 1424 h_sync_end 1482 h_blank_end 1540 h_border: 0
    [ 50.804] (II) NOUVEAU(0): v_active: 768 v_sync: 772 v_sync_end 776 v_blanking: 780 v_border: 0
    [ 50.804] (II) NOUVEAU(0): Monitor name: Nvidia Defaul
    [ 50.804] (II) NOUVEAU(0): Monitor name: t Flat Panel
    [ 50.804] (II) NOUVEAU(0): Ranges: V min: 0 V max: 61 Hz, H min: 29 H max: 47 kHz, PixClock max 85 MHz
    [ 50.804] (II) NOUVEAU(0): EDID (in hex):
    [ 50.804] (II) NOUVEAU(0): 00ffffffffffff004dd9fa0500000000
    [ 50.804] (II) NOUVEAU(0): 2d0c0104901f1100eaa8e099574b9225
    [ 50.804] (II) NOUVEAU(0): 1c505400000001010101010101010101
    [ 50.804] (II) NOUVEAU(0): 010101010101201c56ae50000c303a3a
    [ 50.804] (II) NOUVEAU(0): 440035ae10000018000000fc004e7669
    [ 50.804] (II) NOUVEAU(0): 6469612044656661756c000000fc0074
    [ 50.804] (II) NOUVEAU(0): 20466c61742050616e656c00000000fd
    [ 50.804] (II) NOUVEAU(0): 00003d1d2f0800002020202020000003
    [ 50.804] (II) NOUVEAU(0): EDID vendor "SNY", prod id 1530
    [ 50.804] (II) NOUVEAU(0): Using EDID range info for horizontal sync
    [ 50.804] (II) NOUVEAU(0): Using EDID range info for vertical refresh
    [ 50.804] (II) NOUVEAU(0): Printing DDC gathered Modelines:
    [ 50.804] (II) NOUVEAU(0): Modeline "1366x768"x0.0 72.00 1366 1424 1482 1540 768 772 776 780 -hsync -vsync (46.8 kHz)
    [ 50.804] (II) NOUVEAU(0): Printing probed modes for output LVDS-1
    [ 50.804] (II) NOUVEAU(0): Modeline "1366x768"x59.9 72.00 1366 1424 1482 1540 768 772 776 780 -hsync -vsync (46.8 kHz)
    [ 50.804] (II) NOUVEAU(0): Modeline "1024x768"x59.9 63.50 1024 1072 1176 1328 768 771 775 798 -hsync +vsync (47.8 kHz)
    [ 50.804] (II) NOUVEAU(0): Modeline "800x600"x59.9 38.25 800 832 912 1024 600 603 607 624 -hsync +vsync (37.4 kHz)
    [ 50.804] (II) NOUVEAU(0): Modeline "640x480"x59.4 23.75 640 664 720 800 480 483 487 500 -hsync +vsync (29.7 kHz)
    [ 50.804] (II) NOUVEAU(0): Modeline "720x400"x59.6 22.25 720 744 808 896 400 403 413 417 -hsync +vsync (24.8 kHz)
    [ 50.804] (II) NOUVEAU(0): Modeline "640x400"x60.0 20.00 640 664 720 800 400 403 409 417 -hsync +vsync (25.0 kHz)
    [ 50.804] (II) NOUVEAU(0): Modeline "640x350"x59.8 17.50 640 664 720 800 350 353 363 366 -hsync +vsync (21.9 kHz)
    [ 50.903] (II) NOUVEAU(0): EDID for output VGA-1
    [ 50.912] (II) NOUVEAU(0): EDID for output HDMI-1
    [ 50.912] (II) NOUVEAU(0): Output LVDS-1 connected
    [ 50.912] (II) NOUVEAU(0): Output VGA-1 disconnected
    [ 50.912] (II) NOUVEAU(0): Output HDMI-1 disconnected
    [ 50.912] (II) NOUVEAU(0): Using exact sizes for initial modes
    [ 50.912] (II) NOUVEAU(0): Output LVDS-1 using initial mode 1366x768
    [ 50.912] (II) NOUVEAU(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 50.912] (--) NOUVEAU(0): Virtual size is 1366x768 (pitch 1376)
    [ 50.912] (**) NOUVEAU(0): Driver mode "1366x768": 72.0 MHz (scaled from 0.0 MHz), 46.8 kHz, 59.9 Hz
    [ 50.912] (II) NOUVEAU(0): Modeline "1366x768"x59.9 72.00 1366 1424 1482 1540 768 772 776 780 -hsync -vsync (46.8 kHz)
    [ 50.912] (**) NOUVEAU(0): Driver mode "1024x768": 63.5 MHz (scaled from 0.0 MHz), 47.8 kHz, 59.9 Hz
    [ 50.912] (II) NOUVEAU(0): Modeline "1024x768"x59.9 63.50 1024 1072 1176 1328 768 771 775 798 -hsync +vsync (47.8 kHz)
    [ 50.912] (**) NOUVEAU(0): Driver mode "800x600": 38.2 MHz (scaled from 0.0 MHz), 37.4 kHz, 59.9 Hz
    [ 50.912] (II) NOUVEAU(0): Modeline "800x600"x59.9 38.25 800 832 912 1024 600 603 607 624 -hsync +vsync (37.4 kHz)
    [ 50.912] (**) NOUVEAU(0): Driver mode "640x480": 23.8 MHz (scaled from 0.0 MHz), 29.7 kHz, 59.4 Hz
    [ 50.912] (II) NOUVEAU(0): Modeline "640x480"x59.4 23.75 640 664 720 800 480 483 487 500 -hsync +vsync (29.7 kHz)
    [ 50.912] (**) NOUVEAU(0): Driver mode "720x400": 22.2 MHz (scaled from 0.0 MHz), 24.8 kHz, 59.6 Hz
    [ 50.912] (II) NOUVEAU(0): Modeline "720x400"x59.6 22.25 720 744 808 896 400 403 413 417 -hsync +vsync (24.8 kHz)
    [ 50.912] (**) NOUVEAU(0): Driver mode "640x400": 20.0 MHz (scaled from 0.0 MHz), 25.0 kHz, 60.0 Hz
    [ 50.912] (II) NOUVEAU(0): Modeline "640x400"x60.0 20.00 640 664 720 800 400 403 409 417 -hsync +vsync (25.0 kHz)
    [ 50.912] (**) NOUVEAU(0): Driver mode "640x350": 17.5 MHz (scaled from 0.0 MHz), 21.9 kHz, 59.8 Hz
    [ 50.912] (II) NOUVEAU(0): Modeline "640x350"x59.8 17.50 640 664 720 800 350 353 363 366 -hsync +vsync (21.9 kHz)
    [ 50.912] (**) NOUVEAU(0): Display dimensions: (310, 170) mm
    [ 50.912] (**) NOUVEAU(0): DPI set to (111, 114)
    [ 50.912] (II) Loading sub module "wfb"
    [ 50.912] (II) LoadModule: "wfb"
    [ 50.912] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 50.972] (II) Module wfb: vendor="X.Org Foundation"
    [ 50.972] compiled for 1.9.2, module version = 1.0.0
    [ 50.972] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 50.972] (II) Loading sub module "fb"
    [ 50.972] (II) LoadModule: "fb"
    [ 50.972] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 50.992] (II) Module fb: vendor="X.Org Foundation"
    [ 50.992] compiled for 1.9.2, module version = 1.0.0
    [ 50.992] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 50.992] (II) Loading sub module "exa"
    [ 50.992] (II) LoadModule: "exa"
    [ 50.992] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 50.993] (II) Module exa: vendor="X.Org Foundation"
    [ 50.993] compiled for 1.9.2, module version = 2.5.0
    [ 50.993] ABI class: X.Org Video Driver, version 8.0
    [ 50.993] (II) Loading sub module "shadowfb"
    [ 50.993] (II) LoadModule: "shadowfb"
    [ 50.994] (II) Loading /usr/lib/xorg/modules/libshadowfb.so
    [ 50.994] (II) Module shadowfb: vendor="X.Org Foundation"
    [ 50.994] compiled for 1.9.2, module version = 1.0.0
    [ 50.994] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 50.994] (--) Depth 24 pixmap format is 32 bpp
    [ 50.999] (II) NOUVEAU(0): Opened GPU channel 2
    [ 50.999] (II) NOUVEAU(0): [DRI2] Setup complete
    [ 50.999] (II) NOUVEAU(0): [DRI2] DRI driver: nouveau
    [ 50.999] (II) NOUVEAU(0): GART: 512MiB available
    [ 51.001] (II) NOUVEAU(0): GART: Allocated 16MiB as a scratch buffer
    [ 51.027] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 51.027] (II) EXA(0): Driver registered support for the following operations:
    [ 51.027] (II) Solid
    [ 51.027] (II) Copy
    [ 51.027] (II) Composite (RENDER acceleration)
    [ 51.027] (II) UploadToScreen
    [ 51.027] (II) DownloadFromScreen
    [ 51.027] (==) NOUVEAU(0): Backing store disabled
    [ 51.027] (==) NOUVEAU(0): Silken mouse enabled
    [ 51.029] (II) NOUVEAU(0): [XvMC] Associated with Nouveau GeForce 8/9 Textured Video.
    [ 51.029] (II) NOUVEAU(0): [XvMC] Extension initialized.
    [ 51.029] (==) NOUVEAU(0): DPMS enabled
    [ 51.029] (II) NOUVEAU(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 51.029] (--) RandR disabled
    [ 51.029] (II) Initializing built-in extension Generic Event Extension
    [ 51.029] (II) Initializing built-in extension SHAPE
    [ 51.029] (II) Initializing built-in extension MIT-SHM
    [ 51.029] (II) Initializing built-in extension XInputExtension
    [ 51.029] (II) Initializing built-in extension XTEST
    [ 51.029] (II) Initializing built-in extension BIG-REQUESTS
    [ 51.029] (II) Initializing built-in extension SYNC
    [ 51.029] (II) Initializing built-in extension XKEYBOARD
    [ 51.029] (II) Initializing built-in extension XC-MISC
    [ 51.029] (II) Initializing built-in extension SECURITY
    [ 51.029] (II) Initializing built-in extension XINERAMA
    [ 51.029] (II) Initializing built-in extension XFIXES
    [ 51.029] (II) Initializing built-in extension RENDER
    [ 51.029] (II) Initializing built-in extension RANDR
    [ 51.029] (II) Initializing built-in extension COMPOSITE
    [ 51.029] (II) Initializing built-in extension DAMAGE
    [ 51.225] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 51.225] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 51.225] (II) AIGLX: enabled GLX_SGI_make_current_read
    [ 51.225] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 51.225] (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/nouveau_dri.so
    [ 51.225] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 51.227] (II) NOUVEAU(0): NVEnterVT is called.
    [ 51.245] (II) NOUVEAU(0): Setting screen physical size to 361 x 203
    [ 51.245] resize called 1366 768
    [ 51.660] (II) config/udev: Adding input device Sony Vaio Keys (/dev/input/event5)
    [ 51.660] (**) Sony Vaio Keys: Applying InputClass "evdev keyboard catchall"
    [ 51.660] (II) LoadModule: "evdev"
    [ 51.660] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 51.676] (II) Module evdev: vendor="X.Org Foundation"
    [ 51.676] compiled for 1.9.0, module version = 2.5.0
    [ 51.676] Module class: X.Org XInput Driver
    [ 51.676] ABI class: X.Org XInput driver, version 11.0
    [ 51.676] (**) Sony Vaio Keys: always reports core events
    [ 51.676] (**) Sony Vaio Keys: Device: "/dev/input/event5"
    [ 51.700] (--) Sony Vaio Keys: Found keys
    [ 51.700] (II) Sony Vaio Keys: Configuring as keyboard
    [ 51.700] (II) XINPUT: Adding extended input device "Sony Vaio Keys" (type: KEYBOARD)
    [ 51.700] (**) Option "xkb_rules" "evdev"
    [ 51.700] (**) Option "xkb_model" "evdev"
    [ 51.700] (**) Option "xkb_layout" "us"
    [ 51.723] (II) config/udev: Adding input device Video Bus (/dev/input/event4)
    [ 51.723] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 51.723] (**) Video Bus: always reports core events
    [ 51.723] (**) Video Bus: Device: "/dev/input/event4"
    [ 51.726] (--) Video Bus: Found keys
    [ 51.726] (II) Video Bus: Configuring as keyboard
    [ 51.726] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
    [ 51.726] (**) Option "xkb_rules" "evdev"
    [ 51.726] (**) Option "xkb_model" "evdev"
    [ 51.726] (**) Option "xkb_layout" "us"
    [ 51.743] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 51.743] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 51.743] (**) Power Button: always reports core events
    [ 51.743] (**) Power Button: Device: "/dev/input/event2"
    [ 51.756] (--) Power Button: Found keys
    [ 51.756] (II) Power Button: Configuring as keyboard
    [ 51.756] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 51.756] (**) Option "xkb_rules" "evdev"
    [ 51.756] (**) Option "xkb_model" "evdev"
    [ 51.756] (**) Option "xkb_layout" "us"
    [ 51.757] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
    [ 51.757] (II) No input driver/identifier specified (ignoring)
    [ 51.760] (II) config/udev: Adding input device UVC Camera (05ca:18b5) (/dev/input/event7)
    [ 51.760] (**) UVC Camera (05ca:18b5): Applying InputClass "evdev keyboard catchall"
    [ 51.760] (**) UVC Camera (05ca:18b5): always reports core events
    [ 51.760] (**) UVC Camera (05ca:18b5): Device: "/dev/input/event7"
    [ 51.783] (--) UVC Camera (05ca:18b5): Found keys
    [ 51.783] (II) UVC Camera (05ca:18b5): Configuring as keyboard
    [ 51.783] (II) XINPUT: Adding extended input device "UVC Camera (05ca:18b5)" (type: KEYBOARD)
    [ 51.783] (**) Option "xkb_rules" "evdev"
    [ 51.783] (**) Option "xkb_model" "evdev"
    [ 51.783] (**) Option "xkb_layout" "us"
    [ 51.784] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event9)
    [ 51.784] (II) No input driver/identifier specified (ignoring)
    [ 51.786] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event10)
    [ 51.786] (**) Logitech USB Receiver: Applying InputClass "evdev pointer catchall"
    [ 51.786] (**) Logitech USB Receiver: always reports core events
    [ 51.786] (**) Logitech USB Receiver: Device: "/dev/input/event10"
    [ 51.800] (--) Logitech USB Receiver: Found 20 mouse buttons
    [ 51.800] (--) Logitech USB Receiver: Found scroll wheel(s)
    [ 51.800] (--) Logitech USB Receiver: Found relative axes
    [ 51.800] (--) Logitech USB Receiver: Found x and y relative axes
    [ 51.800] (II) Logitech USB Receiver: Configuring as mouse
    [ 51.800] (**) Logitech USB Receiver: YAxisMapping: buttons 4 and 5
    [ 51.800] (**) Logitech USB Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 51.800] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: MOUSE)
    [ 51.800] (**) Logitech USB Receiver: (accel) keeping acceleration scheme 1
    [ 51.800] (**) Logitech USB Receiver: (accel) acceleration profile 0
    [ 51.800] (**) Logitech USB Receiver: (accel) acceleration factor: 2.000
    [ 51.800] (**) Logitech USB Receiver: (accel) acceleration threshold: 4
    [ 51.800] (II) Logitech USB Receiver: initialized for relative axes.
    [ 51.800] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/mouse2)
    [ 51.800] (II) No input driver/identifier specified (ignoring)
    [ 51.801] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event11)
    [ 51.801] (**) Logitech USB Receiver: Applying InputClass "evdev keyboard catchall"
    [ 51.801] (**) Logitech USB Receiver: always reports core events
    [ 51.801] (**) Logitech USB Receiver: Device: "/dev/input/event11"
    [ 51.816] (--) Logitech USB Receiver: Found 1 mouse buttons
    [ 51.816] (--) Logitech USB Receiver: Found scroll wheel(s)
    [ 51.816] (--) Logitech USB Receiver: Found relative axes
    [ 51.816] (--) Logitech USB Receiver: Found absolute axes
    [ 51.816] (--) Logitech USB Receiver: Found keys
    [ 51.816] (II) Logitech USB Receiver: Configuring as mouse
    [ 51.816] (II) Logitech USB Receiver: Configuring as keyboard
    [ 51.816] (**) Logitech USB Receiver: YAxisMapping: buttons 4 and 5
    [ 51.816] (**) Logitech USB Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 51.816] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: KEYBOARD)
    [ 51.816] (**) Option "xkb_rules" "evdev"
    [ 51.816] (**) Option "xkb_model" "evdev"
    [ 51.816] (**) Option "xkb_layout" "us"
    [ 51.816] (EE) Logitech USB Receiver: failed to initialize for relative axes.
    [ 51.817] (II) Logitech USB Receiver: initialized for absolute axes.
    [ 51.821] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 51.821] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 51.821] (**) AT Translated Set 2 keyboard: always reports core events
    [ 51.821] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 51.843] (--) AT Translated Set 2 keyboard: Found keys
    [ 51.843] (II) AT Translated Set 2 keyboard: Configuring as keyboard
    [ 51.843] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    [ 51.843] (**) Option "xkb_rules" "evdev"
    [ 51.843] (**) Option "xkb_model" "evdev"
    [ 51.843] (**) Option "xkb_layout" "us"
    [ 51.843] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event8)
    [ 51.843] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 51.843] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 51.844] (**) SynPS/2 Synaptics TouchPad: Device: "/dev/input/event8"
    [ 51.856] (--) SynPS/2 Synaptics TouchPad: Found 3 mouse buttons
    [ 51.856] (--) SynPS/2 Synaptics TouchPad: Found absolute axes
    [ 51.856] (--) SynPS/2 Synaptics TouchPad: Found x and y absolute axes
    [ 51.856] (--) SynPS/2 Synaptics TouchPad: Found absolute touchpad.
    [ 51.856] (II) SynPS/2 Synaptics TouchPad: Configuring as touchpad
    [ 51.856] (**) SynPS/2 Synaptics TouchPad: YAxisMapping: buttons 4 and 5
    [ 51.856] (**) SynPS/2 Synaptics TouchPad: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 51.856] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD)
    [ 51.856] (II) SynPS/2 Synaptics TouchPad: initialized for absolute axes.
    [ 51.857] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse1)
    [ 51.857] (II) No input driver/identifier specified (ignoring)
    [ 51.857] (II) config/udev: Adding input device PC Speaker (/dev/input/event3)
    [ 51.857] (II) No input driver/identifier specified (ignoring)
    [ 51.858] (II) config/udev: Adding input device Sony Vaio Jogdial (/dev/input/event6)
    [ 51.858] (II) No input driver/identifier specified (ignoring)
    [ 51.858] (II) config/udev: Adding input device Sony Vaio Jogdial (/dev/input/mouse0)
    [ 51.858] (II) No input driver/identifier specified (ignoring)
    [ 80.420] (II) NOUVEAU(0): EDID vendor "SNY", prod id 1530
    [ 80.420] (II) NOUVEAU(0): Using hsync ranges from config file
    [ 80.420] (II) NOUVEAU(0): Using vrefresh ranges from config file
    [ 80.420] (II) NOUVEAU(0): Printing DDC gathered Modelines:
    [ 80.420] (II) NOUVEAU(0): Modeline "1366x768"x0.0 72.00 1366 1424 1482 1540 768 772 776 780 -hsync -vsync (46.8 kHz)
    dmesg.log
    Initializing cgroup subsys cpuset
    Initializing cgroup subsys cpu
    Linux version 2.6.36-ARCH (tobias@T-POWA-LX) (gcc version 4.5.1 (GCC) ) #1 SMP PREEMPT Wed Nov 24 00:39:57 CET 2010
    Command line: root=/dev/sda5 ro
    BIOS-provided physical RAM map:
    BIOS-e820: 0000000000000000 - 000000000009bc00 (usable)
    BIOS-e820: 000000000009bc00 - 00000000000a0000 (reserved)
    BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    BIOS-e820: 0000000000100000 - 00000000bdea7000 (usable)
    BIOS-e820: 00000000bdea7000 - 00000000bdecf000 (ACPI NVS)
    BIOS-e820: 00000000bdecf000 - 00000000bdee0000 (reserved)
    BIOS-e820: 00000000bdee0000 - 00000000bdee1000 (ACPI NVS)
    BIOS-e820: 00000000bdee1000 - 00000000bdf08000 (reserved)
    BIOS-e820: 00000000bdf08000 - 00000000bdf09000 (ACPI NVS)
    BIOS-e820: 00000000bdf09000 - 00000000bdf0a000 (reserved)
    BIOS-e820: 00000000bdf0a000 - 00000000bdf14000 (ACPI data)
    BIOS-e820: 00000000bdf14000 - 00000000bdf1a000 (ACPI NVS)
    BIOS-e820: 00000000bdf1a000 - 00000000bdf39000 (reserved)
    BIOS-e820: 00000000bdf39000 - 00000000be000000 (usable)
    BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
    BIOS-e820: 00000000ffa00000 - 00000000ffc00000 (reserved)
    BIOS-e820: 00000000ffe00000 - 0000000100000000 (reserved)
    BIOS-e820: 0000000100000000 - 0000000140000000 (usable)
    NX (Execute Disable) protection: active
    DMI 2.4 present.
    AMI BIOS detected: BIOS may corrupt low RAM, working around it.
    e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved)
    e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    No AGP bridge found
    last_pfn = 0x140000 max_arch_pfn = 0x400000000
    MTRR default type: uncachable
    MTRR fixed ranges enabled:
    00000-9FFFF write-back
    A0000-BFFFF uncachable
    C0000-CFFFF write-protect
    D0000-E7FFF write-through
    E8000-FFFFF write-protect
    MTRR variable ranges enabled:
    0 base 000000000 mask F80000000 write-back
    1 base 080000000 mask FC0000000 write-back
    2 base 0BE000000 mask FFE000000 uncachable
    3 base 100000000 mask FC0000000 write-back
    4 disabled
    5 disabled
    6 disabled
    x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    e820 update range: 00000000be000000 - 0000000100000000 (usable) ==> (reserved)
    last_pfn = 0xbe000 max_arch_pfn = 0x400000000
    Scanning 0 areas for low memory corruption
    modified physical RAM map:
    modified: 0000000000000000 - 0000000000010000 (reserved)
    modified: 0000000000010000 - 000000000009bc00 (usable)
    modified: 000000000009bc00 - 00000000000a0000 (reserved)
    modified: 00000000000e0000 - 0000000000100000 (reserved)
    modified: 0000000000100000 - 00000000bdea7000 (usable)
    modified: 00000000bdea7000 - 00000000bdecf000 (ACPI NVS)
    modified: 00000000bdecf000 - 00000000bdee0000 (reserved)
    modified: 00000000bdee0000 - 00000000bdee1000 (ACPI NVS)
    modified: 00000000bdee1000 - 00000000bdf08000 (reserved)
    modified: 00000000bdf08000 - 00000000bdf09000 (ACPI NVS)
    modified: 00000000bdf09000 - 00000000bdf0a000 (reserved)
    modified: 00000000bdf0a000 - 00000000bdf14000 (ACPI data)
    modified: 00000000bdf14000 - 00000000bdf1a000 (ACPI NVS)
    modified: 00000000bdf1a000 - 00000000bdf39000 (reserved)
    modified: 00000000bdf39000 - 00000000be000000 (usable)
    modified: 00000000e0000000 - 00000000f0000000 (reserved)
    modified: 00000000ffa00000 - 00000000ffc00000 (reserved)
    modified: 00000000ffe00000 - 0000000100000000 (reserved)
    modified: 0000000100000000 - 0000000140000000 (usable)
    initial memory mapped : 0 - 20000000
    found SMP MP-table at [ffff8800000fd690] fd690
    init_memory_mapping: 0000000000000000-00000000be000000
    0000000000 - 00be000000 page 2M
    kernel direct mapping tables up to be000000 @ 16000-1a000
    init_memory_mapping: 0000000100000000-0000000140000000
    0100000000 - 0140000000 page 2M
    kernel direct mapping tables up to 140000000 @ 18000-1e000
    RAMDISK: 37e39000 - 37ff0000
    ACPI: RSDP 00000000000f03b0 00024 (v02 Sony)
    ACPI: XSDT 00000000bdf12f10 0005C (v01 Sony VAIO 20090922 MSFT 00010013)
    ACPI: FACP 00000000bdf08a90 000F4 (v04 Sony VAIO 20090922 MSFT 00010013)
    ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! (20100702/tbfadt-369)
    ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBDF19E40/0x00000000BDF19D40, using 32 (20100702/tbfadt-486)
    ACPI: DSDT 00000000bdf0a010 06831 (v01 Sony VAIO 20090922 INTL 20051117)
    ACPI: FACS 00000000bdf19e40 00040
    ACPI: APIC 00000000bdf11f10 0006C (v02 Sony VAIO 20090922 MSFT 00010013)
    ACPI: MCFG 00000000bdf18c90 0003C (v01 Sony VAIO 20090922 MSFT 00000097)
    ACPI: HPET 00000000bdf18c10 00038 (v01 Sony VAIO 20090922 MSFT 00010013)
    ACPI: SLIC 00000000bdf14c10 00176 (v01 Sony VAIO 20090922 Sony 01000000)
    ACPI: SSDT 00000000bdee0590 00505 (v01 Sony VAIO 20090922 INTL 20051117)
    ACPI: SSDT 00000000bdecbc10 002E4 (v01 Sony VAIO 20090922 INTL 20051117)
    ACPI: Local APIC address 0xfee00000
    [ffffea0000000000-ffffea00045fffff] PMD -> [ffff880002000000-ffff8800057fffff] on node 0
    Zone PFN ranges:
    DMA 0x00000010 -> 0x00001000
    DMA32 0x00001000 -> 0x00100000
    Normal 0x00100000 -> 0x00140000
    Movable zone start PFN for each node
    early_node_map[4] active PFN ranges
    0: 0x00000010 -> 0x0000009b
    0: 0x00000100 -> 0x000bdea7
    0: 0x000bdf39 -> 0x000be000
    0: 0x00100000 -> 0x00140000
    On node 0 totalpages: 1040121
    DMA zone: 56 pages used for memmap
    DMA zone: 0 pages reserved
    DMA zone: 3923 pages, LIFO batch:0
    DMA32 zone: 14280 pages used for memmap
    DMA32 zone: 759718 pages, LIFO batch:31
    Normal zone: 3584 pages used for memmap
    Normal zone: 258560 pages, LIFO batch:31
    ACPI: PM-Timer IO Port: 0x408
    ACPI: Local APIC address 0xfee00000
    ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] disabled)
    ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] disabled)
    ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    ACPI: IRQ0 used by override.
    ACPI: IRQ2 used by override.
    ACPI: IRQ9 used by override.
    Using ACPI (MADT) for SMP configuration information
    ACPI: HPET id: 0x8086a301 base: 0xfed00000
    SMP: Allowing 4 CPUs, 2 hotplug CPUs
    nr_irqs_gsi: 40
    early_res array is doubled to 64 at [19300 - 19aff]
    PM: Registered nosave memory: 000000000009b000 - 000000000009c000
    PM: Registered nosave memory: 000000000009c000 - 00000000000a0000
    PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    PM: Registered nosave memory: 00000000bdea7000 - 00000000bdecf000
    PM: Registered nosave memory: 00000000bdecf000 - 00000000bdee0000
    PM: Registered nosave memory: 00000000bdee0000 - 00000000bdee1000
    PM: Registered nosave memory: 00000000bdee1000 - 00000000bdf08000
    PM: Registered nosave memory: 00000000bdf08000 - 00000000bdf09000
    PM: Registered nosave memory: 00000000bdf09000 - 00000000bdf0a000
    PM: Registered nosave memory: 00000000bdf0a000 - 00000000bdf14000
    PM: Registered nosave memory: 00000000bdf14000 - 00000000bdf1a000
    PM: Registered nosave memory: 00000000bdf1a000 - 00000000bdf39000
    PM: Registered nosave memory: 00000000be000000 - 00000000e0000000
    PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
    PM: Registered nosave memory: 00000000f0000000 - 00000000ffa00000
    PM: Registered nosave memory: 00000000ffa00000 - 00000000ffc00000
    PM: Registered nosave memory: 00000000ffc00000 - 00000000ffe00000
    PM: Registered nosave memory: 00000000ffe00000 - 0000000100000000
    Allocating PCI resources starting at be000000 (gap: be000000:22000000)
    Booting paravirtualized kernel on bare hardware
    setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
    PERCPU: Embedded 28 pages/cpu @ffff880001a00000 s86016 r8192 d20480 u524288
    early_res array is doubled to 128 at [19b00 - 1aaff]
    pcpu-alloc: s86016 r8192 d20480 u524288 alloc=1*2097152
    pcpu-alloc: [0] 0 1 2 3
    Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1022201
    Kernel command line: root=/dev/sda5 ro
    PID hash table entries: 4096 (order: 3, 32768 bytes)
    Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240
    Checking aperture...
    No AGP bridge found
    Calgary: detecting Calgary via BIOS EBDA area
    Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    Subtract (69 early reservations)
    #1 [0001000000 - 00017f99a8] TEXT DATA BSS
    #2 [0037e39000 - 0037ff0000] RAMDISK
    #3 [00017fa000 - 00017fa1f8] BRK
    #4 [00000fd6a0 - 0000100000] BIOS reserved
    #5 [00000fd690 - 00000fd6a0] MP-table mpf
    #6 [000009bc00 - 00000fd410] BIOS reserved
    #7 [00000fd624 - 00000fd690] BIOS reserved
    #8 [00000fd410 - 00000fd624] MP-table mpc
    #9 [0000010000 - 0000012000] TRAMPOLINE
    #10 [0000012000 - 0000016000] ACPI WAKEUP
    #11 [0000016000 - 0000018000] PGTABLE
    #12 [0000018000 - 0000019000] PGTABLE
    #13 [00017fa200 - 00017fb200] BOOTMEM
    #14 [0000019000 - 0000019300] BOOTMEM
    #15 [0001ffc000 - 0001ffd000] BOOTMEM
    #16 [0001ffd000 - 0001ffe000] BOOTMEM
    #17 [0002000000 - 0005800000] MEMMAP 0
    #18 [00017fb200 - 0001813200] BOOTMEM
    #19 [0001813200 - 000182b200] BOOTMEM
    #20 [000182b200 - 0001843200] BOOTMEM
    #21 [0001844000 - 0001845000] BOOTMEM
    #22 [00017f99c0 - 00017f9a01] BOOTMEM
    #23 [00017f9a40 - 00017f9a83] BOOTMEM
    #24 [00017f9ac0 - 00017f9ee8] BOOTMEM
    #25 [00017f9f00 - 00017f9f68] BOOTMEM
    #26 [00017f9f80 - 00017f9fe8] BOOTMEM
    #27 [0001843200 - 0001843268] BOOTMEM
    #28 [0001843280 - 00018432e8] BOOTMEM
    #29 [0001843300 - 0001843368] BOOTMEM
    #30 [0001843380 - 00018433e8] BOOTMEM
    #31 [0001843400 - 0001843468] BOOTMEM
    #32 [0001843480 - 00018434e8] BOOTMEM
    #33 [0001843500 - 0001843568] BOOTMEM
    #34 [0001843580 - 00018435e8] BOOTMEM
    #35 [0001843600 - 0001843668] BOOTMEM
    #36 [0001843680 - 00018436e8] BOOTMEM
    #37 [0001843700 - 0001843768] BOOTMEM
    #38 [0001843780 - 00018437e8] BOOTMEM
    #39 [0001843800 - 0001843868] BOOTMEM
    #40 [0001843880 - 00018438e8] BOOTMEM
    #41 [0001843900 - 0001843968] BOOTMEM
    #42 [0001843980 - 00018439e8] BOOTMEM
    #43 [0001843a00 - 0001843a20] BOOTMEM
    #44 [0001843a40 - 0001843a60] BOOTMEM
    #45 [0001843a80 - 0001843aa0] BOOTMEM
    #46 [0001843ac0 - 0001843ad2] BOOTMEM
    #47 [0001843b00 - 0001843b12] BOOTMEM
    #48 [0001a00000 - 0001a1c000] BOOTMEM
    #49 [0001a80000 - 0001a9c000] BOOTMEM
    #50 [0001b00000 - 0001b1c000] BOOTMEM
    #51 [0001b80000 - 0001b9c000] BOOTMEM
    #52 [0001843b40 - 0001843b48] BOOTMEM
    #53 [0001843b80 - 0001843b88] BOOTMEM
    #54 [0001843bc0 - 0001843bd0] BOOTMEM
    #55 [0001843c00 - 0001843c20] BOOTMEM
    #56 [0001843c40 - 0001843d70] BOOTMEM
    #57 [0001843d80 - 0001843dd0] BOOTMEM
    #58 [0001843e00 - 0001843e50] BOOTMEM
    #59 [0001845000 - 000184d000] BOOTMEM
    #60 [0001b9c000 - 0001f9c000] BOOTMEM
    #61 [0005800000 - 0005a00000] BOOTMEM
    #62 [0001843e80 - 0001843e88] BOOTMEM
    #63 [0001843ec0 - 0001843ec8] BOOTMEM
    #64 [000184d000 - 000184d240] BOOTMEM
    #65 [0005a00000 - 0009a00000] BOOTMEM
    #66 [000184d240 - 000186d240] BOOTMEM
    #67 [000186d240 - 00018ad240] BOOTMEM
    #68 [000001ab00 - 0000022b00] BOOTMEM
    Memory: 4020284k/5242880k available (3682k kernel code, 1082396k absent, 140200k reserved, 2083k data, 504k init)
    SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    Hierarchical RCU implementation.
    RCU-based detection of stalled CPUs is disabled.
    Verbose stalled-CPUs detection is disabled.
    NR_IRQS:2304
    Extended CMOS year: 2000
    Console: colour VGA+ 80x25
    console [tty0] enabled
    allocated 41943040 bytes of page_cgroup
    please try 'cgroup_disable=memory' option if you don't want memory cgroups
    hpet clockevent registered
    Fast TSC calibration using PIT
    Detected 2526.841 MHz processor.
    Calibrating delay loop (skipped), value calculated using timer frequency.. 5055.25 BogoMIPS (lpj=8422803)
    pid_max: default: 32768 minimum: 301
    Security Framework initialized
    TOMOYO Linux initialized
    AppArmor: AppArmor disabled by boot time parameter
    Mount-cache hash table entries: 256
    Initializing cgroup subsys ns
    Initializing cgroup subsys cpuacct
    Initializing cgroup subsys memory
    Initializing cgroup subsys devices
    Initializing cgroup subsys freezer
    Initializing cgroup subsys net_cls
    Initializing cgroup subsys blkio
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 0
    mce: CPU supports 6 MCE banks
    CPU0: Thermal monitoring enabled (TM2)
    using mwait in idle threads.
    Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver.
    ... version: 2
    ... bit width: 40
    ... generic registers: 2
    ... value mask: 000000ffffffffff
    ... max period: 000000007fffffff
    ... fixed-purpose events: 3
    ... event mask: 0000000700000003
    ACPI: Core revision 20100702
    Setting APIC routing to flat
    ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
    CPU0: Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz stepping 0a
    NMI watchdog enabled, takes one hw-pmu counter.
    Booting Node 0, Processors #1
    NMI watchdog enabled, takes one hw-pmu counter.
    Brought up 2 CPUs
    Total of 2 processors activated (10111.72 BogoMIPS).
    devtmpfs: initialized
    NET: Registered protocol family 16
    ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    ACPI: bus type pci registered
    PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    PCI: Using configuration type 1 for base access
    bio: create slab <bio-0> at 0
    ACPI: EC: Look up EC in DSDT
    ACPI: Executed 1 blocks of module-level executable AML code
    ACPI: BIOS _OSI(Linux) query ignored
    ACPI: SSDT 00000000bdee4c10 00265 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    ACPI: Dynamic OEM Table Load:
    ACPI: SSDT (null) 00265 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    ACPI: SSDT 00000000bdee2810 007A2 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    ACPI: Dynamic OEM Table Load:
    ACPI: SSDT (null) 007A2 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    ACPI: SSDT 00000000bdee3d90 000FD (v01 PmRef ApIst 00003000 INTL 20051117)
    ACPI: Dynamic OEM Table Load:
    ACPI: SSDT (null) 000FD (v01 PmRef ApIst 00003000 INTL 20051117)
    ACPI: SSDT 00000000bdee1f90 00047 (v01 PmRef ApCst 00003000 INTL 20051117)
    ACPI: Dynamic OEM Table Load:
    ACPI: SSDT (null) 00047 (v01 PmRef ApCst 00003000 INTL 20051117)
    ACPI: Interpreter enabled
    ACPI: (supports S0 S3 S4 S5)
    ACPI: Using IOAPIC for interrupt routing
    ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    ACPI: No dock devices found.
    PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    \_SB_.PCI0:_OSC invalid UUID
    _OSC request data:1 8 1f
    ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
    pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
    pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff]
    pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
    pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
    pci_root PNP0A08:00: host bridge window [mem 0x000dc000-0x000dffff]
    pci_root PNP0A08:00: host bridge window [mem 0x000e0000-0x000e3fff]
    pci_root PNP0A08:00: host bridge window [mem 0x000e4000-0x000e7fff]
    pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xfebfffff]
    DMAR: Forcing write-buffer flush capability
    DMAR: Disabling IOMMU for graphics on this chipset
    pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:01.0: PME# disabled
    pci 0000:00:1a.0: reg 20: [io 0xe0e0-0xe0ff]
    pci 0000:00:1a.1: reg 20: [io 0xe0c0-0xe0df]
    pci 0000:00:1a.2: reg 20: [io 0xe0a0-0xe0bf]
    pci 0000:00:1a.7: reg 10: [mem 0xd8d04c00-0xd8d04fff]
    pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    pci 0000:00:1a.7: PME# disabled
    pci 0000:00:1b.0: reg 10: [mem 0xd8d00000-0xd8d03fff 64bit]
    pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:1b.0: PME# disabled
    pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.0: PME# disabled
    pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.1: PME# disabled
    pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.2: PME# disabled
    pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.3: PME# disabled
    pci 0000:00:1d.0: reg 20: [io 0xe080-0xe09f]
    pci 0000:00:1d.1: reg 20: [io 0xe060-0xe07f]
    pci 0000:00:1d.2: reg 20: [io 0xe040-0xe05f]
    pci 0000:00:1d.7: reg 10: [mem 0xd8d04800-0xd8d04bff]
    pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    pci 0000:00:1d.7: PME# disabled
    pci 0000:00:1f.2: reg 10: [io 0xe130-0xe137]
    pci 0000:00:1f.2: reg 14: [io 0xe120-0xe123]
    pci 0000:00:1f.2: reg 18: [io 0xe110-0xe117]
    pci 0000:00:1f.2: reg 1c: [io 0xe100-0xe103]
    pci 0000:00:1f.2: reg 20: [io 0xe020-0xe03f]
    pci 0000:00:1f.2: reg 24: [mem 0xd8d04000-0xd8d047ff]
    pci 0000:00:1f.2: PME# supported from D3hot
    pci 0000:00:1f.2: PME# disabled
    pci 0000:00:1f.3: reg 10: [mem 0xd8d05000-0xd8d050ff 64bit]
    pci 0000:00:1f.3: reg 20: [io 0xe000-0xe01f]
    pci 0000:01:00.0: reg 10: [mem 0xd2000000-0xd2ffffff]
    pci 0000:01:00.0: reg 14: [mem 0xc0000000-0xcfffffff 64bit pref]
    pci 0000:01:00.0: reg 1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
    pci 0000:01:00.0: reg 24: [io 0xd000-0xd07f]
    pci 0000:01:00.0: reg 30: [mem 0xd3000000-0xd307ffff pref]
    pci 0000:01:00.1: reg 10: [mem 0xd3080000-0xd3083fff]
    pci 0000:00:01.0: PCI bridge to [bus 01-01]
    pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd30fffff]
    pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    pci 0000:02:00.0: reg 10: [mem 0xd7920000-0xd7923fff 64bit]
    pci 0000:02:00.0: reg 18: [io 0xc000-0xc0ff]
    pci 0000:02:00.0: reg 30: [mem 0xd7900000-0xd791ffff pref]
    pci 0000:02:00.0: supports D1 D2
    pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:02:00.0: PME# disabled
    pci 0000:00:1c.0: PCI bridge to [bus 02-02]
    pci 0000:00:1c.0: bridge window [io 0xc000-0xcfff]
    pci 0000:00:1c.0: bridge window [mem 0xd7900000-0xd8cfffff]
    pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    pci 0000:03:00.0: reg 10: [mem 0xd6500000-0xd6501fff 64bit]
    pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
    pci 0000:03:00.0: PME# disabled
    pci 0000:00:1c.1: PCI bridge to [bus 03-03]
    pci 0000:00:1c.1: bridge window [io 0xb000-0xbfff]
    pci 0000:00:1c.1: bridge window [mem 0xd6500000-0xd78fffff]
    pci 0000:00:1c.1: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    pci 0000:04:00.0: reg 10: [mem 0xd5100a00-0xd5100aff]
    pci 0000:04:00.0: supports D1 D2
    pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:04:00.0: PME# disabled
    pci 0000:04:00.1: reg 10: [mem 0xd5100900-0xd51009ff]
    pci 0000:04:00.1: supports D1 D2
    pci 0000:04:00.1: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:04:00.1: PME# disabled
    pci 0000:04:00.3: reg 10: [mem 0xd5100000-0xd51007ff]
    pci 0000:04:00.3: supports D1 D2
    pci 0000:04:00.3: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:04:00.3: PME# disabled
    pci 0000:04:00.4: reg 10: [mem 0xd5100800-0xd51008ff]
    pci 0000:04:00.4: supports D1 D2
    pci 0000:04:00.4: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:04:00.4: PME# disabled
    pci 0000:00:1c.2: PCI bridge to [bus 04-04]
    pci 0000:00:1c.2: bridge window [io 0xa000-0xafff]
    pci 0000:00:1c.2: bridge window [mem 0xd5100000-0xd64fffff]
    pci 0000:00:1c.2: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    pci 0000:00:1c.3: PCI bridge to [bus 05-0c]
    pci 0000:00:1c.3: bridge window [io 0x9000-0x9fff]
    pci 0000:00:1c.3: bridge window [mem 0xd3100000-0xd50fffff]
    pci 0000:00:1c.3: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    pci 0000:00:1e.0: PCI bridge to [bus 0d-0d] (subtractive decode)
    pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled)
    pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000e4000-0x000e7fff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0xc0000000-0xfebfffff] (subtractive decode)
    pci_bus 0000:00: on NUMA node 0
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEGP._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P9._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP03._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT]
    \_SB_.PCI0:_OSC invalid UUID
    _OSC request data:1 19 1f
    ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 *4 5 6 7 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 *5 6 7 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
    ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    ACPI: PCI Interrupt Link [LNKG] (IRQs 1 *3 4 5 6 7 10 12 14 15)
    ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    HEST: Table is not found!
    vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    vgaarb: loaded
    PCI: Using ACPI for IRQ routing
    PCI: pci_cache_line_size set to 64 bytes
    reserve RAM buffer: 000000000009bc00 - 000000000009ffff
    reserve RAM buffer: 00000000bdea7000 - 00000000bfffffff
    reserve RAM buffer: 00000000be000000 - 00000000bfffffff
    NetLabel: Initializing
    NetLabel: domain hash size = 128
    NetLabel: protocols = UNLABELED CIPSOv4
    NetLabel: unlabeled traffic allowed by default
    HPET: 4 timers in total, 0 timers will be used for per-cpu timer
    hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    hpet0: 4 comparators, 64-bit 14.318180 MHz counter
    Switching to clocksource tsc
    pnp: PnP ACPI init
    ACPI: bus type pnp registered
    pnp: PnP ACPI: found 10 devices
    ACPI: ACPI bus type pnp unregistered
    system 00:03: [mem 0xfed00000-0xfed003ff] has been reserved
    system 00:05: [io 0x0680-0x069f] has been reserved
    system 00:05: [io 0x1000-0x100f] has been reserved
    system 00:05: [io 0x0800-0x0803] has been reserved
    system 00:05: [io 0x0400-0x047f] has been reserved
    system 00:05: [io 0x0500-0x053f] has been reserved
    system 00:05: [io 0x164e-0x164f] has been reserved
    system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
    system 00:09: [mem 0xfed14000-0xfed17fff] has been reserved
    system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
    system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
    system 00:09: [mem 0xe0000000-0xefffffff] has been reserved
    system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
    system 00:09: [mem 0xfeb00000-0xfeb03fff] has been reserved
    system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
    pci 0000:00:01.0: BAR 15: assigned [mem 0xd8e00000-0xd8ffffff 64bit pref]
    pci 0000:00:1c.0: BAR 15: assigned [mem 0xd9000000-0xd91fffff 64bit pref]
    pci 0000:00:1c.1: BAR 15: assigned [mem 0xd9200000-0xd93fffff 64bit pref]
    pci 0000:00:1c.2: BAR 15: assigned [mem 0xd9400000-0xd95fffff 64bit pref]
    pci 0000:00:1c.3: BAR 15: assigned [mem 0xd9600000-0xd97fffff 64bit pref]
    pci 0000:00:01.0: PCI bridge to [bus 01-01]
    pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd30fffff]
    pci 0000:00:01.0: bridge window [mem 0xd8e00000-0xd8ffffff 64bit pref]
    pci 0000:00:1c.0: PCI bridge to [bus 02-02]
    pci 0000:00:1c.0: bridge window [io 0xc000-0xcfff]
    pci 0000:00:1c.0: bridge window [mem 0xd7900000-0xd8cfffff]
    pci 0000:00:1c.0: bridge window [mem 0xd9000000-0xd91fffff 64bit pref]
    pci 0000:00:1c.1: PCI bridge to [bus 03-03]
    pci 0000:00:1c.1: bridge window [io 0xb000-0xbfff]
    pci 0000:00:1c.1: bridge window [mem 0xd6500000-0xd78fffff]
    pci 0000:00:1c.1: bridge window [mem 0xd9200000-0xd93fffff 64bit pref]
    pci 0000:00:1c.2: PCI bridge to [bus 04-04]
    pci 0000:00:1c.2: bridge window [io 0xa000-0xafff]
    pci 0000:00:1c.2: bridge window [mem 0xd5100000-0xd64fffff]
    pci 0000:00:1c.2: bridge window [mem 0xd9400000-0xd95fffff 64bit pref]
    pci 0000:00:1c.3: PCI bridge to [bus 05-0c]
    pci 0000:00:1c.3: bridge window [io 0x9000-0x9fff]
    pci 0000:00:1c.3: bridge window [mem 0xd3100000-0xd50fffff]
    pci 0000:00:1c.3: bridge window [mem 0xd9600000-0xd97fffff 64bit pref]
    pci 0000:00:1e.0: PCI bridge to [bus 0d-0d]
    pci 0000:00:1e.0: bridge window [io disabled]
    pci 0000:00:1e.0: bridge window [mem disabled]
    pci 0000:00:1e.0: bridge window [mem pref disabled]
    pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    pci 0000:00:01.0: setting latency timer to 64
    pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    pci 0000:00:1c.0: setting latency timer to 64
    pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16
    pci 0000:00:1c.1: setting latency timer to 64
    pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    pci 0000:00:1c.2: setting latency timer to 64
    pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
    pci 0000:00:1c.3: setting latency timer to 64
    pci 0000:00:1e.0: setting latency timer to 64
    pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
    pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
    pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
    pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
    pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff]
    pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff]
    pci_bus 0000:00: resource 13 [mem 0xc0000000-0xfebfffff]
    pci_bus 0000:01: resource 0 [io 0xd000-0xdfff]
    pci_bus 0000:01: resource 1 [mem 0xc0000000-0xd30fffff]
    pci_bus 0000:01: resource 2 [mem 0xd8e00000-0xd8ffffff 64bit pref]
    pci_bus 0000:02: resource 0 [io 0xc000-0xcfff]
    pci_bus 0000:02: resource 1 [mem 0xd7900000-0xd8cfffff]
    pci_bus 0000:02: resource 2 [mem 0xd9000000-0xd91fffff 64bit pref]
    pci_bus 0000:03: resource 0 [io 0xb000-0xbfff]
    pci_bus 0000:03: resource 1 [mem 0xd6500000-0xd78fffff]
    pci_bus 0000:03: resource 2 [mem 0xd9200000-0xd93fffff 64bit pref]
    pci_bus 0000:04: resource 0 [io 0xa000-0xafff]
    pci_bus 0000:04: resource 1 [mem 0xd5100000-0xd64fffff]
    pci_bus 0000:04: resource 2 [mem 0xd9400000-0xd95fffff 64bit pref]
    pci_bus 0000:05: resource 0 [io 0x9000-0x9fff]
    pci_bus 0000:05: resource 1 [mem 0xd3100000-0xd50fffff]
    pci_bus 0000:05: resource 2 [mem 0xd9600000-0xd97fffff 64bit pref]
    pci_bus 0000:0d: resource 4 [io 0x0000-0x0cf7]
    pci_bus 0000:0d: resource 5 [io 0x0d00-0xffff]
    pci_bus 0000:0d: resource 6 [mem 0x000a0000-0x000bffff]
    pci_bus 0000:0d: resource 7 [mem 0x000d0000-0x000d3fff]
    pci_bus 0000:0d: resource 8 [mem 0x000d4000-0x000d7fff]
    pci_bus 0000:0d: resource 9 [mem 0x000d8000-0x000dbfff]
    pci_bus 0000:0d: resource 10 [mem 0x000dc000-0x000dffff]
    pci_bus 0000:0d: resource 11 [mem 0x000e0000-0x000e3fff]
    pci_bus 0000:0d: resource 12 [mem 0x000e4000-0x000e7fff]
    pci_bus 0000:0d: resource 13 [mem 0xc0000000-0xfebfffff]
    NET: Registered protocol family 2
    IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
    TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
    TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    TCP: Hash tables configured (established 262144 bind 65536)
    TCP reno registered
    UDP hash table entries: 2048 (order: 4, 65536 bytes)
    UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    NET: Registered protocol family 1
    pci 0000:01:00.0: Boot video device
    PCI: CLS 64 bytes, default 64
    Unpacking initramfs...
    Freeing initrd memory: 1756k freed
    PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    Placing 64MB software IO TLB between ffff880005a00000 - ffff880009a00000
    software IO TLB at phys 0x5a00000 - 0x9a00000
    Scanning for low memory corruption every 60 seconds
    audit: initializing netlink socket (disabled)
    type=2000 audit(1290907981.066:1): initialized
    HugeTLB registered 2 MB page size, pre-allocated 0 pages
    VFS: Disk quotas dquot_6.5.2
    Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    msgmni has been set to 7855
    Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    io scheduler noop registered
    io scheduler deadline registered
    io scheduler cfq registered (default)
    \_SB_.PCI0:_OSC invalid UUID
    _OSC request data:1 0 1d
    \_SB_.PCI0:_OSC invalid UUID
    _OSC request data:1 0 1d
    \_SB_.PCI0:_OSC invalid UUID
    _OSC request data:1 0 1d
    \_SB_.PCI0:_OSC invalid UUID
    _OSC request data:1 0 1d
    \_SB_.PCI0:_OSC invalid UUID
    _OSC request data:1 0 1d
    intel_idle: MWAIT substates: 0x3122220
    intel_idle: does not run on family 6 model 23
    ERST: Table is not found!
    Linux agpgart interface v0.103
    Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    i8042.c: Detected active multiplexing controller, rev 1.1.
    serio: i8042 KBD port at 0x60,0x64 irq 1
    serio: i8042 AUX0 port at 0x60,0x64 irq 12
    serio: i8042 AUX1 port at 0x60,0x64 irq 12
    serio: i8042 AUX2 port at 0x60,0x64 irq 12
    serio: i8042 AUX3 port at 0x60,0x64 irq 12
    mice: PS/2 mouse device common for all mice
    rtc_cmos 00:06: RTC can wake from S4
    rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
    rtc0: alarms up to one year, y3k, 242 bytes nvram, hpet irqs
    cpuidle: using governor ladder
    cpuidle: using governor menu
    TCP cubic registered
    NET: Registered protocol family 17
    Registering the dns_resolver key type
    PM: Resume from disk failed.
    registered taskstats version 1
    rtc_cmos 00:06: setting system clock to 2010-11-28 01:33:02 UTC (1290907982)
    Initalizing network drop monitor service
    Freeing unused kernel memory: 504k freed
    udev[38]: starting version 164
    input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    SCSI subsystem initialized
    libata version 3.00 loaded.
    ahci 0000:00:1f.2: version 3.0
    ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    ahci 0000:00:1f.2: irq 40 for MSI/MSI-X
    ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x3 impl SATA mode
    ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ccc ems
    ahci 0000:00:1f.2: setting latency timer to 64
    scsi0 : ahci
    scsi1 : ahci
    scsi2 : ahci
    scsi3 : ahci
    ata1: SATA max UDMA/133 abar m2048@0xd8d04000 port 0xd8d04100 irq 40
    ata2: SATA max UDMA/133 abar m2048@0xd8d04000 port 0xd8d04180 irq 40
    ata3: DUMMY
    ata4: DUMMY
    ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    ata2.00: ATAPI: Optiarc BD RW BD-5730S, 1.71, max UDMA/100
    ata2.00: configured for UDMA/100
    ata1.00: ATA-8: TOSHIBA MK3263GSX, FG020A, max UDMA/100
    ata1.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    ata1.00: configured for UDMA/100
    scsi 0:0:0:0: Direct-Access ATA TOSHIBA MK3263GS FG02 PQ: 0 ANSI: 5
    scsi 1:0:0:0: CD-ROM Optiarc BD RW BD-5730S 1.71 PQ: 0 ANSI: 5
    sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
    sd 0:0:0:0: [sda] Write Protect is off
    sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    cdrom: Uniform CD-ROM driver Revision: 3.20
    sr 1:0:0:0: Attached scsi CD-ROM sr0
    sda: sda1 sda2 sda3 sda4 < sda5 sda6 >
    sd 0:0:0:0: [sda] Attached SCSI disk
    EXT4-fs (sda5): INFO: recovery required on readonly filesystem
    EXT4-fs (sda5): write access will be enabled during recovery
    EXT4-fs (sda5): orphan cleanup on readonly fs
    EXT4-fs (sda5): ext4_orphan_cleanup: deleting unreferenced inode 2226256
    EXT4-fs (sda5): ext4_orphan_cleanup: deleting unreferenced inode 2226255
    EXT4-fs (sda5): ext4_orphan_cleanup: deleting unreferenced inode 2226252
    EXT4-fs (sda5): ext4_orphan_cleanup: deleting unreferenced inode 2226251
    EXT4-fs (sda5): ext4_orphan_cleanup: deleting unreferenced inode 2226241
    EXT4-fs (sda5): ext4_orphan_cleanup: deleting unreferenced inode 2226214
    EXT4-fs (sda5): ext4_orphan_cleanup: deleting unreferenced inode 2226213
    EXT4-fs (sda5): ext4_orphan_cleanup: deleting unreferenced inode 2226212
    EXT4-fs (sda5): ext4_orphan_cleanup: deleting unreferenced inode 2226211
    EXT4-fs (sda5): ext4_orphan_cleanup: deleting unreferenced inode 2226210
    EXT4-fs (sda5): 10 orphan inodes deleted
    EXT4-fs (sda5): recovery complete
    EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
    Not activating Mandatory Access Control now since /sbin/tomoyo-init doesn't exist.
    udev[958]: starting version 164
    fuse init (API version 7.15)
    iTCO_vendor_support: vendor-support=0
    input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
    ACPI: Lid Switch [LID0]
    input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
    ACPI: Power Button [PWRB]
    thermal LNXTHERM:01: registered as thermal_zone0
    ACPI: Thermal Zone [TZ00] (55 C)
    ACPI: Invalid active0 threshold
    ACPI: acpi_idle registered with cpuidle
    thermal LNXTHERM:02: registered as thermal_zone1
    ACPI: Thermal Zone [TZ01] (55 C)
    sd 0:0:0:0: Attached scsi generic sg0 type 0
    sr 1:0:0:0: Attached scsi generic sg1 type 5
    Monitor-Mwait will be used to enter C-1 state
    Monitor-Mwait will be used to enter C-2 state
    Marking TSC unstable due to TSC halts in idle
    Switching to clocksource hpet
    pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    iTCO_wdt: Intel TCO WatchDog Timer Driver v1.06
    iTCO_wdt: Found a ICH9M TCO device (Version=2, TCOBASE=0x0460)
    iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    cfg80211: Calling CRDA to update world regulatory domain
    sky2: driver version 1.28
    sky2 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    sky2 0000:02:00.0: setting latency timer to 64
    sky2 0000:02:00.0: Yukon-2 UL 2 chip revision 0
    sky2 0000:02:00.0: irq 41 for MSI/MSI-X
    sky2 0000:02:00.0: eth0: addr 00:24:be:85:96:40
    input: PC Speaker as /devices/platform/pcspkr/input/input3
    usbcore: registered new interface driver usbfs
    usbcore: registered new interface driver hub
    usbcore: registered new device driver usb
    ACPI: WMI: Mapper loaded
    ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 19 (level, low) -> IRQ 19
    ehci_hcd 0000:00:1a.7: setting latency timer to 64
    ehci_hcd 0000:00:1a.7: EHCI Host Controller
    ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
    ehci_hcd 0000:00:1a.7: debug port 1
    ehci_hcd 0000:00:1a.7: cache line size of 64 is not supported
    ehci_hcd 0000:00:1a.7: irq 19, io mem 0xd8d04c00
    ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    hub 1-0:1.0: USB hub found
    hub 1-0:1.0: 6 ports detected
    ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    ehci_hcd 0000:00:1d.7: setting latency timer to 64
    ehci_hcd 0000:00:1d.7: EHCI Host Controller
    ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
    ehci_hcd 0000:00:1d.7: debug port 1
    ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
    ehci_hcd 0000:00:1d.7: irq 23, io mem 0xd8d04800
    ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    hub 2-0:1.0: USB hub found
    hub 2-0:1.0: 6 ports detected
    uhci_hcd: USB Universal Host Controller Interface driver
    uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    uhci_hcd 0000:00:1a.0: setting latency timer to 64
    uhci_hcd 0000:00:1a.0: UHCI Host Controller
    uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000e0e0
    hub 3-0:1.0: USB hub found
    hub 3-0:1.0: 2 ports detected
    uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
    uhci_hcd 0000:00:1a.1: setting latency timer to 64
    uhci_hcd 0000:00:1a.1: UHCI Host Controller
    uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
    uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000e0c0
    hub 4-0:1.0: USB hub found
    hub 4-0:1.0: 2 ports detected
    uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 19 (level, low) -> IRQ 19
    uhci_hcd 0000:00:1a.2: setting latency timer to 64
    uhci_hcd 0000:00:1a.2: UHCI Host Controller
    uhci_hcd 0000:00:1a.2:

    I tried another fresh install to see if me installing GNOME before messed up anything. The same problem persists, I made another fresh install. I only did a net install with Arch Linux core and haven't yet installed xorg or anything yet (havent even synced pacman yet). Weirdly nouveau is already loaded, this is the output of dmesg,
    Initializing cgroup subsys cpuset
    Initializing cgroup subsys cpu
    Linux version 2.6.36-ARCH (tobias@T-POWA-LX) (gcc version 4.5.1 (GCC) ) #1 SMP PREEMPT Wed Nov 24 00:39:57 CET 2010
    Command line: root=/dev/sda5 ro
    BIOS-provided physical RAM map:
    BIOS-e820: 0000000000000000 - 000000000009bc00 (usable)
    BIOS-e820: 000000000009bc00 - 00000000000a0000 (reserved)
    BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    BIOS-e820: 0000000000100000 - 00000000bdea7000 (usable)
    BIOS-e820: 00000000bdea7000 - 00000000bdecf000 (ACPI NVS)
    BIOS-e820: 00000000bdecf000 - 00000000bdee0000 (reserved)
    BIOS-e820: 00000000bdee0000 - 00000000bdee1000 (ACPI NVS)
    BIOS-e820: 00000000bdee1000 - 00000000bdf08000 (reserved)
    BIOS-e820: 00000000bdf08000 - 00000000bdf09000 (ACPI NVS)
    BIOS-e820: 00000000bdf09000 - 00000000bdf0a000 (reserved)
    BIOS-e820: 00000000bdf0a000 - 00000000bdf14000 (ACPI data)
    BIOS-e820: 00000000bdf14000 - 00000000bdf1a000 (ACPI NVS)
    BIOS-e820: 00000000bdf1a000 - 00000000bdf39000 (reserved)
    BIOS-e820: 00000000bdf39000 - 00000000be000000 (usable)
    BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
    BIOS-e820: 00000000ffa00000 - 00000000ffc00000 (reserved)
    BIOS-e820: 00000000ffe00000 - 0000000100000000 (reserved)
    BIOS-e820: 0000000100000000 - 0000000140000000 (usable)
    NX (Execute Disable) protection: active
    DMI 2.4 present.
    AMI BIOS detected: BIOS may corrupt low RAM, working around it.
    e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved)
    e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    No AGP bridge found
    last_pfn = 0x140000 max_arch_pfn = 0x400000000
    MTRR default type: uncachable
    MTRR fixed ranges enabled:
    00000-9FFFF write-back
    A0000-BFFFF uncachable
    C0000-CFFFF write-protect
    D0000-E7FFF write-through
    E8000-FFFFF write-protect
    MTRR variable ranges enabled:
    0 base 000000000 mask F80000000 write-back
    1 base 080000000 mask FC0000000 write-back
    2 base 0BE000000 mask FFE000000 uncachable
    3 base 100000000 mask FC0000000 write-back
    4 disabled
    5 disabled
    6 disabled
    x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    e820 update range: 00000000be000000 - 0000000100000000 (usable) ==> (reserved)
    last_pfn = 0xbe000 max_arch_pfn = 0x400000000
    Scanning 0 areas for low memory corruption
    modified physical RAM map:
    modified: 0000000000000000 - 0000000000010000 (reserved)
    modified: 0000000000010000 - 000000000009bc00 (usable)
    modified: 000000000009bc00 - 00000000000a0000 (reserved)
    modified: 00000000000e0000 - 0000000000100000 (reserved)
    modified: 0000000000100000 - 00000000bdea7000 (usable)
    modified: 00000000bdea7000 - 00000000bdecf000 (ACPI NVS)
    modified: 00000000bdecf000 - 00000000bdee0000 (reserved)
    modified: 00000000bdee0000 - 00000000bdee1000 (ACPI NVS)
    modified: 00000000bdee1000 - 00000000bdf08000 (reserved)
    modified: 00000000bdf08000 - 00000000bdf09000 (ACPI NVS)
    modified: 00000000bdf09000 - 00000000bdf0a000 (reserved)
    modified: 00000000bdf0a000 - 00000000bdf14000 (ACPI data)
    modified: 00000000bdf14000 - 00000000bdf1a000 (ACPI NVS)
    modified: 00000000bdf1a000 - 00000000bdf39000 (reserved)
    modified: 00000000bdf39000 - 00000000be000000 (usable)
    modified: 00000000e0000000 - 00000000f0000000 (reserved)
    modified: 00000000ffa00000 - 00000000ffc00000 (reserved)
    modified: 00000000ffe00000 - 0000000100000000 (reserved)
    modified: 0000000100000000 - 0000000140000000 (usable)
    initial memory mapped : 0 - 20000000
    found SMP MP-table at [ffff8800000fd690] fd690
    init_memory_mapping: 0000000000000000-00000000be000000
    0000000000 - 00be000000 page 2M
    kernel direct mapping tables up to be000000 @ 16000-1a000
    init_memory_mapping: 0000000100000000-0000000140000000
    0100000000 - 0140000000 page 2M
    kernel direct mapping tables up to 140000000 @ 18000-1e000
    RAMDISK: 37e39000 - 37ff0000
    ACPI: RSDP 00000000000f03b0 00024 (v02 Sony)
    ACPI: XSDT 00000000bdf12f10 0005C (v01 Sony VAIO 20090922 MSFT 00010013)
    ACPI: FACP 00000000bdf08a90 000F4 (v04 Sony VAIO 20090922 MSFT 00010013)
    ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! (20100702/tbfadt-369)
    ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBDF19E40/0x00000000BDF19D40, using 32 (20100702/tbfadt-486)
    ACPI: DSDT 00000000bdf0a010 06831 (v01 Sony VAIO 20090922 INTL 20051117)
    ACPI: FACS 00000000bdf19e40 00040
    ACPI: APIC 00000000bdf11f10 0006C (v02 Sony VAIO 20090922 MSFT 00010013)
    ACPI: MCFG 00000000bdf18c90 0003C (v01 Sony VAIO 20090922 MSFT 00000097)
    ACPI: HPET 00000000bdf18c10 00038 (v01 Sony VAIO 20090922 MSFT 00010013)
    ACPI: SLIC 00000000bdf14c10 00176 (v01 Sony VAIO 20090922 Sony 01000000)
    ACPI: SSDT 00000000bdee0590 00505 (v01 Sony VAIO 20090922 INTL 20051117)
    ACPI: SSDT 00000000bdecbc10 002E4 (v01 Sony VAIO 20090922 INTL 20051117)
    ACPI: Local APIC address 0xfee00000
    [ffffea0000000000-ffffea00045fffff] PMD -> [ffff880002000000-ffff8800057fffff] on node 0
    Zone PFN ranges:
    DMA 0x00000010 -> 0x00001000
    DMA32 0x00001000 -> 0x00100000
    Normal 0x00100000 -> 0x00140000
    Movable zone start PFN for each node
    early_node_map[4] active PFN ranges
    0: 0x00000010 -> 0x0000009b
    0: 0x00000100 -> 0x000bdea7
    0: 0x000bdf39 -> 0x000be000
    0: 0x00100000 -> 0x00140000
    On node 0 totalpages: 1040121
    DMA zone: 56 pages used for memmap
    DMA zone: 0 pages reserved
    DMA zone: 3923 pages, LIFO batch:0
    DMA32 zone: 14280 pages used for memmap
    DMA32 zone: 759718 pages, LIFO batch:31
    Normal zone: 3584 pages used for memmap
    Normal zone: 258560 pages, LIFO batch:31
    ACPI: PM-Timer IO Port: 0x408
    ACPI: Local APIC address 0xfee00000
    ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] disabled)
    ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] disabled)
    ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    ACPI: IRQ0 used by override.
    ACPI: IRQ2 used by override.
    ACPI: IRQ9 used by override.
    Using ACPI (MADT) for SMP configuration information
    ACPI: HPET id: 0x8086a301 base: 0xfed00000
    SMP: Allowing 4 CPUs, 2 hotplug CPUs
    nr_irqs_gsi: 40
    early_res array is doubled to 64 at [19300 - 19aff]
    PM: Registered nosave memory: 000000000009b000 - 000000000009c000
    PM: Registered nosave memory: 000000000009c000 - 00000000000a0000
    PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    PM: Registered nosave memory: 00000000bdea7000 - 00000000bdecf000
    PM: Registered nosave memory: 00000000bdecf000 - 00000000bdee0000
    PM: Registered nosave memory: 00000000bdee0000 - 00000000bdee1000
    PM: Registered nosave memory: 00000000bdee1000 - 00000000bdf08000
    PM: Registered nosave memory: 00000000bdf08000 - 00000000bdf09000
    PM: Registered nosave memory: 00000000bdf09000 - 00000000bdf0a000
    PM: Registered nosave memory: 00000000bdf0a000 - 00000000bdf14000
    PM: Registered nosave memory: 00000000bdf14000 - 00000000bdf1a000
    PM: Registered nosave memory: 00000000bdf1a000 - 00000000bdf39000
    PM: Registered nosave memory: 00000000be000000 - 00000000e0000000
    PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
    PM: Registered nosave memory: 00000000f0000000 - 00000000ffa00000
    PM: Registered nosave memory: 00000000ffa00000 - 00000000ffc00000
    PM: Registered nosave memory: 00000000ffc00000 - 00000000ffe00000
    PM: Registered nosave memory: 00000000ffe00000 - 0000000100000000
    Allocating PCI resources starting at be000000 (gap: be000000:22000000)
    Booting paravirtualized kernel on bare hardware
    setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
    PERCPU: Embedded 28 pages/cpu @ffff880001a00000 s86016 r8192 d20480 u524288
    early_res array is doubled to 128 at [19b00 - 1aaff]
    pcpu-alloc: s86016 r8192 d20480 u524288 alloc=1*2097152
    pcpu-alloc: [0] 0 1 2 3
    Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1022201
    Kernel command line: root=/dev/sda5 ro
    PID hash table entries: 4096 (order: 3, 32768 bytes)
    Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240
    Checking aperture...
    No AGP bridge found
    Calgary: detecting Calgary via BIOS EBDA area
    Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    Subtract (69 early reservations)
    #1 [0001000000 - 00017f99a8] TEXT DATA BSS
    #2 [0037e39000 - 0037ff0000] RAMDISK
    #3 [00017fa000 - 00017fa1f8] BRK
    #4 [00000fd6a0 - 0000100000] BIOS reserved
    #5 [00000fd690 - 00000fd6a0] MP-table mpf
    #6 [000009bc00 - 00000fd410] BIOS reserved
    #7 [00000fd624 - 00000fd690] BIOS reserved
    #8 [00000fd410 - 00000fd624] MP-table mpc
    #9 [0000010000 - 0000012000] TRAMPOLINE
    #10 [0000012000 - 0000016000] ACPI WAKEUP
    #11 [0000016000 - 0000018000] PGTABLE
    #12 [0000018000 - 0000019000] PGTABLE
    #13 [00017fa200 - 00017fb200] BOOTMEM
    #14 [0000019000 - 0000019300] BOOTMEM
    #15 [0001ffc000 - 0001ffd000] BOOTMEM
    #16 [0001ffd000 - 0001ffe000] BOOTMEM
    #17 [0002000000 - 0005800000] MEMMAP 0
    #18 [00017fb200 - 0001813200] BOOTMEM
    #19 [0001813200 - 000182b200] BOOTMEM
    #20 [000182b200 - 0001843200] BOOTMEM
    #21 [0001844000 - 0001845000] BOOTMEM
    #22 [00017f99c0 - 00017f9a01] BOOTMEM
    #23 [00017f9a40 - 00017f9a83] BOOTMEM
    #24 [00017f9ac0 - 00017f9ee8] BOOTMEM
    #25 [00017f9f00 - 00017f9f68] BOOTMEM
    #26 [00017f9f80 - 00017f9fe8] BOOTMEM
    #27 [0001843200 - 0001843268] BOOTMEM
    #28 [0001843280 - 00018432e8] BOOTMEM
    #29 [0001843300 - 0001843368] BOOTMEM
    #30 [0001843380 - 00018433e8] BOOTMEM
    #31 [0001843400 - 0001843468] BOOTMEM
    #32 [0001843480 - 00018434e8] BOOTMEM
    #33 [0001843500 - 0001843568] BOOTMEM
    #34 [0001843580 - 00018435e8] BOOTMEM
    #35 [0001843600 - 0001843668] BOOTMEM
    #36 [0001843680 - 00018436e8] BOOTMEM
    #37 [0001843700 - 0001843768] BOOTMEM
    #38 [0001843780 - 00018437e8] BOOTMEM
    #39 [0001843800 - 0001843868] BOOTMEM
    #40 [0001843880 - 00018438e8] BOOTMEM
    #41 [0001843900 - 0001843968] BOOTMEM
    #42 [0001843980 - 00018439e8] BOOTMEM
    #43 [0001843a00 - 0001843a20] BOOTMEM
    #44 [0001843a40 - 0001843a60] BOOTMEM
    #45 [0001843a80 - 0001843aa0] BOOTMEM
    #46 [0001843ac0 - 0001843ad2] BOOTMEM
    #47 [0001843b00 - 0001843b12] BOOTMEM
    #48 [0001a00000 - 0001a1c000] BOOTMEM
    #49 [0001a80000 - 0001a9c000] BOOTMEM
    #50 [0001b00000 - 0001b1c000] BOOTMEM
    #51 [0001b80000 - 0001b9c000] BOOTMEM
    #52 [0001843b40 - 0001843b48] BOOTMEM
    #53 [0001843b80 - 0001843b88] BOOTMEM
    #54 [0001843bc0 - 0001843bd0] BOOTMEM
    #55 [0001843c00 - 0001843c20] BOOTMEM
    #56 [0001843c40 - 0001843d70] BOOTMEM
    #57 [0001843d80 - 0001843dd0] BOOTMEM
    #58 [0001843e00 - 0001843e50] BOOTMEM
    #59 [0001845000 - 000184d000] BOOTMEM
    #60 [0001b9c000 - 0001f9c000] BOOTMEM
    #61 [0005800000 - 0005a00000] BOOTMEM
    #62 [0001843e80 - 0001843e88] BOOTMEM
    #63 [0001843ec0 - 0001843ec8] BOOTMEM
    #64 [000184d000 - 000184d240] BOOTMEM
    #65 [0005a00000 - 0009a00000] BOOTMEM
    #66 [000184d240 - 000186d240] BOOTMEM
    #67 [000186d240 - 00018ad240] BOOTMEM
    #68 [000001ab00 - 0000022b00] BOOTMEM
    Memory: 4020284k/5242880k available (3682k kernel code, 1082396k absent, 140200k reserved, 2083k data, 504k init)
    SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    Hierarchical RCU implementation.
    RCU-based detection of stalled CPUs is disabled.
    Verbose stalled-CPUs detection is disabled.
    NR_IRQS:2304
    Extended CMOS year: 2000
    Console: colour VGA+ 80x25
    console [tty0] enabled
    allocated 41943040 bytes of page_cgroup
    please try 'cgroup_disable=memory' option if you don't want memory cgroups
    hpet clockevent registered
    Fast TSC calibration using PIT
    spurious 8259A interrupt: IRQ7.
    Detected 2527.164 MHz processor.
    Calibrating delay loop (skipped), value calculated using timer frequency.. 5056.92 BogoMIPS (lpj=8423880)
    pid_max: default: 32768 minimum: 301
    Security Framework initialized
    TOMOYO Linux initialized
    AppArmor: AppArmor disabled by boot time parameter
    Mount-cache hash table entries: 256
    Initializing cgroup subsys ns
    Initializing cgroup subsys cpuacct
    Initializing cgroup subsys memory
    Initializing cgroup subsys devices
    Initializing cgroup subsys freezer
    Initializing cgroup subsys net_cls
    Initializing cgroup subsys blkio
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 0
    mce: CPU supports 6 MCE banks
    CPU0: Thermal monitoring enabled (TM2)
    using mwait in idle threads.
    Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver.
    ... version: 2
    ... bit width: 40
    ... generic registers: 2
    ... value mask: 000000ffffffffff
    ... max period: 000000007fffffff
    ... fixed-purpose events: 3
    ... event mask: 0000000700000003
    ACPI: Core revision 20100702
    Setting APIC routing to flat
    ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
    CPU0: Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz stepping 0a
    NMI watchdog enabled, takes one hw-pmu counter.
    Booting Node 0, Processors #1
    NMI watchdog enabled, takes one hw-pmu counter.
    Brought up 2 CPUs
    Total of 2 processors activated (10112.47 BogoMIPS).
    devtmpfs: initialized
    NET: Registered protocol family 16
    ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    ACPI: bus type pci registered
    PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    PCI: Using configuration type 1 for base access
    bio: create slab <bio-0> at 0
    ACPI: EC: Look up EC in DSDT
    ACPI: Executed 1 blocks of module-level executable AML code
    ACPI: BIOS _OSI(Linux) query ignored
    ACPI: SSDT 00000000bdee4c10 00265 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    ACPI: Dynamic OEM Table Load:
    ACPI: SSDT (null) 00265 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    ACPI: SSDT 00000000bdee2810 007A2 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    ACPI: Dynamic OEM Table Load:
    ACPI: SSDT (null) 007A2 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    ACPI: SSDT 00000000bdee3d90 000FD (v01 PmRef ApIst 00003000 INTL 20051117)
    ACPI: Dynamic OEM Table Load:
    ACPI: SSDT (null) 000FD (v01 PmRef ApIst 00003000 INTL 20051117)
    ACPI: SSDT 00000000bdee1f90 00047 (v01 PmRef ApCst 00003000 INTL 20051117)
    ACPI: Dynamic OEM Table Load:
    ACPI: SSDT (null) 00047 (v01 PmRef ApCst 00003000 INTL 20051117)
    ACPI: Interpreter enabled
    ACPI: (supports S0 S3 S4 S5)
    ACPI: Using IOAPIC for interrupt routing
    ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    ACPI: No dock devices found.
    PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    \_SB_.PCI0:_OSC invalid UUID
    _OSC request data:1 8 1f
    ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
    pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
    pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff]
    pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
    pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
    pci_root PNP0A08:00: host bridge window [mem 0x000dc000-0x000dffff]
    pci_root PNP0A08:00: host bridge window [mem 0x000e0000-0x000e3fff]
    pci_root PNP0A08:00: host bridge window [mem 0x000e4000-0x000e7fff]
    pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xfebfffff]
    DMAR: Forcing write-buffer flush capability
    DMAR: Disabling IOMMU for graphics on this chipset
    pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:01.0: PME# disabled
    pci 0000:00:1a.0: reg 20: [io 0xe0e0-0xe0ff]
    pci 0000:00:1a.1: reg 20: [io 0xe0c0-0xe0df]
    pci 0000:00:1a.2: reg 20: [io 0xe0a0-0xe0bf]
    pci 0000:00:1a.7: reg 10: [mem 0xd8d04c00-0xd8d04fff]
    pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    pci 0000:00:1a.7: PME# disabled
    pci 0000:00:1b.0: reg 10: [mem 0xd8d00000-0xd8d03fff 64bit]
    pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:1b.0: PME# disabled
    pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.0: PME# disabled
    pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.1: PME# disabled
    pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.2: PME# disabled
    pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.3: PME# disabled
    pci 0000:00:1d.0: reg 20: [io 0xe080-0xe09f]
    pci 0000:00:1d.1: reg 20: [io 0xe060-0xe07f]
    pci 0000:00:1d.2: reg 20: [io 0xe040-0xe05f]
    pci 0000:00:1d.7: reg 10: [mem 0xd8d04800-0xd8d04bff]
    pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    pci 0000:00:1d.7: PME# disabled
    pci 0000:00:1f.2: reg 10: [io 0xe130-0xe137]
    pci 0000:00:1f.2: reg 14: [io 0xe120-0xe123]
    pci 0000:00:1f.2: reg 18: [io 0xe110-0xe117]
    pci 0000:00:1f.2: reg 1c: [io 0xe100-0xe103]
    pci 0000:00:1f.2: reg 20: [io 0xe020-0xe03f]
    pci 0000:00:1f.2: reg 24: [mem 0xd8d04000-0xd8d047ff]
    pci 0000:00:1f.2: PME# supported from D3hot
    pci 0000:00:1f.2: PME# disabled
    pci 0000:00:1f.3: reg 10: [mem 0xd8d05000-0xd8d050ff 64bit]
    pci 0000:00:1f.3: reg 20: [io 0xe000-0xe01f]
    pci 0000:01:00.0: reg 10: [mem 0xd2000000-0xd2ffffff]
    pci 0000:01:00.0: reg 14: [mem 0xc0000000-0xcfffffff 64bit pref]
    pci 0000:01:00.0: reg 1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
    pci 0000:01:00.0: reg 24: [io 0xd000-0xd07f]
    pci 0000:01:00.0: reg 30: [mem 0xd3000000-0xd307ffff pref]
    pci 0000:01:00.1: reg 10: [mem 0xd3080000-0xd3083fff]
    pci 0000:00:01.0: PCI bridge to [bus 01-01]
    pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd30fffff]
    pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    pci 0000:02:00.0: reg 10: [mem 0xd7920000-0xd7923fff 64bit]
    pci 0000:02:00.0: reg 18: [io 0xc000-0xc0ff]
    pci 0000:02:00.0: reg 30: [mem 0xd7900000-0xd791ffff pref]
    pci 0000:02:00.0: supports D1 D2
    pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:02:00.0: PME# disabled
    pci 0000:00:1c.0: PCI bridge to [bus 02-02]
    pci 0000:00:1c.0: bridge window [io 0xc000-0xcfff]
    pci 0000:00:1c.0: bridge window [mem 0xd7900000-0xd8cfffff]
    pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    pci 0000:03:00.0: reg 10: [mem 0xd6500000-0xd6501fff 64bit]
    pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
    pci 0000:03:00.0: PME# disabled
    pci 0000:00:1c.1: PCI bridge to [bus 03-03]
    pci 0000:00:1c.1: bridge window [io 0xb000-0xbfff]
    pci 0000:00:1c.1: bridge window [mem 0xd6500000-0xd78fffff]
    pci 0000:00:1c.1: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    pci 0000:04:00.0: reg 10: [mem 0xd5100a00-0xd5100aff]
    pci 0000:04:00.0: supports D1 D2
    pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:04:00.0: PME# disabled
    pci 0000:04:00.1: reg 10: [mem 0xd5100900-0xd51009ff]
    pci 0000:04:00.1: supports D1 D2
    pci 0000:04:00.1: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:04:00.1: PME# disabled
    pci 0000:04:00.3: reg 10: [mem 0xd5100000-0xd51007ff]
    pci 0000:04:00.3: supports D1 D2
    pci 0000:04:00.3: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:04:00.3: PME# disabled
    pci 0000:04:00.4: reg 10: [mem 0xd5100800-0xd51008ff]
    pci 0000:04:00.4: supports D1 D2
    pci 0000:04:00.4: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:04:00.4: PME# disabled
    pci 0000:00:1c.2: PCI bridge to [bus 04-04]
    pci 0000:00:1c.2: bridge window [io 0xa000-0xafff]
    pci 0000:00:1c.2: bridge window [mem 0xd5100000-0xd64fffff]
    pci 0000:00:1c.2: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    pci 0000:00:1c.3: PCI bridge to [bus 05-0c]
    pci 0000:00:1c.3: bridge window [io 0x9000-0x9fff]
    pci 0000:00:1c.3: bridge window [mem 0xd3100000-0xd50fffff]
    pci 0000:00:1c.3: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    pci 0000:00:1e.0: PCI bridge to [bus 0d-0d] (subtractive decode)
    pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled)
    pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000e4000-0x000e7fff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0xc0000000-0xfebfffff] (subtractive decode)
    pci_bus 0000:00: on NUMA node 0
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEGP._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P9._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP03._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT]
    \_SB_.PCI0:_OSC invalid UUID
    _OSC request data:1 19 1f
    ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 *4 5 6 7 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 *5 6 7 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
    ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    ACPI: PCI Interrupt Link [LNKG] (IRQs 1 *3 4 5 6 7 10 12 14 15)
    ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    HEST: Table is not found!
    vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    vgaarb: loaded
    PCI: Using ACPI for IRQ routing
    PCI: pci_cache_line_size set to 64 bytes
    reserve RAM buffer: 000000000009bc00 - 000000000009ffff
    reserve RAM buffer: 00000000bdea7000 - 00000000bfffffff
    reserve RAM buffer: 00000000be000000 - 00000000bfffffff
    NetLabel: Initializing
    NetLabel: domain hash size = 128
    NetLabel: protocols = UNLABELED CIPSOv4
    NetLabel: unlabeled traffic allowed by default
    HPET: 4 timers in total, 0 timers will be used for per-cpu timer
    hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    hpet0: 4 comparators, 64-bit 14.318180 MHz counter
    Switching to clocksource tsc
    pnp: PnP ACPI init
    ACPI: bus type pnp registered
    pnp: PnP ACPI: found 10 devices
    ACPI: ACPI bus type pnp unregistered
    system 00:03: [mem 0xfed00000-0xfed003ff] has been reserved
    system 00:05: [io 0x0680-0x069f] has been reserved
    system 00:05: [io 0x1000-0x100f] has been reserved
    system 00:05: [io 0x0800-0x0803] has been reserved
    system 00:05: [io 0x0400-0x047f] has been reserved
    system 00:05: [io 0x0500-0x053f] has been reserved
    system 00:05: [io 0x164e-0x164f] has been reserved
    system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
    system 00:09: [mem 0xfed14000-0xfed17fff] has been reserved
    system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
    system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
    system 00:09: [mem 0xe0000000-0xefffffff] has been reserved
    system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
    system 00:09: [mem 0xfeb00000-0xfeb03fff] has been reserved
    system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
    pci 0000:00:01.0: BAR 15: assigned [mem 0xd8e00000-0xd8ffffff 64bit pref]
    pci 0000:00:1c.0: BAR 15: assigned [mem 0xd9000000-0xd91fffff 64bit pref]
    pci 0000:00:1c.1: BAR 15: assigned [mem 0xd9200000-0xd93fffff 64bit pref]
    pci 0000:00:1c.2: BAR 15: assigned [mem 0xd9400000-0xd95fffff 64bit pref]
    pci 0000:00:1c.3: BAR 15: assigned [mem 0xd9600000-0xd97fffff 64bit pref]
    pci 0000:00:01.0: PCI bridge to [bus 01-01]
    pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd30fffff]
    pci 0000:00:01.0: bridge window [mem 0xd8e00000-0xd8ffffff 64bit pref]
    pci 0000:00:1c.0: PCI bridge to [bus 02-02]
    pci 0000:00:1c.0: bridge window [io 0xc000-0xcfff]
    pci 0000:00:1c.0: bridge window [mem 0xd7900000-0xd8cfffff]
    pci 0000:00:1c.0: bridge window [mem 0xd9000000-0xd91fffff 64bit pref]
    pci 0000:00:1c.1: PCI bridge to [bus 03-03]
    pci 0000:00:1c.1: bridge window [io 0xb000-0xbfff]
    pci 0000:00:1c.1: bridge window [mem 0xd6500000-0xd78fffff]
    pci 0000:00:1c.1: bridge window [mem 0xd9200000-0xd93fffff 64bit pref]
    pci 0000:00:1c.2: PCI bridge to [bus 04-04]
    pci 0000:00:1c.2: bridge window [io 0xa000-0xafff]
    pci 0000:00:1c.2: bridge window [mem 0xd5100000-0xd64fffff]
    pci 0000:00:1c.2: bridge window [mem 0xd9400000-0xd95fffff 64bit pref]
    pci 0000:00:1c.3: PCI bridge to [bus 05-0c]
    pci 0000:00:1c.3: bridge window [io 0x9000-0x9fff]
    pci 0000:00:1c.3: bridge window [mem 0xd3100000-0xd50fffff]
    pci 0000:00:1c.3: bridge window [mem 0xd9600000-0xd97fffff 64bit pref]
    pci 0000:00:1e.0: PCI bridge to [bus 0d-0d]
    pci 0000:00:1e.0: bridge window [io disabled]
    pci 0000:00:1e.0: bridge window [mem disabled]
    pci 0000:00:1e.0: bridge window [mem pref disabled]
    pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    pci 0000:00:01.0: setting latency timer to 64
    pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    pci 0000:00:1c.0: setting latency timer to 64
    pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16
    pci 0000:00:1c.1: setting latency timer to 64
    pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    pci 0000:00:1c.2: setting latency timer to 64
    pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
    pci 0000:00:1c.3: setting latency timer to 64
    pci 0000:00:1e.0: setting latency timer to 64
    pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
    pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
    pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
    pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
    pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff]
    pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff]
    pci_bus 0000:00: resource 13 [mem 0xc0000000-0xfebfffff]
    pci_bus 0000:01: resource 0 [io 0xd000-0xdfff]
    pci_bus 0000:01: resource 1 [mem 0xc0000000-0xd30fffff]
    pci_bus 0000:01: resource 2 [mem 0xd8e00000-0xd8ffffff 64bit pref]
    pci_bus 0000:02: resource 0 [io 0xc000-0xcfff]
    pci_bus 0000:02: resource 1 [mem 0xd7900000-0xd8cfffff]
    pci_bus 0000:02: resource 2 [mem 0xd9000000-0xd91fffff 64bit pref]
    pci_bus 0000:03: resource 0 [io 0xb000-0xbfff]
    pci_bus 0000:03: resource 1 [mem 0xd6500000-0xd78fffff]
    pci_bus 0000:03: resource 2 [mem 0xd9200000-0xd93fffff 64bit pref]
    pci_bus 0000:04: resource 0 [io 0xa000-0xafff]
    pci_bus 0000:04: resource 1 [mem 0xd5100000-0xd64fffff]
    pci_bus 0000:04: resource 2 [mem 0xd9400000-0xd95fffff 64bit pref]
    pci_bus 0000:05: resource 0 [io 0x9000-0x9fff]
    pci_bus 0000:05: resource 1 [mem 0xd3100000-0xd50fffff]
    pci_bus 0000:05: resource 2 [mem 0xd9600000-0xd97fffff 64bit pref]
    pci_bus 0000:0d: resource 4 [io 0x0000-0x0cf7]
    pci_bus 0000:0d: resource 5 [io 0x0d00-0xffff]
    pci_bus 0000:0d: resource 6 [mem 0x000a0000-0x000bffff]
    pci_bus 0000:0d: resource 7 [mem 0x000d0000-0x000d3fff]
    pci_bus 0000:0d: resource 8 [mem 0x000d4000-0x000d7fff]
    pci_bus 0000:0d: resource 9 [mem 0x000d8000-0x000dbfff]
    pci_bus 0000:0d: resource 10 [mem 0x000dc000-0x000dffff]
    pci_bus 0000:0d: resource 11 [mem 0x000e0000-0x000e3fff]
    pci_bus 0000:0d: resource 12 [mem 0x000e4000-0x000e7fff]
    pci_bus 0000:0d: resource 13 [mem 0xc0000000-0xfebfffff]
    NET: Registered protocol family 2
    IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
    TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
    TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    TCP: Hash tables configured (established 262144 bind 65536)
    TCP reno registered
    UDP hash table entries: 2048 (order: 4, 65536 bytes)
    UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    NET: Registered protocol family 1
    pci 0000:01:00.0: Boot video device
    PCI: CLS 64 bytes, default 64
    Unpacking initramfs...
    Freeing initrd memory: 1756k freed
    PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    Placing 64MB software IO TLB between ffff880005a00000 - ffff880009a00000
    software IO TLB at phys 0x5a00000 - 0x9a00000
    Scanning for low memory corruption every 60 seconds
    audit: initializing netlink socket (disabled)
    type=2000 audit(1290893788.056:1): initialized
    HugeTLB registered 2 MB page size, pre-allocated 0 pages
    VFS: Disk quotas dquot_6.5.2
    Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    msgmni has been set to 7855
    Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    io scheduler noop registered
    io scheduler deadline registered
    io scheduler cfq registered (default)
    \_SB_.PCI0:_OSC invalid UUID
    _OSC request data:1 0 1d
    \_SB_.PCI0:_OSC invalid UUID
    _OSC request data:1 0 1d
    \_SB_.PCI0:_OSC invalid UUID
    _OSC request data:1 0 1d
    \_SB_.PCI0:_OSC invalid UUID
    _OSC request data:1 0 1d
    \_SB_.PCI0:_OSC invalid UUID
    _OSC request data:1 0 1d
    intel_idle: MWAIT substates: 0x3122220
    intel_idle: does not run on family 6 model 23
    ERST: Table is not found!
    Linux agpgart interface v0.103
    Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    i8042.c: Detected active multiplexing controller, rev 1.1.
    serio: i8042 KBD port at 0x60,0x64 irq 1
    serio: i8042 AUX0 port at 0x60,0x64 irq 12
    serio: i8042 AUX1 port at 0x60,0x64 irq 12
    serio: i8042 AUX2 port at 0x60,0x64 irq 12
    serio: i8042 AUX3 port at 0x60,0x64 irq 12
    mice: PS/2 mouse device common for all mice
    rtc_cmos 00:06: RTC can wake from S4
    rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
    rtc0: alarms up to one year, y3k, 242 bytes nvram, hpet irqs
    cpuidle: using governor ladder
    cpuidle: using governor menu
    TCP cubic registered
    NET: Registered protocol family 17
    Registering the dns_resolver key type
    PM: Resume from disk failed.
    registered taskstats version 1
    rtc_cmos 00:06: setting system clock to 2010-11-27 21:36:28 UTC (1290893788)
    Initalizing network drop monitor service
    Freeing unused kernel memory: 504k freed
    udev[38]: starting version 164
    input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    SCSI subsystem initialized
    libata version 3.00 loaded.
    ahci 0000:00:1f.2: version 3.0
    ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    ahci 0000:00:1f.2: irq 40 for MSI/MSI-X
    ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x3 impl SATA mode
    ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ccc ems
    ahci 0000:00:1f.2: setting latency timer to 64
    scsi0 : ahci
    scsi1 : ahci
    scsi2 : ahci
    scsi3 : ahci
    ata1: SATA max UDMA/133 abar m2048@0xd8d04000 port 0xd8d04100 irq 40
    ata2: SATA max UDMA/133 abar m2048@0xd8d04000 port 0xd8d04180 irq 40
    ata3: DUMMY
    ata4: DUMMY
    ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    ata2.00: ATAPI: Optiarc BD RW BD-5730S, 1.71, max UDMA/100
    ata2.00: configured for UDMA/100
    ata1.00: ATA-8: TOSHIBA MK3263GSX, FG020A, max UDMA/100
    ata1.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    ata1.00: configured for UDMA/100
    scsi 0:0:0:0: Direct-Access ATA TOSHIBA MK3263GS FG02 PQ: 0 ANSI: 5
    scsi 1:0:0:0: CD-ROM Optiarc BD RW BD-5730S 1.71 PQ: 0 ANSI: 5
    sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
    sd 0:0:0:0: [sda] Write Protect is off
    sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    cdrom: Uniform CD-ROM driver Revision: 3.20
    sr 1:0:0:0: Attached scsi CD-ROM sr0
    sda: sda1 sda2 sda3 sda4 < sda5 sda6 >
    sd 0:0:0:0: [sda] Attached SCSI disk
    EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
    Not activating Mandatory Access Control now since /sbin/tomoyo-init doesn't exist.
    udev[949]: starting version 164
    iTCO_vendor_support: vendor-support=0
    iTCO_wdt: Intel TCO WatchDog Timer Driver v1.06
    iTCO_wdt: Found a ICH9M TCO device (Version=2, TCOBASE=0x0460)
    iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    sony-laptop: Sony Notebook Control Driver v0.6.
    ACPI: WMI: Mapper loaded
    input: PC Speaker as /devices/platform/pcspkr/input/input1
    ACPI: AC Adapter [ADP1] (on-line)
    thermal LNXTHERM:01: registered as thermal_zone0
    ACPI: Thermal Zone [TZ00] (56 C)
    input: Sony Vaio Keys as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/SNY5001:00/input/input2
    ACPI: Invalid active0 threshold
    ACPI: acpi_idle registered with cpuidle
    input: Sony Vaio Jogdial as /devices/virtual/input/input3
    thermal LNXTHERM:02: registered as thermal_zone1
    ACPI: Thermal Zone [TZ01] (56 C)
    Monitor-Mwait will be used to enter C-1 state
    Monitor-Mwait will be used to enter C-2 state
    Marking TSC unstable due to TSC halts in idle
    sd 0:0:0:0: Attached scsi generic sg0 type 0
    sr 1:0:0:0: Attached scsi generic sg1 type 5
    Switching to clocksource hpet
    pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    cfg80211: Calling CRDA to update world regulatory domain
    sky2: driver version 1.28
    sky2 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    sky2 0000:02:00.0: setting latency timer to 64
    sky2 0000:02:00.0: Yukon-2 UL 2 chip revision 0
    sky2 0000:02:00.0: irq 41 for MSI/MSI-X
    sky2 0000:02:00.0: eth0: addr 00:24:be:85:96:40
    usbcore: registered new interface driver usbfs
    usbcore: registered new interface driver hub
    usbcore: registered new device driver usb
    ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 19 (level, low) -> IRQ 19
    ehci_hcd 0000:00:1a.7: setting latency timer to 64
    ehci_hcd 0000:00:1a.7: EHCI Host Controller
    ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
    ehci_hcd 0000:00:1a.7: debug port 1
    ehci_hcd 0000:00:1a.7: cache line size of 64 is not supported
    ehci_hcd 0000:00:1a.7: irq 19, io mem 0xd8d04c00
    uhci_hcd: USB Universal Host Controller Interface driver
    ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    hub 1-0:1.0: USB hub found
    hub 1-0:1.0: 6 ports detected
    ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    ehci_hcd 0000:00:1d.7: setting latency timer to 64
    ehci_hcd 0000:00:1d.7: EHCI Host Controller
    ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
    ehci_hcd 0000:00:1d.7: debug port 1
    ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
    ehci_hcd 0000:00:1d.7: irq 23, io mem 0xd8d04800
    ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    hub 2-0:1.0: USB hub found
    hub 2-0:1.0: 6 ports detected
    uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    uhci_hcd 0000:00:1a.0: setting latency timer to 64
    uhci_hcd 0000:00:1a.0: UHCI Host Controller
    uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000e0e0
    hub 3-0:1.0: USB hub found
    hub 3-0:1.0: 2 ports detected
    uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
    uhci_hcd 0000:00:1a.1: setting latency timer to 64
    uhci_hcd 0000:00:1a.1: UHCI Host Controller
    uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
    uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000e0c0
    hub 4-0:1.0: USB hub found
    hub 4-0:1.0: 2 ports detected
    uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 19 (level, low) -> IRQ 19
    uhci_hcd 0000:00:1a.2: setting latency timer to 64
    uhci_hcd 0000:00:1a.2: UHCI Host Controller
    uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
    uhci_hcd 0000:00:1a.2: irq 19, io base 0x0000e0a0
    hub 5-0:1.0: USB hub found
    hub 5-0:1.0: 2 ports detected
    uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    uhci_hcd 0000:00:1d.0: setting latency timer to 64
    uhci_hcd 0000:00:1d.0: UHCI Host Controller
    uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
    uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000e080
    hub 6-0:1.0: USB hub found
    hub 6-0:1.0: 2 ports detected
    uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    uhci_hcd 0000:00:1d.1: setting latency timer to 64
    uhci_hcd 0000:00:1d.1: UHCI Host Controller
    uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
    uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000e060
    hub 7-0:1.0: USB hub found
    hub 7-0:1.0: 2 ports detected
    uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    uhci_hcd 0000:00:1d.2: setting latency timer to 64
    uhci_hcd 0000:00:1d.2: UHCI Host Controller
    uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
    uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000e040
    hub 8-0:1.0: USB hub found
    hub 8-0:1.0: 2 ports detected
    [Firmware Bug]: ACPI(NGFX) defines _DOD but not _DOS
    input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:27/LNXVIDEO:00/input/input4
    ACPI: Video Device [NGFX] (multi-head: yes rom: no post: no)
    ACPI: Battery Slot [BAT0] (battery present)
    input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input5
    ACPI: Lid Switch [LID0]
    input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input6
    ACPI: Power Button [PWRB]
    usb 1-2: new high speed USB device using ehci_hcd and address 2
    firewire_ohci 0000:04:00.3: PCI INT D -> GSI 17 (level, low) -> IRQ 17
    firewire_ohci 0000:04:00.3: setting latency timer to 64
    i801_smbus 0000:00:1f.3: enabling device (0001 -> 0003)
    i801_smbus 0000:00:1f.3: PCI INT C -> GSI 19 (level, low) -> IRQ 19
    ACPI: resource 0000:00:1f.3 [io 0xe000-0xe01f] conflicts with ACPI region SMI1 [io 0x0800-0xffff0803 64bit pref disabled]
    ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    firewire_ohci 0000:04:00.3: irq 42 for MSI/MSI-X
    firewire_ohci: Added fw-ohci device 0000:04:00.3, OHCI v1.0, 4 IR + 4 IT contexts, quirks 0x1
    usb 2-1: new high speed USB device using ehci_hcd and address 2
    sdhci: Secure Digital Host Controller Interface driver
    sdhci: Copyright(c) Pierre Ossman
    HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    HDA Intel 0000:00:1b.0: irq 43 for MSI/MSI-X
    HDA Intel 0000:00:1b.0: setting latency timer to 64
    [drm] Initialized drm 1.1.0 20060810
    Synaptics Touchpad, model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd04731/0xa40000/0xa0000
    input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio2/input/input7
    Initializing USB Mass Storage driver...
    scsi4 : usb-storage 2-1:1.0
    usbcore: registered new interface driver usb-storage
    USB Mass Storage support registered.
    iwlagn: Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree:
    iwlagn: Copyright(c) 2003-2010 Intel Corporation
    iwlagn 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    iwlagn 0000:03:00.0: setting latency timer to 64
    iwlagn 0000:03:00.0: Detected Intel(R) WiFi Link 5100 AGN, REV=0x54
    iwlagn 0000:03:00.0: device EEPROM VER=0x11f, CALIB=0x4
    iwlagn 0000:03:00.0: Tunable channels: 13 802.11bg, 24 802.11a channels
    iwlagn 0000:03:00.0: irq 44 for MSI/MSI-X
    sdhci-pci 0000:04:00.0: SDHCI controller found [1180:e822] (rev 0)
    sdhci-pci 0000:04:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    sdhci-pci 0000:04:00.0: Will use DMA mode even though HW doesn't fully claim to support it.
    sdhci-pci 0000:04:00.0: setting latency timer to 64
    Registered led device: mmc0::
    mmc0: SDHCI controller on PCI [0000:04:00.0] using DMA
    sdhci-pci 0000:04:00.4: SDHCI controller found [1180:e822] (rev 0)
    sdhci-pci 0000:04:00.4: PCI INT C -> GSI 16 (level, low) -> IRQ 16
    sdhci-pci 0000:04:00.4: Will use DMA mode even though HW doesn't fully claim to support it.
    sdhci-pci 0000:04:00.4: setting latency timer to 64
    Registered led device: mmc1::
    mmc1: SDHCI controller on PCI [0000:04:00.4] using DMA
    firewire_core: created device fw0: GUID 080046030321aebd, S400
    hda_codec: ALC262: SKU not ready 0x411111f0
    hda_codec: ALC262: BIOS auto-probing.
    input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input8
    HDA Intel 0000:01:00.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    hda_intel: Disable MSI for Nvidia chipset
    HDA Intel 0000:01:00.1: setting latency timer to 64
    usb 7-1: new full speed USB device using uhci_hcd and address 2
    iwlagn 0000:03:00.0: loaded firmware version 8.24.2.12
    Linux video capture interface: v2.00
    uvcvideo: Found UVC 1.00 device <unnamed> (05ca:18b5)
    input: UVC Camera (05ca:18b5) as /devices/pci0000:00/0000:00:1a.7/usb1/1-2/1-2:1.0/input/input9
    usbcore: registered new interface driver uvcvideo
    USB Video Class driver (v0.1.0)
    phy0: Selected rate control algorithm 'iwl-agn-rs'
    usbcore: registered new interface driver hiddev
    usb 8-1: new full speed USB device using uhci_hcd and address 2
    input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.1/usb7/7-1/7-1:1.0/input/input10
    generic-usb 0003:046D:C52F.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:1d.1-1/input0
    input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.1/usb7/7-1/7-1:1.1/input/input11
    generic-usb 0003:046D:C52F.0002: input,hiddev0,hidraw1: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:1d.1-1/input1
    usbcore: registered new interface driver usbhid
    usbhid: USB HID core driver
    Bluetooth: Core ver 2.15
    NET: Registered protocol family 31
    Bluetooth: HCI device and connection manager initialized
    Bluetooth: HCI socket layer initialized
    scsi 4:0:0:0: Direct-Access CBM Flash Disk 5.00 PQ: 0 ANSI: 2
    sd 4:0:0:0: Attached scsi generic sg2 type 0
    sd 4:0:0:0: [sdb] 978944 512-byte logical blocks: (501 MB/478 MiB)
    sd 4:0:0:0: [sdb] Write Protect is off
    sd 4:0:0:0: [sdb] Mode Sense: 0b 00 00 08
    sd 4:0:0:0: [sdb] Assuming drive cache: write through
    sd 4:0:0:0: [sdb] Assuming drive cache: write through
    sdb: sdb1
    sd 4:0:0:0: [sdb] Assuming drive cache: write through
    sd 4:0:0:0: [sdb] Attached SCSI removable disk
    nouveau 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    nouveau 0000:01:00.0: setting latency timer to 64
    [drm] nouveau 0000:01:00.0: Detected an NV50 generation card (0x0a5500a2)
    [drm] nouveau 0000:01:00.0: Attempting to load BIOS image from PRAMIN
    Bluetooth: Generic Bluetooth USB driver ver 0.6
    usbcore: registered new interface driver btusb
    [drm] nouveau 0000:01:00.0: ... appears to be valid
    [drm] nouveau 0000:01:00.0: BIT BIOS found
    [drm] nouveau 0000:01:00.0: Bios version 70.16.27.00
    [drm] nouveau 0000:01:00.0: Pointer to BIT loadval table invalid
    [drm] nouveau 0000:01:00.0: TMDS table version 2.0
    [drm] nouveau 0000:01:00.0: Found Display Configuration Block version 4.0
    [drm] nouveau 0000:01:00.0: Raw DCB entry 0: 010003f3 00010036
    [drm] nouveau 0000:01:00.0: Raw DCB entry 1: 02011300 00000000
    [drm] nouveau 0000:01:00.0: Raw DCB entry 2: 02422362 00020010
    [drm] nouveau 0000:01:00.0: Raw DCB entry 3: 0000000e 00000000
    [drm] nouveau 0000:01:00.0: DCB connector table: VHER 0x40 5 16 4
    [drm] nouveau 0000:01:00.0: 0: 0x00000040: type 0x40 idx 0 tag 0xff
    [drm] nouveau 0000:01:00.0: 1: 0x00000100: type 0x00 idx 1 tag 0xff
    [drm] nouveau 0000:01:00.0: 2: 0x00001261: type 0x61 idx 2 tag 0x07
    [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 0 at offset 0xD52B
    [drm] nouveau 0000:01:00.0: 0xD84D: Condition still not met after 20ms, skipping following opcodes
    [drm] nouveau 0000:01:00.0: 0xD851: Condition still not met after 20ms, skipping following opcodes
    [drm] nouveau 0000:01:00.0: 0xDA0E: Condition still not met after 20ms, skipping following opcodes
    [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 1 at offset 0xDA3B
    [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 2 at offset 0xE7C5
    [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 3 at offset 0xE803
    [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 4 at offset 0xEA43
    [drm] nouveau 0000:01:00.0: Parsing VBIOS init table at offset 0xEAA8
    [drm] nouveau 0000:01:00.0: 0xEAA8: Condition still not met after 20ms, skipping following opcodes
    [drm] nouveau 0000:01:00.0: Detected 512MiB VRAM
    [TTM] Zone kernel: Available graphics memory: 2011272 kiB.
    [TTM] Initializing pool allocator.
    [drm] nouveau 0000:01:00.0: 512 MiB GART (aperture)
    [drm] nouveau 0000:01:00.0: Allocating FIFO number 1
    [drm] nouveau 0000:01:00.0: nouveau_channel_alloc: initialised FIFO 1
    [drm] nouveau 0000:01:00.0: allocated 1366x768 fb: 0x40230000, bo ffff88013bfac400
    Console: switching to colour frame buffer device 170x48
    fb0: nouveaufb frame buffer device
    drm: registered panic notifier
    [drm] Initialized nouveau 0.0.16 20090420 for 0000:01:00.0 on minor 0
    EXT4-fs (sda5): re-mounted. Opts: (null)
    EXT4-fs (sda5): re-mounted. Opts: (null)
    Adding 2803304k swap on /dev/sda6. Priority:-1 extents:1 across:2803304k
    wlan0: authenticate with 94:44:52:78:c1:98 (try 1)
    wlan0: authenticated
    wlan0: associate with 94:44:52:78:c1:98 (try 1)
    wlan0: RX AssocResp from 94:44:52:78:c1:98 (capab=0x411 status=0 aid=1)
    wlan0: associated
    Intel AES-NI instructions are not detected.
    padlock: VIA PadLock not detected.
    Initializing cgroup subsys cpuset
    Initializing cgroup subsys cpu
    Linux version 2.6.36-ARCH (tobias@T-POWA-LX) (gcc version 4.5.1 (GCC) ) #1 SMP PREEMPT Wed Nov 24 00:39:57 CET 2010
    Command line: root=/dev/sda5 ro
    BIOS-provided physical RAM map:
    BIOS-e820: 0000000000000000 - 000000000009bc00 (usable)
    BIOS-e820: 000000000009bc00 - 00000000000a0000 (reserved)
    BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    BIOS-e820: 0000000000100000 - 00000000bdea7000 (usable)
    BIOS-e820: 00000000bdea7000 - 00000000bdecf000 (ACPI NVS)
    BIOS-e820: 00000000bdecf000 - 00000000bdee0000 (reserved)
    BIOS-e820: 00000000bdee0000 - 00000000bdee1000 (ACPI NVS)
    BIOS-e820: 00000000bdee1000 - 00000000bdf08000 (reserved)
    BIOS-e820: 00000000bdf08000 - 00000000bdf09000 (ACPI NVS)
    BIOS-e820: 00000000bdf09000 - 00000000bdf0a000 (reserved)
    BIOS-e820: 00000000bdf0a000 - 00000000bdf14000 (ACPI data)
    BIOS-e820: 00000000bdf14000 - 00000000bdf1a000 (ACPI NVS)
    BIOS-e820: 00000000bdf1a000 - 00000000bdf39000 (reserved)
    BIOS-e820: 00000000bdf39000 - 00000000be000000 (usable)
    BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
    BIOS-e820: 00000000ffa00000 - 00000000ffc00000 (reserved)
    BIOS-e820: 00000000ffe00000 - 0000000100000000 (reserved)
    BIOS-e820: 0000000100000000 - 0000000140000000 (usable)
    NX (Execute Disable) protection: active
    DMI 2.4 present.
    AMI BIOS detected: BIOS may corrupt low RAM, working around it.
    e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved)
    e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    No AGP bridge found
    last_pfn = 0x140000 max_arch_pfn = 0x400000000
    MTRR default type: uncachable
    MTRR fixed ranges enabled:
    00000-9FFFF write-back
    A0000-BFFFF uncachable
    C0000-CFFFF write-protect
    D0000-E7FFF write-through
    E8000-FFFFF write-protect
    MTRR variable ranges enabled:
    0 base 000000000 mask F80000000 write-back
    1 base 080000000 mask FC0000000 write-back
    2 base 0BE000000 mask FFE000000 uncachable
    3 base 100000000 mask FC0000000 write-back
    4 disabled
    5 disabled
    6 disabled
    x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    e820 update range: 00000000be000000 - 0000000100000000 (usable) ==> (reserved)
    last_pfn = 0xbe000 max_arch_pfn = 0x400000000
    Scanning 0 areas for low memory corruption
    modified physical RAM map:
    modified: 0000000000000000 - 0000000000010000 (reserved)
    modified: 0000000000010000 - 000000000009bc00 (usable)
    modified: 000000000009bc00 - 00000000000a0000 (reserved)
    modified: 00000000000e0000 - 0000000000100000 (reserved)
    modified: 0000000000100000 - 00000000bdea7000 (usable)
    modified: 00000000bdea7000 - 00000000bdecf000 (ACPI NVS)
    modified: 00000000bdecf000 - 00000000bdee0000 (reserved)
    modified: 00000000bdee0000 - 00000000bdee1000 (ACPI NVS)
    modified: 00000000bdee1000 - 00000000bdf08000 (reserved)
    modified: 00000000bdf08000 - 00000000bdf09000 (ACPI NVS)
    modified: 00000000bdf09000 - 00000000bdf0a000 (reserved)
    modified: 00000000bdf0a000 - 00000000bdf14000 (ACPI data)
    modified: 00000000bdf14000 - 00000000bdf1a000 (ACPI NVS)
    modified: 00000000bdf1a000 - 00000000bdf39000 (reserved)
    modified: 00000000bdf39000 - 00000000be000000 (usable)
    modified: 00000000e0000000 - 00000000f0000000 (reserved)
    modified: 00000000ffa00000 - 00000000ffc00000 (reserved)
    modified: 00000000ffe00000 - 0000000100000000 (reserved)
    modified: 0000000100000000 - 0000000140000000 (usable)
    initial memory mapped : 0 - 20000000
    found SMP MP-table at [ffff8800000fd690] fd690
    init_memory_mapping: 0000000000000000-00000000be000000
    0000000000 - 00be000000 page 2M
    kernel direct mapping tables up to be000000 @ 16000-1a000
    init_memory_mapping: 0000000100000000-0000000140000000
    0100000000 - 0140000000 page 2M
    kernel direct mapping tables up to 140000000 @ 18000-1e000
    RAMDISK: 37e39000 - 37ff0000
    ACPI: RSDP 00000000000f03b0 00024 (v02 Sony)
    ACPI: XSDT 00000000bdf12f10 0005C (v01 Sony VAIO 20090922 MSFT 00010013)
    ACPI: FACP 00000000bdf08a90 000F4 (v04 Sony VAIO 20090922 MSFT 00010013)
    ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! (20100702/tbfadt-369)
    ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBDF19E40/0x00000000BDF19D40, using 32 (20100702/tbfadt-486)
    ACPI: DSDT 00000000bdf0a010 06831 (v01 Sony VAIO 20090922 INTL 20051117)
    ACPI: FACS 00000000bdf19e40 00040
    ACPI: APIC 00000000bdf11f10 0006C (v02 Sony VAIO 20090922 MSFT 00010013)
    ACPI: MCFG 00000000bdf18c90 0003C (v01 Sony VAIO 20090922 MSFT 00000097)
    ACPI: HPET 00000000bdf18c10 00038 (v01 Sony VAIO 20090922 MSFT 00010013)
    ACPI: SLIC 00000000bdf14c10 00176 (v01 Sony VAIO 20090922 Sony 01000000)
    ACPI: SSDT 00000000bdee0590 00505 (v01 Sony VAIO 20090922 INTL 20051117)
    ACPI: SSDT 00000000bdecbc10 002E4 (v01 Sony VAIO 20090922 INTL 20051117)
    ACPI: Local APIC address 0xfee00000
    [ffffea0000000000-ffffea00045fffff] PMD -> [ffff880002000000-ffff8800057fffff] on node 0
    Zone PFN ranges:
    DMA 0x00000010 -> 0x00001000
    DMA32 0x00001000 -> 0x00100000
    Normal 0x00100000 -> 0x00140000
    Movable zone start PFN for each node
    early_node_map[4] active PFN ranges
    0: 0x00000010 -> 0x0000009b
    0: 0x00000100 -> 0x000bdea7
    0: 0x000bdf39 -> 0x000be000
    0: 0x00100000 -> 0x00140000
    On node 0 totalpages: 1040121
    DMA zone: 56 pages used for memmap
    DMA zone: 0 pages reserved
    DMA zone: 3923 pages, LIFO batch:0
    DMA32 zone: 14280 pages used for memmap
    DMA32 zone: 759718 pages, LIFO batch:31
    Normal zone: 3584 pages used for memmap
    Normal zone: 258560 pages, LIFO batch:31
    ACPI: PM-Timer IO Port: 0x408
    ACPI: Local APIC address 0xfee00000
    ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] disabled)
    ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] disabled)
    ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    ACPI: IRQ0 used by override.
    ACPI: IRQ2 used by override.
    ACPI: IRQ9 used by override.
    Using ACPI (MADT) for SMP configuration information
    ACPI: HPET id: 0x8086a301 base: 0xfed00000
    SMP: Allowing 4 CPUs, 2 hotplug CPUs
    nr_irqs_gsi: 40
    early_res array is doubled to 64 at [19300 - 19aff]
    PM: Registered nosave memory: 000000000009b000 - 000000000009c000
    PM: Registered nosave memory: 000000000009c000 - 00000000000a0000
    PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    PM: Registered nosave memory: 00000000bdea7000 - 00000000bdecf000
    PM: Registered nosave memory: 00000000bdecf000 - 00000000bdee0000
    PM: Registered nosave memory: 00000000bdee0000 - 00000000bdee1000
    PM: Registered nosave memory: 00000000bdee1000 - 00000000bdf08000
    PM: Registered nosave memory: 00000000bdf08000 - 00000000bdf09000
    PM: Registered nosave memory: 00000000bdf09000 - 00000000bdf0a000
    PM: Registered nosave memory: 00000000bdf0a000 - 00000000bdf14000
    PM: Registered nosave memory: 00000000bdf14000 - 00000000bdf1a000
    PM: Registered nosave memory: 00000000bdf1a000 - 00000000bdf39000
    PM: Registered nosave memory: 00000000be000000 - 00000000e0000000
    PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
    PM: Registered nosave memory: 00000000f0000000 - 00000000ffa00000
    PM: Registered nosave memory: 00000000ffa00000 - 00000000ffc00000
    PM: Registered nosave memory: 00000000ffc00000 - 00000000ffe00000
    PM: Registered nosave memory: 00000000ffe00000 - 0000000100000000
    Allocating PCI resources starting at be000000 (gap: be000000:22000000)
    Booting paravirtualized kernel on bare hardware
    setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
    PERCPU: Embedded 28 pages/cpu @ffff880001a00000 s86016 r8192 d20480 u524288
    early_res array is doubled to 128 at [19b00 - 1aaff]
    pcpu-alloc: s86016 r8192 d20480 u524288 alloc=1*2097152
    pcpu-alloc: [0] 0 1 2 3
    Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1022201
    Kernel command line: root=/dev/sda5 ro
    PID hash table entries: 4096 (order: 3, 32768 bytes)
    Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240
    Checking aperture...
    No AGP bridge found
    Calgary: detecting Calgary via BIOS EBDA area
    Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    Subtract (69 early reservations)
    #1 [0001000000 - 00017f99a8] TEXT DATA BSS
    #2 [0037e39000 - 0037ff0000] RAMDISK
    #3 [00017fa000 - 00017fa1f8] BRK
    #4 [00000fd6a0 - 0000100000] BIOS reserved
    #5 [00000fd690 - 00000fd6a0] MP-table mpf
    #6 [000009bc00 - 00000fd410] BIOS reserved
    #7 [00000fd624 - 00000fd690] BIOS reserved
    #8 [00000fd410 - 00000fd624] MP-table mpc
    #9 [0000010000 - 0000012000] TRAMPOLINE
    #10 [0000012000 - 0000016000] ACPI WAKEUP
    #11 [0000016000 - 0000018000] PGTABLE
    #12 [0000018000 - 0000019000] PGTABLE
    #13 [00017fa200 - 00017fb200] BOOTMEM
    #14 [0000019000 - 0000019300] BOOTMEM
    #15 [0001ffc000 - 0001ffd000] BOOTMEM
    #16 [0001ffd000 - 0001ffe000] BOOTMEM
    #17 [0002000000 - 0005800000] MEMMAP 0
    #18 [00017fb200 - 0001813200] BOOTMEM
    #19 [0001813200 - 000182b200] BOOTMEM
    #20 [000182b200 - 0001843200] BOOTMEM
    #21 [0001844000 - 0001845000] BOOTMEM
    #22 [00017f99c0 - 00017f9a01] BOOTMEM
    #23 [00017f9a40 - 00017f9a83] BOOTMEM
    #24 [00017f9ac0 - 00017f9ee8] BOOTMEM
    #25 [00017f9f00 - 00017f9f68] BOOTMEM
    #26 [00017f9f80 - 00017f9fe8] BOOTMEM
    #27 [0001843200 - 0001843268] BOOTMEM
    #28 [0001843280 - 00018432e8] BOOTMEM
    #29 [0001843300 - 0001843368] BOOTMEM
    #30 [0001843380 - 00018433e8] BOOTMEM
    #31 [0001843400 - 0001843468] BOOTMEM
    #32 [0001843480 - 00018434e8] BOOTMEM
    #33 [0001843500 - 0001843568] BOOTMEM
    #34 [0001843580 - 00018435e8] BOOTMEM
    #35 [0001843600 - 0001843668] BOOTMEM
    #36 [0001843680 - 00018436e8] BOOTMEM
    #37 [0001843700 - 0001843768] BOOTMEM
    #38 [0001843780 - 00018437e8] BOOTMEM
    #39 [0001843800 - 0001843868] BOOTMEM
    #40 [0001843880 - 00018438e8] BOOTMEM
    #41 [0001843900 - 0001843968] BOOTMEM
    #42 [0001843980 - 00018439e8] BOOTMEM
    #43 [0001843a00 - 0001843a20] BOOTMEM
    #44 [0001843a40 - 0001843a60] BOOTMEM
    #45 [0001843a80 - 0001843aa0] BOOTMEM
    #46 [0001843ac0 - 0001843ad2] BOOTMEM
    #47 [0001843b00 - 0001843b12] BOOTMEM
    #48 [0001a00000 - 0001a1c000] BOOTMEM
    #49 [0001a80000 - 0001a9c000] BOOTMEM
    #50 [0001b00000 - 0001b1c000] BOOTMEM
    #51 [0001b80000 - 0001b9c000] BOOTMEM
    #52 [0001843b40 - 0001843b48] BOOTMEM
    #53 [0001843b80 - 0001843b88] BOOTMEM
    #54 [0001843bc0 - 0001843bd0] BOOTMEM
    #55 [0001843c00 - 0001843c20] BOOTMEM
    #56 [0001843c40 - 0001843d70] BOOTMEM
    #57 [0001843d80 - 0001843dd0] BOOTMEM
    #58 [0001843e00 - 0001843e50] BOOTMEM
    #59 [0001845000 - 000184d000] BOOTMEM
    #60 [0001b9c000 - 0001f9c000] BOOTMEM
    #61 [0005800000 - 0005a00000] BOOTMEM
    #62 [0001843e80 - 0001843e88] BOOTMEM
    #63 [0001843ec0 - 0001843ec8] BOOTMEM
    #64 [000184d000 - 000184d240] BOOTMEM
    #65 [0005a00000 - 0009a00000] BOOTMEM
    #66 [000184d240 - 000186d240] BOOTMEM
    #67 [000186d240 - 00018ad240] BOOTMEM
    #68 [000001ab00 - 0000022b00] BOOTMEM
    Memory: 4020284k/5242880k available (3682k kernel code, 1082396k absent, 140200k reserved, 2083k data, 504k init)
    SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    Hierarchical RCU implementation.
    RCU-based detection of stalled CPUs is disabled.
    Verbose stalled-CPUs detection is disabled.
    NR_IRQS:2304
    Extended CMOS year: 2000
    Console: colour VGA+ 80x25
    console [tty0] enabled
    allocated 41943040 bytes of page_cgroup
    please try 'cgroup_disable=memory' option if you don't want memory cgroups
    hpet clockevent registered
    Fast TSC calibration using PIT
    spurious 8259A interrupt: IRQ7.
    Detected 2527.035 MHz processor.
    Calibrating delay loop (skipped), value calculated using timer frequency.. 5056.65 BogoMIPS (lpj=8423450)
    pid_max: default: 32768 minimum: 301
    Security Framework initialized
    TOMOYO Linux initialized
    AppArmor: AppArmor disabled by boot time parameter
    Mount-cache hash table entries: 256
    Initializing cgroup subsys ns
    Initializing cgroup subsys cpuacct
    Initializing cgroup subsys memory
    Initializing cgroup subsys devices
    Initializing cgroup subsys freezer
    Initializing cgroup subsys net_cls
    Initializing cgroup subsys blkio
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 0
    mce: CPU supports 6 MCE banks
    CPU0: Thermal monitoring enabled (TM2)
    using mwait in idle threads.
    Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver.
    ... version: 2
    ... bit width: 40
    ... generic registers: 2
    ... value mask: 000000ffffffffff
    ... max period: 000000007fffffff
    ... fixed-purpose events: 3
    ... event mask: 0000000700000003
    ACPI: Core revision 20100702
    Setting APIC routing to flat
    ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
    CPU0: Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz stepping 0a
    NMI watchdog enabled, takes one hw-pmu counter.
    Booting Node 0, Processors #1
    NMI watchdog enabled, takes one hw-pmu counter.
    Brought up 2 CPUs
    Total of 2 processors activated (10112.21 BogoMIPS).
    devtmpfs: initialized
    NET: Registered protocol family 16
    ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    ACPI: bus type pci registered
    PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    PCI: Using configuration type 1 for base access
    bio: create slab <bio-0> at 0
    ACPI: EC: Look up EC in DSDT
    ACPI: Executed 1 blocks of module-level executable AML code
    ACPI: BIOS _OSI(Linux) query ignored
    ACPI: SSDT 00000000bdee4c10 00265 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    ACPI: Dynamic OEM Table Load:
    ACPI: SSDT (null) 00265 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    ACPI: SSDT 00000000bdee2810 007A2 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    ACPI: Dynamic OEM Table Load:
    ACPI: SSDT (null) 007A2 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    ACPI: SSDT 00000000bdee3d90 000FD (v01 PmRef ApIst 00003000 INTL 20051117)
    ACPI: Dynamic OEM Table Load:
    ACPI: SSDT (null) 000FD (v01 PmRef ApIst 00003000 INTL 20051117)
    ACPI: SSDT 00000000bdee1f90 00047 (v01 PmRef ApCst 00003000 INTL 20051117)
    ACPI: Dynamic OEM Table Load:
    ACPI: SSDT (null) 00047 (v01 PmRef ApCst 00003000 INTL 20051117)
    ACPI: Interpreter enabled
    ACPI: (supports S0 S3 S4 S5)
    ACPI: Using IOAPIC for interrupt routing
    ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    ACPI: No dock devices found.
    PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    \_SB_.PCI0:_OSC invalid UUID
    _OSC request data:1 8 1f
    ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
    pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
    pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff]
    pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
    pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
    pci_root PNP0A08:00: host bridge window [mem 0x000dc000-0x000dffff]
    pci_root PNP0A08:00: host bridge window [mem 0x000e0000-0x000e3fff]
    pci_root PNP0A08:00: host bridge window [mem 0x000e4000-0x000e7fff]
    pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xfebfffff]
    DMAR: Forcing write-buffer flush capability
    DMAR: Disabling IOMMU for graphics on this chipset
    pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:01.0: PME# disabled
    pci 0000:00:1a.0: reg 20: [io 0xe0e0-0xe0ff]
    pci 0000:00:1a.1: reg 20: [io 0xe0c0-0xe0df]
    pci 0000:00:1a.2: reg 20: [io 0xe0a0-0xe0bf]
    pci 0000:00:1a.7: reg 10: [mem 0xd8d04c00-0xd8d04fff]
    pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    pci 0000:00:1a.7: PME# disabled
    pci 0000:00:1b.0: reg 10: [mem 0xd8d00000-0xd8d03fff 64bit]
    pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:1b.0: PME# disabled
    pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.0: PME# disabled
    pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.1: PME# disabled
    pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.2: PME# disabled
    pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.3: PME# disabled
    pci 0000:00:1d.0: reg 20: [io 0xe080-0xe09f]
    pci 0000:00:1d.1: reg 20: [io 0xe060-0xe07f]
    pci 0000:00:1d.2: reg 20: [io 0xe040-0xe05f]
    pci 0000:00:1d.7: reg 10: [mem 0xd8d04800-0xd8d04bff]
    pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    pci 0000:00:1d.7: PME# disabled
    pci 0000:00:1f.2: reg 10: [io 0xe130-0xe137]
    pci 0000:00:1f.2: reg 14: [io 0xe120-0xe123]
    pci 0000:00:1f.2: reg 18: [io 0xe110-0xe117]
    pci 0000:00:1f.2: reg 1c: [io 0xe100-0xe103]
    pci 0000:00:1f.2: reg 20: [io 0xe020-0xe03f]
    pci 0000:00:1f.2: reg 24: [mem 0xd8d04000-0xd8d047ff]
    pci 0000:00:1f.2: PME# supported from D3hot
    pci 0000:00:1f.2: PME# disabled
    pci 0000:00:1f.3: reg 10: [mem 0xd8d05000-0xd8d050ff 64bit]
    pci 0000:00:1f.3: reg 20: [io 0xe000-0xe01f]
    pci 0000:01:00.0: reg 10: [mem 0xd2000000-0xd2ffffff]
    pci 0000:01:00.0: reg 14: [mem 0xc0000000-0xcfffffff 64bit pref]
    pci 0000:01:00.0: reg 1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
    pci 0000:01:00.0: reg 24: [io 0xd000-0xd07f]
    pci 0000:01:00.0: reg 30: [mem 0xd3000000-0xd307ffff pref]
    pci 0000:01:00.1: reg 10: [mem 0xd3080000-0xd3083fff]
    pci 0000:00:01.0: PCI bridge to [bus 01-01]
    pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd30fffff]
    pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    pci 0000:02:00.0: reg 10: [mem 0xd7920000-0xd7923fff 64bit]
    pci 0000:02:00.0: reg 18: [io 0xc000-0xc0ff]
    pci 0000:02:00.0: reg 30: [mem 0xd7900000-0xd791

  • Xen Kernel randomly fails to load and goes out of range

    Been having an on/off issue lately that requires a hard reset of my system.  Essentially what happens is the system begins to load when my monitor reports an error that the signal is out of range.  I try to pretend login and reboot, but it does not work.  Instead, I am forced to simply reset the system and once reset it appears to boot OK without any issues.  In fact I can go a few reboots before once again it decides to break.  Below is what should be one of the logs from a failed boot, in fact, the system is in this same failed state right now as well.
    arch_1 ~ :( # journalctl -b -1
    -- Logs begin at Sat 2013-12-28 00:39:50 EST, end at Thu 2014-01-02 23:28:03 EST. --
    Jan 02 23:22:36 arch_1 systemd-journal[129]: Runtime journal is using 332.0K (max 91.3M, leaving 137.0M of fre
    Jan 02 23:22:36 arch_1 systemd-journal[129]: Runtime journal is using 336.0K (max 91.3M, leaving 137.0M of fre
    Jan 02 23:22:36 arch_1 kernel: Initializing cgroup subsys cpuset
    Jan 02 23:22:36 arch_1 kernel: Initializing cgroup subsys cpu
    Jan 02 23:22:36 arch_1 kernel: Initializing cgroup subsys cpuacct
    Jan 02 23:22:36 arch_1 kernel: Linux version 3.12.6-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.2 (GCC) ) #1 SM
    Jan 02 23:22:36 arch_1 kernel: Command line: /vmlinuz-linux root=/dev/mapper/vg_arch-lv_root rw console=tty0
    Jan 02 23:22:36 arch_1 kernel: Freeing 9e-100 pfn range: 98 pages freed
    Jan 02 23:22:36 arch_1 kernel: 1-1 mapping on 9e->100
    Jan 02 23:22:36 arch_1 kernel: 1-1 mapping on bd9ff->100000
    Jan 02 23:22:36 arch_1 kernel: Released 98 pages of unused memory
    Jan 02 23:22:36 arch_1 kernel: Set 271971 page(s) to 1-1 mapping
    Jan 02 23:22:36 arch_1 kernel: Populating 80000-80062 pfn range: 98 pages added
    Jan 02 23:22:36 arch_1 kernel: e820: BIOS-provided physical RAM map:
    Jan 02 23:22:36 arch_1 kernel: Xen: [mem 0x0000000000000000-0x000000000009dfff] usable
    Jan 02 23:22:36 arch_1 kernel: Xen: [mem 0x00000000000a0000-0x00000000000fffff] reserved
    Jan 02 23:22:36 arch_1 kernel: Xen: [mem 0x0000000000100000-0x00000000bd9fefff] usable
    Jan 02 23:22:36 arch_1 kernel: Xen: [mem 0x00000000bd9ffc00-0x00000000bda53bff] ACPI NVS
    Jan 02 23:22:36 arch_1 kernel: Xen: [mem 0x00000000bda53c00-0x00000000bda55bff] ACPI data
    Jan 02 23:22:36 arch_1 kernel: Xen: [mem 0x00000000bda55c00-0x00000000bfffffff] reserved
    Jan 02 23:22:36 arch_1 kernel: Xen: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
    Jan 02 23:22:36 arch_1 kernel: Xen: [mem 0x00000000fec00000-0x00000000fed003ff] reserved
    Jan 02 23:22:36 arch_1 kernel: Xen: [mem 0x00000000fed20000-0x00000000fed9ffff] reserved
    Jan 02 23:22:36 arch_1 kernel: Xen: [mem 0x00000000fee00000-0x00000000feefffff] reserved
    Jan 02 23:22:36 arch_1 kernel: Xen: [mem 0x00000000ffb00000-0x00000000ffffffff] reserved
    Jan 02 23:22:36 arch_1 kernel: Xen: [mem 0x0000000100000000-0x0000000237ffffff] usable
    Jan 02 23:22:36 arch_1 kernel: NX (Execute Disable) protection: active
    Jan 02 23:22:36 arch_1 kernel: SMBIOS 2.5 present.
    Jan 02 23:22:36 arch_1 kernel: DMI: Dell Inc. OptiPlex 960 /0Y958C, BIOS A10 12/20/2010
    Jan 02 23:22:36 arch_1 kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    Jan 02 23:22:36 arch_1 kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Jan 02 23:22:36 arch_1 kernel: No AGP bridge found
    Jan 02 23:22:36 arch_1 kernel: e820: last_pfn = 0x238000 max_arch_pfn = 0x400000000
    Jan 02 23:22:36 arch_1 kernel: e820: last_pfn = 0xbd9ff max_arch_pfn = 0x400000000
    Jan 02 23:22:36 arch_1 kernel: Scanning 1 areas for low memory corruption
    Jan 02 23:22:36 arch_1 kernel: Base memory trampoline at [ffff880000098000] 98000 size 24576
    Jan 02 23:22:36 arch_1 kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    Jan 02 23:22:36 arch_1 kernel: [mem 0x00000000-0x000fffff] page 4k
    Jan 02 23:22:36 arch_1 kernel: init_memory_mapping: [mem 0x7fe00000-0x7fffffff]
    Jan 02 23:22:36 arch_1 kernel: [mem 0x7fe00000-0x7fffffff] page 4k
    Jan 02 23:22:36 arch_1 kernel: BRK [0x01b47000, 0x01b47fff] PGTABLE
    Jan 02 23:22:36 arch_1 kernel: BRK [0x01b48000, 0x01b48fff] PGTABLE
    Jan 02 23:22:36 arch_1 kernel: init_memory_mapping: [mem 0x7c000000-0x7fdfffff]
    Jan 02 23:22:36 arch_1 kernel: [mem 0x7c000000-0x7fdfffff] page 4k
    Jan 02 23:22:36 arch_1 kernel: BRK [0x01b49000, 0x01b49fff] PGTABLE
    Jan 02 23:22:36 arch_1 kernel: BRK [0x01b4a000, 0x01b4afff] PGTABLE
    Jan 02 23:22:36 arch_1 kernel: BRK [0x01b4b000, 0x01b4bfff] PGTABLE
    Jan 02 23:22:36 arch_1 kernel: BRK [0x01b4c000, 0x01b4cfff] PGTABLE
    Jan 02 23:22:36 arch_1 kernel: init_memory_mapping: [mem 0x00100000-0x7bffffff]
    Jan 02 23:22:36 arch_1 kernel: [mem 0x00100000-0x7bffffff] page 4k
    Jan 02 23:22:36 arch_1 kernel: init_memory_mapping: [mem 0x80000000-0xbd9fefff]
    Jan 02 23:22:36 arch_1 kernel: [mem 0x80000000-0xbd9fefff] page 4k
    Jan 02 23:22:36 arch_1 kernel: init_memory_mapping: [mem 0x100000000-0x237ffffff]
    Jan 02 23:22:36 arch_1 kernel: [mem 0x100000000-0x237ffffff] page 4k
    Jan 02 23:22:36 arch_1 kernel: RAMDISK: [mem 0x01f54000-0x029fefff]
    Jan 02 23:22:36 arch_1 kernel: ACPI: RSDP 00000000000fec00 00024 (v02 DELL )
    Jan 02 23:22:36 arch_1 kernel: ACPI: XSDT 00000000000fc7d7 00084 (v01 DELL B10K 00000015 ASL 00000061)
    Jan 02 23:22:36 arch_1 kernel: ACPI: FACP 00000000000fc907 000F4 (v03 DELL B10K 00000015 ASL 00000061)
    Jan 02 23:22:36 arch_1 kernel: ACPI: DSDT 00000000ffe9e423 05744 (v01 DELL dt_ex 00001000 INTL 20050624)
    Jan 02 23:22:36 arch_1 kernel: ACPI: FACS 00000000bd9ffc00 00040
    Jan 02 23:22:36 arch_1 kernel: ACPI: SSDT 00000000ffea3d30 00087 (v01 DELL st_ex 00001000 INTL 20050624)
    Jan 02 23:22:36 arch_1 kernel: ACPI: APIC 00000000000fc9fb 00092 (v01 DELL B10K 00000015 ASL 00000061)
    Jan 02 23:22:36 arch_1 kernel: ACPI: BOOT 00000000000fca8d 00028 (v01 DELL B10K 00000015 ASL 00000061)
    Jan 02 23:22:36 arch_1 kernel: ACPI: ASF! 00000000000fcab5 00096 (v32 DELL B10K 00000015 ASL 00000061)
    Jan 02 23:22:36 arch_1 kernel: ACPI: MCFG 00000000000fcb4b 0003C (v01 DELL B10K 00000015 ASL 00000061)
    Jan 02 23:22:36 arch_1 kernel: ACPI: HPET 00000000000fcb87 00038 (v01 DELL B10K 00000015 ASL 00000061)
    Jan 02 23:22:36 arch_1 kernel: ACPI: TCPA 00000000000fcde3 00032 (v01 DELL B10K 00000015 ASL 00000061)
    Jan 02 23:22:36 arch_1 kernel: ACPI: DMAR 00000000000fce15 00108 (v01 DELL B10K 00000015 ASL 00000061)
    Jan 02 23:22:36 arch_1 kernel: ACPI: SSDT 00000000bd9ffc40 001F9 (v01 DpgPmm Cpu0Ist 00000011 INTL 20050624)
    Jan 02 23:22:36 arch_1 kernel: ACPI: SSDT 00000000bda00049 001F9 (v01 DpgPmm Cpu1Ist 00000011 INTL 20050624)
    Jan 02 23:22:36 arch_1 kernel: ACPI: SSDT 00000000bda00452 00190 (v01 DpgPmm CpuPm 00000010 INTL 20050624)
    Jan 02 23:22:36 arch_1 kernel: ACPI: Local APIC address 0xfee00000
    Jan 02 23:22:36 arch_1 kernel: NUMA turned off
    Jan 02 23:22:36 arch_1 kernel: Faking a node at [mem 0x0000000000000000-0x0000000237ffffff]
    Jan 02 23:22:36 arch_1 kernel: Initmem setup node 0 [mem 0x00000000-0x237ffffff]
    Jan 02 23:22:36 arch_1 kernel: NODE_DATA [mem 0x7f0c7000-0x7f0cbfff]
    Jan 02 23:22:36 arch_1 kernel: Zone ranges:
    Jan 02 23:22:36 arch_1 kernel: DMA [mem 0x00001000-0x00ffffff]
    Jan 02 23:22:36 arch_1 kernel: DMA32 [mem 0x01000000-0xffffffff]
    Jan 02 23:22:36 arch_1 kernel: Normal [mem 0x100000000-0x237ffffff]
    Jan 02 23:22:36 arch_1 kernel: Movable zone start for each node
    Jan 02 23:22:36 arch_1 kernel: Early memory node ranges
    Jan 02 23:22:36 arch_1 kernel: node 0: [mem 0x00001000-0x0009dfff]
    Jan 02 23:22:36 arch_1 kernel: node 0: [mem 0x00100000-0xbd9fefff]
    Jan 02 23:22:36 arch_1 kernel: node 0: [mem 0x100000000-0x237ffffff]
    Jan 02 23:22:36 arch_1 kernel: On node 0 totalpages: 2054556
    Jan 02 23:22:36 arch_1 kernel: DMA zone: 64 pages used for memmap
    Jan 02 23:22:36 arch_1 kernel: DMA zone: 21 pages reserved
    Jan 02 23:22:36 arch_1 kernel: DMA zone: 3997 pages, LIFO batch:0
    Jan 02 23:22:36 arch_1 kernel: DMA32 zone: 12072 pages used for memmap
    Jan 02 23:22:36 arch_1 kernel: DMA32 zone: 772607 pages, LIFO batch:31
    Jan 02 23:22:36 arch_1 kernel: Normal zone: 19968 pages used for memmap
    Jan 02 23:22:36 arch_1 kernel: Normal zone: 1277952 pages, LIFO batch:31
    Jan 02 23:22:36 arch_1 kernel: ACPI: PM-Timer IO Port: 0x808
    Jan 02 23:22:36 arch_1 kernel: ACPI: Local APIC address 0xfee00000
    Jan 02 23:22:36 arch_1 kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Jan 02 23:22:36 arch_1 kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    Jan 02 23:22:36 arch_1 kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x05] disabled)
    Jan 02 23:22:36 arch_1 kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x07] disabled)
    Jan 02 23:22:36 arch_1 kernel: ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
    Jan 02 23:22:36 arch_1 kernel: ACPI: LAPIC (acpi_id[0x06] lapic_id[0x01] disabled)
    Jan 02 23:22:36 arch_1 kernel: ACPI: LAPIC (acpi_id[0x07] lapic_id[0x02] disabled)
    Jan 02 23:22:36 arch_1 kernel: ACPI: LAPIC (acpi_id[0x08] lapic_id[0x03] disabled)
    Jan 02 23:22:36 arch_1 kernel: ACPI: LAPIC_NMI (acpi_id[0xff] high level lint[0x1])
    Jan 02 23:22:36 arch_1 kernel: ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
    Jan 02 23:22:36 arch_1 kernel: IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
    Jan 02 23:22:36 arch_1 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Jan 02 23:22:36 arch_1 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Jan 02 23:22:36 arch_1 kernel: ACPI: IRQ0 used by override.
    Jan 02 23:22:36 arch_1 kernel: ACPI: IRQ2 used by override.
    Jan 02 23:22:36 arch_1 kernel: ACPI: IRQ9 used by override.
    Jan 02 23:22:36 arch_1 kernel: Using ACPI (MADT) for SMP configuration information
    Jan 02 23:22:36 arch_1 kernel: ACPI: HPET id: 0x8086a701 base: 0xfed00000
    Jan 02 23:22:36 arch_1 kernel: smpboot: Allowing 8 CPUs, 6 hotplug CPUs
    Jan 02 23:22:36 arch_1 kernel: nr_irqs_gsi: 40
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xbd9ff000-0xbd9fffff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xbda00000-0xbda52fff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xbda53000-0xbda53fff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xbda54000-0xbda54fff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xbda55000-0xbda55fff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xbda56000-0xbfffffff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xc0000000-0xf7ffffff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xfec00000-0xfecfffff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xfed00000-0xfed1ffff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xfed20000-0xfed9ffff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xfeda0000-0xfedfffff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xfee00000-0xfeefffff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xfef00000-0xffafffff]
    Jan 02 23:22:36 arch_1 kernel: PM: Registered nosave memory: [mem 0xffb00000-0xffffffff]
    Jan 02 23:22:36 arch_1 kernel: e820: [mem 0xc0000000-0xf7ffffff] available for PCI devices
    Jan 02 23:22:36 arch_1 kernel: Booting paravirtualized kernel on Xen
    Jan 02 23:22:36 arch_1 kernel: Xen version: 4.3.1 (preserve-AD)
    Jan 02 23:22:36 arch_1 kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
    Jan 02 23:22:36 arch_1 kernel: PERCPU: Embedded 29 pages/cpu @ffff88007ee00000 s86464 r8192 d24128 u262144
    Jan 02 23:22:36 arch_1 kernel: pcpu-alloc: s86464 r8192 d24128 u262144 alloc=1*2097152
    Jan 02 23:22:36 arch_1 kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    Jan 02 23:22:36 arch_1 kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2022431
    Jan 02 23:22:36 arch_1 kernel: Policy zone: Normal
    Jan 02 23:22:36 arch_1 kernel: Kernel command line: /vmlinuz-linux root=/dev/mapper/vg_arch-lv_root rw console
    Jan 02 23:22:36 arch_1 kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Jan 02 23:22:36 arch_1 kernel: xsave: enabled xstate_bv 0x3, cntxt size 0x240
    Jan 02 23:22:36 arch_1 kernel: software IO TLB [mem 0x72a00000-0x76a00000] (64MB) mapped at [ffff880072a00000-
    Jan 02 23:22:36 arch_1 kernel: Memory: 1857868K/8218224K available (5124K kernel code, 807K rwdata, 1628K roda
    Jan 02 23:22:36 arch_1 kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    Jan 02 23:22:36 arch_1 kernel: Preemptible hierarchical RCU implementation.
    Jan 02 23:22:36 arch_1 kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Jan 02 23:22:36 arch_1 kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Jan 02 23:22:36 arch_1 kernel: RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=2.
    Jan 02 23:22:36 arch_1 kernel: NR_IRQS:8448 nr_irqs:512 16
    Jan 02 23:22:36 arch_1 kernel: xen: sci override: global_irq=9 trigger=0 polarity=0
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 9 triggering 0 polarity 0
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=9 -> irq=9 (gsi=9)
    Jan 02 23:22:36 arch_1 kernel: xen: acpi sci 9
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=1 -> irq=1 (gsi=1)
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=2 -> irq=2 (gsi=2)
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=3 -> irq=3 (gsi=3)
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=4 -> irq=4 (gsi=4)
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=5 -> irq=5 (gsi=5)
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=6 -> irq=6 (gsi=6)
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=7 -> irq=7 (gsi=7)
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=8 -> irq=8 (gsi=8)
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=10 -> irq=10 (gsi=10)
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=11 -> irq=11 (gsi=11)
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=12 -> irq=12 (gsi=12)
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=13 -> irq=13 (gsi=13)
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=14 -> irq=14 (gsi=14)
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=15 -> irq=15 (gsi=15)
    Jan 02 23:22:36 arch_1 kernel: Console: colour VGA+ 80x25
    Jan 02 23:22:36 arch_1 kernel: console [tty0] enabled
    Jan 02 23:22:36 arch_1 kernel: allocated 33030144 bytes of page_cgroup
    Jan 02 23:22:36 arch_1 kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Jan 02 23:22:36 arch_1 kernel: Xen: using vcpuop timer interface
    Jan 02 23:22:36 arch_1 kernel: installing Xen timer for CPU 0
    Jan 02 23:22:36 arch_1 kernel: tsc: Detected 2992.224 MHz processor
    Jan 02 23:22:36 arch_1 kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 5986
    Jan 02 23:22:36 arch_1 kernel: pid_max: default: 32768 minimum: 301
    Jan 02 23:22:36 arch_1 kernel: Security Framework initialized
    Jan 02 23:22:36 arch_1 kernel: AppArmor: AppArmor disabled by boot time parameter
    Jan 02 23:22:36 arch_1 kernel: Yama: becoming mindful.
    Jan 02 23:22:36 arch_1 kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    Jan 02 23:22:36 arch_1 kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Jan 02 23:22:36 arch_1 kernel: Mount-cache hash table entries: 256
    Jan 02 23:22:36 arch_1 kernel: Initializing cgroup subsys memory
    Jan 02 23:22:36 arch_1 kernel: Initializing cgroup subsys devices
    Jan 02 23:22:36 arch_1 kernel: Initializing cgroup subsys freezer
    Jan 02 23:22:36 arch_1 kernel: Initializing cgroup subsys net_cls
    Jan 02 23:22:36 arch_1 kernel: Initializing cgroup subsys blkio
    Jan 02 23:22:36 arch_1 kernel: CPU: Physical Processor ID: 0
    Jan 02 23:22:36 arch_1 kernel: CPU: Processor Core ID: 0
    Jan 02 23:22:36 arch_1 kernel: mce: CPU supports 2 MCE banks
    Jan 02 23:22:36 arch_1 kernel: Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
    Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32
    tlb_flushall_shift: -1
    Jan 02 23:22:36 arch_1 kernel: Freeing SMP alternatives memory: 20K (ffffffff819e9000 - ffffffff819ee000)
    Jan 02 23:22:36 arch_1 kernel: ACPI: Core revision 20130725
    Jan 02 23:22:36 arch_1 kernel: ACPI: All ACPI Tables successfully acquired
    Jan 02 23:22:36 arch_1 kernel: ftrace: allocating 20318 entries in 80 pages
    Jan 02 23:22:36 arch_1 kernel: Performance Events: unsupported p6 CPU model 23 no PMU driver, software events
    Jan 02 23:22:36 arch_1 kernel: NMI watchdog: disabled (cpu0): hardware events not enabled
    Jan 02 23:22:36 arch_1 kernel: installing Xen timer for CPU 1
    Jan 02 23:22:36 arch_1 kernel: Brought up 2 CPUs
    Jan 02 23:22:36 arch_1 kernel: devtmpfs: initialized
    Jan 02 23:22:36 arch_1 kernel: PM: Registering ACPI NVS region [mem 0xbd9ffc00-0xbda53bff] (344064 bytes)
    Jan 02 23:22:36 arch_1 kernel: xen:grant_table: Grant tables using version 2 layout
    Jan 02 23:22:36 arch_1 kernel: Grant table initialized
    Jan 02 23:22:36 arch_1 kernel: RTC time: 4:22:33, date: 01/03/14
    Jan 02 23:22:36 arch_1 kernel: NET: Registered protocol family 16
    Jan 02 23:22:36 arch_1 kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    Jan 02 23:22:36 arch_1 kernel: ACPI: bus type PCI registered
    Jan 02 23:22:36 arch_1 kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    Jan 02 23:22:36 arch_1 kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base
    Jan 02 23:22:36 arch_1 kernel: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    Jan 02 23:22:36 arch_1 kernel: PCI: Using configuration type 1 for base access
    Jan 02 23:22:36 arch_1 kernel: dmi type 0xB1 record - unknown flag
    Jan 02 23:22:36 arch_1 kernel: bio: create slab <bio-0> at 0
    Jan 02 23:22:36 arch_1 kernel: ACPI: Added _OSI(Module Device)
    Jan 02 23:22:36 arch_1 kernel: ACPI: Added _OSI(Processor Device)
    Jan 02 23:22:36 arch_1 kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Jan 02 23:22:36 arch_1 kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Jan 02 23:22:36 arch_1 kernel: ACPI: EC: Look up EC in DSDT
    Jan 02 23:22:36 arch_1 kernel: [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    Jan 02 23:22:36 arch_1 kernel: ACPI BIOS Warning (bug): Incorrect checksum in table [TCPA] - 0x00, should be 0
    Jan 02 23:22:36 arch_1 kernel: ACPI: Interpreter enabled
    Jan 02 23:22:36 arch_1 kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130725/hw
    Jan 02 23:22:36 arch_1 kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20130725/hw
    Jan 02 23:22:36 arch_1 kernel: ACPI: (supports S0 S1 S4 S5)
    Jan 02 23:22:36 arch_1 kernel: ACPI: Using IOAPIC for interrupt routing
    Jan 02 23:22:36 arch_1 kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and rep
    Jan 02 23:22:36 arch_1 kernel: ACPI: ACPI Dock Station Driver: 1 docks/bays found
    Jan 02 23:22:36 arch_1 kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Jan 02 23:22:36 arch_1 kernel: acpi PNP0A03:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    Jan 02 23:22:36 arch_1 kernel: acpi PNP0A03:00: Unable to request _OSC control (_OSC support mask: 0x08)
    Jan 02 23:22:36 arch_1 kernel: acpi PNP0A03:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only par
    Jan 02 23:22:36 arch_1 kernel: PCI host bridge to bus 0000:00
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000effff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: root bus resource [mem 0xfc000000-0xfec00000]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: root bus resource [mem 0xbdb00000-0xf7ffffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: root bus resource [mem 0xff980000-0xff980fff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: root bus resource [mem 0xff97c000-0xff97ffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: root bus resource [mem 0xff970000-0xff9707ff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: root bus resource [mem 0xfed20000-0xfed9ffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: root bus resource [mem 0xfeda6000-0xfeda6fff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: root bus resource [mem 0xfeda7000-0xfeda7fff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:00.0: [8086:2e10] type 00 class 0x060000
    Jan 02 23:22:36 arch_1 kernel: DMAR: Forcing write-buffer flush capability
    Jan 02 23:22:36 arch_1 kernel: DMAR: Disabling IOMMU for graphics on this chipset
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:01.0: [8086:2e11] type 01 class 0x060400
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:01.0: System wakeup disabled by ACPI
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:02.0: [8086:2e12] type 00 class 0x030000
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:02.0: reg 0x10: [mem 0xf7c00000-0xf7ffffff 64bit]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:02.0: reg 0x20: [io 0xecb0-0xecb7]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:02.1: [8086:2e13] type 00 class 0x038000
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:02.1: reg 0x10: [mem 0xf7b00000-0xf7bfffff 64bit]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:03.0: [8086:2e14] type 00 class 0x078000
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:03.0: reg 0x10: [mem 0xfeda6000-0xfeda600f 64bit]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:03.2: [8086:2e16] type 00 class 0x010185
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:03.2: reg 0x10: [io 0xfe80-0xfe87]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:03.2: reg 0x14: [io 0xfe90-0xfe93]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:03.2: reg 0x18: [io 0xfea0-0xfea7]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:03.2: reg 0x1c: [io 0xfeb0-0xfeb3]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:03.2: reg 0x20: [io 0xfef0-0xfeff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:03.3: [8086:2e17] type 00 class 0x070002
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:03.3: reg 0x10: [io 0xecb8-0xecbf]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:03.3: reg 0x14: [mem 0xf7adc000-0xf7adcfff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:19.0: [8086:10de] type 00 class 0x020000
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:19.0: reg 0x10: [mem 0xf7ae0000-0xf7afffff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:19.0: reg 0x14: [mem 0xf7add000-0xf7addfff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:19.0: reg 0x18: [io 0xece0-0xecff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1a.0: [8086:3a67] type 00 class 0x0c0300
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1a.0: reg 0x20: [io 0xff20-0xff3f]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1a.0: System wakeup disabled by ACPI
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1a.1: [8086:3a68] type 00 class 0x0c0300
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1a.1: reg 0x20: [io 0xff00-0xff1f]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1a.1: System wakeup disabled by ACPI
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1a.2: [8086:3a69] type 00 class 0x0c0300
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1a.2: reg 0x20: [io 0xfc00-0xfc1f]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1a.2: System wakeup disabled by ACPI
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1a.7: [8086:3a6c] type 00 class 0x0c0320
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1a.7: reg 0x10: [mem 0xf7ade000-0xf7ade3ff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: [8086:3a70] type 01 class 0x060400
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: System wakeup disabled by ACPI
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: [8086:3a72] type 01 class 0x060400
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: System wakeup disabled by ACPI
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1d.0: [8086:3a64] type 00 class 0x0c0300
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1d.0: reg 0x20: [io 0xff80-0xff9f]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1d.0: System wakeup disabled by ACPI
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1d.1: [8086:3a65] type 00 class 0x0c0300
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1d.1: reg 0x20: [io 0xff60-0xff7f]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1d.1: System wakeup disabled by ACPI
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1d.2: [8086:3a66] type 00 class 0x0c0300
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1d.2: reg 0x20: [io 0xff40-0xff5f]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1d.2: System wakeup disabled by ACPI
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1d.7: [8086:3a6a] type 00 class 0x0c0320
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1d.7: reg 0x10: [mem 0xff980000-0xff9803ff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: System wakeup disabled by ACPI
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1f.0: [8086:3a14] type 00 class 0x060100
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1f.2: [8086:3a02] type 00 class 0x010601
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1f.2: reg 0x10: [io 0xfe00-0xfe07]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1f.2: reg 0x14: [io 0xfe10-0xfe13]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1f.2: reg 0x18: [io 0xfe20-0xfe27]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1f.2: reg 0x1c: [io 0xfe30-0xfe33]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1f.2: reg 0x20: [io 0xfec0-0xfedf]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1f.2: reg 0x24: [mem 0xff970000-0xff9707ff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1f.2: PME# supported from D3hot
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1f.3: [8086:3a60] type 00 class 0x0c0500
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xf7adf000-0xf7adf0ff 64bit]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1f.3: reg 0x20: [io 0x0940-0x095f]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:01:00.0: [8086:105e] type 00 class 0x020000
    Jan 02 23:22:36 arch_1 kernel: pci 0000:01:00.0: reg 0x10: [mem 0xf7880000-0xf789ffff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:01:00.0: reg 0x14: [mem 0xf78a0000-0xf78bffff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:01:00.0: reg 0x18: [io 0xdcc0-0xdcdf]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:01:00.0: reg 0x30: [mem 0xf7900000-0xf791ffff pref]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
    Jan 02 23:22:36 arch_1 kernel: pci 0000:01:00.1: [8086:105e] type 00 class 0x020000
    Jan 02 23:22:36 arch_1 kernel: pci 0000:01:00.1: reg 0x10: [mem 0xf78c0000-0xf78dffff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:01:00.1: reg 0x14: [mem 0xf78e0000-0xf78fffff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:01:00.1: reg 0x18: [io 0xdce0-0xdcff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:01.0: bridge window [mem 0xf7800000-0xf79fffff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: bridge window [mem 0xf7700000-0xf77fffff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: PCI bridge to [bus 03]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: bridge window [mem 0xf7600000-0xf76fffff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:04:00.0: [1102:0007] type 00 class 0x040100
    Jan 02 23:22:36 arch_1 kernel: pci 0000:04:00.0: reg 0x10: [io 0xcce0-0xccff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:04:00.0: supports D1 D2
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: PCI bridge to [bus 04] (subtractive decode)
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [io 0xc000-0xcfff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive deco
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [mem 0x000c0000-0x000effff] (subtractive deco
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [mem 0x000f0000-0x000fffff] (subtractive deco
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [mem 0xfc000000-0xfec00000] (subtractive deco
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [mem 0xbdb00000-0xf7ffffff] (subtractive deco
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [mem 0xff980000-0xff980fff] (subtractive deco
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [mem 0xff97c000-0xff97ffff] (subtractive deco
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [mem 0xff970000-0xff9707ff] (subtractive deco
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [mem 0xfed20000-0xfed9ffff] (subtractive deco
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [mem 0xfeda6000-0xfeda6fff] (subtractive deco
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [mem 0xfeda7000-0xfeda7fff] (subtractive deco
    Jan 02 23:22:36 arch_1 kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11 12 15)
    Jan 02 23:22:36 arch_1 kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 *5 6 7 9 10 11 12 15)
    Jan 02 23:22:36 arch_1 kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 *9 10 11 12 15)
    Jan 02 23:22:36 arch_1 kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 *10 11 12 15)
    Jan 02 23:22:36 arch_1 kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11 12 15) *0, disabled.
    Jan 02 23:22:36 arch_1 kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 *4 5 6 7 9 10 11 12 15)
    Jan 02 23:22:36 arch_1 kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 7 9 10 11 12 15)
    Jan 02 23:22:36 arch_1 kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs *3 4 5 6 7 9 10 11 12 15)
    Jan 02 23:22:36 arch_1 kernel: ACPI: Enabled 2 GPEs in block 00 to 3F
    Jan 02 23:22:36 arch_1 kernel: ACPI: \_SB_.PCI0: notify handler is installed
    Jan 02 23:22:36 arch_1 kernel: Found 1 acpi root devices
    Jan 02 23:22:36 arch_1 kernel: xen:balloon: Initialising balloon driver
    Jan 02 23:22:36 arch_1 kernel: xen_balloon: Initialising balloon driver
    Jan 02 23:22:36 arch_1 kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    Jan 02 23:22:36 arch_1 kernel: vgaarb: loaded
    Jan 02 23:22:36 arch_1 kernel: vgaarb: bridge control possible 0000:00:02.0
    Jan 02 23:22:36 arch_1 kernel: PCI: Using ACPI for IRQ routing
    Jan 02 23:22:36 arch_1 kernel: PCI: pci_cache_line_size set to 64 bytes
    Jan 02 23:22:36 arch_1 kernel: Expanded resource reserved due to conflict with PCI Bus 0000:00
    Jan 02 23:22:36 arch_1 kernel: Expanded resource reserved due to conflict with PCI Bus 0000:00
    Jan 02 23:22:36 arch_1 kernel: e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
    Jan 02 23:22:36 arch_1 kernel: e820: reserve RAM buffer [mem 0xbd9ff000-0xbfffffff]
    Jan 02 23:22:36 arch_1 kernel: NetLabel: Initializing
    Jan 02 23:22:36 arch_1 kernel: NetLabel: domain hash size = 128
    Jan 02 23:22:36 arch_1 kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Jan 02 23:22:36 arch_1 kernel: NetLabel: unlabeled traffic allowed by default
    Jan 02 23:22:36 arch_1 kernel: Switched to clocksource xen
    Jan 02 23:22:36 arch_1 kernel: pnp: PnP ACPI init
    Jan 02 23:22:36 arch_1 kernel: ACPI: bus type PNP registered
    Jan 02 23:22:36 arch_1 kernel: system 00:00: [io 0x0800-0x085f] could not be reserved
    Jan 02 23:22:36 arch_1 kernel: system 00:00: [io 0x0c00-0x0c7f] has been reserved
    Jan 02 23:22:36 arch_1 kernel: system 00:00: [io 0x0860-0x08ff] has been reserved
    Jan 02 23:22:36 arch_1 kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    Jan 02 23:22:36 arch_1 kernel: pnp 00:01: [dma 4]
    Jan 02 23:22:36 arch_1 kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 13 triggering 1 polarity 0
    Jan 02 23:22:36 arch_1 kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0c04 (active)
    Jan 02 23:22:36 arch_1 kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0800 (active)
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 8 triggering 1 polarity 0
    Jan 02 23:22:36 arch_1 kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 6 triggering 1 polarity 0
    Jan 02 23:22:36 arch_1 kernel: pnp 00:05: [dma 2]
    Jan 02 23:22:36 arch_1 kernel: pnp 00:05: Plug and Play ACPI device, IDs PNP0700 (active)
    Jan 02 23:22:36 arch_1 kernel: pnp 00:06: Plug and Play ACPI device, IDs PNP0103 (active)
    Jan 02 23:22:36 arch_1 kernel: pnp: PnP ACPI: found 7 devices
    Jan 02 23:22:36 arch_1 kernel: ACPI: bus type PNP unregistered
    Jan 02 23:22:36 arch_1 kernel: PM-Timer failed consistency check (0xffffff) - aborting.
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 02] add_size 1000
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: bridge window [io 0x1000-0x0fff] to [bus 03] add_size 1000
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_si
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_si
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: BAR 15: assigned [mem 0xfc000000-0xfc1fffff 64bit pref]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: BAR 15: assigned [mem 0xfc200000-0xfc3fffff 64bit pref]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: BAR 13: assigned [io 0x1000-0x1fff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: BAR 13: assigned [io 0x2000-0x2fff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:01.0: bridge window [mem 0xf7800000-0xf79fffff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: bridge window [io 0x1000-0x1fff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: bridge window [mem 0xf7700000-0xf77fffff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.0: bridge window [mem 0xfc000000-0xfc1fffff 64bit pref]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: PCI bridge to [bus 03]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: bridge window [io 0x2000-0x2fff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: bridge window [mem 0xf7600000-0xf76fffff]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1c.1: bridge window [mem 0xfc200000-0xfc3fffff 64bit pref]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: PCI bridge to [bus 04]
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:1e.0: bridge window [io 0xc000-0xcfff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000effff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: resource 8 [mem 0x000f0000-0x000fffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: resource 9 [mem 0xfc000000-0xfec00000]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: resource 10 [mem 0xbdb00000-0xf7ffffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: resource 11 [mem 0xff980000-0xff980fff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: resource 12 [mem 0xff97c000-0xff97ffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: resource 13 [mem 0xff970000-0xff9707ff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: resource 14 [mem 0xfed20000-0xfed9ffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: resource 15 [mem 0xfeda6000-0xfeda6fff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:00: resource 16 [mem 0xfeda7000-0xfeda7fff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:01: resource 0 [io 0xd000-0xdfff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:01: resource 1 [mem 0xf7800000-0xf79fffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:02: resource 0 [io 0x1000-0x1fff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:02: resource 1 [mem 0xf7700000-0xf77fffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:02: resource 2 [mem 0xfc000000-0xfc1fffff 64bit pref]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:03: resource 0 [io 0x2000-0x2fff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:03: resource 1 [mem 0xf7600000-0xf76fffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:03: resource 2 [mem 0xfc200000-0xfc3fffff 64bit pref]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:04: resource 0 [io 0xc000-0xcfff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:04: resource 4 [io 0x0000-0x0cf7]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:04: resource 5 [io 0x0d00-0xffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:04: resource 7 [mem 0x000c0000-0x000effff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:04: resource 8 [mem 0x000f0000-0x000fffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:04: resource 9 [mem 0xfc000000-0xfec00000]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:04: resource 10 [mem 0xbdb00000-0xf7ffffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:04: resource 11 [mem 0xff980000-0xff980fff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:04: resource 12 [mem 0xff97c000-0xff97ffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:04: resource 13 [mem 0xff970000-0xff9707ff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:04: resource 14 [mem 0xfed20000-0xfed9ffff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:04: resource 15 [mem 0xfeda6000-0xfeda6fff]
    Jan 02 23:22:36 arch_1 kernel: pci_bus 0000:04: resource 16 [mem 0xfeda7000-0xfeda7fff]
    Jan 02 23:22:36 arch_1 kernel: NET: Registered protocol family 2
    Jan 02 23:22:36 arch_1 kernel: TCP established hash table entries: 65536 (order: 8, 1048576 bytes)
    Jan 02 23:22:36 arch_1 kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    Jan 02 23:22:36 arch_1 kernel: TCP: Hash tables configured (established 65536 bind 65536)
    Jan 02 23:22:36 arch_1 kernel: TCP: reno registered
    Jan 02 23:22:36 arch_1 kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes)
    Jan 02 23:22:36 arch_1 kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    Jan 02 23:22:36 arch_1 kernel: NET: Registered protocol family 1
    Jan 02 23:22:36 arch_1 kernel: pci 0000:00:02.0: Boot video device
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 16 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=16 -> irq=16 (gsi=16)
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 17 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=17 -> irq=17 (gsi=17)
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 22 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=22 -> irq=22 (gsi=22)
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 22 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :22
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 23 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=23 -> irq=23 (gsi=23)
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 17 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :17
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 18 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: xen: --> pirq=18 -> irq=18 (gsi=18)
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 23 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :23
    Jan 02 23:22:36 arch_1 kernel: PCI: CLS 64 bytes, default 64
    Jan 02 23:22:36 arch_1 kernel: Unpacking initramfs...
    Jan 02 23:22:36 arch_1 kernel: Freeing initrd memory: 10924K (ffff880001f54000 - ffff8800029ff000)
    Jan 02 23:22:36 arch_1 kernel: Simple Boot Flag at 0x7a set to 0x1
    Jan 02 23:22:36 arch_1 kernel: Scanning for low memory corruption every 60 seconds
    Jan 02 23:22:36 arch_1 kernel: audit: initializing netlink socket (disabled)
    Jan 02 23:22:36 arch_1 kernel: type=2000 audit(1388722954.276:1): initialized
    Jan 02 23:22:36 arch_1 kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
    Jan 02 23:22:36 arch_1 kernel: zbud: loaded
    Jan 02 23:22:36 arch_1 kernel: VFS: Disk quotas dquot_6.5.2
    Jan 02 23:22:36 arch_1 kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Jan 02 23:22:36 arch_1 kernel: msgmni has been set to 3650
    Jan 02 23:22:36 arch_1 kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Jan 02 23:22:36 arch_1 kernel: io scheduler noop registered
    Jan 02 23:22:36 arch_1 kernel: io scheduler deadline registered
    Jan 02 23:22:36 arch_1 kernel: io scheduler cfq registered (default)
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 16 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :16
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 16 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :16
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 17 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :17
    Jan 02 23:22:36 arch_1 kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    Jan 02 23:22:36 arch_1 kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    Jan 02 23:22:36 arch_1 kernel: intel_idle: does not run on family 6 model 23
    Jan 02 23:22:36 arch_1 kernel: GHES: HEST is not enabled!
    Jan 02 23:22:36 arch_1 kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 17 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :17
    Jan 02 23:22:36 arch_1 kernel: 0000:00:03.3: ttyS0 at I/O 0xecb8 (irq = 17, base_baud = 115200) is a 16550A
    Jan 02 23:22:36 arch_1 kernel: hpet_acpi_add: no address or irqs in _CRS
    Jan 02 23:22:36 arch_1 kernel: Linux agpgart interface v0.103
    Jan 02 23:22:36 arch_1 kernel: i8042: PNP: No PS/2 controller found. Probing ports directly.
    Jan 02 23:22:36 arch_1 kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Jan 02 23:22:36 arch_1 kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    Jan 02 23:22:36 arch_1 kernel: mousedev: PS/2 mouse device common for all mice
    Jan 02 23:22:36 arch_1 kernel: rtc_cmos 00:04: RTC can wake from S4
    Jan 02 23:22:36 arch_1 kernel: rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    Jan 02 23:22:36 arch_1 kernel: rtc_cmos 00:04: alarms up to one day, 242 bytes nvram
    Jan 02 23:22:36 arch_1 kernel: drop_monitor: Initializing network drop monitor service
    Jan 02 23:22:36 arch_1 kernel: TCP: cubic registered
    Jan 02 23:22:36 arch_1 kernel: NET: Registered protocol family 10
    Jan 02 23:22:36 arch_1 kernel: NET: Registered protocol family 17
    Jan 02 23:22:36 arch_1 kernel: Key type dns_resolver registered
    Jan 02 23:22:36 arch_1 kernel: registered taskstats version 1
    Jan 02 23:22:36 arch_1 kernel: Magic number: 14:436:362
    Jan 02 23:22:36 arch_1 kernel: rtc_cmos 00:04: setting system clock to 2014-01-03 04:22:34 UTC (1388722954)
    Jan 02 23:22:36 arch_1 kernel: PM: Hibernation image not present or could not be loaded.
    Jan 02 23:22:36 arch_1 kernel: Freeing unused kernel memory: 1144K (ffffffff818cb000 - ffffffff819e9000)
    Jan 02 23:22:36 arch_1 kernel: Write protecting the kernel read-only data: 8192k
    Jan 02 23:22:36 arch_1 kernel: Freeing unused kernel memory: 1008K (ffff880001504000 - ffff880001600000)
    Jan 02 23:22:36 arch_1 kernel: Freeing unused kernel memory: 420K (ffff880001797000 - ffff880001800000)
    Jan 02 23:22:36 arch_1 systemd-udevd[50]: starting version 208
    Jan 02 23:22:36 arch_1 kernel: Floppy drive(s): fd0 is 1.44M
    Jan 02 23:22:36 arch_1 kernel: ACPI: bus type USB registered
    Jan 02 23:22:36 arch_1 kernel: usbcore: registered new interface driver usbfs
    Jan 02 23:22:36 arch_1 kernel: usbcore: registered new interface driver hub
    Jan 02 23:22:36 arch_1 kernel: SCSI subsystem initialized
    Jan 02 23:22:36 arch_1 kernel: usbcore: registered new device driver usb
    Jan 02 23:22:36 arch_1 kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Jan 02 23:22:36 arch_1 kernel: ehci-pci: EHCI PCI platform driver
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 22 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :22
    Jan 02 23:22:36 arch_1 kernel: ehci-pci 0000:00:1a.7: setting latency timer to 64
    Jan 02 23:22:36 arch_1 kernel: ehci-pci 0000:00:1a.7: EHCI Host Controller
    Jan 02 23:22:36 arch_1 kernel: ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
    Jan 02 23:22:36 arch_1 kernel: ehci-pci 0000:00:1a.7: debug port 1
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd: USB Universal Host Controller Interface driver
    Jan 02 23:22:36 arch_1 kernel: ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
    Jan 02 23:22:36 arch_1 kernel: ehci-pci 0000:00:1a.7: irq 22, io mem 0xf7ade000
    Jan 02 23:22:36 arch_1 kernel: FDC 0 is a post-1991 82077
    Jan 02 23:22:36 arch_1 kernel: libata version 3.00 loaded.
    Jan 02 23:22:36 arch_1 kernel: ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    Jan 02 23:22:36 arch_1 kernel: hub 1-0:1.0: USB hub found
    Jan 02 23:22:36 arch_1 kernel: hub 1-0:1.0: 6 ports detected
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 16 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :16
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1a.0: setting latency timer to 64
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1a.0: UHCI Host Controller
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 2
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000ff20
    Jan 02 23:22:36 arch_1 kernel: hub 2-0:1.0: USB hub found
    Jan 02 23:22:36 arch_1 kernel: hub 2-0:1.0: 2 ports detected
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 17 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :17
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1a.1: setting latency timer to 64
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1a.1: UHCI Host Controller
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 3
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1a.1: irq 17, io base 0x0000ff00
    Jan 02 23:22:36 arch_1 kernel: hub 3-0:1.0: USB hub found
    Jan 02 23:22:36 arch_1 kernel: hub 3-0:1.0: 2 ports detected
    Jan 02 23:22:36 arch_1 kernel: ahci 0000:00:1f.2: version 3.0
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 18 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :18
    Jan 02 23:22:36 arch_1 kernel: ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 6 ports 3 Gbps 0x2f impl SATA mode
    Jan 02 23:22:36 arch_1 kernel: ahci 0000:00:1f.2: flags: 64bit ncq sntf led clo pio ems sxs
    Jan 02 23:22:36 arch_1 kernel: ahci 0000:00:1f.2: setting latency timer to 64
    Jan 02 23:22:36 arch_1 kernel: scsi0 : ahci
    Jan 02 23:22:36 arch_1 kernel: scsi1 : ahci
    Jan 02 23:22:36 arch_1 kernel: scsi2 : ahci
    Jan 02 23:22:36 arch_1 kernel: scsi3 : ahci
    Jan 02 23:22:36 arch_1 kernel: scsi4 : ahci
    Jan 02 23:22:36 arch_1 kernel: scsi5 : ahci
    Jan 02 23:22:36 arch_1 kernel: ata1: SATA max UDMA/133 abar m2048@0xff970000 port 0xff970100 irq 58
    Jan 02 23:22:36 arch_1 kernel: ata2: SATA max UDMA/133 abar m2048@0xff970000 port 0xff970180 irq 58
    Jan 02 23:22:36 arch_1 kernel: ata3: SATA max UDMA/133 abar m2048@0xff970000 port 0xff970200 irq 58
    Jan 02 23:22:36 arch_1 kernel: ata4: SATA max UDMA/133 abar m2048@0xff970000 port 0xff970280 irq 58
    Jan 02 23:22:36 arch_1 kernel: ata5: DUMMY
    Jan 02 23:22:36 arch_1 kernel: ata6: SATA max UDMA/133 abar m2048@0xff970000 port 0xff970380 irq 58
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 18 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :18
    Jan 02 23:22:36 arch_1 kernel: pata_acpi 0000:00:03.2: setting latency timer to 64
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 22 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :22
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1a.2: setting latency timer to 64
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1a.2: UHCI Host Controller
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 4
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1a.2: irq 22, io base 0x0000fc00
    Jan 02 23:22:36 arch_1 kernel: hub 4-0:1.0: USB hub found
    Jan 02 23:22:36 arch_1 kernel: hub 4-0:1.0: 2 ports detected
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 23 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :23
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1d.0: setting latency timer to 64
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000ff80
    Jan 02 23:22:36 arch_1 kernel: hub 5-0:1.0: USB hub found
    Jan 02 23:22:36 arch_1 kernel: hub 5-0:1.0: 2 ports detected
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 17 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :17
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1d.1: setting latency timer to 64
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1d.1: irq 17, io base 0x0000ff60
    Jan 02 23:22:36 arch_1 kernel: hub 6-0:1.0: USB hub found
    Jan 02 23:22:36 arch_1 kernel: hub 6-0:1.0: 2 ports detected
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 18 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :18
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1d.2: setting latency timer to 64
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7
    Jan 02 23:22:36 arch_1 kernel: uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000ff40
    Jan 02 23:22:36 arch_1 kernel: hub 7-0:1.0: USB hub found
    Jan 02 23:22:36 arch_1 kernel: hub 7-0:1.0: 2 ports detected
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 23 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :23
    Jan 02 23:22:36 arch_1 kernel: ehci-pci 0000:00:1d.7: setting latency timer to 64
    Jan 02 23:22:36 arch_1 kernel: ehci-pci 0000:00:1d.7: EHCI Host Controller
    Jan 02 23:22:36 arch_1 kernel: ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 8
    Jan 02 23:22:36 arch_1 kernel: ehci-pci 0000:00:1d.7: debug port 1
    Jan 02 23:22:36 arch_1 kernel: ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
    Jan 02 23:22:36 arch_1 kernel: ehci-pci 0000:00:1d.7: irq 23, io mem 0xff980000
    Jan 02 23:22:36 arch_1 kernel: ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    Jan 02 23:22:36 arch_1 kernel: hub 8-0:1.0: USB hub found
    Jan 02 23:22:36 arch_1 kernel: hub 8-0:1.0: 6 ports detected
    Jan 02 23:22:36 arch_1 kernel: hub 5-0:1.0: USB hub found
    Jan 02 23:22:36 arch_1 kernel: hub 5-0:1.0: 2 ports detected
    Jan 02 23:22:36 arch_1 kernel: hub 6-0:1.0: USB hub found
    Jan 02 23:22:36 arch_1 kernel: hub 6-0:1.0: 2 ports detected
    Jan 02 23:22:36 arch_1 kernel: hub 7-0:1.0: USB hub found
    Jan 02 23:22:36 arch_1 kernel: hub 7-0:1.0: 2 ports detected
    Jan 02 23:22:36 arch_1 kernel: xen: registering gsi 18 triggering 0 polarity 1
    Jan 02 23:22:36 arch_1 kernel: Already setup the GSI :18
    Jan 02 23:22:36 arch_1 kernel: ata_generic 0000:00:03.2: setting latency timer to 64
    Jan 02 23:22:36 arch_1 kernel: scsi6 : ata_generic
    Jan 02 23:22:36 arch_1 kernel: scsi7 : ata_generic
    Jan 02 23:22:36 arch_1 kernel: ata7: PATA max UDMA/100 cmd 0xfe80 ctl 0xfe90 bmdma 0xfef0 irq 18
    Jan 02 23:22:36 arch_1 kernel: ata8: PATA max UDMA/100 cmd 0xfea0 ctl 0xfeb0 bmdma 0xfef8 irq 18
    Jan 02 23:22:36 arch_1 kernel: ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Jan 02 23:22:36 arch_1 kernel: ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jan 02 23:22:36 arch_1 kernel: ata4: SATA link down (SStatus 0 SControl 300)
    Jan 02 23:22:36 arch_1 kernel: ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Jan 02 23:22:36 arch_1 kernel: ata6: SATA link down (SStatus 0 SControl 300)
    Jan 02 23:22:36 arch_1 kernel: ata2.00: ATAPI: PIONEER DVD-RW DVR-217D, 1.07, max UDMA/66
    Jan 02 23:22:36 arch_1 kernel: ata3.00: ATA-8: WDC WD15EARX-00ZUDB0, 80.00A80, max UDMA/133
    Jan 02 23:22:36 arch_1 kernel: ata3.00: 2930277168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
    Jan 02 23:22:36 arch_1 kernel: ata1.00: ATA-6: WDC WD360GD-00FNA0, 34.06J34, max UDMA/133
    Jan 02 23:22:36 arch_1 kernel: ata1.00: 72303840 sectors, multi 0: LBA48
    Jan 02 23:22:36 arch_1 kernel: ata1.00: applying bridge limits
    Jan 02 23:22:36 arch_1 kernel: ata2.00: configured for UDMA/66
    Jan 02 23:22:36 arch_1 kernel: ata3.00: configured for UDMA/133
    Jan 02 23:22:36 arch_1 kernel: ata1.00: configured for UDMA/100
    Jan 02 23:22:36 arch_1 kernel: scsi 0:0:0:0: Direct-Access ATA WDC WD360GD-00FN 34.0 PQ: 0 ANSI: 5
    Jan 02 23:22:36 arch_1 kernel: scsi 1:0:0:0: CD-ROM PIONEER DVD-RW DVR-217D 1.07 PQ: 0 ANSI: 5
    Jan 02 23:22:36 arch_1 kernel: scsi 2:0:0:0: Direct-Access ATA WDC WD15EARX-00Z 80.0 PQ: 0 ANSI: 5
    Jan 02 23:22:36 arch_1 kernel: sd 0:0:0:0: [sda] 72303840 512-byte logical blocks: (37.0 GB/34.4 GiB)
    Jan 02 23:22:36 arch_1 kernel: sd 2:0:0:0: [sdb] 2930277168 512-byte logical blocks: (1.50 TB/1.36 TiB)
    Jan 02 23:22:36 arch_1 kernel: sd 2:0:0:0: [sdb] 4096-byte physical blocks
    Jan 02 23:22:36 arch_1 kernel: sd 0:0:0:0: [sda] Write Protect is off
    Jan 02 23:22:36 arch_1 kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Jan 02 23:22:36 arch_1 kernel: sd 2:0:0:0: [sdb] Write Protect is off
    Jan 02 23:22:36 arch_1 kernel: sd 2:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    Jan 02 23:22:36 arch_1 kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DP
    Jan 02 23:22:36 arch_1 kernel: sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DP
    Jan 02 23:22:36 arch_1 kernel: sda: sda1 sda2
    Jan 02 23:22:36 arch_1 kernel: sdb: sdb1
    Jan 02 23:22:36 arch_1 kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Jan 02 23:22:36 arch_1 kernel: sd 2:0:0:0: [sdb] Attached SCSI disk
    Jan 02 23:22:36 arch_1 kernel: sr0: scsi3-mmc drive: 16x/16x writer cd/rw xa/form2 cdda tray
    Jan 02 23:22:36 arch_1 kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
    Jan 02 23:22:36 arch_1 kernel: sr 1:0:0:0: Attached scsi CD-ROM sr0
    Jan 02 23:22:36 arch_1 kernel: usb 3-2: new full-speed USB device number 2 using uhci_hcd
    Jan 02 23:22:36 arch_1 kernel: end_request: I/O error, dev fd0, sector 0
    Jan 02 23:22:36 arch_1 kernel: end_request: I/O error, dev fd0, sector 0
    Jan 02 23:22:36 arch_1 kernel: hub 3-2:1.0: USB hub found
    Jan 02 23:22:36 arch_1 kernel: hub 3-2:1.0: 3 ports detected
    Jan 02 23:22:36 arch_1 kernel: device-mapper: uevent: version 1.0.3
    Jan 02 23:22:36 arch_1 kernel: device-mapper: ioctl: 4.26.0-ioctl (2013-08-15) initialised: [email protected]
    Jan 02 23:22:36 arch_1 kernel: bio: create slab <bio-1> at 1
    Jan 02 23:22:36 arch_1 kernel: usb 3-2.2: new full-speed USB device number 3 using uhci_hcd
    Jan 02 23:22:36 arch_1 kernel: hidraw: raw HID events driver (C) Jiri Kosina
    Jan 02 23:22:36 arch_1 kernel: usbcore: registered new interface driver usbhid
    Jan 02 23:22:36 arch_1 kernel: usbhid: USB HID core driver
    Jan 02 23:22:36 arch_1 kernel: input: Logitech Logitech BT Mini-Receiver as /devices/pci0000:00/0000:00:1a.1/u
    Jan 02 23:22:36 arch_1 kernel: hid-generic 0003:046D:C713.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitec
    Jan 02 23:22:36 arch_1 kernel: EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null)
    Jan 02 23:22:36 arch_1 kernel: usb 3-2.3: new full-speed USB device number 4 using uhci_hcd
    Jan 02 23:22:36 arch_1 systemd[1]: systemd 208 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SY
    Jan 02 23:22:36 arch_1 systemd[1]: Detected virtualization 'xen'.
    Jan 02 23:22:36 arch_1 systemd[1]: Set hostname to <arch_1>.
    Jan 02 23:22:36 arch_1 systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit
    Jan 02 23:22:36 arch_1 systemd[1]: Expecting device dev-hvc0.device...
    Jan 02 23:22:36 arch_1 systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    Jan 02 23:22:36 arch_1 systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    Jan 02 23:22:36 arch_1 systemd[1]: Starting Remote File Systems.
    Jan 02 23:22:36 arch_1 systemd[1]: Reached target Remote File Systems.
    Jan 02 23:22:36 arch_1 systemd[1]: Expecting device sys-subsystem-net-devices-enp0s25.device...
    Jan 02 23:22:36 arch_1 systemd[1]: Starting LVM2 metadata daemon socket.
    Jan 02 23:22:36 arch_1 systemd[1]: Listening on LVM2 metadata daemon socket.
    Jan 02 23:22:36 arch_1 systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    Jan 02 23:22:36 arch_1 systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    Jan 02 23:22:36 arch_1 systemd[1]: Starting Delayed Shutdown Socket.
    Jan 02 23:22:36 arch_1 systemd[1]: Listening on Delayed Shutdown Socket.
    Jan 02 23:22:36 arch_1 systemd[1]: Starting Device-mapper event daemon FIFOs.
    Jan 02 23:22:36 arch_1 systemd[1]: Listening on Device-mapper event daemon FIFOs.
    Jan 02 23:22:36 arch_1 systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    Jan 02 23:22:36 arch_1 systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    Jan 02 23:22:36 arch_1 systemd[1]: Starting Paths.
    Jan 02 23:22:36 arch_1 systemd[1]: Reached target Paths.
    Jan 02 23:22:36 arch_1 systemd[1]: Starting Journal Socket.
    Jan 02 23:22:36 arch_1 systemd[1]: Listening on Journal Socket.
    Jan 02 23:22:36 arch_1 systemd[1]: Starting Setup Virtual Console...
    Jan 02 23:22:36 arch_1 systemd[1]: Starting Load Kernel Modules...
    Jan 02 23:22:36 arch_1 systemd[1]: Starting Journal Service...
    Jan 02 23:22:36 arch_1 systemd[1]: Started Journal Service.
    Jan 02 23:22:36 arch_1 systemd-journal[129]: Journal started
    Jan 02 23:22:36 arch_1 systemd[1]: Starting udev Kernel Socket.
    Jan 02 23:22:36 arch_1 systemd[1]: Listening on udev Kernel Socket.
    Jan 02 23:22:36 arch_1 systemd[1]: Starting udev Control Socket.
    Jan 02 23:22:36 arch_1 systemd[1]: Listening on udev Control Socket.
    Jan 02 23:22:36 arch_1 systemd[1]: Starting udev Coldplug all Devices...
    Jan 02 23:22:36 arch_1 systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    Jan 02 23:22:36 arch_1 systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Po
    Jan 02 23:22:36 arch_1 systemd[1]: Started Set Up Additional Binary Formats.
    Jan 02 23:22:36 arch_1 systemd[1]: Starting Create list of required static device nodes for the current kernel
    Jan 02 23:22:36 arch_1 systemd[1]: Mounting Huge Pages File System...
    Jan 02 23:22:36 arch_1 systemd[1]: Starting Encrypted Volumes.
    Jan 02 23:22:36 arch_1 systemd[1]: Reached target Encrypted Volumes.
    Jan 02 23:22:36 arch_1 systemd[1]: Mounting Debug File System...
    Jan 02 23:22:36 arch_1 systemd[1]: Mounting POSIX Message Queue File System...
    Jan 02 23:22:37 arch_1 systemd[1]: Starting Apply Kernel Variables...
    Jan 02 23:22:37 arch_1 systemd[1]: Starting Swap.
    Jan 02 23:22:37 arch_1 systemd[1]: Reached target Swap.
    Jan 02 23:22:37 arch_1 systemd[1]: Started File System Check on Root Device.
    Jan 02 23:22:37 arch_1 systemd[1]: Starting Remount Root and Kernel File Systems...
    Jan 02 23:22:37 arch_1 systemd[1]: Expecting device dev-disk-by\x2duuid-1f355bf1\x2d1469\x2d4722\x2d8f65\x2d01
    Jan 02 23:22:37 arch_1 systemd[1]: Starting Root Slice.
    Jan 02 23:22:37 arch_1 systemd[1]: Created slice Root Slice.
    Jan 02 23:22:37 arch_1 systemd[1]: Starting User and Session Slice.
    Jan 02 23:22:37 arch_1 systemd[1]: Created slice User and Session Slice.
    Jan 02 23:22:37 arch_1 systemd[1]: Starting System Slice.
    Jan 02 23:22:37 arch_1 systemd[1]: Created slice System Slice.
    Jan 02 23:22:37 arch_1 systemd[1]: Starting system-netctl.slice.
    Jan 02 23:22:37 arch_1 systemd[1]: Created slice system-netctl.slice.
    Jan 02 23:22:37 arch_1 systemd[1]: Starting system-getty.slice.
    Jan 02 23:22:37 arch_1 systemd[1]: Created slice system-getty.slice.
    Jan 02 23:22:37 arch_1 systemd[1]: Starting system-serial\x2dgetty.slice.
    Jan 02 23:22:37 arch_1 systemd[1]: Created slice system-serial\x2dgetty.slice.
    Jan 02 23:22:37 arch_1 systemd[1]: Starting Slices.
    Jan 02 23:22:37 arch_1 systemd[1]: Reached target Slices.
    Jan 02 23:22:37 arch_1 systemd[1]: Started udev Coldplug all Devices.
    Jan 02 23:22:37 arch_1 kernel: FS-Cache: Loaded
    Jan 02 23:22:37 arch_1 kernel: RPC: Registered named UNIX socket transport module.
    Jan 02 23:22:37 arch_1 kernel: RPC: Registered udp transport module.
    Jan 02 23:22:37 arch_1 kernel: RPC: Registered tcp transport module.
    Jan 02 23:22:37 arch_1 kernel: RPC: Registered tcp NFSv4.1 backchannel transport module.
    Jan 02 23:22:37 arch_1 systemd-modules-load[128]: Inserted module 'nfs'
    Jan 02 23:22:37 arch_1 kernel: FS-Cache: Netfs 'nfs' registered for caching
    Jan 02 23:22:37 arch_1 systemd-modules-load[128]: Inserted module 'xen_evtchn'
    Jan 02 23:22:37 arch_1 kernel: xen:xen_evtchn: Event-channel device installed
    Jan 02 23:22:37 arch_1 systemd-modules-load[128]: Inserted module 'xen_gntdev'
    Jan 02 23:22:37 arch_1 systemd-modules-load[128]: Inserted module 'xen_gntalloc'
    Jan 02 23:22:37 arch_1 systemd-modules-load[128]: Inserted module 'xen_blkback'
    Jan 02 23:22:37 arch_1 systemd-modules-load[128]: Inserted module 'xen_netback'
    Jan 02 23:22:37 arch_1 systemd-modules-load[128]: Inserted module 'xen_pciback'
    Jan 02 23:22:37 arch_1 kernel: xen_pciback: backend is vpci
    Jan 02 23:22:37 arch_1 kernel: ACPI: Requesting acpi_cpufreq
    Jan 02 23:22:37 arch_1 kernel: Monitor-Mwait will be used to enter C-1 state
    Jan 02 23:22:37 arch_1 kernel: Warning: Processor Platform Limit not supported.
    Jan 02 23:22:37 arch_1 systemd[1]: Started Apply Kernel Variables.
    Jan 02 23:22:37 arch_1 systemd[1]: Started Setup Virtual Console.
    Jan 02 23:22:37 arch_1 systemd[1]: Mounted Huge Pages File System.
    Jan 02 23:22:37 arch_1 kernel: xen_acpi_processor: Uploading Xen processor PM info
    Jan 02 23:22:37 arch_1 systemd[1]: Mounted Debug File System.
    Jan 02 23:22:37 arch_1 systemd-modules-load[128]: Inserted module 'xen_acpi_processor'
    Jan 02 23:22:37 arch_1 systemd[1]: Mounted POSIX Message Queue File System.
    Jan 02 23:22:37 arch_1 systemd[1]: Started Load Kernel Modules.
    Jan 02 23:22:37 arch_1 systemd[1]: Mounting Configuration File System...
    Jan 02 23:22:37 arch_1 systemd[1]: Mounted FUSE Control File System.
    Jan 02 23:22:37 arch_1 systemd[1]: Mounted Configuration File System.
    Jan 02 23:22:37 arch_1 systemd[1]: Started Create list of required static device nodes for the current kernel.
    Jan 02 23:22:37 arch_1 systemd[1]: Starting Create static device nodes in /dev...
    Jan 02 23:22:37 arch_1 systemd[1]: Started Remount Root and Kernel File Systems.
    Jan 02 23:22:37 arch_1 systemd[1]: Starting Load/Save Random Seed...
    Jan 02 23:22:37 arch_1 kernel: EXT4-fs (dm-0): re-mounted. Opts: data=ordered
    Jan 02 23:22:37 arch_1 systemd[1]: Started Load/Save Random Seed.
    Jan 02 23:22:37 arch_1 systemd[1]: Started Create static device nodes in /dev.
    Jan 02 23:22:37 arch_1 systemd[1]: Starting udev Kernel Device Manager...
    Jan 02 23:22:37 arch_1 systemd[1]: Starting Local File Systems (Pre).
    Jan 02 23:22:37 arch_1 systemd[1]: Reached target Local File Systems (Pre).
    Jan 02 23:22:37 arch_1 systemd[1]: Mounting /tmp...
    Jan 02 23:22:37 arch_1 systemd[1]: Mountin

    I have the same problem on Fedora Core 20 with xen 4.3.1 32bit Sempron3200+ with turned off HPET tables on South bridge and these boot options
    xen: noreboot nosmp console_to_ring console=vga vga=text-80x50
    linux: pci=noacpi pci=nommconf
    Image on Yandex disk
    When I solve it I notify you.
    Last edited by maskimko (2014-01-16 08:12:35)

Maybe you are looking for