Graphic Buffers

Hi,
I have 'private Image buffer', 'private Graphics2D ng2d' and 'private Extended2D e2d' [Extended2D is a wrapper for Graphics2D with my own graphics methods] declared global (In DPanel() class). I need to have a seperate and global graphics buffer to which I draw and display it at a later time, not necessarily after I finish drawing to my buffer. The problem occurs when I resize the panel. The size of the buffer remains the same, though the panel has changed size. How do I specify the new size or reset the buffer and anything painted in it? None of the methods in the Image Class seam to hold promise with regards to these problems.
          buffer = createImage ((int)pWidth, (int)pHeight);
          ng2d = (Graphics2D)buffer.getGraphics();
          e2d = new Extended2D (ng2d);Devyn

Thank you, the first suggestion worked but not fully. The application crashes (closes unexpectedly) after I resize it for the second time without any exception error messages or any error messages displayed. I've yet to try your second suggestion.
     addComponentListener (new ComponentListener() {
                         public void componentMoved (ComponentEvent e) {};
                         public void componentResized (ComponentEvent e) {
                              pWidth = getWidth();
                              pHeight = getHeight();
                              if (pWidth > 0) {
                                   if (buffer != null)
                                        buffer.flush();
                                   buffer = createImage ((int)pWidth, (int)pHeight);
                                   ng2d = (Graphics2D)buffer.getGraphics();
                                   e2d = new Extended2D (ng2d);
                         public void componentHidden (ComponentEvent e) {};
                         public void componentShown (ComponentEvent e) {};
                    });Devyn

Similar Messages

  • Clearing graphics

    Hi everyone !
    I'm using the Java Graphics2D API to create a Game Engine, I know how to draw sprites etc but I have a problem.
    To refresh the screen, I'm using graphic buffers ( BufferedImage's ) and I have to clear them before redrawing the screen.
    The engine is composed of 5 layers ( drawn one above an other ), so when I clear them I want to keep the alpha property of each one.
    The method I wrote is here :
    protected final void clear(Graphics2D g)
         Composite c = g.getComposite();          
         g.clearRect(0, 0, Tests.WIDTH, Tests.HEIGHT);
         g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_IN, 1f));
         g.setColor(new Color(0, 0, 0, 0));
         g.fillRect(0, 0, Tests.WIDTH, Tests.HEIGHT);
         g.setComposite(c);
    }This is the only way I have found, but it is very slowly for a game engine.
    Do you have a better idea to resolve this problem ?
    Thanks in advance.

    >
    Are you using compatible images? If not, using them will probably lead to a nice performance boost, especially if you're blitting lots of BufferedImages to the screen per frame.
    BufferedImage img = canvas.getGraphicsConfiguration().createCompatibleImage(int width, int height, int transparency) ;Besides that little bit of advice, I'm still a little confused as to what you're trying to do, so an SSCCE would probably be best.
    >
    No I wasn't and I'm not using the Canvas class.
    Nevertheless I have tried to create an image with the 'getGraphicsConfiguration' method of the JPanel I use to render the game, but a NullPointerException was thrown.
    I so wrote a method with GraphicsEnvironement and GraphicsDevice class to get a GraphicsConfiguration and finally create a compatible image but the result
    was not very conclusive.
    The thing I'm trying to do is just to clear a BufferedImage without losing its alpha property. In fact, my engine ( a tile engine ) wroks with layers.
    So if a layer background becomes opaque, the things that are under this layer ( another layer ) would not be visible.
    But this method :
    >
    I'm pretty sure that the code you posted is equivalent to
    Composite orig = g.getComposite();
    g.setComposite(AlphaComposite.Clear);
    g.fillRect(0, 0, Tests.WIDTH, Tests.HEIGHT);
    g.setComposite(orig);
    This wouldn't require the clearRect(). In fact the code you currently have doesn't require the clearRect(). Also, the CLEAR rule doesn't require any calculations like the SRC_IN rule.
    >
    made my engine take twice less time to execute for each frame. ( 47ms instead of 94 before )
    Thank you

  • M-Flash, FM2-A75MA-E35, System is not reboot or taking long time

    Hi,
    I have FM2-A75MA-E35 with A10-5700.
    Several days ago, I downloaded a ZIP file of BIOS version 1.7 from MSI. After extracted, it was the same version 1.5 (.150 extension), but with older version of .EXE compared to my previous BIOS version 1.5 download.
    After the flash screen ended, the system was not reboot almost right away like my previous 1.5 flashed, but with blank screen, fan running fully speed, and both HDD LED and Power LED lite up.   About a minute late, I pressed Power with not respond then Reset also with no respond.  Several seconds later, the system rebooted and Windows loaded.  Later, I flashed the system back to previous 1.5 and everything seemed to be OK.  Yesterday, I checked MSI site and saw that the actual 1.7 BIOS is up, I am thinking about flashing again. 
    Here are my questions:   
    What is going on after the flash screen ended?
    Is it save to 1) press power or 2) reset button or 3) pull the plug after the flash screen ended, If the system is not reboot or responding for about a minute?

    I flashed it the same way that I did with the early weird 1.7 version and it was working.
    After flash progress bar completed, it took about less than 5 seconds, the system rebooted twice with all the LEDs turn on and off and windows loaded.  I rebooted and went into the BIOS which shown version 1.7. 
    The scary thing was when I was in the BIOS setting the clock, the screen went blank for about a second once and sometime blinking , and it seemed to do that on the clock setting screen, not the main screen.  I think this might related to graphic buffering and programing. 
    I hope this is normal for this UEFI BIOS and not turns into a brick. 
    Please, let me known that if you think this is normal or not.
    Thanks,

  • Double buffering still gives flickering graphics.

    I copied code from a tutorail which is supposed to illustrate double buffering.
    After I run it, it still flickers though.
    I use applet viewer, which is part of netbeans to run my applet.
    Link to tutorial: http://www.javacooperation.gmxhome.de/TutorialStartEng.html
    My questions are:
    Is the strategy used for double buffering correct?
    Why does it flicker?
    Why does the program change the priority a couple of times?
    Can you make fast games in JApplets or is there a better way to make games? (I think C++ is too hard)
    Here is the code:
    package ballspel;
    import java.awt.Color;
    import java.awt.Graphics;
    import java.awt.Image;
    import javax.swing.JApplet;
    //import java.applet.*;
    * @author Somelauw
    public class BallApplet extends /*Applet*/ JApplet implements Runnable {
    private Image dbImage;
    private Graphics dbg;
    private int radius = 20;
    private int xPos = 10;
    private int yPos = 100;
    * Initialization method that will be called after the applet is loaded
    * into the browser.
    @Override
    public void init() {
    //System.out.println(this.isDoubleBuffered()); //returns false
    // Isn't there a builtin way to force double buffering?
    // TODO start asynchronous download of heavy resources
    @Override
    public void start() {
    Thread th = new Thread(this);
    th.start();
    public void run() {
    Thread.currentThread().setPriority(Thread.MIN_PRIORITY);
    while (true) {
    xPos++;
    repaint();
    try {
    Thread.sleep(20);
    } catch (InterruptedException ex) {
    ex.printStackTrace();
    Thread.currentThread().setPriority(Thread.MAX_PRIORITY);
    @Override
    public void paint(Graphics g) {
    super.paint(g);
    //g.clear();//, yPos, WIDTH, WIDTH)
    g.setColor(Color.red);
    g.fillOval(xPos - radius, yPos - radius, 2 * radius, 2 * radius);
    @Override
    public void update(Graphics g) {
    super.update(g);
    // initialize buffer
    if (dbImage == null) {
    dbImage = createImage(this.getSize().width, this.getSize().height);
    dbg = dbImage.getGraphics();
    // clear screen in background
    dbg.setColor(getBackground());
    dbg.fillRect(0, 0, this.getSize().width, this.getSize().height);
    // draw elements in background
    dbg.setColor(getForeground());
    paint(dbg);
    // draw image on the screen
    g.drawImage(dbImage, 0, 0, this);
    // TODO overwrite start(), stop() and destroy() methods
    }

    Somelauw wrote:
    I copied code from a tutorail which is supposed to illustrate double buffering.
    After I run it, it still flickers though.
    I use applet viewer, which is part of netbeans.. AppletViewer is part of the JDK, not NetBeans.
    ..to run my applet.
    Link to tutorial: http://www.javacooperation.gmxhome.de/TutorialStartEng.html
    Did you specifically mean the code mentioned on this page?
    [http://www.javacooperation.gmxhome.de/BildschirmflackernEng.html]
    Don't expect people to go hunting around the site, looking for the code you happen to be referring to.
    As an aside, please use the code tags when posting code, code snippets, XML/HTML or input/output. The code tags help retain the formatting and indentation of the sample. To use the code tags, select the sample and click the CODE button.
    Here is the code you posted, as it appears in code tags.
    package ballspel;
    import java.awt.Color;
    import java.awt.Graphics;
    import java.awt.Image;
    import javax.swing.JApplet;
    //import java.applet.*;
    * @author Somelauw
    public class BallApplet extends /*Applet*/ JApplet implements Runnable {
        private Image dbImage;
        private Graphics dbg;
        private int radius = 20;
        private int xPos = 10;
        private int yPos = 100;
         * Initialization method that will be called after the applet is loaded
         * into the browser.
        @Override
        public void init() {
            //System.out.println(this.isDoubleBuffered()); //returns false
            // Isn't there a builtin way to force double buffering?
            // TODO start asynchronous download of heavy resources
        @Override
        public void start() {
            Thread th = new Thread(this);
            th.start();
        public void run() {
            Thread.currentThread().setPriority(Thread.MIN_PRIORITY);
            while (true) {
                xPos++;
                repaint();
                try {
                    Thread.sleep(20);
                } catch (InterruptedException ex) {
                    ex.printStackTrace();
                Thread.currentThread().setPriority(Thread.MAX_PRIORITY);
        @Override
        public void paint(Graphics g) {
            super.paint(g);
            //g.clear();//, yPos, WIDTH, WIDTH)
            g.setColor(Color.red);
            g.fillOval(xPos - radius, yPos - radius, 2 * radius, 2 * radius);
        @Override
        public void update(Graphics g) {
            super.update(g);
            // initialize buffer
            if (dbImage == null) {
                dbImage = createImage(this.getSize().width, this.getSize().height);
                dbg = dbImage.getGraphics();
            // clear screen in background
            dbg.setColor(getBackground());
            dbg.fillRect(0, 0, this.getSize().width, this.getSize().height);
            // draw elements in background
            dbg.setColor(getForeground());
            paint(dbg);
            // draw image on the screen
            g.drawImage(dbImage, 0, 0, this);
        // TODO overwrite start(), stop() and destroy() methods
    }Edit 1:
    - For animation code, it would be typical to use a javax.swing.Timer for triggering updates, rather than implementing Runnable (etc.)
    - Attempting to set the thread priority will throw a SecurityException, though oddly it occurs when attempting to set the Thread priority to maximum, whereas the earlier call to set the Thread priority to minimum passed without comment (exception).
    - The paint() method of that applet is not double buffered.
    - It is generally advisable to override paintComponent(Graphics) in a JPanel that is added to the top-level applet (or JFrame, or JWindow, or JDialog..) rather than the paint(Graphics) method of the top-level container itself.
    Edited by: AndrewThompson64 on Jan 22, 2010 12:47 PM

  • How to store graphics 2d as buffered image

    Hi,
    as per my requirement i need to generate a diagram and store it as a image. for that i am using bufferedimage class to create and draw the image by specifying the width and height. but some times the data migth be more than the height specified. is there any solution for this. please help me out

    Hi,
    Thanks for your quick reply. the diagram is not completly visible on the screen as the width of the bufferedimage is fixed.
    for example
    buffImg = new BufferedImage(width, height, BufferedImage.SCALE_SMOOTH);
    Graphics2D imageGaph=buffImg.createGraphics();
              drawTemplate(imageGaph);
              drawValueLevers(imageGaph,105,160,width-32,height-60);
              drawFooter(imageGaph);
    gd.drawImage(buffImg,null,0,0);
    in the first line i am creating a buffered image with fixed widht and height.by getting the graphics handler i am drawing the diagram. if the diagram height is more than the buffered image hight ,then it is not visible. please help me out..

  • Graphics to Buffered Image

    Hello there.
    Ill try to explain this the simplest way possible. Lets say i have a map, and sprites on that map. The map by itself its static, it will only move along as a camera move. Im calling, methods directly in Paint from my applet to draw the map, and draw the sprites. What i am willing to do it, Drawing the map into a separate Graphics or a BufferedImage, so i can draw the map on the final graphics. This would also make i draw the map only once, witch would be good as well, cause actually map drawing is on a loop.
    Thanx in advance for any help.
    For a better undestanding:
    I have a map, and i have sprites, and a window class. Each is drawd by a different class. My Paint method is something similar to this:
    public void paint(Graphics g) {
       MapClass.drawMap(g);
       SpriteClass.drawSprites(g);
       WindowClass.drawWindows(g);
    }now, this makes me draw the map on the game loop, and if i wanted to move the map around i would have to translate the graphics to move only the map and sprites. However, i belive this could be easyer if i have a separate map for example, and i could use my paint method like this:
    public void paint(Graphics g) {
       g.drawImage(MapClass.getMap(), camX, camY, screenX, screenY);
       g.drawImage(SpriteClass.getSprites(),  camX, camY, screenX, screenY);
       WindowClass.drawWindows(g);
    }So i could control camera movements easy, and i can save the map into memory so i dont have to draw it over and over again. Ive googled into how to create a buffered image from a graphics but couldnt do it. Lets say i have this method doing the paint ( a simple one )
    // class Sprites
    public void drawSprites(Graphics g) {
        g.drawImage( sprite, spriteX, spriteY, sizeX, sizeY);
    }Now, i would have something like that
    public BufferedImage getSprites() {
       Graphics g = new Graphics();
       g.drawImage( sprite, spriteX, spriteY, sizeX, sizeY);
       BufferedImage img = new BufferedImage(parms, parms2);
       img = g; // ?
       return img;
    }So i could just paint this img on the main graphics, and move it easy, and pheraphs store it in memory.
    Thanx for any kind of help.
    []´s Ziden

    crosspost
    Please only post your message in 1 forum, your question is anwered there. Graphics to BufferedImage ?

  • Setting a buffer graphic while buffering

    I'm building a pretty simple player and have a a buffer size set on my MediaPlayer (mediaPlayer.bufferTime = BUFFER_TIME). That's working but I want to show a graphic whenever it's buffering. I'm having a hard time finding information on any buffer events or buffer examples.  It's a pretty comon thing so I was hoping someone has done this and can lend a hand?
    Thanks

    You could listen for BufferEvent.BUFFERING_CHANGE and/or PlayEvent.PLAY_STATE_CHANGE.
    You can look at the StrobeMediaPlayback source code to see an example of buffering overlay.

  • [GAVE UP] Failure to initialize graphics device [Thinkpad 530W,Nvidia]

    Hello,
    I fail to use `nvidia` as graphics driver for my xorg on a Thinkpad 530W laptop using Nvidia Quadro 2000M and intel graphics card. Using instead `intel` or `vesa` work. This following logs are with optimus enabled, but I tried the same things with only the nvidia graphics card enabled in the bios and I also fail to load the nvidia driver.
    I followed the advice at
    https://wiki.archlinux.org/index.php/NV … IA_Optimus
    for xorg not to be confused by the presense of two graphics cards.
    Do you have any ideas how I get the nvidia card to run? Should I try Bumblebee? But can this even help if already only the nvidia card by itself makes problem? Do you need any more information?
    Thanks, for any advice,
    Holger
    This is a fresh install on a new laptop and I am new to Arch (but with Linux for a long time).
    Here are the logs:
    XOrg.log
    [ 6.236]
    X.Org X Server 1.14.4
    Release Date: 2013-10-31
    [ 6.236] X Protocol Version 11, Revision 0
    [ 6.236] Build Operating System: Linux 3.11.6-1-ARCH x86_64
    [ 6.236] Current Operating System: Linux ho-think 3.12.2-1-ARCH #1 SMP PREEMPT Fri Nov 29 21:14:15 CET 2013 x86_64
    [ 6.236] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=267f069c-11da-4d2a-88fa-00cab4e28149 rw quiet resume=/dev/sda6
    [ 6.236] Build Date: 01 November 2013 05:10:48PM
    [ 6.236]
    [ 6.236] Current version of pixman: 0.32.4
    [ 6.236] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 6.236] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 6.237] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Dec 5 23:50:52 2013
    [ 6.239] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 6.239] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 6.239] (==) No Layout section. Using the first Screen section.
    [ 6.239] (==) No screen section available. Using defaults.
    [ 6.239] (**) |-->Screen "Default Screen Section" (0)
    [ 6.239] (**) | |-->Monitor "<default monitor>"
    [ 6.240] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 6.240] (**) | |-->Device "Nvidia Card"
    [ 6.240] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 6.240] (==) Automatically adding devices
    [ 6.240] (==) Automatically enabling devices
    [ 6.240] (==) Automatically adding GPU devices
    [ 6.242] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 6.242] Entry deleted from font path.
    [ 6.244] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 6.244] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 6.244] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 6.244] (II) Loader magic: 0x7fdc20
    [ 6.244] (II) Module ABI versions:
    [ 6.244] X.Org ANSI C Emulation: 0.4
    [ 6.244] X.Org Video Driver: 14.1
    [ 6.244] X.Org XInput driver : 19.1
    [ 6.244] X.Org Server Extension : 7.0
    [ 6.244] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 6.245] (II) xfree86: Adding drm device (/dev/dri/card1)
    [ 6.246] (--) PCI:*(0:0:2:0) 8086:0166:17aa:21f5 rev 9, Mem @ 0xf1400000/4194304, 0xe0000000/268435456, I/O @ 0x00006000/64
    [ 6.246] (--) PCI: (0:1:0:0) 10de:0ffb:17aa:21f5 rev 161, Mem @ 0xf0000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x00005000/128, BIOS @ 0x????????/524288
    [ 6.246] Initializing built-in extension Generic Event Extension
    [ 6.246] Initializing built-in extension SHAPE
    [ 6.246] Initializing built-in extension MIT-SHM
    [ 6.246] Initializing built-in extension XInputExtension
    [ 6.246] Initializing built-in extension XTEST
    [ 6.246] Initializing built-in extension BIG-REQUESTS
    [ 6.246] Initializing built-in extension SYNC
    [ 6.246] Initializing built-in extension XKEYBOARD
    [ 6.246] Initializing built-in extension XC-MISC
    [ 6.246] Initializing built-in extension SECURITY
    [ 6.247] Initializing built-in extension XINERAMA
    [ 6.247] Initializing built-in extension XFIXES
    [ 6.247] Initializing built-in extension RENDER
    [ 6.247] Initializing built-in extension RANDR
    [ 6.247] Initializing built-in extension COMPOSITE
    [ 6.247] Initializing built-in extension DAMAGE
    [ 6.247] Initializing built-in extension MIT-SCREEN-SAVER
    [ 6.247] Initializing built-in extension DOUBLE-BUFFER
    [ 6.247] Initializing built-in extension RECORD
    [ 6.247] Initializing built-in extension DPMS
    [ 6.247] Initializing built-in extension X-Resource
    [ 6.247] Initializing built-in extension XVideo
    [ 6.247] Initializing built-in extension XVideo-MotionCompensation
    [ 6.247] Initializing built-in extension XFree86-VidModeExtension
    [ 6.247] Initializing built-in extension XFree86-DGA
    [ 6.247] Initializing built-in extension XFree86-DRI
    [ 6.247] Initializing built-in extension DRI2
    [ 6.247] (II) "glx" will be loaded by default.
    [ 6.247] (II) LoadModule: "dri2"
    [ 6.247] (II) Module "dri2" already built-in
    [ 6.247] (II) LoadModule: "glamoregl"
    [ 6.275] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 6.475] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 6.475] compiled for 1.14.2, module version = 0.5.1
    [ 6.475] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 6.475] (II) LoadModule: "glx"
    [ 6.475] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 6.517] (II) Module glx: vendor="NVIDIA Corporation"
    [ 6.517] compiled for 4.0.2, module version = 1.0.0
    [ 6.517] Module class: X.Org Server Extension
    [ 6.517] (II) NVIDIA GLX Module 331.20 Wed Oct 30 17:36:48 PDT 2013
    [ 6.517] Loading extension GLX
    [ 6.517] (II) LoadModule: "nvidia"
    [ 6.517] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 6.549] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 6.549] compiled for 4.0.2, module version = 1.0.0
    [ 6.549] Module class: X.Org Video Driver
    [ 6.549] (II) NVIDIA dlloader X Driver 331.20 Wed Oct 30 17:16:53 PDT 2013
    [ 6.549] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 6.549] (++) using VT number 7
    [ 6.553] (II) Loading sub module "fb"
    [ 6.554] (II) LoadModule: "fb"
    [ 6.554] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 6.557] (II) Module fb: vendor="X.Org Foundation"
    [ 6.557] compiled for 1.14.4, module version = 1.0.0
    [ 6.557] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 6.557] (WW) Unresolved symbol: fbGetGCPrivateKey
    [ 6.557] (II) Loading sub module "wfb"
    [ 6.557] (II) LoadModule: "wfb"
    [ 6.557] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 6.559] (II) Module wfb: vendor="X.Org Foundation"
    [ 6.559] compiled for 1.14.4, module version = 1.0.0
    [ 6.559] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 6.559] (II) Loading sub module "ramdac"
    [ 6.559] (II) LoadModule: "ramdac"
    [ 6.559] (II) Module "ramdac" already built-in
    [ 6.559] (II) NVIDIA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 6.559] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    [ 6.559] (==) NVIDIA(0): RGB weight 888
    [ 6.559] (==) NVIDIA(0): Default visual is TrueColor
    [ 6.559] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 6.559] (**) NVIDIA(0): Enabling 2D acceleration
    [ 11.161] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA GPU at PCI:1:0:0. Please
    [ 11.161] (EE) NVIDIA(GPU-0): check your system's kernel log for additional error
    [ 11.161] (EE) NVIDIA(GPU-0): messages and refer to Chapter 8: Common Problems in the
    [ 11.161] (EE) NVIDIA(GPU-0): README for additional information.
    [ 11.161] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA graphics device!
    [ 11.161] (EE) NVIDIA(0): Failing initialization of X screen 0
    [ 11.161] (II) UnloadModule: "nvidia"
    [ 11.161] (II) UnloadSubModule: "wfb"
    [ 11.161] (II) UnloadSubModule: "fb"
    [ 11.161] (EE) Screen(s) found, but none have a usable configuration.
    [ 11.161] (EE)
    Fatal server error:
    [ 11.161] (EE) no screens found(EE)
    [ 11.161] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 11.161] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 11.162] (EE)
    [ 11.167] (EE) Server terminated with error (1). Closing log file.
    dmesg with the nvidia failure at the end:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.12.2-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.2 (GCC) ) #1 SMP PREEMPT Fri Nov 29 21:14:15 CET 2013
    [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=267f069c-11da-4d2a-88fa-00cab4e28149 rw quiet resume=/dev/sda6
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000020200000-0x0000000040003fff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000040004000-0x0000000040004fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000040005000-0x00000000a6b2ffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000a6b30000-0x00000000bae9efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bae9f000-0x00000000baf9efff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000baf9f000-0x00000000baffefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000bafff000-0x00000000bf9fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000043e5fffff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000043e600000-0x000000043e7fffff] reserved
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: LENOVO 2447DW0/2447DW0, BIOS G5ET93WW (2.53 ) 05/24/2013
    [ 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 = 0x43e600 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0FFC00000 mask FFFC00000 write-protect
    [ 0.000000] 1 base 000000000 mask F80000000 write-back
    [ 0.000000] 2 base 080000000 mask FC0000000 write-back
    [ 0.000000] 3 base 0BC000000 mask FFC000000 uncachable
    [ 0.000000] 4 base 0BB000000 mask FFF000000 uncachable
    [ 0.000000] 5 base 100000000 mask F00000000 write-back
    [ 0.000000] 6 base 200000000 mask E00000000 write-back
    [ 0.000000] 7 base 400000000 mask FC0000000 write-back
    [ 0.000000] 8 base 43F000000 mask FFF000000 uncachable
    [ 0.000000] 9 base 43E800000 mask FFF800000 uncachable
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: last_pfn = 0xa6b30 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000f0100-0x000f010f] mapped at [ffff8800000f0100]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000097000] 97000 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 0x43e400000-0x43e5fffff]
    [ 0.000000] [mem 0x43e400000-0x43e5fffff] page 2M
    [ 0.000000] BRK [0x01b35000, 0x01b35fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x43c000000-0x43e3fffff]
    [ 0.000000] [mem 0x43c000000-0x43e3fffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x400000000-0x43bffffff]
    [ 0.000000] [mem 0x400000000-0x43bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x1fffffff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x1fffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x20200000-0x40003fff]
    [ 0.000000] [mem 0x20200000-0x3fffffff] page 2M
    [ 0.000000] [mem 0x40000000-0x40003fff] page 4k
    [ 0.000000] BRK [0x01b36000, 0x01b36fff] PGTABLE
    [ 0.000000] BRK [0x01b37000, 0x01b37fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x40005000-0xa6b2ffff]
    [ 0.000000] [mem 0x40005000-0x401fffff] page 4k
    [ 0.000000] [mem 0x40200000-0xa69fffff] page 2M
    [ 0.000000] [mem 0xa6a00000-0xa6b2ffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x3ffffffff]
    [ 0.000000] [mem 0x100000000-0x3ffffffff] page 2M
    [ 0.000000] RAMDISK: [mem 0x379be000-0x37cd6fff]
    [ 0.000000] ACPI: RSDP 00000000000f0120 00024 (v02 LENOVO)
    [ 0.000000] ACPI: XSDT 00000000baffe170 000BC (v01 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: FACP 00000000bafe6000 0010C (v05 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: DSDT 00000000bafe8000 10A68 (v01 LENOVO TP-G5 00002530 INTL 20061109)
    [ 0.000000] ACPI: FACS 00000000baf54000 00040
    [ 0.000000] ACPI: SLIC 00000000baffd000 00176 (v01 LENOVO TP-G5 00002530 PTL 00000001)
    [ 0.000000] ACPI: TCPA 00000000baffc000 00032 (v02 PTL LENOVO 06040000 LNVO 00000001)
    [ 0.000000] ACPI: SSDT 00000000baffb000 00408 (v01 LENOVO TP-SSDT2 00000200 INTL 20061109)
    [ 0.000000] ACPI: SSDT 00000000baffa000 00033 (v01 LENOVO TP-SSDT1 00000100 INTL 20061109)
    [ 0.000000] ACPI: SSDT 00000000baff9000 00797 (v01 LENOVO SataAhci 00001000 INTL 20061109)
    [ 0.000000] ACPI: HPET 00000000bafe4000 00038 (v01 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: APIC 00000000bafe3000 00098 (v01 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: MCFG 00000000bafe2000 0003C (v01 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: ECDT 00000000bafe1000 00052 (v01 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: FPDT 00000000bafe0000 00064 (v01 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: ASF! 00000000bafe7000 000A5 (v32 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: UEFI 00000000bafdf000 0003E (v01 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: UEFI 00000000bafde000 00042 (v01 PTL COMBUF 00000001 PTL 00000001)
    [ 0.000000] ACPI: MSDM 00000000bafdd000 00055 (v03 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: SSDT 00000000bafdc000 00D23 (v01 PmRef Cpu0Ist 00003000 INTL 20061109)
    [ 0.000000] ACPI: SSDT 00000000bafdb000 00A83 (v01 PmRef CpuPm 00003000 INTL 20061109)
    [ 0.000000] ACPI: UEFI 00000000bafda000 002A6 (v01 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: DBG2 00000000bafd9000 000E9 (v00 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000043e5fffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x43e5fffff]
    [ 0.000000] NODE_DATA [mem 0x43e5ed000-0x43e5f1fff]
    [ 0.000000] [ffffea0000000000-ffffea0010ffffff] PMD -> [ffff88042e200000-ffff88043dbfffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x43e5fffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0009cfff]
    [ 0.000000] node 0: [mem 0x00100000-0x1fffffff]
    [ 0.000000] node 0: [mem 0x20200000-0x40003fff]
    [ 0.000000] node 0: [mem 0x40005000-0xa6b2ffff]
    [ 0.000000] node 0: [mem 0x100000000-0x43e5fffff]
    [ 0.000000] On node 0 totalpages: 4083403
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 21 pages reserved
    [ 0.000000] DMA zone: 3996 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 10597 pages used for memmap
    [ 0.000000] DMA32 zone: 678191 pages, LIFO batch:31
    [ 0.000000] Normal zone: 53144 pages used for memmap
    [ 0.000000] Normal zone: 3401216 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[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x04] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] 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 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-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 0x20000000-0x201fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x40004000-0x40004fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xa6b30000-0xbae9efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbae9f000-0xbaf9efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbaf9f000-0xbaffefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbafff000-0xbf9fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbfa00000-0xf7ffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed07fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed08000-0xfed08fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed09000-0xfed0ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffbfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffffffff]
    [ 0.000000] e820: [mem 0xbfa00000-0xf7ffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88043e200000 s86464 r8192 d24128 u262144
    [ 0.000000] pcpu-alloc: s86464 r8192 d24128 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 4019577
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=267f069c-11da-4d2a-88fa-00cab4e28149 rw quiet resume=/dev/sda6
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 15995556K/16333612K available (5121K kernel code, 807K rwdata, 1708K rodata, 1144K init, 1288K bss, 338056K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
    [ 0.000000] NR_IRQS:8448 nr_irqs:744 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 65536000 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.003333] tsc: Detected 2694.031 MHz processor
    [ 0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 5390.56 BogoMIPS (lpj=8980103)
    [ 0.000005] pid_max: default: 32768 minimum: 301
    [ 0.000027] Security Framework initialized
    [ 0.000034] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000035] Yama: becoming mindful.
    [ 0.000923] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
    [ 0.004551] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.006146] Mount-cache hash table entries: 256
    [ 0.006298] Initializing cgroup subsys memory
    [ 0.006306] Initializing cgroup subsys devices
    [ 0.006307] Initializing cgroup subsys freezer
    [ 0.006309] Initializing cgroup subsys net_cls
    [ 0.006310] Initializing cgroup subsys blkio
    [ 0.006329] CPU: Physical Processor ID: 0
    [ 0.006330] CPU: Processor Core ID: 0
    [ 0.006334] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.006663] mce: CPU supports 9 MCE banks
    [ 0.006675] CPU0: Thermal monitoring enabled (TM1)
    [ 0.006685] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
    tlb_flushall_shift: 1
    [ 0.006786] Freeing SMP alternatives memory: 20K (ffffffff819e9000 - ffffffff819ee000)
    [ 0.007682] ACPI: Core revision 20130725
    [ 0.013359] ACPI: All ACPI Tables successfully acquired
    [ 0.014627] ftrace: allocating 20311 entries in 80 pages
    [ 0.023669] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.056667] smpboot: CPU0: Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz (fam: 06, model: 3a, stepping: 09)
    [ 0.056673] TSC deadline timer enabled
    [ 0.056680] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Intel PMU driver.
    [ 0.056686] ... version: 3
    [ 0.056687] ... bit width: 48
    [ 0.056688] ... generic registers: 4
    [ 0.056689] ... value mask: 0000ffffffffffff
    [ 0.056689] ... max period: 0000ffffffffffff
    [ 0.056690] ... fixed-purpose events: 3
    [ 0.056691] ... event mask: 000000070000000f
    [ 0.093731] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.080104] smpboot: Booting Node 0, Processors # 1 # 2 # 3 # 4 # 5 # 6 # 7 OK
    [ 0.215283] Brought up 8 CPUs
    [ 0.215286] smpboot: Total of 8 processors activated (43121.51 BogoMIPS)
    [ 0.221817] devtmpfs: initialized
    [ 0.225267] PM: Registering ACPI NVS region [mem 0xbae9f000-0xbaf9efff] (1048576 bytes)
    [ 0.225908] RTC time: 22:50:45, date: 12/05/13
    [ 0.225941] NET: Registered protocol family 16
    [ 0.226022] cpuidle: using governor ladder
    [ 0.226024] cpuidle: using governor menu
    [ 0.226046] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.226048] ACPI: bus type PCI registered
    [ 0.226050] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.226221] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.226224] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    [ 0.230705] PCI: Using configuration type 1 for base access
    [ 0.231329] bio: create slab <bio-0> at 0
    [ 0.231442] ACPI: Added _OSI(Module Device)
    [ 0.231443] ACPI: Added _OSI(Processor Device)
    [ 0.231444] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.231445] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.232701] ACPI: EC: EC description table is found, configuring boot EC
    [ 0.236337] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.272341] ACPI: SSDT 00000000bae3a018 00A01 (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
    [ 0.272660] ACPI: Dynamic OEM Table Load:
    [ 0.272661] ACPI: SSDT (null) 00A01 (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
    [ 0.288532] ACPI: SSDT 00000000bae3ba98 00303 (v01 PmRef ApIst 00003000 INTL 20061109)
    [ 0.288874] ACPI: Dynamic OEM Table Load:
    [ 0.288876] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20061109)
    [ 0.301731] ACPI: SSDT 00000000bae39d98 00119 (v01 PmRef ApCst 00003000 INTL 20061109)
    [ 0.302048] ACPI: Dynamic OEM Table Load:
    [ 0.302049] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20061109)
    [ 0.316012] ACPI: Interpreter enabled
    [ 0.316018] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130725/hwxface-571)
    [ 0.316022] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130725/hwxface-571)
    [ 0.316034] ACPI: (supports S0 S3 S4 S5)
    [ 0.316035] ACPI: Using IOAPIC for interrupt routing
    [ 0.316057] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.316633] ACPI: ACPI Dock Station Driver: 2 docks/bays found
    [ 0.328772] ACPI: Power Resource [PUBS] (on)
    [ 0.332509] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11)
    [ 0.332575] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *7 9 10 11)
    [ 0.332638] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 *11)
    [ 0.332701] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 *10 11)
    [ 0.332763] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 *7 9 10 11)
    [ 0.332812] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [ 0.332874] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 *11)
    [ 0.332936] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 *10 11)
    [ 0.332972] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
    [ 0.333055] acpi PNP0A08:00: Requesting ACPI _OSC control (0x1d)
    [ 0.333132] acpi PNP0A08:00: ACPI _OSC request failed (AE_SUPPORT), returned control mask: 0x0d
    [ 0.333133] acpi PNP0A08:00: ACPI _OSC control for PCIe not granted, disabling ASPM
    [ 0.333260] PCI host bridge to bus 0000:00
    [ 0.333262] pci_bus 0000:00: root bus resource [bus 00-3f]
    [ 0.333264] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.333265] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.333267] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.333268] pci_bus 0000:00: root bus resource [mem 0xbfa00000-0xfebfffff]
    [ 0.333270] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed4bfff]
    [ 0.333277] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
    [ 0.333338] pci 0000:00:01.0: [8086:0151] type 01 class 0x060400
    [ 0.333365] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.333416] pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
    [ 0.333426] pci 0000:00:02.0: reg 0x10: [mem 0xf1400000-0xf17fffff 64bit]
    [ 0.333432] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.333436] pci 0000:00:02.0: reg 0x20: [io 0x6000-0x603f]
    [ 0.333514] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
    [ 0.333534] pci 0000:00:14.0: reg 0x10: [mem 0xf3a20000-0xf3a2ffff 64bit]
    [ 0.333603] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.333630] pci 0000:00:14.0: System wakeup disabled by ACPI
    [ 0.333664] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
    [ 0.333686] pci 0000:00:16.0: reg 0x10: [mem 0xf3a35000-0xf3a3500f 64bit]
    [ 0.333761] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.333815] pci 0000:00:16.3: [8086:1e3d] type 00 class 0x070002
    [ 0.333833] pci 0000:00:16.3: reg 0x10: [io 0x60b0-0x60b7]
    [ 0.333842] pci 0000:00:16.3: reg 0x14: [mem 0xf3a3c000-0xf3a3cfff]
    [ 0.333964] pci 0000:00:19.0: [8086:1502] type 00 class 0x020000
    [ 0.333981] pci 0000:00:19.0: reg 0x10: [mem 0xf3a00000-0xf3a1ffff]
    [ 0.333989] pci 0000:00:19.0: reg 0x14: [mem 0xf3a3b000-0xf3a3bfff]
    [ 0.333997] pci 0000:00:19.0: reg 0x18: [io 0x6080-0x609f]
    [ 0.334058] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
    [ 0.334085] pci 0000:00:19.0: System wakeup disabled by ACPI
    [ 0.334117] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
    [ 0.334137] pci 0000:00:1a.0: reg 0x10: [mem 0xf3a3a000-0xf3a3a3ff]
    [ 0.334226] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.334254] pci 0000:00:1a.0: System wakeup disabled by ACPI
    [ 0.334287] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
    [ 0.334302] pci 0000:00:1b.0: reg 0x10: [mem 0xf3a30000-0xf3a33fff 64bit]
    [ 0.334368] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.334400] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 0.334427] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
    [ 0.334502] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.334557] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
    [ 0.334632] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.334687] pci 0000:00:1c.2: [8086:1e14] type 01 class 0x060400
    [ 0.334762] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    [ 0.334792] pci 0000:00:1c.2: System wakeup disabled by ACPI
    [ 0.334829] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
    [ 0.334849] pci 0000:00:1d.0: reg 0x10: [mem 0xf3a39000-0xf3a393ff]
    [ 0.334936] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.334965] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.334997] pci 0000:00:1f.0: [8086:1e55] type 00 class 0x060100
    [ 0.335148] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
    [ 0.335165] pci 0000:00:1f.2: reg 0x10: [io 0x60a8-0x60af]
    [ 0.335173] pci 0000:00:1f.2: reg 0x14: [io 0x60bc-0x60bf]
    [ 0.335181] pci 0000:00:1f.2: reg 0x18: [io 0x60a0-0x60a7]
    [ 0.335188] pci 0000:00:1f.2: reg 0x1c: [io 0x60b8-0x60bb]
    [ 0.335195] pci 0000:00:1f.2: reg 0x20: [io 0x6060-0x607f]
    [ 0.335203] pci 0000:00:1f.2: reg 0x24: [mem 0xf3a38000-0xf3a387ff]
    [ 0.335246] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.335294] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
    [ 0.335309] pci 0000:00:1f.3: reg 0x10: [mem 0xf3a34000-0xf3a340ff 64bit]
    [ 0.335329] pci 0000:00:1f.3: reg 0x20: [io 0xefa0-0xefbf]
    [ 0.335425] pci 0000:01:00.0: [10de:0ffb] type 00 class 0x030000
    [ 0.335432] pci 0000:01:00.0: reg 0x10: [mem 0xf0000000-0xf0ffffff]
    [ 0.335439] pci 0000:01:00.0: reg 0x14: [mem 0xc0000000-0xcfffffff 64bit pref]
    [ 0.335445] pci 0000:01:00.0: reg 0x1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
    [ 0.335450] pci 0000:01:00.0: reg 0x24: [io 0x5000-0x507f]
    [ 0.335454] pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
    [ 0.341690] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.341695] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
    [ 0.341700] pci 0000:00:01.0: bridge window [mem 0xf0000000-0xf10fffff]
    [ 0.341706] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.341865] pci 0000:02:00.0: [1180:e823] type 00 class 0x088001
    [ 0.341884] pci 0000:02:00.0: MMC controller base frequency changed to 50Mhz.
    [ 0.341910] pci 0000:02:00.0: reg 0x10: [mem 0xf3101000-0xf31010ff]
    [ 0.342112] pci 0000:02:00.0: supports D1 D2
    [ 0.342113] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.342242] pci 0000:02:00.3: [1180:e832] type 00 class 0x0c0010
    [ 0.342268] pci 0000:02:00.3: reg 0x10: [mem 0xf3100000-0xf31007ff]
    [ 0.342472] pci 0000:02:00.3: supports D1 D2
    [ 0.342474] pci 0000:02:00.3: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.348460] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.348465] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
    [ 0.348469] pci 0000:00:1c.0: bridge window [mem 0xf3100000-0xf39fffff]
    [ 0.348475] pci 0000:00:1c.0: bridge window [mem 0xf1800000-0xf1ffffff 64bit pref]
    [ 0.348567] pci 0000:03:00.0: [8086:4238] type 00 class 0x028000
    [ 0.348614] pci 0000:03:00.0: reg 0x10: [mem 0xf3000000-0xf3001fff 64bit]
    [ 0.348839] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
    [ 0.355042] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 0.355054] pci 0000:00:1c.1: bridge window [mem 0xf3000000-0xf30fffff]
    [ 0.355151] acpiphp: Slot [1] registered
    [ 0.355157] pci 0000:00:1c.2: PCI bridge to [bus 04-0b]
    [ 0.355162] pci 0000:00:1c.2: bridge window [io 0x3000-0x3fff]
    [ 0.355165] pci 0000:00:1c.2: bridge window [mem 0xf2800000-0xf2ffffff]
    [ 0.355171] pci 0000:00:1c.2: bridge window [mem 0xf2000000-0xf27fffff 64bit pref]
    [ 0.356013] ACPI: Enabled 4 GPEs in block 00 to 3F
    [ 0.356023] ACPI: \_SB_.PCI0: notify handler is installed
    [ 0.356059] Found 1 acpi root devices
    [ 0.356106] ACPI: EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62
    [ 0.356165] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.356169] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
    [ 0.356170] vgaarb: loaded
    [ 0.356171] vgaarb: bridge control possible 0000:01:00.0
    [ 0.356172] vgaarb: no bridge control possible 0000:00:02.0
    [ 0.356199] PCI: Using ACPI for IRQ routing
    [ 0.357682] PCI: pci_cache_line_size set to 64 bytes
    [ 0.357820] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
    [ 0.357822] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
    [ 0.357823] e820: reserve RAM buffer [mem 0xa6b30000-0xa7ffffff]
    [ 0.357824] e820: reserve RAM buffer [mem 0x43e600000-0x43fffffff]
    [ 0.357892] NetLabel: Initializing
    [ 0.357893] NetLabel: domain hash size = 128
    [ 0.357894] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.357904] NetLabel: unlabeled traffic allowed by default
    [ 0.357921] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.357925] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.360952] Switched to clocksource hpet
    [ 0.364213] pnp: PnP ACPI init
    [ 0.364226] ACPI: bus type PNP registered
    [ 0.364530] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
    [ 0.364532] system 00:00: [mem 0x000c0000-0x000c3fff] could not be reserved
    [ 0.364534] system 00:00: [mem 0x000c4000-0x000c7fff] could not be reserved
    [ 0.364535] system 00:00: [mem 0x000c8000-0x000cbfff] has been reserved
    [ 0.364537] system 00:00: [mem 0x000cc000-0x000cffff] has been reserved
    [ 0.364538] system 00:00: [mem 0x000d0000-0x000d3fff] has been reserved
    [ 0.364540] system 00:00: [mem 0x000d4000-0x000d7fff] has been reserved
    [ 0.364541] system 00:00: [mem 0x000d8000-0x000dbfff] has been reserved
    [ 0.364545] system 00:00: [mem 0x000dc000-0x000dffff] has been reserved
    [ 0.364546] system 00:00: [mem 0x000e0000-0x000e3fff] could not be reserved
    [ 0.364548] system 00:00: [mem 0x000e4000-0x000e7fff] could not be reserved
    [ 0.364549] system 00:00: [mem 0x000e8000-0x000ebfff] could not be reserved
    [ 0.364551] system 00:00: [mem 0x000ec000-0x000effff] could not be reserved
    [ 0.364552] system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
    [ 0.364554] system 00:00: [mem 0x00100000-0xbf9fffff] could not be reserved
    [ 0.364555] system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved
    [ 0.364557] system 00:00: [mem 0xfed4c000-0xffffffff] could not be reserved
    [ 0.364560] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.364624] pnp 00:01: disabling [mem 0xfffff000-0xffffffff] because it overlaps 0000:01:00.0 BAR 6 [mem 0xfff80000-0xffffffff pref]
    [ 0.364643] system 00:01: [io 0x0400-0x047f] could not be reserved
    [ 0.364644] system 00:01: [io 0x0500-0x057f] has been reserved
    [ 0.364646] system 00:01: [io 0x0800-0x080f] has been reserved
    [ 0.364647] system 00:01: [io 0x15e0-0x15ef] has been reserved
    [ 0.364649] system 00:01: [io 0x1600-0x167f] has been reserved
    [ 0.364651] system 00:01: [mem 0xf8000000-0xfbffffff] has been reserved
    [ 0.364652] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.364654] system 00:01: [mem 0xfed10000-0xfed13fff] has been reserved
    [ 0.364655] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.364657] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.364658] system 00:01: [mem 0xfed45000-0xfed4bfff] has been reserved
    [ 0.364661] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.364703] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.364710] pnp 00:03: [dma 4]
    [ 0.364723] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.364738] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.364763] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.364782] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.364803] pnp 00:07: Plug and Play ACPI device, IDs LEN0071 PNP0303 (active)
    [ 0.364824] pnp 00:08: Plug and Play ACPI device, IDs LEN0015 PNP0f13 (active)
    [ 0.364860] pnp 00:09: Plug and Play ACPI device, IDs SMO1200 PNP0c31 (active)
    [ 0.365288] pnp: PnP ACPI: found 10 devices
    [ 0.365290] ACPI: bus type PNP unregistered
    [ 0.371588] pci 0000:01:00.0: no compatible bridge window for [mem 0xfff80000-0xffffffff pref]
    [ 0.371620] pci 0000:01:00.0: BAR 6: assigned [mem 0xf1000000-0xf107ffff pref]
    [ 0.371622] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.371624] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
    [ 0.371627] pci 0000:00:01.0: bridge window [mem 0xf0000000-0xf10fffff]
    [ 0.371629] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.371632] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.371635] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
    [ 0.371640] pci 0000:00:1c.0: bridge window [mem 0xf3100000-0xf39fffff]
    [ 0.371644] pci 0000:00:1c.0: bridge window [mem 0xf1800000-0xf1ffffff 64bit pref]
    [ 0.371650] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 0.371655] pci 0000:00:1c.1: bridge window [mem 0xf3000000-0xf30fffff]
    [ 0.371663] pci 0000:00:1c.2: PCI bridge to [bus 04-0b]
    [ 0.371666] pci 0000:00:1c.2: bridge window [io 0x3000-0x3fff]
    [ 0.371671] pci 0000:00:1c.2: bridge window [mem 0xf2800000-0xf2ffffff]
    [ 0.371675] pci 0000:00:1c.2: bridge window [mem 0xf2000000-0xf27fffff 64bit pref]
    [ 0.371681] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.371683] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.371684] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.371686] pci_bus 0000:00: resource 7 [mem 0xbfa00000-0xfebfffff]
    [ 0.371687] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed4bfff]
    [ 0.371688] pci_bus 0000:01: resource 0 [io 0x5000-0x5fff]
    [ 0.371690] pci_bus 0000:01: resource 1 [mem 0xf0000000-0xf10fffff]
    [ 0.371691] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.371693] pci_bus 0000:02: resource 0 [io 0x4000-0x4fff]
    [ 0.371694] pci_bus 0000:02: resource 1 [mem 0xf3100000-0xf39fffff]
    [ 0.371695] pci_bus 0000:02: resource 2 [mem 0xf1800000-0xf1ffffff 64bit pref]
    [ 0.371697] pci_bus 0000:03: resource 1 [mem 0xf3000000-0xf30fffff]
    [ 0.371698] pci_bus 0000:04: resource 0 [io 0x3000-0x3fff]
    [ 0.371700] pci_bus 0000:04: resource 1 [mem 0xf2800000-0xf2ffffff]
    [ 0.371701] pci_bus 0000:04: resource 2 [mem 0xf2000000-0xf27fffff 64bit pref]
    [ 0.371726] NET: Registered protocol family 2
    [ 0.371936] TCP established hash table entries: 131072 (order: 9, 2097152 bytes)
    [ 0.372200] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.372304] TCP: Hash tables configured (established 131072 bind 65536)
    [ 0.372320] TCP: reno registered
    [ 0.372335] UDP hash table entries: 8192 (order: 6, 262144 bytes)
    [ 0.372381] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
    [ 0.372455] NET: Registered protocol family 1
    [ 0.372464] pci 0000:00:02.0: Boot video device
    [ 0.372838] PCI: CLS 64 bytes, default 64
    [ 0.372874] Unpacking initramfs...
    [ 0.419708] Freeing initrd memory: 3172K (ffff8800379be000 - ffff880037cd7000)
    [ 0.419712] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.419714] software IO TLB [mem 0xa2b30000-0xa6b30000] (64MB) mapped at [ffff8800a2b30000-ffff8800a6b2ffff]
    [ 0.419965] Scanning for low memory corruption every 60 seconds
    [ 0.420184] audit: initializing netlink socket (disabled)
    [ 0.420191] type=2000 audit(1386283845.413:1): initialized
    [ 0.430696] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.431915] zbud: loaded
    [ 0.432021] VFS: Disk quotas dquot_6.5.2
    [ 0.432054] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.432181] msgmni has been set to 31247
    [ 0.432413] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.432453] io scheduler noop registered
    [ 0.432454] io scheduler deadline registered
    [ 0.432473] io scheduler cfq registered (default)
    [ 0.432595] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 0.432864] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.432875] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.432907] vesafb: mode is 1920x1080x32, linelength=7680, pages=0
    [ 0.432908] vesafb: scrolling: redraw
    [ 0.432909] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.433568] vesafb: framebuffer at 0xe0000000, mapped to 0xffffc90005c80000, using 8128k, total 8128k
    [ 0.566342] Console: switching to colour frame buffer device 240x67
    [ 0.698577] fb0: VESA VGA frame buffer device
    [ 0.698590] intel_idle: MWAIT substates: 0x21120
    [ 0.698591] intel_idle: v0.4 model 0x3A
    [ 0.698592] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 0.698765] GHES: HEST is not enabled!
    [ 0.698809] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.719500] 0000:00:16.3: ttyS0 at I/O 0x60b0 (irq = 19, base_baud = 115200) is a 16550A
    [ 0.719641] Linux agpgart interface v0.103
    [ 0.719702] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
    [ 0.721201] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.721210] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.721298] mousedev: PS/2 mouse device common for all mice
    [ 0.721324] rtc_cmos 00:06: RTC can wake from S4
    [ 0.721444] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
    [ 0.721474] rtc_cmos 00:06: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 0.721482] Intel P-state driver initializing.
    [ 0.721492] Intel pstate controlling: cpu 0
    [ 0.721502] Intel pstate controlling: cpu 1
    [ 0.721510] Intel pstate controlling: cpu 2
    [ 0.721520] Intel pstate controlling: cpu 3
    [ 0.721532] Intel pstate controlling: cpu 4
    [ 0.721541] Intel pstate controlling: cpu 5
    [ 0.721549] Intel pstate controlling: cpu 6
    [ 0.721558] Intel pstate controlling: cpu 7
    [ 0.721630] drop_monitor: Initializing network drop monitor service
    [ 0.721685] TCP: cubic registered
    [ 0.721757] NET: Registered protocol family 10
    [ 0.721886] NET: Registered protocol family 17
    [ 0.721894] Key type dns_resolver registered
    [ 0.722224] registered taskstats version 1
    [ 0.722596] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.723178] Magic number: 9:534:855
    [ 0.723283] rtc_cmos 00:06: setting system clock to 2013-12-05 22:50:46 UTC (1386283846)
    [ 0.723323] PM: Checking hibernation image partition /dev/sda6
    [ 0.726752] PM: Hibernation image not present or could not be loaded.
    [ 0.727429] Freeing unused kernel memory: 1144K (ffffffff818cb000 - ffffffff819e9000)
    [ 0.727431] Write protecting the kernel read-only data: 8192k
    [ 0.729430] Freeing unused kernel memory: 1012K (ffff880001503000 - ffff880001600000)
    [ 0.730122] Freeing unused kernel memory: 340K (ffff8800017ab000 - ffff880001800000)
    [ 0.737327] systemd-udevd[79]: starting version 208
    [ 0.753625] ACPI: bus type USB registered
    [ 0.753654] usbcore: registered new interface driver usbfs
    [ 0.753672] usbcore: registered new interface driver hub
    [ 0.753762] usbcore: registered new device driver usb
    [ 0.754364] sdhci: Secure Digital Host Controller Interface driver
    [ 0.754367] sdhci: Copyright(c) Pierre Ossman
    [ 0.754471] pcieport 0000:00:1c.0: driver skip pci_set_master, fix it!
    [ 0.754490] SCSI subsystem initialized
    [ 0.754718] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.755262] ehci-pci: EHCI PCI platform driver
    [ 0.755386] ehci-pci 0000:00:1a.0: setting latency timer to 64
    [ 0.755406] ehci-pci 0000:00:1a.0: EHCI Host Controller
    [ 0.755414] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 0.755427] ehci-pci 0000:00:1a.0: debug port 2
    [ 0.756165] libata version 3.00 loaded.
    [ 0.759355] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    [ 0.759370] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf3a3a000
    [ 0.767505] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 0.767646] hub 1-0:1.0: USB hub found
    [ 0.767652] hub 1-0:1.0: 3 ports detected
    [ 0.767804] ehci-pci 0000:00:1d.0: setting latency timer to 64
    [ 0.767809] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 0.767812] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 0.767823] ehci-pci 0000:00:1d.0: debug port 2
    [ 0.771708] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 0.771720] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf3a39000
    [ 0.780896] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 0.780996] hub 2-0:1.0: USB hub found
    [ 0.781000] hub 2-0:1.0: 3 ports detected
    [ 0.781193] xhci_hcd 0000:00:14.0: setting latency timer to 64
    [ 0.781197] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.781202] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
    [ 0.781297] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 0.781317] xhci_hcd 0000:00:14.0: irq 41 for MSI/MSI-X
    [ 0.781456] hub 3-0:1.0: USB hub found
    [ 0.781467] hub 3-0:1.0: 4 ports detected
    [ 0.781705] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.781708] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
    [ 0.781799] hub 4-0:1.0: USB hub found
    [ 0.781807] hub 4-0:1.0: 4 ports detected
    [ 0.791001] ahci 0000:00:1f.2: version 3.0
    [ 0.791067] ahci 0000:00:1f.2: irq 42 for MSI/MSI-X
    [ 0.791088] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
    [ 0.804224] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x17 impl SATA mode
    [ 0.804231] ahci 0000:00:1f.2: flags: 64bit ncq ilck stag pm led clo pio slum part ems sxs apst
    [ 0.804239] ahci 0000:00:1f.2: setting latency timer to 64
    [ 0.820938] firewire_ohci 0000:02:00.3: added OHCI v1.10 device as card 0, 4 IR + 4 IT contexts, quirks 0x11
    [ 0.820989] sdhci-pci 0000:02:00.0: SDHCI controller found [1180:e823] (rev 5)
    [ 0.821107] mmc0: SDHCI controller on PCI [0000:02:00.0] using DMA
    [ 0.824627] scsi0 : ahci
    [ 0.824773] scsi1 : ahci
    [ 0.824907] scsi2 : ahci
    [ 0.825041] scsi3 : ahci
    [ 0.825234] scsi4 : ahci
    [ 0.825350] scsi5 : ahci
    [ 0.825384] ata1: SATA max UDMA/133 abar m2048@0xf3a38000 port 0xf3a38100 irq 42
    [ 0.825387] ata2: SATA max UDMA/133 abar m2048@0xf3a38000 port 0xf3a38180 irq 42
    [ 0.825390] ata3: SATA max UDMA/133 abar m2048@0xf3a38000 port 0xf3a38200 irq 42
    [ 0.825391] ata4: DUMMY
    [ 0.825406] ata5: SATA max UDMA/133 abar m2048@0xf3a38000 port 0xf3a38300 irq 42
    [ 0.825406] ata6: DUMMY
    [ 1.074138] usb 1-1: new high-speed USB device number 2 using ehci-pci
    [ 1.144102] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 1.145449] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.145455] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.146823] ata1.00: ATA-8: HGST HTS725050A7E630, GH2ZB550, max UDMA/133
    [ 1.146827] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.148298] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.148304] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.149813] ata1.00: configured for UDMA/133
    [ 1.150087] scsi 0:0:0:0: Direct-Access ATA HGST HTS725050A7 GH2Z PQ: 0 ANSI: 5
    [ 1.198525] hub 1-1:1.0: USB hub found
    [ 1.198715] hub 1-1:1.0: 6 ports detected
    [ 1.307453] usb 2-1: new high-speed USB device number 2 using ehci-pci
    [ 1.320895] firewire_core 0000:02:00.3: created device fw0: GUID 3c970effbe0ba2ff, S400
    [ 1.420670] tsc: Refined TSC clocksource calibration: 2693.881 MHz
    [ 1.431513] hub 2-1:1.0: USB hub found
    [ 1.431588] hub 2-1:1.0: 8 ports detected
    [ 1.467351] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.471615] ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 (IDLE) succeeded
    [ 1.473091] ata2.00: ACPI cmd e3/00:02:00:00:00:a0 (IDLE) succeeded
    [ 1.476312] ata2.00: ATAPI: HL-DT-ST DVDRAM GT80N, LT20, max UDMA/133
    [ 1.480154] ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 (IDLE) succeeded
    [ 1.481633] ata2.00: ACPI cmd e3/00:02:00:00:00:a0 (IDLE) succeeded
    [ 1.484853] ata2.00: configured for UDMA/133
    [ 1.493873] scsi 1:0:0:0: CD-ROM HL-DT-ST DVDRAM GT80N LT20 PQ: 0 ANSI: 5
    [ 1.590645] usb 3-2: new low-speed USB device number 2 using xhci_hcd
    [ 1.611303] usb 3-2: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
    [ 1.611311] usb 3-2: ep 0x82 - rounding interval to 64 microframes, ep desc says 80 microframes
    [ 1.613287] hidraw: raw HID events driver (C) Jiri Kosina
    [ 1.623187] usbcore: registered new interface driver usbhid
    [ 1.623191] usbhid: USB HID core driver
    [ 1.623948] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb3/3-2/3-2:1.0/input/input2
    [ 1.624086] hid-generic 0003:046D:C505.0001: input,hidraw0: USB HID v1.10 Keyboard [Logitech USB Receiver] on usb-0000:00:14.0-2/input0
    [ 1.624501] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb3/3-2/3-2:1.1/input/input3
    [ 1.624758] hid-generic 0003:046D:C505.0002: input,hidraw1: USB HID v1.10 Mouse [Logitech USB Receiver] on usb-0000:00:14.0-2/input1
    [ 1.677468] usb 1-1.3: new full-speed USB device number 3 using ehci-pci
    [ 1.813904] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.814517] ata3.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.814523] ata3.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.814902] ata3.00: ATA-8: SAMSUNG MZMPC032HBCD-000L1, CXM13L1Q, max UDMA/133
    [ 1.814908] ata3.00: 62533296 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.815417] ata3.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.815424] ata3.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.815843] ata3.00: configured for UDMA/133
    [ 1.815996] scsi 2:0:0:0: Direct-Access ATA SAMSUNG MZMPC032 CXM1 PQ: 0 ANSI: 5
    [ 1.827413] usb 1-1.4: new full-speed USB device number 4 using ehci-pci
    [ 1.980746] usb 1-1.6: new high-speed USB device number 5 using ehci-pci
    [ 2.133788] ata5: SATA link down (SStatus 0 SControl 300)
    [ 2.138079] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 2.138084] sd 0:0:0:0: [sda] 4096-byte physical blocks
    [ 2.138107] sd 2:0:0:0: [sdb] 62533296 512-byte logical blocks: (32.0 GB/29.8 GiB)
    [ 2.138214] sd 0:0:0:0: [sda] Write Protect is off
    [ 2.138218] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 2.138263] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.138291] sd 2:0:0:0: [sdb] Write Protect is off
    [ 2.138294] sd 2:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 2.138365] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.139366] sdb: sdb1
    [ 2.139583] sd 2:0:0:0: [sdb] Attached SCSI disk
    [ 2.140832] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 2.140834] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 2.140984] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 2.150609] usb 2-1.5: new low-speed USB device number 3 using ehci-pci
    [ 2.217042] raid6: sse2x1 6045 MB/s
    [ 2.222964] sda: sda1 sda2 sda3 sda4 < sda5 sda6 >
    [ 2.224086] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 2.242780] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5/2-1.5:1.0/input/input4
    [ 2.242927] hid-generic 0003:046D:C051.0003: input,hidraw2: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:1d.0-1.5/input0
    [ 2.273683] raid6: sse2x2 9288 MB/s
    [ 2.330330] raid6: sse2x4 13180 MB/s
    [ 2.330331] raid6: using algorithm sse2x4 (13180 MB/s)
    [ 2.330332] raid6: using ssse3x2 recovery algorithm
    [ 2.330416] xor: automatically using best checksumming function:
    [ 2.363659] avx : 27280.800 MB/sec
    [ 2.365888] bio: create slab <bio-1> at 1
    [ 2.366416] Btrfs loaded
    [ 2.366872] btrfs: device fsid 267f069c-11da-4d2a-88fa-00cab4e28149 devid 1 transid 2746 /dev/sdb1
    [ 2.420417] Switched to clocksource tsc
    [ 2.749348] btrfs: device fsid f6907d81-f46f-4911-8600-858e8b6bd1a0 devid 1 transid 3707 /dev/sda5
    [ 3.007064] PM: Starting manual resume from disk
    [ 3.007067] PM: Hibernation image partition 8:6 present
    [ 3.007068] PM: Looking for hibernation image.
    [ 3.007178] PM: Image not found (code -22)
    [ 3.007183] PM: Hibernation image not present or could not be loaded.
    [ 3.014955] btrfs: device fsid 267f069c-11da-4d2a-88fa-00cab4e28149 devid 1 transid 2746 /dev/sdb1
    [ 3.015285] btrfs: disk space caching is enabled
    [ 3.028402] Btrfs detected SSD devices, enabling SSD mode
    [ 3.211825] systemd[1]: systemd 208 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 3.212136] systemd[1]: Set hostname to <ho-think>.
    [ 3.252550] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 3.252605] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 3.252618] systemd[1]: Starting Remote File Systems.
    [ 3.252629] systemd[1]: Reached target Remote File Systems.
    [ 3.252638] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 3.252667] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 3.252675] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 3.252701] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 3.252709] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 3.252724] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 3.252731] systemd[1]: Starting Delayed Shutdown Socket.
    [ 3.252748] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 3.252758] systemd[1]: Starting Journal Socket.
    [ 3.252795] systemd[1]: Listening on Journal Socket.
    [ 3.253090] systemd[1]: Starting Apply Kernel Variables...
    [ 3.253532] systemd[1]: Starting Journal Service...
    [ 3.253811] systemd[1]: Started Journal Service.
    [ 3.287546] systemd-journald[182]: Vacuuming done, freed 0 bytes
    [ 3.390618] btrfs: use ssd allocation scheme
    [ 3.390622] btrfs: disk space caching is enabled
    [ 3.400329] systemd-udevd[218]: starting version 208
    [ 3.490322] input: PC Speaker as /devices/platform/pcspkr/input/input5
    [ 3.491089] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 3.491746] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input6
    [ 3.491865] ACPI: Lid Switch [LID]
    [ 3.492466] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \_SB_.PCI0.LPC_.PMIO 1 (20130725/utaddress-251)
    [ 3.492471] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 3.492475] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \_SB_.PCI0.LPC_.LPIO 1 (20130725/utaddress-251)
    [ 3.492490] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 3.492491] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \_SB_.PCI0.LPC_.LPIO 1 (20130725/utaddress-251)
    [ 3.492494] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 3.492495] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 3.493000] pps_core: LinuxPPS API ver. 1 registered
    [ 3.493002] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
    [ 3.493659] ACPI: Requesting acpi_cpufreq
    [ 3.493823] PTP clock support registered
    [ 3.494020] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input7
    [ 3.494025] ACPI: Sleep Button [SLPB]
    [ 3.494069] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input8
    [ 3.494071] ACPI: Power Button [PWRF]
    [ 3.494675] mei_me 0000:00:16.0: setting latency timer to 64
    [ 3.494714] mei_me 0000:00:16.0: irq 43 for MSI/MSI-X
    [ 3.494990] ACPI: AC Adapter [AC] (on-line)
    [ 3.495691] tpm_tis 00:09: 1.2 TPM (device-id 0x0, rev-id 78)
    [ 3.498616] Non-volatile memory driver v1.3
    [ 3.498683] [drm] Initialized drm 1.1.0 20060810
    [ 3.499437] i801_smbus 0000:00:1f.3: SMBus using PCI Interrupt
    [ 3.502565] ACPI: Battery Slot [BAT0] (battery present)
    [ 3.502633] thinkpad_acpi: ThinkPad ACPI Extras v0.24
    [ 3.502635] thinkpad_acpi: http://ibm-acpi.sf.net/
    [ 3.502636] thinkpad_acpi: ThinkPad BIOS G5ET93WW (2.53 ), EC unknown
    [ 3.502637] thinkpad_acpi: Lenovo ThinkPad W530, model 2447DW0
    [ 3.504741] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
    [ 3.504742] e1000e: Copyright(c) 1999 - 2013 Intel Corporation.
    [ 3.504806] e1000e 0000:00:19.0: setting latency timer to 64
    [ 3.504855] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
    [ 3.504869] e1000e 0000:00:19.0: irq 44 for MSI/MSI-X
    [ 3.505719] thinkpad_acpi: detected a 8-level brightness capable ThinkPad
    [ 3.505814] thinkpad_acpi: radio switch found; radios are enabled
    [ 3.507612] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
    [ 3.507614] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
    [ 3.508991] wmi: Mapper loaded
    [ 3.510574] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
    [ 3.512202] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one
    [ 3.512859] thermal LNXTHERM:00: registered as thermal_zone0
    [ 3.512862] ACPI: Thermal Zone [THM0] (51 C)
    [ 3.512964] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
    [ 3.513826] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input9
    [ 3.519211] cfg80211: Calling CRDA to update world regulatory domain
    [ 3.529719] Intel(R) Wireless WiFi driver for Linux, in-tree:
    [ 3.529721] Copyright(c) 2003-2013 Intel Corporation
    [ 3.529746] pcieport 0000:00:1c.1: driver skip pci_set_master, fix it!
    [ 3.529786] iwlwifi 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 3.529839] iwlwifi 0000:03:00.0: irq 45 for MSI/MSI-X
    [ 3.541982] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x17
    [ 3.557020] media: Linux media interface: v0.10
    [ 3.559314] Bluetooth: Core ver 2.16
    [ 3.559324] NET: Registered protocol family 31
    [ 3.559325] Bluetooth: HCI device and connection manager initialized
    [ 3.559331] Bluetooth: HCI socket layer initialized
    [ 3.559332] Bluetooth: L2CAP socket layer initialized
    [ 3.559338] Bluetooth: SCO socket layer initialized
    [ 3.559760] Linux video capture interface: v2.00
    [ 3.561090] btrfs: device fsid 267f069c-11da-4d2a-88fa-00cab4e28149 devid 1 transid 2747 /dev/sdb1
    [ 3.563306] tpm_tis 00:09: TPM is disabled/deactivated (0x6)
    [ 3.565201] usbcore: registered new interface driver btusb
    [ 3.565757] uvcvideo: Found UVC 1.00 device Integrated Camera (04f2:b2ea)
    [ 3.567801] iTCO_vendor_support: vendor-support=0
    [ 3.568229] input: Integrated Camera as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0/input/input11
    [ 3.568341] usbcore: registered new interface driver uvcvideo
    [ 3.568342] USB Video Class driver (1.1.1)
    [ 3.568802] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 3.568825] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
    [ 3.568884] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 3.575973] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x17
    [ 3.579387] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x17
    [ 3.580314] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x17
    [ 3.580610] nvidia: module license 'NVIDIA' taints kernel.
    [ 3.580612] Disabling lock debugging due to kernel taint
    [ 3.580964] microcode: CPU4 sig=0x306a9, pf=0x10, revision=0x17
    [ 3.581262] microcode: CPU5 sig=0x306a9, pf=0x10, revision=0x17
    [ 3.581662] microcode: CPU6 sig=0x306a9, pf=0x10, revision=0x17
    [ 3.581969] microcode: CPU7 sig=0x306a9, pf=0x10, revision=0x17
    [ 3.582235] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 3.585585] nvidia 0000:01:00.0: enabling device (0000 -> 0003)
    [ 3.585626] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=none
    [ 3.585753] [drm] Initialized nvidia-drm 0.0.0 20130102 for 0000:01:00.0 on minor 0
    [ 3.585756] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 331.20 Wed Oct 30 17:43:35 PDT 2013
    [ 3.590299] iwlwifi 0000:03:00.0: loaded firmware version 9.221.4.1 build 25532 op_mode iwldvm
    [ 3.604935] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG disabled
    [ 3.604939] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
    [ 3.604940] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
    [ 3.604942] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Ultimate-N 6300 AGN, REV=0x74
    [ 3.604991] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
    [ 3.611807] kvm: disabled by bios
    [ 3.622449] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
    [ 3.643289] systemd-udevd[222]: renamed network interface wlan0 to wlp3s0
    [ 3.699041] e1000e 0000:00:19.0 eth0: registered PHC clock
    [ 3.699043] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 3c:97:0e:be:0b:a2
    [ 3.699045] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
    [ 3.699088] e1000e 0000:00:19.0 eth0: MAC: 10, PHY: 11, PBA No: 1000FF-0FF
    [ 3.699268]

    I decided to use nouveau instead of nvidia and now I got my external an internal display working.

  • Lighttpd not showing graphics/layout. Any idea?

    Hi there!
    I finally managed to get the whole lighttpd,php,sqlite,fast_cgi Thing going on the dockstar (archlinuxarm).
    I wanted to use a Blogging software like "flatpress" or "chyrp" but I ran into some issue.
    On both of these Sites (index.php from flatpress and chyrp) I do not have any graphics/style and layout. It shows only the Page with the basic text and links but no style/theme/graphics.
    Does anyone know how to get the styles/graphics and layout working.
    I have made a chmod -R 777 on those folders of chyrp and also flatpress but this does not change anything regardnig  the issue.
    Following some Informations which could help to determine the issue:
    php-v
    php -v
    PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib/php/modules/sqlite.so' - /usr/lib/php/modules/sqlite.so: cannot open shared object file: No such file or directory in Unknown on line 0
    PHP 5.4.8 (cli) (built: Oct 21 2012 05:22:39)
    Copyright (c) 1997-2012 The PHP Group
    Zend Engine v2.4.0, Copyright (c) 1998-2012 Zend Technologies
    php-cgi --version
    PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib/php/modules/sqlite.so' - /usr/lib/php/modules/sqlite.so: cannot open shared object file: No such file or directory in Unknown on line 0
    PHP 5.4.8 (cgi-fcgi) (built: Oct 21 2012 05:25:27)
    Copyright (c) 1997-2012 The PHP Group
    Zend Engine v2.4.0, Copyright (c) 1998-2012 Zend Technologies
    /etc/php/php.ini
    [PHP]
    ; About php.ini ;
    ; PHP's initialization file, generally called php.ini, is responsible for
    ; configuring many of the aspects of PHP's behavior.
    ; PHP attempts to find and load this configuration from a number of locations.
    ; The following is a summary of its search order:
    ; 1. SAPI module specific location.
    ; 2. The PHPRC environment variable. (As of PHP 5.2.0)
    ; 3. A number of predefined registry keys on Windows (As of PHP 5.2.0)
    ; 4. Current working directory (except CLI)
    ; 5. The web server's directory (for SAPI modules), or directory of PHP
    ; (otherwise in Windows)
    ; 6. The directory from the --with-config-file-path compile time option, or the
    ; Windows directory (C:\windows or C:\winnt)
    ; See the PHP docs for more specific information.
    ; http://php.net/configuration.file
    ; The syntax of the file is extremely simple. Whitespace and lines
    ; beginning with a semicolon are silently ignored (as you probably guessed).
    ; Section headers (e.g. [Foo]) are also silently ignored, even though
    ; they might mean something in the future.
    ; Directives following the section heading [PATH=/www/mysite] only
    ; apply to PHP files in the /www/mysite directory. Directives
    ; following the section heading [HOST=www.example.com] only apply to
    ; PHP files served from www.example.com. Directives set in these
    ; special sections cannot be overridden by user-defined INI files or
    ; at runtime. Currently, [PATH=] and [HOST=] sections only work under
    ; CGI/FastCGI.
    ; http://php.net/ini.sections
    ; Directives are specified using the following syntax:
    ; directive = value
    ; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
    ; Directives are variables used to configure PHP or PHP extensions.
    ; There is no name validation. If PHP can't find an expected
    ; directive because it is not set or is mistyped, a default value will be used.
    ; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
    ; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
    ; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a
    ; previously set variable or directive (e.g. ${foo})
    ; Expressions in the INI file are limited to bitwise operators and parentheses:
    ; | bitwise OR
    ; ^ bitwise XOR
    ; & bitwise AND
    ; ~ bitwise NOT
    ; ! boolean NOT
    ; Boolean flags can be turned on using the values 1, On, True or Yes.
    ; They can be turned off using the values 0, Off, False or No.
    ; An empty string can be denoted by simply not writing anything after the equal
    ; sign, or by using the None keyword:
    ; foo = ; sets foo to an empty string
    ; foo = None ; sets foo to an empty string
    ; foo = "None" ; sets foo to the string 'None'
    ; If you use constants in your value, and these constants belong to a
    ; dynamically loaded extension (either a PHP extension or a Zend extension),
    ; you may only use these constants *after* the line that loads the extension.
    ; About this file ;
    ; PHP comes packaged with two INI files. One that is recommended to be used
    ; in production environments and one that is recommended to be used in
    ; development environments.
    ; php.ini-production contains settings which hold security, performance and
    ; best practices at its core. But please be aware, these settings may break
    ; compatibility with older or less security conscience applications. We
    ; recommending using the production ini in production and testing environments.
    ; php.ini-development is very similar to its production variant, except it's
    ; much more verbose when it comes to errors. We recommending using the
    ; development version only in development environments as errors shown to
    ; application users can inadvertently leak otherwise secure information.
    ; Quick Reference ;
    ; The following are all the settings which are different in either the production
    ; or development versions of the INIs with respect to PHP's default behavior.
    ; Please see the actual settings later in the document for more details as to why
    ; we recommend these changes in PHP's behavior.
    ; display_errors
    ; Default Value: On
    ; Development Value: On
    ; Production Value: Off
    ; display_startup_errors
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: Off
    ; error_reporting
    ; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
    ; Development Value: E_ALL
    ; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
    ; html_errors
    ; Default Value: On
    ; Development Value: On
    ; Production value: On
    ; log_errors
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: On
    ; max_input_time
    ; Default Value: -1 (Unlimited)
    ; Development Value: 60 (60 seconds)
    ; Production Value: 60 (60 seconds)
    ; output_buffering
    ; Default Value: Off
    ; Development Value: 4096
    ; Production Value: 4096
    ; register_argc_argv
    ; Default Value: On
    ; Development Value: Off
    ; Production Value: Off
    ; request_order
    ; Default Value: None
    ; Development Value: "GP"
    ; Production Value: "GP"
    ; session.bug_compat_42
    ; Default Value: On
    ; Development Value: On
    ; Production Value: Off
    ; session.bug_compat_warn
    ; Default Value: On
    ; Development Value: On
    ; Production Value: Off
    ; session.gc_divisor
    ; Default Value: 100
    ; Development Value: 1000
    ; Production Value: 1000
    ; session.hash_bits_per_character
    ; Default Value: 4
    ; Development Value: 5
    ; Production Value: 5
    ; short_open_tag
    ; Default Value: On
    ; Development Value: Off
    ; Production Value: Off
    ; track_errors
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: Off
    ; url_rewriter.tags
    ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
    ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
    ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
    ; variables_order
    ; Default Value: "EGPCS"
    ; Development Value: "GPCS"
    ; Production Value: "GPCS"
    ; php.ini Options ;
    ; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini"
    ;user_ini.filename = ".user.ini"
    ; To disable this feature set this option to empty value
    ;user_ini.filename =
    ; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
    ;user_ini.cache_ttl = 300
    ; Language Options ;
    ; Enable the PHP scripting language engine under Apache.
    ; http://php.net/engine
    engine = On
    ; This directive determines whether or not PHP will recognize code between
    ; <? and ?> tags as PHP source which should be processed as such. It's been
    ; recommended for several years that you not use the short tag "short cut" and
    ; instead to use the full <?php and ?> tag combination. With the wide spread use
    ; of XML and use of these tags by other languages, the server can become easily
    ; confused and end up parsing the wrong code in the wrong context. But because
    ; this short cut has been a feature for such a long time, it's currently still
    ; supported for backwards compatibility, but we recommend you don't use them.
    ; Default Value: On
    ; Development Value: Off
    ; Production Value: Off
    ; http://php.net/short-open-tag
    short_open_tag = Off
    ; Allow ASP-style <% %> tags.
    ; http://php.net/asp-tags
    asp_tags = Off
    ; The number of significant digits displayed in floating point numbers.
    ; http://php.net/precision
    precision = 14
    ; Output buffering is a mechanism for controlling how much output data
    ; (excluding headers and cookies) PHP should keep internally before pushing that
    ; data to the client. If your application's output exceeds this setting, PHP
    ; will send that data in chunks of roughly the size you specify.
    ; Turning on this setting and managing its maximum buffer size can yield some
    ; interesting side-effects depending on your application and web server.
    ; You may be able to send headers and cookies after you've already sent output
    ; through print or echo. You also may see performance benefits if your server is
    ; emitting less packets due to buffered output versus PHP streaming the output
    ; as it gets it. On production servers, 4096 bytes is a good setting for performance
    ; reasons.
    ; Note: Output buffering can also be controlled via Output Buffering Control
    ; functions.
    ; Possible Values:
    ; On = Enabled and buffer is unlimited. (Use with caution)
    ; Off = Disabled
    ; Integer = Enables the buffer and sets its maximum size in bytes.
    ; Note: This directive is hardcoded to Off for the CLI SAPI
    ; Default Value: Off
    ; Development Value: 4096
    ; Production Value: 4096
    ; http://php.net/output-buffering
    output_buffering = 4096
    ; You can redirect all of the output of your scripts to a function. For
    ; example, if you set output_handler to "mb_output_handler", character
    ; encoding will be transparently converted to the specified encoding.
    ; Setting any output handler automatically turns on output buffering.
    ; Note: People who wrote portable scripts should not depend on this ini
    ; directive. Instead, explicitly set the output handler using ob_start().
    ; Using this ini directive may cause problems unless you know what script
    ; is doing.
    ; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
    ; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
    ; Note: output_handler must be empty if this is set 'On' !!!!
    ; Instead you must use zlib.output_handler.
    ; http://php.net/output-handler
    ;output_handler =
    ; Transparent output compression using the zlib library
    ; Valid values for this option are 'off', 'on', or a specific buffer size
    ; to be used for compression (default is 4KB)
    ; Note: Resulting chunk size may vary due to nature of compression. PHP
    ; outputs chunks that are few hundreds bytes each as a result of
    ; compression. If you prefer a larger chunk size for better
    ; performance, enable output_buffering in addition.
    ; Note: You need to use zlib.output_handler instead of the standard
    ; output_handler, or otherwise the output will be corrupted.
    ; http://php.net/zlib.output-compression
    zlib.output_compression = Off
    ; http://php.net/zlib.output-compression-level
    ;zlib.output_compression_level = -1
    ; You cannot specify additional output handlers if zlib.output_compression
    ; is activated here. This setting does the same as output_handler but in
    ; a different order.
    ; http://php.net/zlib.output-handler
    ;zlib.output_handler =
    ; Implicit flush tells PHP to tell the output layer to flush itself
    ; automatically after every output block. This is equivalent to calling the
    ; PHP function flush() after each and every call to print() or echo() and each
    ; and every HTML block. Turning this option on has serious performance
    ; implications and is generally recommended for debugging purposes only.
    ; http://php.net/implicit-flush
    ; Note: This directive is hardcoded to On for the CLI SAPI
    implicit_flush = Off
    ; The unserialize callback function will be called (with the undefined class'
    ; name as parameter), if the unserializer finds an undefined class
    ; which should be instantiated. A warning appears if the specified function is
    ; not defined, or if the function doesn't include/implement the missing class.
    ; So only set this entry, if you really want to implement such a
    ; callback-function.
    unserialize_callback_func =
    ; When floats & doubles are serialized store serialize_precision significant
    ; digits after the floating point. The default value ensures that when floats
    ; are decoded with unserialize, the data will remain the same.
    serialize_precision = 17
    ; open_basedir, if set, limits all file operations to the defined directory
    ; and below. This directive makes most sense if used in a per-directory
    ; or per-virtualhost web server configuration file. This directive is
    ; *NOT* affected by whether Safe Mode is turned On or Off.
    ; http://php.net/open-basedir
    open_basedir = /srv/http/:/home/:/tmp/:/usr/share/pear/
    ; This directive allows you to disable certain functions for security reasons.
    ; It receives a comma-delimited list of function names. This directive is
    ; *NOT* affected by whether Safe Mode is turned On or Off.
    ; http://php.net/disable-functions
    disable_functions =
    ; This directive allows you to disable certain classes for security reasons.
    ; It receives a comma-delimited list of class names. This directive is
    ; *NOT* affected by whether Safe Mode is turned On or Off.
    ; http://php.net/disable-classes
    disable_classes =
    ; Colors for Syntax Highlighting mode. Anything that's acceptable in
    ; <span style="color: ???????"> would work.
    ; http://php.net/syntax-highlighting
    ;highlight.string = #DD0000
    ;highlight.comment = #FF9900
    ;highlight.keyword = #007700
    ;highlight.default = #0000BB
    ;highlight.html = #000000
    ; If enabled, the request will be allowed to complete even if the user aborts
    ; the request. Consider enabling it if executing long requests, which may end up
    ; being interrupted by the user or a browser timing out. PHP's default behavior
    ; is to disable this feature.
    ; http://php.net/ignore-user-abort
    ;ignore_user_abort = On
    ; Determines the size of the realpath cache to be used by PHP. This value should
    ; be increased on systems where PHP opens many files to reflect the quantity of
    ; the file operations performed.
    ; http://php.net/realpath-cache-size
    ;realpath_cache_size = 16k
    ; Duration of time, in seconds for which to cache realpath information for a given
    ; file or directory. For systems with rarely changing files, consider increasing this
    ; value.
    ; http://php.net/realpath-cache-ttl
    ;realpath_cache_ttl = 120
    ; Enables or disables the circular reference collector.
    ; http://php.net/zend.enable-gc
    zend.enable_gc = On
    ; If enabled, scripts may be written in encodings that are incompatible with
    ; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such
    ; encodings. To use this feature, mbstring extension must be enabled.
    ; Default: Off
    ;zend.multibyte = Off
    ; Allows to set the default encoding for the scripts. This value will be used
    ; unless "declare(encoding=...)" directive appears at the top of the script.
    ; Only affects if zend.multibyte is set.
    ; Default: ""
    ;zend.script_encoding =
    ; Miscellaneous ;
    ; Decides whether PHP may expose the fact that it is installed on the server
    ; (e.g. by adding its signature to the Web server header). It is no security
    ; threat in any way, but it makes it possible to determine whether you use PHP
    ; on your server or not.
    ; http://php.net/expose-php
    expose_php = On
    ; Resource Limits ;
    ; Maximum execution time of each script, in seconds
    ; http://php.net/max-execution-time
    ; Note: This directive is hardcoded to 0 for the CLI SAPI
    max_execution_time = 30
    ; Maximum amount of time each script may spend parsing request data. It's a good
    ; idea to limit this time on productions servers in order to eliminate unexpectedly
    ; long running scripts.
    ; Note: This directive is hardcoded to -1 for the CLI SAPI
    ; Default Value: -1 (Unlimited)
    ; Development Value: 60 (60 seconds)
    ; Production Value: 60 (60 seconds)
    ; http://php.net/max-input-time
    max_input_time = 60
    ; Maximum input variable nesting level
    ; http://php.net/max-input-nesting-level
    ;max_input_nesting_level = 64
    ; How many GET/POST/COOKIE input variables may be accepted
    ; max_input_vars = 1000
    ; Maximum amount of memory a script may consume (128MB)
    ; http://php.net/memory-limit
    memory_limit = 128M
    ; Error handling and logging ;
    ; This directive informs PHP of which errors, warnings and notices you would like
    ; it to take action for. The recommended way of setting values for this
    ; directive is through the use of the error level constants and bitwise
    ; operators. The error level constants are below here for convenience as well as
    ; some common settings and their meanings.
    ; By default, PHP is set to take action on all errors, notices and warnings EXCEPT
    ; those related to E_NOTICE and E_STRICT, which together cover best practices and
    ; recommended coding standards in PHP. For performance reasons, this is the
    ; recommend error reporting setting. Your production server shouldn't be wasting
    ; resources complaining about best practices and coding standards. That's what
    ; development servers and development settings are for.
    ; Note: The php.ini-development file has this setting as E_ALL. This
    ; means it pretty much reports everything which is exactly what you want during
    ; development and early testing.
    ; Error Level Constants:
    ; E_ALL - All errors and warnings (includes E_STRICT as of PHP 5.4.0)
    ; E_ERROR - fatal run-time errors
    ; E_RECOVERABLE_ERROR - almost fatal run-time errors
    ; E_WARNING - run-time warnings (non-fatal errors)
    ; E_PARSE - compile-time parse errors
    ; E_NOTICE - run-time notices (these are warnings which often result
    ; from a bug in your code, but it's possible that it was
    ; intentional (e.g., using an uninitialized variable and
    ; relying on the fact it's automatically initialized to an
    ; empty string)
    ; E_STRICT - run-time notices, enable to have PHP suggest changes
    ; to your code which will ensure the best interoperability
    ; and forward compatibility of your code
    ; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
    ; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
    ; initial startup
    ; E_COMPILE_ERROR - fatal compile-time errors
    ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
    ; E_USER_ERROR - user-generated error message
    ; E_USER_WARNING - user-generated warning message
    ; E_USER_NOTICE - user-generated notice message
    ; E_DEPRECATED - warn about code that will not work in future versions
    ; of PHP
    ; E_USER_DEPRECATED - user-generated deprecation warnings
    ; Common Values:
    ; E_ALL (Show all errors, warnings and notices including coding standards.)
    ; E_ALL & ~E_NOTICE (Show all errors, except for notices)
    ; E_ALL & ~E_NOTICE & ~E_STRICT (Show all errors, except for notices and coding standards warnings.)
    ; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
    ; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
    ; Development Value: E_ALL
    ; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
    ; http://php.net/error-reporting
    error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
    ; This directive controls whether or not and where PHP will output errors,
    ; notices and warnings too. Error output is very useful during development, but
    ; it could be very dangerous in production environments. Depending on the code
    ; which is triggering the error, sensitive information could potentially leak
    ; out of your application such as database usernames and passwords or worse.
    ; It's recommended that errors be logged on production servers rather than
    ; having the errors sent to STDOUT.
    ; Possible Values:
    ; Off = Do not display any errors
    ; stderr = Display errors to STDERR (affects only CGI/CLI binaries!)
    ; On or stdout = Display errors to STDOUT
    ; Default Value: On
    ; Development Value: On
    ; Production Value: Off
    ; http://php.net/display-errors
    display_errors = Off
    ; The display of errors which occur during PHP's startup sequence are handled
    ; separately from display_errors. PHP's default behavior is to suppress those
    ; errors from clients. Turning the display of startup errors on can be useful in
    ; debugging configuration problems. But, it's strongly recommended that you
    ; leave this setting off on production servers.
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: Off
    ; http://php.net/display-startup-errors
    display_startup_errors = Off
    ; Besides displaying errors, PHP can also log errors to locations such as a
    ; server-specific log, STDERR, or a location specified by the error_log
    ; directive found below. While errors should not be displayed on productions
    ; servers they should still be monitored and logging is a great way to do that.
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: On
    ; http://php.net/log-errors
    log_errors = On
    ; Set maximum length of log_errors. In error_log information about the source is
    ; added. The default is 1024 and 0 allows to not apply any maximum length at all.
    ; http://php.net/log-errors-max-len
    log_errors_max_len = 1024
    ; Do not log repeated messages. Repeated errors must occur in same file on same
    ; line unless ignore_repeated_source is set true.
    ; http://php.net/ignore-repeated-errors
    ignore_repeated_errors = Off
    ; Ignore source of message when ignoring repeated messages. When this setting
    ; is On you will not log errors with repeated messages from different files or
    ; source lines.
    ; http://php.net/ignore-repeated-source
    ignore_repeated_source = Off
    ; If this parameter is set to Off, then memory leaks will not be shown (on
    ; stdout or in the log). This has only effect in a debug compile, and if
    ; error reporting includes E_WARNING in the allowed list
    ; http://php.net/report-memleaks
    report_memleaks = On
    ; This setting is on by default.
    ;report_zend_debug = 0
    ; Store the last error/warning message in $php_errormsg (boolean). Setting this value
    ; to On can assist in debugging and is appropriate for development servers. It should
    ; however be disabled on production servers.
    ; Default Value: Off
    ; Development Value: On
    ; Production Value: Off
    ; http://php.net/track-errors
    track_errors = Off
    ; Turn off normal error reporting and emit XML-RPC error XML
    ; http://php.net/xmlrpc-errors
    ;xmlrpc_errors = 0
    ; An XML-RPC faultCode
    ;xmlrpc_error_number = 0
    ; When PHP displays or logs an error, it has the capability of formatting the
    ; error message as HTML for easier reading. This directive controls whether
    ; the error message is formatted as HTML or not.
    ; Note: This directive is hardcoded to Off for the CLI SAPI
    ; Default Value: On
    ; Development Value: On
    ; Production value: On
    ; http://php.net/html-errors
    html_errors = On
    ; If html_errors is set to On *and* docref_root is not empty, then PHP
    ; produces clickable error messages that direct to a page describing the error
    ; or function causing the error in detail.
    ; You can download a copy of the PHP manual from http://php.net/docs
    ; and change docref_root to the base URL of your local copy including the
    ; leading '/'. You must also specify the file extension being used including
    ; the dot. PHP's default behavior is to leave these settings empty, in which
    ; case no links to documentation are generated.
    ; Note: Never use this feature for production boxes.
    ; http://php.net/docref-root
    ; Examples
    ;docref_root = "/phpmanual/"
    ; http://php.net/docref-ext
    ;docref_ext = .html
    ; String to output before an error message. PHP's default behavior is to leave
    ; this setting blank.
    ; http://php.net/error-prepend-string
    ; Example:
    ;error_prepend_string = "<span style='color: #ff0000'>"
    ; String to output after an error message. PHP's default behavior is to leave
    ; this setting blank.
    ; http://php.net/error-append-string
    ; Example:
    ;error_append_string = "</span>"
    ; Log errors to specified file. PHP's default behavior is to leave this value
    ; empty.
    ; http://php.net/error-log
    ; Example:
    ;error_log = php_errors.log
    ; Log errors to syslog (Event Log on NT, not valid in Windows 95).
    ;error_log = syslog
    ;windows.show_crt_warning
    ; Default value: 0
    ; Development value: 0
    ; Production value: 0
    ; Data Handling ;
    ; The separator used in PHP generated URLs to separate arguments.
    ; PHP's default setting is "&".
    ; http://php.net/arg-separator.output
    ; Example:
    ;arg_separator.output = "&amp;"
    ; List of separator(s) used by PHP to parse input URLs into variables.
    ; PHP's default setting is "&".
    ; NOTE: Every character in this directive is considered as separator!
    ; http://php.net/arg-separator.input
    ; Example:
    ;arg_separator.input = ";&"
    ; This directive determines which super global arrays are registered when PHP
    ; starts up. G,P,C,E & S are abbreviations for the following respective super
    ; globals: GET, POST, COOKIE, ENV and SERVER. There is a performance penalty
    ; paid for the registration of these arrays and because ENV is not as commonly
    ; used as the others, ENV is not recommended on productions servers. You
    ; can still get access to the environment variables through getenv() should you
    ; need to.
    ; Default Value: "EGPCS"
    ; Development Value: "GPCS"
    ; Production Value: "GPCS";
    ; http://php.net/variables-order
    variables_order = "GPCS"
    ; This directive determines which super global data (G,P,C,E & S) should
    ; be registered into the super global array REQUEST. If so, it also determines
    ; the order in which that data is registered. The values for this directive are
    ; specified in the same manner as the variables_order directive, EXCEPT one.
    ; Leaving this value empty will cause PHP to use the value set in the
    ; variables_order directive. It does not mean it will leave the super globals
    ; array REQUEST empty.
    ; Default Value: None
    ; Development Value: "GP"
    ; Production Value: "GP"
    ; http://php.net/request-order
    request_order = "GP"
    ; This directive determines whether PHP registers $argv & $argc each time it
    ; runs. $argv contains an array of all the arguments passed to PHP when a script
    ; is invoked. $argc contains an integer representing the number of arguments
    ; that were passed when the script was invoked. These arrays are extremely
    ; useful when running scripts from the command line. When this directive is
    ; enabled, registering these variables consumes CPU cycles and memory each time
    ; a script is executed. For performance reasons, this feature should be disabled
    ; on production servers.
    ; Note: This directive is hardcoded to On for the CLI SAPI
    ; Default Value: On
    ; Development Value: Off
    ; Production Value: Off
    ; http://php.net/register-argc-argv
    register_argc_argv = Off
    ; When enabled, the ENV, REQUEST and SERVER variables are created when they're
    ; first used (Just In Time) instead of when the script starts. If these
    ; variables are not used within a script, having this directive on will result
    ; in a performance gain. The PHP directive register_argc_argv must be disabled
    ; for this directive to have any affect.
    ; http://php.net/auto-globals-jit
    auto_globals_jit = On
    ; Whether PHP will read the POST data.
    ; This option is enabled by default.
    ; Most likely, you won't want to disable this option globally. It causes $_POST
    ; and $_FILES to always be empty; the only way you will be able to read the
    ; POST data will be through the php://input stream wrapper. This can be useful
    ; to proxy requests or to process the POST data in a memory efficient fashion.
    ; http://php.net/enable-post-data-reading
    ;enable_post_data_reading = Off
    ; Maximum size of POST data that PHP will accept.
    ; Its value may be 0 to disable the limit. It is ignored if POST data reading
    ; is disabled through enable_post_data_reading.
    ; http://php.net/post-max-size
    post_max_size = 8M
    ; Automatically add files before PHP document.
    ; http://php.net/auto-prepend-file
    auto_prepend_file =
    ; Automatically add files after PHP document.
    ; http://php.net/auto-append-file
    auto_append_file =
    ; By default, PHP will output a character encoding using
    ; the Content-type: header. To disable sending of the charset, simply
    ; set it to be empty.
    ; PHP's built-in default is text/html
    ; http://php.net/default-mimetype
    default_mimetype = "text/html"
    ; PHP's default character set is set to empty.
    ; http://php.net/default-charset
    ;default_charset = "UTF-8"
    ; Always populate the $HTTP_RAW_POST_DATA variable. PHP's default behavior is
    ; to disable this feature. If post reading is disabled through
    ; enable_post_data_reading, $HTTP_RAW_POST_DATA is *NOT* populated.
    ; http://php.net/always-populate-raw-post-data
    ;always_populate_raw_post_data = On
    ; Paths and Directories ;
    ; UNIX: "/path1:/path2"
    include_path = ".:/usr/share/pear"
    ; Windows: "\path1;\path2"
    ;include_path = ".;c:\php\includes"
    ; PHP's default setting for include_path is ".;/path/to/php/pear"
    ; http://php.net/include-path
    ; The root of the PHP pages, used only if nonempty.
    ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
    ; if you are running php as a CGI under any web server (other than IIS)
    ; see documentation for security issues. The alternate is to use the
    ; cgi.force_redirect configuration below
    ; http://php.net/doc-root
    doc_root =
    ; The directory under which PHP opens the script using /~username used only
    ; if nonempty.
    ; http://php.net/user-dir
    user_dir =
    ; Directory in which the loadable extensions (modules) reside.
    ; http://php.net/extension-dir
    extension_dir = "/usr/lib/php/modules/"
    ; On windows:
    ; extension_dir = "ext"
    ; Whether or not to enable the dl() function. The dl() function does NOT work
    ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
    ; disabled on them.
    ; http://php.net/enable-dl
    enable_dl = Off
    ; cgi.force_redirect is necessary to provide security running PHP as a CGI under
    ; most web servers. Left undefined, PHP turns this on by default. You can
    ; turn it off here AT YOUR OWN RISK
    ; **You CAN safely turn this off for IIS, in fact, you MUST.**
    ; http://php.net/cgi.force-redirect
    ;cgi.force_redirect = 1
    ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
    ; every request. PHP's default behavior is to disable this feature.
    ;cgi.nph = 1
    ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
    ; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
    ; will look for to know it is OK to continue execution. Setting this variable MAY
    ; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
    ; http://php.net/cgi.redirect-status-env
    ;cgi.redirect_status_env =
    ; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's
    ; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
    ; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting
    ; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting
    ; of zero causes PHP to behave as before. Default is 1. You should fix your scripts
    ; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
    ; http://php.net/cgi.fix-pathinfo
    cgi.fix_pathinfo=1
    ; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
    ; security tokens of the calling client. This allows IIS to define the
    ; security context that the request runs under. mod_fastcgi under Apache
    ; does not currently support this feature (03/17/2002)
    ; Set to 1 if running under IIS. Default is zero.
    ; http://php.net/fastcgi.impersonate
    ;fastcgi.impersonate = 1
    ; Disable logging through FastCGI connection. PHP's default behavior is to enable
    ; this feature.
    ;fastcgi.logging = 0
    ; cgi.rfc2616_headers configuration option tells PHP what type of headers to
    ; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
    ; is supported by Apache. When this option is set to 1 PHP will send
    ; RFC2616 compliant header.
    ; Default is zero.
    ; http://php.net/cgi.rfc2616-headers
    ;cgi.rfc2616_headers = 0
    ; File Uploads ;
    ; Whether to allow HTTP file uploads.
    ; http://php.net/file-uploads
    file_uploads = On
    ; Temporary directory for HTTP uploaded files (will use system default if not
    ; specified).
    ; http://php.net/upload-tmp-dir
    ;upload_tmp_dir =
    ; Maximum allowed size for uploaded files.
    ; http://php.net/upload-max-filesize
    upload_max_filesize = 2M
    ; Maximum number of files that can be uploaded via a single request
    max_file_uploads = 20
    ; Fopen wrappers ;
    ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
    ; http://php.net/allow-url-fopen
    allow_url_fopen = On
    ; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
    ; http://php.net/allow-url-include
    allow_url_include = Off
    ; Define the anonymous ftp password (your email address). PHP's default setting
    ; for this is empty.
    ; http://php.net/from
    ;from="[email protected]"
    ; Define the User-Agent string. PHP's default setting for this is empty.
    ; http://php.net/user-agent
    ;user_agent="PHP"
    ; Default timeout for socket based streams (seconds)
    ; http://php.net/default-socket-timeout
    default_socket_timeout = 60
    ; If your scripts have to deal with files from Macintosh systems,
    ; or you are running on a Mac and need to deal with files from
    ; unix or win32 systems, setting this flag will cause PHP to
    ; automatically detect the EOL character in those files so that
    ; fgets() and file() will work regardless of the source of the file.
    ; http://php.net/auto-detect-line-endings
    ;auto_detect_line_endings = Off
    ; Dynamic Extensions ;
    ; If you wish to have an extension loaded automatically, use the following
    ; syntax:
    ; extension=modulename.extension
    ; For example, on Windows:
    ; extension=msql.dll
    ; ... or under UNIX:
    ; extension=msql.so
    ; ... or with a path:
    ; extension=/path/to/extension/msql.so
    ; If you only provide the name of the extension, PHP will look for it in its
    ; default extension directory.
    ;extension=bcmath.so
    ;extension=bz2.so
    ;extension=calendar.so
    extension=curl.so
    ;extension=dba.so
    ;extension=enchant.so
    ;extension=exif.so
    ;extension=ftp.so
    ;extension=gd.so
    extension=gettext.so
    ;extension=gmp.so
    ;extension=iconv.so
    ;extension=imap.so
    ;extension=intl.so
    ;extension=ldap.so
    ;extension=mcrypt.so
    ;extension=mssql.so
    ;extension=mysqli.so
    ;extension=mysql.so
    ;extension=odbc.so
    ;extension=openssl.so
    ;extension=pdo_mysql.so
    ;extension=pdo_odbc.so
    ;extension=pdo_pgsql.so
    extension=pdo_sqlite.so
    ;extension=pgsql.so
    ;extension=phar.so
    ;extension=posix.so
    ;extension=pspell.so
    ;extension=shmop.so
    ;extension=snmp.so
    ;extension=soap.so
    ;extension=sockets.so
    extension=sqlite.so
    extension=sqlite3.so
    ;extension=sysvmsg.so
    ;extension=sysvsem.so
    ;extension=sysvshm.so
    ;extension=tidy.so
    ;extension=xmlrpc.so
    ;extension=xsl.so
    ;extension=zip.so
    ; Module Settings ;
    [CLI Server]
    ; Whether the CLI web server uses ANSI color coding in its terminal output.
    cli_server.color = On
    [Date]
    ; Defines the default timezone used by the date functions
    ; http://php.net/date.timezone
    ;date.timezone =
    ; http://php.net/date.default-latitude
    ;date.default_latitude = 31.7667
    ; http://php.net/date.default-longitude
    ;date.default_longitude = 35.2333
    ; http://php.net/date.sunrise-zenith
    ;date.sunrise_zenith = 90.583333
    ; http://php.net/date.sunset-zenith
    ;date.sunset_zenith = 90.583333
    [filter]
    ; http://php.net/filter.default
    ;filter.default = unsafe_raw
    ; http://php.net/filter.default-flags
    ;filter.default_flags =
    [iconv]
    ;iconv.input_encoding = ISO-8859-1
    ;iconv.internal_encoding = ISO-8859-1
    ;iconv.output_encoding = ISO-8859-1
    [intl]
    ;intl.default_locale =
    ; This directive allows you to produce PHP errors when some error
    ; happens within intl functions. The value is the level of the error produced.
    ; Default is 0, which does not produce any errors.
    ;intl.error_level = E_WARNING
    [sqlite]
    ; http://php.net/sqlite.assoc-case
    ;sqlite.assoc_case = 0
    [sqlite3]
    ;sqlite3.extension_dir =
    [Pcre]
    ;PCRE library backtracking limit.
    ; http://php.net/pcre.backtrack-limit
    ;pcre.backtrack_limit=100000
    ;PCRE library recursion limit.
    ;Please note that if you set this value to a high number you may consume all
    ;the available process stack and eventually crash PHP (due to reaching the
    ;stack size limit imposed by the Operating System).
    ; http://php.net/pcre.recursion-limit
    ;pcre.recursion_limit=100000
    [Pdo]
    ; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
    ; http://php.net/pdo-odbc.connection-pooling
    ;pdo_odbc.connection_pooling=strict
    ;pdo_odbc.db2_instance_name
    [Pdo_mysql]
    ; If mysqlnd is used: Number of cache slots for the internal result set cache
    ; http://php.net/pdo_mysql.cache_size
    pdo_mysql.cache_size = 2000
    ; Default socket name for local MySQL connects. If empty, uses the built-in
    ; MySQL defaults.
    ; http://php.net/pdo_mysql.default-socket
    pdo_mysql.default_socket=
    [Phar]
    ; http://php.net/phar.readonly
    ;phar.readonly = On
    ; http://php.net/phar.require-hash
    ;phar.require_hash = On
    ;phar.cache_list =
    [mail function]
    ; For Win32 only.
    ; http://php.net/smtp
    SMTP = localhost
    ; http://php.net/smtp-port
    smtp_port = 25
    ; For Win32 only.
    ; http://php.net/sendmail-from
    ;sendmail_from = [email protected]
    ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
    ; http://php.net/sendmail-path
    ;sendmail_path =
    ; Force the addition of the specified parameters to be passed as extra parameters
    ; to the sendmail binary. These parameters will always replace the value of
    ; the 5th parameter to mail(), even in safe mode.
    ;mail.force_extra_parameters =
    ; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
    mail.add_x_header = On
    ; The path to a log file that will log all mail() calls. Log entries include
    ; the full path of the script, line number, To address and headers.
    ;mail.log =
    ; Log mail to syslog (Event Log on NT, not valid in Windows 95).
    ;mail.log = syslog
    [SQL]
    ; http://php.net/sql.safe-mode
    sql.safe_mode = Off
    [ODBC]
    ; http://php.net/odbc.default-db
    ;odbc.default_db = Not yet implemented
    ; http://php.net/odbc.default-user
    ;odbc.default_user = Not yet implemented
    ; http://php.net/odbc.default-pw
    ;odbc.default_pw = Not yet implemented
    ; Controls the ODBC cursor model.
    ; Default: SQL_CURSOR_STATIC (default).
    ;odbc.default_cursortype
    ; Allow or prevent persistent links.
    ; http://php.net/odbc.allow-persistent
    odbc.allow_persistent = On
    ; Check that a connection is still valid before reuse.
    ; http://php.net/odbc.check-persistent
    odbc.check_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    ; http://php.net/odbc.max-persistent
    odbc.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    ; http://php.net/odbc.max-links
    odbc.max_links = -1
    ; Handling of LONG fields. Returns number of bytes to variables. 0 means
    ; passthru.
    ; http://php.net/odbc.defaultlrl
    odbc.defaultlrl = 4096
    ; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char.
    ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
    ; of odbc.defaultlrl and odbc.defaultbinmode
    ; http://php.net/odbc.defaultbinmode
    odbc.defaultbinmode = 1
    ;birdstep.max_links = -1
    [Interbase]
    ; Allow or prevent persistent links.
    ibase.allow_persistent = 1
    ; Maximum number of persistent links. -1 means no limit.
    ibase.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    ibase.max_links = -1
    ; Default database name for ibase_connect().
    ;ibase.default_db =
    ; Default username for ibase_connect().
    ;ibase.default_user =
    ; Default password for ibase_connect().
    ;ibase.default_password =
    ; Default charset for ibase_connect().
    ;ibase.default_charset =
    ; Default timestamp format.
    ibase.timestampformat = "%Y-%m-%d %H:%M:%S"
    ; Default date format.
    ibase.dateformat = "%Y-%m-%d"
    ; Default time format.
    ibase.timeformat = "%H:%M:%S"
    [MySQL]
    ; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
    ; http://php.net/mysql.allow_local_infile
    mysql.allow_local_infile = On
    ; Allow or prevent persistent links.
    ; http://php.net/mysql.allow-persistent
    mysql.allow_persistent = On
    ; If mysqlnd is used: Number of cache slots for the internal result set cache
    ; http://php.net/mysql.cache_size
    mysql.cache_size = 2000
    ; Maximum number of persistent links. -1 means no limit.
    ; http://php.net/mysql.max-persistent
    mysql.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    ; http://php.net/mysql.max-links
    mysql.max_links = -1
    ; Default port number for mysql_connect(). If unset, mysql_connect() will use
    ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
    ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
    ; at MYSQL_PORT.
    ; http://php.net/mysql.default-port
    mysql.default_port =
    ; Default socket name for local MySQL connects. If empty, uses the built-in
    ; MySQL defaults.
    ; http://php.net/mysql.default-socket
    mysql.default_socket =
    ; Default host for mysql_connect() (doesn't apply in safe mode).
    ; http://php.net/mysql.default-host
    mysql.default_host =
    ; Default user for mysql_connect() (doesn't apply in safe mode).
    ; http://php.net/mysql.default-user
    mysql.default_user =
    ; Default password for mysql_connect() (doesn't apply in safe mode).
    ; Note that this is generally a *bad* idea to store passwords in this file.
    ; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
    ; and reveal this password! And of course, any users with read access to this
    ; file will be able to reveal the password as well.
    ; http://php.net/mysql.default-password
    mysql.default_password =
    ; Maximum time (in seconds) for connect timeout. -1 means no limit
    ; http://php.net/mysql.connect-timeout
    mysql.connect_timeout = 60
    ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
    ; SQL-Errors will be displayed.
    ; http://php.net/mysql.trace-mode
    mysql.trace_mode = Off
    [MySQLi]
    ; Maximum number of persistent links. -1 means no limit.
    ; http://php.net/mysqli.max-persistent
    mysqli.max_persistent = -1
    ; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
    ; http://php.net/mysqli.allow_local_infile
    ;mysqli.allow_local_infile = On
    ; Allow or prevent persistent links.
    ; http://php.net/mysqli.allow-persistent
    mysqli.allow_persistent = On
    ; Maximum number of links. -1 means no limit.
    ; http://php.net/mysqli.max-links
    mysqli.max_links = -1
    ; If mysqlnd is used: Number of cache slots for the internal result set cache
    ; http://php.net/mysqli.cache_size
    mysqli.cache_size = 2000
    ; Default port number for mysqli_connect(). If unset, mysqli_connect() will use
    ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
    ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
    ; at MYSQL_PORT.
    ; http://php.net/mysqli.default-port
    mysqli.default_port = 3306
    ; Default socket name for local MySQL connects. If empty, uses the built-in
    ; MySQL defaults.
    ; http://php.net/mysqli.default-socket
    mysqli.default_socket =
    ; Default host for mysql_connect() (doesn't apply in safe mode).
    ; http://php.net/mysqli.default-host
    mysqli.default_host =
    ; Default user for mysql_connect() (doesn't apply in safe mode).
    ; http://php.net/mysqli.default-user
    mysqli.default_user =
    ; Default password for mysqli_connect() (doesn't apply in safe mode).
    ; Note that this is generally a *bad* idea to store passwords in this file.
    ; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
    ; and reveal this password! And of course, any users with read access to this
    ; file will be able to reveal the password as well.
    ; http://php.net/mysqli.default-pw
    mysqli.default_pw =
    ; Allow or prevent reconnect
    mysqli.reconnect = Off
    [mysqlnd]
    ; Enable / Disable collection of general statistics by mysqlnd which can be
    ; used to tune and monitor MySQL operations.
    ; http://php.net/mysqlnd.collect_statistics
    mysqlnd.collect_statistics = On
    ; Enable / Disable collection of memory usage statistics by mysqlnd which can be
    ; used to tune and monitor MySQL operations.
    ; http://php.net/mysqlnd.collect_memory_statistics
    mysqlnd.collect_memory_statistics = Off
    ; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
    ; http://php.net/mysqlnd.net_cmd_buffer_size
    ;mysqlnd.net_cmd_buffer_size = 2048
    ; Size of a pre-allocated buffer used for reading data sent by the server in
    ; bytes.
    ; http://php.net/mysqlnd.net_read_buffer_size
    ;mysqlnd.net_read_buffer_size = 32768
    [OCI8]
    ; Connection: Enables privileged connections using external
    ; credentials (OCI_SYSOPER, OCI_SYSDBA)
    ; http://php.net/oci8.privileged-connect
    ;oci8.privileged_connect = Off
    ; Connection: The maximum number of persistent OCI8 connections per
    ; process. Using -1 means no limit.
    ; http://php.net/oci8.max-persistent
    ;oci8.max_persistent = -1
    ; Connection: The maximum number of seconds a process is allowed to
    ; maintain an idle persistent connection. Using -1 means idle
    ; persistent connections will be maintained forever.
    ; http://php.net/oci8.persistent-timeout
    ;oci8.persistent_timeout = -1
    ; Connection: The number of seconds that must pass before issuing a
    ; ping during oci_pconnect() to check the connection validity. When
    ; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
    ; pings completely.
    ; http://php.net/oci8.ping-interval
    ;oci8.ping_interval = 60
    ; Connection: Set this to a user chosen connection class to be used
    ; for all pooled server requests with Oracle 11g Database Resident
    ; Connection Pooling (DRCP). To use DRCP, this value should be set to
    ; the same string for all web servers running the same application,
    ; the database pool must be configured, and the connection string must
    ; specify to use a pooled server.
    ;oci8.connection_class =
    ; High Availability: Using On lets PHP receive Fast Application
    ; Notification (FAN) events generated when a database node fails. The
    ; database must also be configured to post FAN events.
    ;oci8.events = Off
    ; Tuning: This option enables statement caching, and specifies how
    ; many statements to cache. Using 0 disables statement caching.
    ; http://php.net/oci8.statement-cache-size
    ;oci8.statement_cache_size = 20
    ; Tuning: Enables statement prefetching and sets the default number of
    ; rows that will be fetched automatically after statement execution.
    ; http://php.net/oci8.default-prefetch
    ;oci8.default_prefetch = 100
    ; Compatibility. Using On means oci_close() will not close
    ; oci_connect() and oci_new_connect() connections.
    ; http://php.net/oci8.old-oci-close-semantics
    ;oci8.old_oci_close_semantics = Off
    [PostgreSQL]
    ; Allow or prevent persistent links.
    ; http://php.net/pgsql.allow-persistent
    pgsql.allow_persistent = On
    ; Detect broken persistent links always with pg_pconnect().
    ; Auto reset feature requires a little overheads.
    ; http://php.net/pgsql.auto-reset-persistent
    pgsql.auto_reset_persistent = Off
    ; Maximum number of persistent links. -1 means no limit.
    ; http://php.net/pgsql.max-persistent
    pgsql.max_persistent = -1
    ; Maximum number of links (persistent+non persistent). -1 means no limit.
    ; http://php.net/pgsql.max-links
    pgsql.max_links = -1
    ; Ignore PostgreSQL backends Notice message or not.
    ; Notice message logging require a little overheads.
    ; http://php.net/pgsql.ignore-notice
    pgsql.ignore_notice = 0
    ; Log PostgreSQL backends Notice message or not.
    ; Unless pgsql.ignore_notice=0, module cannot log notice message.
    ; http://php.net/pgsql.log-notice
    pgsql.log_notice = 0
    [Sybase-CT]
    ; Allow or prevent persistent links.
    ; http://php.net/sybct.allow-persistent
    sybct.allow_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    ; http://php.net/sybct.max-persistent
    sybct.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    ; http://php.net/sybct.max-links
    sybct.max_links = -1
    ; Minimum server message severity to display.
    ; http://php.net/sybct.min-server-severity
    sybct.min_server_severity = 10
    ; Minimum client message severity to display.
    ; http://php.net/sybct.min-client-severity
    sybct.min_client_severity = 10
    ; Set per-context timeout
    ; http://php.net/sybct.timeout
    ;sybct.timeout=
    ;sybct.packet_size
    ; The maximum time in seconds to wait for a connection attempt to succeed before returning failure.
    ; Default: one minute
    ;sybct.login_timeout=
    ; The name of the host you claim to be connecting from, for display by sp_who.
    ; Default: none
    ;sybct.hostname=
    ; Allows you to define how often deadlocks are to be retried. -1 means "forever".
    ; Default: 0
    ;sybct.deadlock_retry_count=
    [bcmath]
    ; Number of decimal digits for all bcmath functions.
    ; http://php.net/bcmath.scale
    bcmath.scale = 0
    [browscap]
    ; http://php.net/browscap
    ;browscap = extra/browscap.ini
    [Session]
    ; Handler used to store/retrieve data.
    ; http://php.net/session.save-handler
    session.save_handler = files
    ; Argument passed to save_handler. In the case of files, this is the path
    ; where data files are stored. Note: Windows users have to change this
    ; variable in order to use PHP's session functions.
    ; The path can be defined as:
    ; session.save_path = "N;/path"
    ; where N is an integer. Instead of storing all the session files in
    ; /path, what this will do is use subdirectories N-levels deep, and
    ; store the session data in those directories. This is useful if you
    ; or your OS have problems with lots of files in one directory, and is
    ; a more efficient layout for servers that handle lots of sessions.
    ; NOTE 1: PHP will not create this directory structure automatically.
    ; You can use the script in the ext/session dir for that purpose.
    ; NOTE 2: See the section on garbage collection below if you choose to
    ; use subdirectories for session storage
    ; The file storage module creates files using mode 600 by default.
    ; You can change that by using
    ; session.save_path = "N;MODE;/path"
    ; where MODE is the octal representation of the mode. Note that this
    ; does not overwrite the process's umask.
    ; http://php.net/session.save-path
    ;session.save_path = "/tmp"
    ; Whether to use cookies.
    ; http://php.net/session.use-cookies
    session.use_cookies = 1
    ; http://php.net/session.cookie-secure
    ;session.cookie_secure =
    ; This option forces PHP to fetch and use a cookie for storing and maintaining
    ; the session id. We encourage this operation as it's very helpful in combating
    ; session hijacking when not specifying and managing your own session id. It is
    ; not the end all be all of session hijacking defense, but it's a good start.
    ; http://php.net/session.use-only-cookies
    session.use_only_cookies = 1
    ; Name of the session (used as cookie name).
    ; http://php.net/session.name
    session.name = PHPSESSID
    ; Initialize session on request startup.
    ; http://php.net/session.auto-start
    session.auto_start = 0
    ; Lifetime in seconds of cookie or, if 0, until browser is restarted.
    ; http://php.net/session.cookie-lifetime
    session.cookie_lifetime = 0
    ; The path for which the cookie is valid.
    ; http://php.net/session.cookie-path
    session.cookie_path = /
    ; The domain for which the cookie is valid.
    ; http://php.net/session.cookie-domain
    session.cookie_domain =
    ; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript.
    ; http://php.net/session.cookie-httponly
    session.cookie_httponly =
    ; Handler used to serialize data. php is the standard serializer of PHP.
    ; http://php.net/session.serialize-handler
    session.serialize_handler = php
    ; Defines the probability that the 'garbage collection' process is started
    ; on every session initialization. The probability is calculated by using
    ; gc_probability/gc_divisor. Where session.gc_probability is the numerator
    ; and gc_divisor is the denominator in the equation. Setting this value to 1
    ; when the session.gc_divisor value is 100 will give you approximately a 1% chance
    ; the gc will run on any give request.
    ; Default Value: 1
    ; Development Value: 1
    ; Production Value: 1
    ; http://php.net/session.gc-probability
    session.gc_probability = 1
    ; Defines the probability that the 'garbage collection' process is started on every
    ; session initialization. The probability is calculated by using the following equation:
    ; gc_probability/gc_divisor. Where session.gc_probability is the numerator and
    ; session.gc_divisor is the denominator in the equation. Setting this value to 1
    ; when the session.gc_divisor value is 100 will give you approximately a 1% chance
    ; the gc will run on any give request. Increasing this value to 1000 will give you
    ; a 0.1% chance the gc will run on any give request. For high volume production servers,
    ; this is a more efficient approach.
    ; Default Value: 100
    ; Development Value: 1000
    ; Production Value: 1000
    ; http://php.net/session.gc-divisor
    session.gc_divisor = 1000
    ; After this number of seconds, stored data will be seen as 'garbage' and
    ; cleaned up by the garbage collection process.
    ; http://php.net/session.gc-maxlifetime
    session.gc_maxlifetime = 1440
    ; NOTE: If you are using the subdirectory option for storing session files
    ; (see session.save_path above), then garbage collection does *not*
    ; happen automatically. You will need to do your own garbage
    ; collection through a shell script, cron entry, or some other method.
    ; For example, the following script would is the equivalent of
    ; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
    ; find /path/to/sessions -cmin +24 | xargs rm
    ; PHP 4.2 and less have an undocumented feature/bug that allows you to
    ; to initialize a session variable in the global scope.
    ; PHP 4.3 and later will warn you, if this feature is used.
    ; You can disable the feature and the warning separately. At this time,
    ; the warning is only displayed, if bug_compat_42 is enabled. This feature
    ; introduces some serious security problems if not handled correctly. It's
    ; recommended that you do not use this feature on production servers. But you
    ; should enable this on development servers and enable the warning as well. If you
    ; do not enable the feature on development servers, you won't be warned when it's
    ; used and debugging errors caused by this can be difficult to track down.
    ; Default Value: On
    ; Development Value: On
    ; Production Value: Off
    ; http://php.net/session.bug-compat-42
    session.bug_compat_42 = Off
    ; This setting controls whether or not you are warned by PHP when initializing a
    ; session value into the global space. session.bug_compat_42 must be enabled before
    ; these warnings can be issued by PHP. See the directive above for more information.
    ; Default Value: On
    ; Development Value: On
    ; Production Value: Off
    ; http://php.net/session.bug-compat-warn
    session.bug_compat_warn = Off
    ; Check HTTP Referer to invalidate externally stored URLs containing ids.
    ; HTTP_REFERER has to contain this substring for the session to be
    ; considered as valid.
    ; http://php.net/session.referer-check
    session.referer_check =
    ; How many bytes to read from the file.
    ; http://php.net/session.entropy-length
    ;session.entropy_length = 32
    ; Specified here to create the session id.
    ; http://php.net/session.entropy-file
    ; Defaults to /dev/urandom
    ; On systems that don't have /dev/urandom but do have /dev/arandom, this will default to /dev/arandom
    ; If neither are found at compile time, the default is no entropy file.
    ; On windows, setting the entropy_length setting will activate the
    ; Windows random source (using the CryptoAPI)
    ;session.entropy_file = /dev/urandom
    ; Set to {nocache,private,public,} to determine HTTP caching aspects
    ; or leave this empty to avoid sending anti-caching headers.
    ; http://php.net/session.cache-limiter
    session.cache_limiter = nocache
    ; Document expires after n minutes.
    ; http://php.net/session.cache-expire
    session.cache_expire = 180
    ; trans sid support is disabled by default.
    ; Use of trans sid may risk your users security.
    ; Use this option with caution.
    ; - User may send URL contains active session ID
    ; to other person via. email/irc/etc.
    ; - URL that contains active session ID may be stored
    ; in publicly accessible computer.
    ; - User may access your site with the same session ID
    ; always using URL stored in browser's history or bookmarks.
    ; http://php.net/session.use-trans-sid
    session.use_trans_sid = 0
    ; Select a hash function for use in generating session ids.
    ; Possible Values
    ; 0 (MD5 128 bits)
    ; 1 (SHA-1 160 bits)
    ; This option may also be set to the name of any hash function supported by
    ; the hash extension. A list of available hashes is returned by the hash_algos()
    ; function.
    ; http://php.net/session.hash-function
    session.hash_function = 0
    ; Define how many bits are stored in each character when converting
    ; the binary hash data to something readable.
    ; Possible values:
    ; 4 (4 bits: 0-9, a-f)
    ; 5 (5 bits: 0-9, a-v)
    ; 6 (6 bits: 0-9, a-z, A-Z, "-", ",")
    ; Default Value: 4
    ; Development Value: 5
    ; Production Value: 5
    ; http://php.net/session.hash-bits-per-character
    session.hash_bits_per_character = 5
    ; The URL rewriter will look for URLs in a defined set of HTML tags.
    ; form/fieldset are special; if you include them here, the rewriter will
    ; add a hidden <input> field with the info which is otherwise appended
    ; to URLs. If you want XHTML conformity, remove the form entry.
    ; Note that all valid entries require a "=", even if no value follows.
    ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
    ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
    ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
    ; http://php.net/url-rewriter.tags
    url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
    ; Enable upload progress tracking in $_SESSION
    ; Default Value: On
    ; Development Value: On
    ; Production Value: On
    ; http://php.net/session.upload-progress.enabled
    ;session.upload_progress.enabled = On
    ; Cleanup the progress information as soon as all POST data has been read
    ; (i.e. upload completed).
    ; Default Value: On
    ; Development Value: On
    ; Production Value: On
    ; http://php.net/session.upload-progress.cleanup
    ;session.upload_progress.cleanup = On
    ; A prefix used for the upload progress key in $_SESSION
    ; Default Value: "upload_progress_"
    ; Development Value: "upload_progress_"
    ; Production Value: "upload_progress_"
    ; http://php.net/session.upload-progress.prefix
    ;session.upload_progress.prefix = "upload_progress_"
    ; The index name (concatenated with the prefix) in $_SESSION
    ; containing the upload progress information
    ; Default Value: "PHP_SESSION_UPLOAD_PROGRESS"
    ; Development Value: "PHP_SESSION_UPLOAD_PROGRESS"
    ; Production Value: "PHP_SESSION_UPLOAD_PROGRESS"
    ; http://php.net/session.upload-progress.name
    ;session.upload_progress.name = "PHP_SESSION_UPLOAD_PROGRESS"
    ; How frequently the upload progress should be updated.
    ; Given either in percentages (per-file), or in bytes
    ; Default Value: "1%"
    ; Development Value: "1%"
    ; Production Value: "1%"
    ; http://php.net/session.upload-progress.freq
    ;session.upload_progress.freq = "1%"
    ; The minimum delay between updates, in seconds
    ; Default Value: 1
    ; Development Value: 1
    ; Production Value: 1
    ; http://php.net/session.upload-progress.min-freq
    ;session.upload_progress.min_freq = "1"
    [MSSQL]
    ; Allow or prevent persistent links.
    mssql.allow_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    mssql.max_persistent = -1
    ; Maximum number of links (persistent+non persistent). -1 means no limit.
    mssql.max_links = -1
    ; Minimum error severity to display.
    mssql.min_error_severity = 10
    ; Minimum message severity to display.
    mssql.min_message_severity = 10
    ; Compatibility mode with old versions of PHP 3.0.
    mssql.compatability_mode = Off
    ; Connect timeout
    ;mssql.connect_timeout = 5
    ; Query timeout
    ;mssql.timeout = 60
    ; Valid range 0 - 2147483647. Default = 4096.
    ;mssql.textlimit = 4096
    ; Valid range 0 - 2147483647. Default = 4096.
    ;mssql.textsize = 4096
    ; Limits the number of records in each batch. 0 = all records in one batch.
    ;mssql.batchsize = 0
    ; Specify how datetime and datetim4 columns are returned
    ; On => Returns data converted to SQL server settings
    ; Off => Returns values as YYYY-MM-DD hh:mm:ss
    ;mssql.datetimeconvert = On
    ; Use NT authentication when connecting to the server
    mssql.secure_connection = Off
    ; Specify max number of processes. -1 = library default
    ; msdlib defaults to 25
    ; FreeTDS defaults to 4096
    ;mssql.max_procs = -1
    ; Specify client character set.
    ; If empty or not set the client charset from freetds.conf is used
    ; This is only used when compiled with FreeTDS
    ;mssql.charset = "ISO-8859-1"
    [Assertion]
    ; Assert(expr); active by default.
    ; http://php.net/assert.active
    ;assert.active = On
    ; Issue a PHP warning for each failed assertion.
    ; http://php.net/assert.warning
    ;assert.warning = On
    ; Don't bail out by default.
    ; http://php.net/assert.bail
    ;assert.bail = Off
    ; User-function to be called if an assertion fails.
    ; http://php.net/assert.callback
    ;assert.callback = 0
    ; Eval the expression with current error_reporting(). Set to true if you want
    ; error_reporting(0) around the eval().
    ; http://php.net/assert.quiet-eval
    ;assert.quiet_eval = 0
    [COM]
    ; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
    ; http://php.net/com.typelib-file
    ;com.typelib_file =
    ; allow Distributed-COM calls
    ; http://php.net/com.allow-dcom
    ;com.allow_dcom = true
    ; autoregister constants of a components typlib on com_load()
    ; http://php.net/com.autoregister-typelib
    ;com.autoregister_typelib = true
    ; register constants casesensitive
    ; http://php.net/com.autoregister-casesensitive
    ;com.autoregister_casesensitive = false
    ; show warnings on duplicate constant registrations
    ; http://php.net/com.autoregister-verbose
    ;com.autoregister_verbose = true
    ; The default character set code-page to use when passing strings to and from COM objects.
    ; Default: system ANSI code page
    ;com.code_page=
    [mbstring]
    ; language for internal character representation.
    ; http://php.net/mbstring.language
    ;mbstring.language = Japanese
    ; internal/script encoding.
    ; Some encoding cannot work as internal encoding.
    ; (e.g. SJIS, BIG5, ISO-2022-*)
    ; http://php.net/mbstring.internal-encoding
    ;mbstring.internal_encoding = EUC-JP
    ; http input encoding.
    ; http://php.net/mbstring.http-input
    ;mbstring.http_input = auto
    ; http output encoding. mb_output_handler must be
    ; registered as output buffer to function
    ; http://php.net/mbstring.http-output
    ;mbstring.http_output = SJIS
    ; enable automatic encoding translation according to
    ; mbstring.internal_encoding setting. Input chars are
    ; converted to internal encoding by setting this to On.
    ; Note: Do _not_ use automatic encoding translation for
    ; portable libs/applications.
    ; http://php.net/mbstring.encoding-translation
    ;mbstring.encoding_translation = Off
    ; automatic encoding detection order.
    ; auto means
    ; http://php.net/mbstring.detect-order
    ;mbstring.detect_order = auto
    ; substitute_character used when character cannot be converted
    ; one from another
    ; http://php.net/mbstring.substitute-character
    ;mbstring.substitute_character = none;
    ; overload(replace) single byte functions by mbstring functions.
    ; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
    ; etc. Po

    Hi there! Thank you for your kind help.
    I searched for the *.css File of the Theme which is used.
    FOR CHYRP:
    This file is shown as plain Text in the Browser itself
    http://192.168.xxx.xxx/chyrp/admin/themes/default/style.css
    style.css
    /* @group Reset */
    body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td { margin: 0; padding: 0; }
    table { border-collapse: collapse; border-spacing: 0; }
    fieldset,img { border: 0; }
    address,caption,cite,code,dfn,em,strong,th,var { font-style: normal; font-weight: normal; }
    li { list-style: none; }
    caption,th { text-align: left; }
    h1,h2,h3,h4,h5,h6 { font-size: 100%; font-weight: normal; }
    abbr,acronym { border: 0; font-variant: normal; }
    input,textarea,select { font-family: inherit; font-size: inherit; font-weight: inherit; }
    a:link, a:visited { text-decoration: none; color: inherit; }
    /* @end */
    /* @group Core */
    html {
    font-size: 62.5%;
    body {
    font: 1.25em/1.5em normal Lucida Grande, Helvetica, Arial, sans-serif;
    color: #333;
    background: #efefef;
    h1, h2, h3, h4, h5, h6{
    font-weight: normal !important;
    font-family: "Palatino Linotype", Chaparral Pro, Georgia, serif;
    em {
    font-style: italic;
    strong {
    font-weight: bold;
    small,
    .small {
    font-size: .9em;
    color: #999;
    p {
    margin: 0 0 1em;
    a:link,
    a:visited {
    text-decoration: underline;
    /* @end */
    /* @group Header */
    #header {
    background: #353535;
    padding: 2em 0;
    color: #fff;
    position: relative;
    #header h1 {
    font-size: 2em;
    line-height: 1.25em;
    text-shadow: #000 0 1px 1px;
    #header h1 a {
    text-decoration: none;
    #header #navigation {
    float: right;
    position: absolute;
    bottom: 0;
    right: 5em;
    #header #navigation li {
    display: inline;
    #header #navigation li a:link,
    #header #navigation li a:visited {
    float: left;
    margin-left: 1em;
    text-shadow: #000 0 0 0;
    background: #444;
    color: #ebeeee;
    height: 4em;
    line-height: 4em;
    text-transform: uppercase;
    width: 8em;
    text-align: center;
    text-decoration: none;
    font-family: "Palatino Linotype", Chaparral Pro, Georgia, serif;
    letter-spacing: 0.2em;
    font-size: 0.8em;
    #header #navigation li.selected a:link,
    #header #navigation li.selected a:visited {
    background: #fff;
    color: #333;
    #header #navigation li a:hover {
    background: #4c4c4c;
    #welcome {
    background: #fff;
    padding: .9em 0;
    border-bottom: 1px solid #e1e1e1;
    #welcome a:link,
    #welcome a:visited {
    text-decoration: none;
    background: #fcfcfc;
    padding: 1em;
    margin: -1em 0 -.8em;
    #welcome .right {
    padding: .9em 1em !important;
    margin-top: -.9em !important;
    #welcome a:hover {
    background: #f5f5f5;
    #welcome a:active {
    background: #f0f0f0;
    /* @end */
    /* @group Footer */
    #footer {
    width: 425px;
    margin: 2.5em auto !important;
    font-size: 1.25em;
    text-align: center;
    #footer .sub {
    color: #acacac;
    font-size: .7em;
    /* @end */
    /* @group Sub-Navigation */
    #sub-nav {
    margin-top: 2em;
    #sub-nav li {
    float: left;
    position: relative;
    top: 1px;
    z-index: 1;
    #sub-nav li a:link,
    #sub-nav li a:visited {
    float: left;
    padding: .4em .75em;
    background: #dfdfdf;
    border-bottom: 0;
    color: #737373;
    text-decoration: none;
    margin: 0 0.7em 0 0;
    #sub-nav li a:hover {
    background: #e5e5e5;
    #sub-nav li.selected a:link,
    #sub-nav li.selected a:visited {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-bottom: none;
    #sub-nav li.right {
    margin: .75em 0 0;
    #sub-nav li.right a:link,
    #sub-nav li.right a:visited {
    float: none;
    background: transparent;
    padding: 0;
    font-size: .95em;
    color: #444;
    .feathers_sort {
    background: #eee;
    margin-top: .2em;
    height: 2.3em !important;
    border-left: .1em dashed #ccc;
    border-right: .1em dashed #ccc;
    /* @end */
    /* @group Content */
    #content {
    background: #fff;
    padding: 1em;
    border: 1px solid #e1e1e1;
    position: relative;
    #content > form {
    /* margin-top: .5em; */
    #content h1 {
    font-size: 2em;
    margin: .2em 0 1em;
    color: #aaa;
    font-weight: bold;
    #content h2 {
    font-size: 1.5em;
    margin: 0 0 .5em;
    color: #666;
    font-weight: normal;
    #content h3 {
    font-weight: bold;
    font-size: 1.25em;
    margin-bottom: 1.5em;
    #content h4 {
    font-weight: bold;
    font-size: 1.2em;
    /* @end */
    /* @group Extend */
    .enable,
    .disable {
    width: 49%;
    .enable h2,
    .disable h2 {
    font-weight: normal !important;
    font-size: 1.1em !important;
    .enable h2 .sub,
    .disable h2 .sub {
    font-size: .8em;
    color: #bcbcbc;
    .enable ul,
    .disable ul {
    padding: 1em 1em .5em;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    .enable ul li,
    .disable ul li {
    padding: .1em .25em .1em .7em;
    margin: 0 0 .5em;
    list-style: disc inside !important;
    position: relative;
    .enable ul li img,
    .disable ul li img {
    position: absolute;
    top: 4px;
    right: 4px;
    .enable ul li a.help img,
    .disable ul li a.help img {
    top: 3px;
    right: 20px;
    width: 15px;
    height: 15px;
    .enable ul li .sub,
    .disable ul li .sub {
    font-size: .9em;
    .enable ul li .enable_button,
    .disable ul li .disable_button {
    display: block;
    padding: .25em .5em;
    text-align: right;
    ul.extend .expand {
    margin: 0 -.25em 0 -.7em;
    .enable h2 {
    color: #4f8f62 !important;
    .enable ul {
    background: #dbffe6;
    border: 1px solid #dbffe6;
    .enable ul li {
    background: #e6ffee;
    color: #386345;
    .enable ul.hover {
    border: 1px solid #b3d1bb;
    .enable ul li a:link,
    .enable ul li a:visited,
    .enable ul li .sub a:hover {
    text-decoration: none;
    color: #386345;
    .enable ul li .sub,
    .enable ul li .sub a:link,
    .enable ul li .sub a:visited {
    color: #74a683;
    .enable ul li .description {
    padding: .5em;
    background: #F7FFF9;
    .enable ul li .enable_button {
    color: #189100;
    .enable ul li .enable_button:hover {
    background: #189100;
    color: #fff;
    .enable ul li .enable_button:active {
    background: #067000;
    .disable h2 {
    color: #ff7070 !important;
    .disable ul {
    background: #ffdbdb;
    border: 1px solid #ffdbdb;
    .disable h2 .sub {
    color: #bcbcbc;
    .disable ul li {
    background: #ffe6e6;
    color: #653b3d;
    .disable ul.hover {
    border: 1px solid #cfb2b2;
    .disable ul li a:link,
    .disable ul li a:visited,
    .disable ul li .sub a:hover {
    text-decoration: none;
    color: #7b4d4d;
    .disable ul li .sub,
    .disable ul li .sub a:link,
    .disable ul li .sub a:visited {
    color: #a97f7f;
    .disable ul li .description {
    padding: .5em;
    background: #FFF1F1;
    .disable ul li .disable_button {
    color: #d51800;
    .disable ul li .disable_button:hover {
    background: #d51800;
    color: #fff;
    .disable ul li .disable_button:active {
    background: #b30600;
    /* @end */
    /* @group Theme Changing */
    .theme {
    text-align: center;
    margin-right: 15px !important;
    border: 0 !important;
    padding-bottom: 20px !important;
    position: relative;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    .theme.last {
    margin-right: 0 !important;
    .theme .link {
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    .theme .link span {
    display: block;
    .theme.current {
    background: #EBFAE4;
    color: #65845e;
    .theme.current small,
    .theme.current small a:link,
    .theme.current small a:visited {
    color: #789f72;
    .theme.current .button {
    background: #189100;
    color: #FFF;
    border: 0;
    .theme img.screenshot {
    padding: 5px;
    background: #FFF;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    .theme a:hover img.screenshot {
    background: #CCC;
    .theme small {
    font-weight: normal;
    /* @end */
    /* @group Forms */
    form.delete blockquote {
    width: 75%;
    margin: 0 auto;
    font-style: italic;
    form.delete blockquote h2,
    form.delete .noitalic {
    font-style: normal;
    form.delete blockquote h2 input[type="checkbox"] {
    position: relative;
    top: -.125em;
    form.delete h2.inline {
    display: inline;
    form.delete select {
    position: relative;
    top: -2px;
    form.split label {
    width: 41%;
    float: left;
    text-align: right;
    font-weight: bold;
    padding: 4px 2% 5px;
    color: #999;
    form.split label .sub {
    display: block;
    form.split label input {
    margin: -.5em 0;
    form.split select {
    margin: 3px 0 .5em;
    form.split small,
    form.split .small {
    display: block;
    margin-left: 45%;
    form.split button {
    margin-left: 45%;
    form .buttons {
    margin-top: 2em;
    label {
    display: block;
    font-size: 1.1em;
    form p .sub,
    label .sub,
    tr .sub {
    font-size: .8em;
    color: #999;
    font-weight: normal;
    input.text,
    input[type="text"],
    input[type="password"],
    input.file,
    textarea {
    font-size: 1.25em;
    padding: 3px;
    border: 1px solid #ddd;
    background: #fff;
    input.file {
    border: none;
    input.text,
    input.file,
    select,
    textarea {
    margin-bottom: .25em;
    input.text {
    /* width: 15em; */
    input.checkbox {
    margin: .6em .5em .75em 0;
    span.checkbox {
    position: relative;
    top: -3px;
    textarea {
    font-size: 1.1em;
    font-family: "Monaco", "Consolas", monospace;
    textarea.wide,
    input.text.wide {
    padding: .5%;
    width: 99%;
    _width: 100%; /* Hooray for IE6's randomized box model. */
    input.code,
    textarea.code,
    code {
    font-family: "Consolas", "Monaco", monospace;
    /* @end */
    /* @group Tables */
    table thead tr {
    background: #555;
    color: #fff;
    border: 0 !important;
    border-bottom: 2px solid #444;
    text-shadow: #333 0px 1px 0px;
    table thead tr th {
    padding: .25em .5em;
    font-weight: bold;
    table thead tr th input {
    vertical-align: middle;
    margin: -5px 0 0 !important;
    table thead tr th.header {
    cursor: pointer;
    table thead tr th.headerSortDown,
    table thead tr th.headerSortUp {
    background: #444;
    table tbody tr {
    table tbody tr.last {
    table tbody tr td {
    padding: .5em .7em;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
    table tbody tr td.main {
    background: #f9f9f9;
    table tbody tr td.center {
    text-align: center;
    vertical-align: middle;
    table tbody tr td.controls {
    text-align: center;
    font-size: .95em;
    color: #888;
    table tbody tr td.controls img {
    margin-bottom: -3px;
    margin-right: 1px;
    table tbody tr td.main a:link,
    table tbody tr td.main a:visited,
    table tbody tr td.controls a:link,
    table tbody tr td.controls a:visited {
    text-decoration: none;
    tr.draft,
    tr.excerpt,
    tr.scheduled,
    tr.draft td,
    tr.excerpt td,
    tr.scheduled td,
    tr.draft td.main,
    tr.scheduled td.main {
    background-color: #dff4ff;
    border-color: #c2e1ef !important;
    color: #336699;
    tr.excerpt p {
    margin: 0;
    /* @end */
    /* @group Preview */
    h1.preview-header {
    margin: 0 0 .5em !important;
    .preview-content {
    margin: 0 0 2em;
    padding-bottom: .75em;
    border-bottom: 1px dotted #ddd;
    .preview-content ul,
    .preview-content ol {
    margin: 0 0 1em 2em;
    list-style: square;
    .preview-content ol li {
    list-style: decimal;
    .preview-content a:link,
    .preview-content a:visited {
    text-decoration: underline;
    color: #222;
    .preview-content hr {
    margin: 2em 0;
    .preview-content blockquote {
    margin: 0 2em;
    color: #999;
    /* @end */
    /* @group Messages */
    p.message {
    font-size: 1.1em;
    padding: .6em;
    margin-bottom: 1.75em;
    background: #f1f1f1;
    border: 1px solid #ccc;
    p.message.yay {
    background: #189100;
    color: #fff;
    border-color: #105f00;
    p.message.boo {
    background: #d51800;
    color: #fff;
    border-color: #9f1000;
    /* @end */
    /* @group Buttons */
    /* Inspiration from Chawlk. */
    button,
    .button,
    a.next_page,
    a.prev_page {
    display: inline-block;
    font-family: Verdana, Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 1.125em;
    margin: 0 .5em 0 0;
    color: #333;
    padding: .5em .75em;
    background: #f1f1f1;
    border: 1px solid #ccc;
    border-top-color: #f1f1f1;
    border-left-color: #f1f1f1;
    border-bottom: 1px solid #ccc !important;
    cursor: pointer;
    text-decoration: none !important;
    .button {
    padding: .6em 1em .5em .9em;
    button.lite {
    padding: .15em .375em .25em .275em;
    .button.lite,
    a.next_page,
    a.prev_page {
    padding: .1em .4em .2em;
    button.inline {
    position: relative;
    top: -1px;
    padding: 4px 5px 4px 4px;
    button.right,
    .button.right,
    a.next_page {
    margin: 0 0 0 .5em;
    float: right;
    button:hover,
    .button:hover,
    a.next_page:hover,
    a.prev_page:hover {
    background: #f7f7f7;
    border-color: #f7f7f7;
    border-bottom-color: #d1d1d1 !important;
    border-right-color: #d1d1d1;
    button:active,
    .button:active,
    .button.selected,
    a.next_page:active,
    a.prev_page:active {
    background-color: #d7d7d7;
    border-color: #d7d7d7;
    border-left-color: #b1b1b1;
    border-top-color: #b1b1b1;
    border-bottom-color: #d7d7d7 !important;
    button.boo,
    .button.boo {
    background: #faebe4;
    color: #3e3634;
    border-color: #faebe4;
    border-bottom-color: #d6bdb5;
    border-right-color: #d6bdb5;
    button.boo:hover,
    .button.boo:hover {
    background: #d51800;
    color: #fff;
    border-color: #d51800;
    border-bottom-color: #9f1000 !important;
    border-right-color: #9f1000;
    button.boo:active,
    .button.boo:active {
    background: #b30600;
    border-color: #b30600;
    border-left-color: #7d0000;
    border-top-color: #7d0000;
    border-bottom-color: #b30600 !important;
    button.yay,
    .button.yay {
    background: #ebfae4;
    color: #363e34;
    border-color: #ebfae4;
    border-bottom-color: #bdd6b5;
    border-right-color: #bdd6b5;
    button.yay:hover,
    .button.yay:hover {
    background: #189100;
    color: #fff;
    border-color: #189100;
    border-bottom-color: #105f00 !important;
    border-right-color: #105f00;
    button.yay:active,
    .button.yay:active {
    background: #067000;
    border-color: #067000;
    border-left-color: #003d00;
    border-top-color: #003d00;
    border-bottom-color: #067000 !important;
    button[disabled="disabled"],
    button.disabled {
    background: #f0f0f0;
    border-color: #f0f0f0 !important;
    color: #999;
    button[disabled="disabled"]:hover,
    button.disabled:hover {
    background: #f0f0f0;
    border-color: #f0f0f0 !important;
    color: #999;
    cursor: default;
    button img,
    .button img {
    margin: 0 6px -3px -4px;
    button.lite img,
    .button.lite img {
    margin: 0 -1px -3px 0;
    /* @end */
    /* @group Options */
    .more_options_link {
    font-weight: bold;
    color: #999;
    border-bottom: 1px solid #ddd;
    display: block;
    text-decoration: none !important;
    .more_options_link:hover {
    color: #666;
    border-bottom-color: #aaa;
    .more_options {
    background: #f9f9f9;
    padding: 2% 0 0 2%;
    .more_options p {
    width: 48%;
    margin: 0 2% 0 0;
    min-height: 5.5em;
    _height: 5.5em;
    float: left;
    .more_options p input.text {
    width: 96.5%;
    margin: 0;
    /* @end */
    /* @group Page Reordering */
    ul.sort_pages,
    ul.sort_pages ul {
    padding: 0;
    margin: 0 0 0 2em;
    ul.sort_pages li {
    list-style: square;
    ul.sort_pages li a:link,
    ul.sort_pages li a:visited {
    text-decoration: none !important;
    ul.sort_pages input {
    font-size: 1em;
    margin: .25em .25em .25em 0;
    ul.sort_pages .sort-placeholder {
    border: 1px dashed #777;
    display: list-item !important;
    margin-bottom: .5em;
    height: 1.8em;
    ul.sort_pages .sort-hover {
    border: 1px dashed #777 !important;
    /* @end */
    /* @group Helpers & General */
    .breakword {
    word-wrap: break-word !important;
    div.controls.right {
    margin-top: -2px;
    div.controls h4 {
    display: inline;
    div.controls button {
    position: relative;
    top: -2px;
    right: -1px;
    margin: 0 0 0 .5em;
    hr {
    border: 0;
    border-top: 1px solid #ddd;
    #content ul li {
    list-style: square;
    .box {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 1em;
    margin: 0 0 1em;
    .box h1 {
    font-size: 1.25em !important;
    margin: 0 !important;
    .box h1 .sub {
    font-weight: normal;
    font-size: .75em;
    .box h1 span.right {
    font-size: .75em;
    color: #666;
    .box h1 span.right a:link,
    .box h1 span.right a:visited {
    margin-left: 1em;
    text-decoration: none;
    .box h1 span.right a img {
    margin-bottom: -3px;
    .edit_link:hover {
    color: #333;
    .delete_link {
    color: #b30600;
    table tbody td .delete_link {
    margin: 0 -.4em 0 0;
    .delete_link:after {
    content: "!";
    opacity: 0;
    .delete_link:hover {
    color: #f00;
    .delete_link:hover:after {
    color: #f00;
    opacity: 1;
    a.emblem {
    border: none;
    a.emblem img {
    margin-bottom: -2px;
    .pad {
    padding: .75em;
    .margin-right {
    margin-right: 1em;
    .margin-left {
    margin-left: 1em;
    .detail .button.right {
    margin-top: 2.25em;
    .detail h3 {
    margin-bottom: .5em !important;
    .detail.inline {
    position: relative;
    bottom: -.75em;
    .wide {
    width: 100%;
    .clear {
    clear: both;
    .left {
    float: left !important;
    .right {
    float: right !important;
    .center {
    margin: 0 auto;
    text-align: center;
    .inline {
    display: inline;
    .column {
    margin: 0 5em;
    br#after_options {
    display: none;
    .js_enabled {
    display: none;
    .update_chyrp { margin-left: 35%; }
    /* @end */
    And if I am going to these files the Browser downloads it directly. Not showing in the Browser:
    http://192.168.xxx.xxx/chyrp/themes/firecrest/stylesheets/print.css
    http://192.168.xxx.xxx/chyrp/themes/firecrest/stylesheets/screen.css
    print.css
    * { background: #fff; }
    body { font-family: georgia, times, serif; color: black; }
    blockquote { font-style: italic; color: black; }
    a:link, a:visited { border-bottom-width: 1px; border-bottom-style: solid; }
    #sidebar { display: none; }
    screen.css
    body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td { margin: 0; padding: 0; }
    table { border-collapse: collapse; border-spacing: 0; }
    fieldset,img { border: 0; }
    address,caption,cite,code,dfn,em,strong,th,var { font-style: normal; font-weight: normal; }
    li { list-style: none; }
    caption,th { text-align: left; }
    h1,h2,h3,h4,h5,h6 { font-size: 100%; font-weight: normal; }
    abbr,acronym { border: 0; font-variant: normal; }
    input,textarea,select { font-family: inherit; font-size: inherit; font-weight: inherit; }
    a { text-decoration: none; color: inherit; }
    html {
    height: 100%;
    font-size: 62.5%;
    body {
    background-color: #eff3f5;
    color: #45555d;
    font: normal 1.1em/1.8em "Droid Serif", Georgia, serif;
    margin: 0;
    height: 100%;
    word-spacing: 1px;
    /* Main Colors */
    a:link { color: #8699a3; border-bottom: 1px solid }
    a:hover { color #45555d; }
    pre {
    font-size: 10px;
    code {
    font-family: monospace;
    pre code {
    display: block;
    background: #111;
    color: #fff;
    padding: .5em .75em .35em;
    margin-bottom: 1em;
    em { font-style: italic; }
    strong { font-weight: bold; }
    a:link,
    a:visited {
    color: #8699a3;
    border-bottom: 1px dotted;
    -webkit-transition: color .5s;
    -moz-transition: color .5s;
    a:hover {
    border: none;
    -webkit-transition: color .5s;
    -moz-transition: color .5s;
    h1, h2 { letter-spacing: -.01em; }
    h1 { /* displayed at 28px */
    color: #45555d;
    font: bold 2.4em "Droid Serif", Georgia, serif;
    margin-bottom: .3em
    h2 { /* displayed at 26px */
    color: #45555d;
    font: normal 2.2em "Droid Serif", Georgia, serif;
    margin-bottom: .4em;
    h3 { /* displayed at 18px */
    font: normal 1.5em "Droid Serif", Georgia, serif;
    margin-bottom: .5em;
    h4 { /* displayed at 15px */
    font-size: 1.25em;
    font-weight: normal;
    margin-bottom: .9em;
    h5 { /* displayed at 12px */
    font-size: 1em;
    font-weight: normal;
    margin-bottom: 1em;
    h6 {
    font-size: .8em;
    font-weight: normal;
    margin-bottom: 1.25em;
    ul { margin: 0 0 0 1.75em; }
    ul li { list-style-type: disc; }
    ol {
    padding-left: 2em;
    margin-bottom: 1em;
    ol li { list-style: decimal; }
    hr {
    border: 0;
    border-top: 1px solid #ddd;
    label {
    color: #8699a3;
    display: block;
    font: normal 1em "Droid Serif", Georgia, serif;
    padding: 0 0 0.5em 0;
    input:focus { outline: none; }
    input[type="text"],
    input[type="password"],
    textarea {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    font-family: 'Monaco', Courier, monospace;
    margin-bottom: 1.5em;
    padding: .3em .4em;
    input[type="file"] {
    margin-bottom: 1.5em;
    input[type="text"],
    input[type="password"] {
    width: 20em;
    textarea.wide {
    width: 470px;
    input.big {
    font-size: 1.5em;
    div#controls {
    background-color: #45555D;
    border-bottom: .1em solid #d0dde4;
    padding: .2em 0 .3em;
    width: 100%;
    font-size: 1.2em;
    div#controls ul {
    margin: 0 auto;
    padding: .4em;
    width: 750px;
    div#controls ul li {
    background: none;
    display: inline;
    font-weight: normal;
    margin: 0;
    padding: 0;
    div#controls ul li a:link:first-child {
    padding-left: 0;
    div#controls ul li a:link,
    div#controls ul li a:visited {
    color: #E4EBEF;
    border: none;
    padding: .1em .2em;
    margin-right: 10px;
    div#controls ul li a:hover {
    color: #c8d0d5;
    div#controls ul li.close a:link,
    div#controls ul li.close a:visited {
    color: #ff6039;
    div#controls ul li.close a:hover {
    color: #e35533;
    /* Start Header Styling */
    div#header {
    margin: 0 0 3em;
    padding: 10px 0px 15px;
    width: 100%;
    border-bottom: 2px solid #e4ebef;
    div#header #search_box {
    float: right;
    padding-top: 5px;
    div#header #search_box input#search {
    background-color: #fff;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    font: 12px "Droid Serif", Georgia, serif;
    border-radius: 30px;
    border: 5px solid #e4ebef;
    margin: -5px auto 0;
    width: 178px;
    padding: .4em .7em;
    display: block;
    div#header .header_box {
    margin: auto;
    width: 100%;
    font-size: 1.2em;
    div#header h1 {
    font-size: 2em;
    padding-top: 5px;
    div#header h1 a:link,
    div#header h1 a:visited {
    margin-top: 5px;
    margin-bottom: .2em;
    font-weight: normal;
    text-transform: uppercase;
    color: #8699a3;
    border: none;
    div#header h1 a:hover {
    color: #45555d;
    text-decoration: none;
    border: none;
    div#header span.description {
    font-size: 12px;
    font-weight: normal;
    font-style: italic;
    color: #8699a3;
    position: relative;
    top: -4px;
    /* Finish Header Styling */
    div#container {
    width: 750px;
    margin: 2em auto;
    padding: 0 0 1em 0;
    div#wrapper {
    width: 750px;
    margin: 2em auto;
    padding: 0 0 1em 0;
    font-size: 1.09em;
    div#content {
    width: 520px;
    float: left;
    div#sidebar {
    float: right;
    margin-left: 30px;
    width: 200px;
    border-bottom: 1px solid #d0dde4;
    color: #8699a3;
    font-size: 0.91em;
    -moz-border-radius-bottomleft: 3px;
    -moz-border-radius-bottomright: 3px;
    border-radius: 0px 0px 3px 3px;
    div#sidebar a:link,
    div#sidebar a:visited {
    color: #8699a3;
    div#sidebar a:hover {
    color: #45555d;
    text-decoration: none;
    div#sidebar h5 {
    color: #45555d;
    font-weight: normal;
    margin: 0 0 .2em 0;
    font-size: 1em;
    div#sidebar ul, div#sidebar ul li {
    list-style: none;
    margin: 0;
    padding: 0;
    div#sidebar #user_links {
    margin-bottom: 10px;
    border-bottom: 1px solid #d0dde4;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: #fffdcc;
    float: left;
    width: 100%;
    div#sidebar #user_links ul {
    display: inline;
    div#sidebar #user_links li {
    position: relative;
    list-style: none;
    float: left;
    padding: 10px 24px;
    display: block;
    text-align: center;
    div#sidebar #user_links li a {
    text-transform: uppercase;
    color: #8699a3;
    float: left;
    border-bottom: 1px dotted;
    line-height: 14px;
    padding-top: 3px;
    div#sidebar #user_links li a:hover {
    background: none;
    border: none;
    color: #45555d;
    div#sidebar #user_links li:first-child {
    border-right: 1px solid #eee;
    div#sidebar #user_links .logout_link {
    div#sidebar #about_info {
    border-bottom: 1px solid #d0dde4;
    -webkit-border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-topright: 3px;
    border-radius: 3px 3px 0px 0px;
    background: #fff;
    float: left;
    width: 170px;
    padding: 15px;
    line-height: 1.6em;
    div#sidebar #about_info p img {
    float: left;
    margin: 0 10px 0px 0;
    border-bottom: 1px solid #d0dde4;
    div#sidebar #asides {
    background: #e4ebef;
    float: left;
    div#asides div {
    border-top: 1px solid #eff3f5;
    border-bottom: 1px solid #d0dde4;
    padding: 15px;
    width: 170px;
    div#asides div:first-child {
    border-top: none;
    div#asides div:last-child {
    border-bottom: none;
    div#sidebar ul li {
    color: #45555d;
    div.notice, div.message, div.warning, div.date {
    color: #45555d;
    font-weight: bold;
    margin: 0 0 1em 0;
    padding: .5em .8em;
    div.notice {
    background: url('../images/dots-green.gif') repeat top left;
    div.message {
    background: url('../images/dots-blue.gif') repeat top left;
    div.warning {
    background: url('../images/dots-red.gif') repeat top left;
    div.date {
    background: url('../images/dots-lightgrey.gif') repeat top left;
    cursor: default;
    div.notice .sub, div.message .sub, div.warning .sub {
    font-size: .9em;
    color: #8699a3;
    margin-left: .5em;
    div.post {
    margin: 0 0 2em;
    word-wrap: break-word;
    position: relative;
    height: 100%;
    border: 1px solid #d0dde4;
    -moz-border-radius-bottomleft: 3px;
    -moz-border-radius-bottomright: 3px;
    border-radius: 0px 0px 3px 3px;
    div.post .subpost {
    background: #fff;
    -moz-border-radius-bottomleft: 3px;
    -moz-border-radius-bottomright: 3px;
    border-radius: 0px 0px 3px 3px;
    border: 4px solid #f4f5f6;
    padding: 20px 20px 0px;
    font-size: 1em;
    /*div.post.quote .subpost {
    border: 4px solid rgba(0, 0, 0, .3);
    /* .post:before {
    border: 1px solid #d0dde4;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    -webkit-border-bottom-left-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-radius-bottomleft: 3px;
    -moz-border-radius-bottomright: 3px;
    border-radius: 0px 0px 3px 3px;
    z-index: 1;
    .post:after {
    content: '';
    position: absolute;
    width: 98.5%;
    height: 95%;
    border: 4px solid #f7f7f7;
    left: 1px;
    top: 1px;
    -moz-border-radius-bottomleft: 3px;
    -moz-border-radius-bottomright: 3px;
    border-radius: 0px 0px 3px 3px;
    z-index: 1;
    div.post .feather_type {
    position: relative;
    margin-left: -47px;
    top: 1.66em;
    div.post .feather_type_name {
    line-height: 19px;
    font-size: 0.83em;
    color: #8699a3;
    background: #fffdcc;
    text-align: center;
    text-transform: uppercase;
    padding: 4px 3px;
    display: block;
    float: left;
    width: 40px;
    -webkit-border-top-left-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-bottomright: 3px;
    border-radius: 3px 0px 0px 3px;
    div.post .feather_type span.shadow {
    background: url(../images/post-tag-shadow.png) top left no-repeat;
    position: absolute;
    top: 27px;
    left: 0;
    width: 40px;
    height: 4px;
    display: block;
    div.post .post_shadow {
    display: block;
    float: right;
    margin-right: 1px;
    width: 516px;
    height: 6px;
    background: url(../images/post-shadow.png) 0px 0px no-repeat;
    div.post a:link,
    div.post a:visited {
    /* color: #3f5161;*/
    color: #45555d;
    div.post h2.title, div.page h2.title {
    padding: .1em 0 .2em 0;
    margin: 0;
    div.page h2.title {
    margin: -4px -20px 20px;
    div.post.text h2.title, div.page h2.title {
    background: url('../images/title-ptn.png') repeat left top;
    margin: -5px -20px 20px;
    padding: 0px 20px;
    font-size: 2.16em;
    div.post h2.title a:link,
    div.post h2.title a:visited {
    color: #45555d;
    font-style: normal;
    font-weight: normal;
    border: none;
    div.post h2.title a:hover {
    color: #ff6039;
    div.post .pinned_text {
    content: "!";
    float: left;
    font-size: 1.5em;
    font-weight: bold;
    margin: -1.5em 0 0 -2em;
    color: #e35533;
    div.post .private_text {
    float: left;
    font-size: .8em;
    font-weight: bold;
    margin: .3em 0 0 -5em;
    color: #e35533;
    div.post .scheduled_text {
    float: left;
    font-size: .8em;
    font-weight: bold;
    margin: .3em 0 0 -7em;
    color: #e35533;
    div.post p,
    div.page p {
    padding: 0 0 1em;
    div.post li,
    div.page li { }
    div.post li p,
    div.page li p {
    font-size: 1em;
    div.post pre,
    div.page pre {
    padding: 0 0 1.5em;
    div.post blockquote {
    padding: .5em .8em;
    background: #f9f9f9;
    border: .1em solid #eee;
    color: #45555d;
    margin: 0 0 1em 0;
    div.post blockquote p {
    padding: 0;
    div.post .post_meta {
    font-size: 0.91em;
    color: #8699a3;
    div.post .post_meta a:link, div.post .post_meta a:visited {
    color: #8699a3;
    div.post .post_meta a:hover {
    color: #45555d;
    border: none;
    ::selection {
    background: #ff6039;
    color: #fff;
    div.post .post_meta .info {
    margin: 20px -20px 0px;
    padding: 3px 20px;
    background-color: #f4f5f6;
    float: left;
    width: 470px;
    div.post .post_meta .info li {
    display: inline;
    padding: 7px 10px 7px 25px;
    border-right: 1px solid #fefefe;
    div.post .post_meta .info li.date {
    padding-left: 20px;
    div.post .post_meta .info li:last-child {
    border: none;
    .post_meta .info .has_icon { position: relative; padding-left: 20px; }
    .post_meta .has_icon .icon {
    width: 15px; height: 15px;
    background-image: url("../images/icons.png");
    position: absolute;
    left: 5px; top: 6px;
    z-index: 1;
    .post_meta .icon_posted .icon { background-position: 0px 0px; left: 0; }
    .post_meta .icon_comment .icon { background-position: -15px 0px; }
    .post_meta .icon_like .icon { background-position: -30px 0px; }
    .post_meta .icon_category .icon { background-position: -60px 0px; }
    .post_meta .icon_permalink .icon{ background-position: -80px -15px; width: 8px; left: 10px; top: 5px; }
    .post_meta .icon_tags .icon { background-position: -45px 0px; top: 3px; left: 0; }
    .post_meta a { border: none; }
    .post_meta .permalink {
    position: relative;
    overflow: hidden;
    margin: 13px -20px 15px 0px;
    padding: 3px 20px 3px 25px;
    float: right;
    background: #f4f5f6;
    .post_meta .tags {
    position: relative;
    overflow: hidden;
    margin: 15px 0;
    padding: 0px 0px 0px 20px;
    float: left;
    .post_meta .tags a {
    font-family: "Droid Serif", Georgia, serif;
    font-size: 0.83em;
    line-height: 1;
    display: inline;
    padding: 3px 6px 4px;
    background: #f4f5f6;
    -webkit-transition: background .3s;
    -moz-transition: background .3s;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #8699a3;
    font-style: normal;
    .post_meta .tags a:hover {
    -webkit-transition: background .3s;
    -moz-transition: background .3s;
    color: #8699a3!important;
    border: none;
    background: #E4EBEF;
    .post_meta .author_avatar {
    float: left;
    display: inline;
    margin-right: 10px;
    position: relative;
    .post_meta .author_avatar img { display: block; }
    #content .page_nav { margin-top: 2em; text-align: center; }
    #content .page_nav li { padding: 5px 0 7px; float: left; display: inline; margin-right: 20px; }
    #content .page_nav .icon { background-color: #999 !important; }
    #content .page_nav .icon_prev .icon { background-position: -310px -111px; }
    #content .page_nav .icon_next .icon { background-position: -330px -111px; left: auto; right: 0; }
    #content .page_nav .icon_next { padding-left: 0; padding-right: 20px; }
    #content .page_nav li:hover .icon { background-color: #666 !important; }
    .post_meta li.facebook { padding-top: 7px; position: relative; overflow: hidden; }
    .post_meta li.facebook iframe { height: 21px; float: left; display: inline; zoom: 1; }
    .post_meta li.facebook iframe.twitter-share-button { margin-right: 7px; }
    div.post span.controls,
    div.page span.controls {
    float: right;
    font-style: normal;
    div.post ul {
    margin-bottom: 1em;
    div.post.quote blockquote {
    border: 0;
    color: #45555d;
    font: italic 1.7em/1.25em "Droid Serif", Georgia, serif;
    margin: -20px 0 10px -20px;
    padding: 50px 20px;
    width: 470px;
    text-align: center;
    background-color: rgba(254, 252, 204, 0.7);
    position: relative;
    div.post.quote blockquote:before {
    content: '“';
    height: 0;
    top: 40px;
    left: -15px;
    font-size: 7em;
    position: absolute;
    color: rgba(69, 84, 93, 0.05);
    div.post.quote blockquote:after {
    content: '”';
    height: 0px;
    bottom: -2px;
    position: absolute;
    right: 2px;
    font-size: 7em;
    color: rgba(69, 84, 93, 0.05);
    div.post.quote .source {
    color: #45555d;
    display: block;
    div.post.link h2 a:link,
    div.post.link h2 a:visited {
    color: #3f5161;
    font-size: 1em;
    margin: 0 0 -.5em 0;
    padding: 0;
    text-decoration: underline;
    div.post.link h2 a:hover {
    color: #354451;
    div.post.link p {
    color: #45555d;
    div.post.chat p {
    display: inline;
    div.post.chat ul {
    font-family: "monaco", monospace;
    font-size: .9em;
    margin: 0 1em 1em 0;
    padding: 0;
    color: #535353;
    div.post.chat ul li {
    background: none;
    list-style-type: none;
    padding: 0;
    div.post.chat li .label {
    color: #2D3879;
    div.post.chat li.me .label {
    color: #AB2F26;
    div.post.photo img, div.post.text img {
    max-width: 510px;
    margin: -20px 0px 20px -20px;
    div.post a img { border: none; vertical-align: top; }
    div.post.photo p,
    div.post.audio p,
    div.post.video p {
    margin: .4em 0;
    div.post.video iframe, div.post.video embed {
    max-width: 510px;
    margin: -20px 0px 20px -20px;
    div.page, div.archive {
    margin: 0 0 2em;
    word-wrap: break-word;
    position: relative;
    height: 100%;
    border: 1px solid #d0dde4;
    background: #fff;
    -moz-border-radius-bottomleft: 3px;
    -moz-border-radius-bottomright: 3px;
    border-radius: 0px 0px 3px 3px;
    padding: 20px;
    div.page .page_shadow, div.archive .page_shadow {
    display: block;
    width: 516px;
    height: 6px;
    background: url(../images/post-shadow.png) 0px 0px no-repeat;
    position: relative;
    top: 26px;
    right: 19px;
    div.page h2 {
    color: #45555d;
    font: normal 2.2em "Droid Serif", Georgia, serif;
    letter-spacing: -.01em;
    div.page h2.title {
    padding: .2em 0 .6em 0;
    div.page h2.title {
    background: url('../images/title-ptn.png') repeat left top;
    margin: -5px -20px 20px;
    padding: 5px 0 0 20px;
    div.page span.controls {
    float: right;
    /* Start Content Control Links */
    a.comment_delete_link,
    a.comment_edit_link,
    a.comment_replyto_link,
    a.delete_link,
    a.edit_link,
    a.next_page,
    a.prev_page,
    a.next_post,
    a.prev_post,
    a.cancel,
    a.logout {
    font-weight: normal;
    font-size: 10px;
    padding: 1px 2px;
    a.comment_delete_link,
    a.comment_edit_link,
    a.comment_replyto_link {
    float: right;
    margin: 0 0 0 .5em;
    a.delete_link {
    color: #d8583e !important;
    padding: 0;
    a.edit_link {
    color: #93ba52 !important;
    padding: 0;
    a.comment_replyto_link {
    a.next_page, a.next_page:visited,
    a.prev_page, a.prev_page:visited,
    a.next_post, a.next_post:visited,
    a.prev_post, a.prev_post:visited {
    -webkit-transition: background-color .3s;
    background-color: #e4ebef;
    color: #45555d;
    margin: 0 0 2em;
    padding: .6em .8em;
    border: none;
    a.next_page span.arrow, a.next_post span.arrow {
    background: url(../images/arrows.png) no-repeat right top;
    float: right;
    height: 9px;
    position: relative;
    width: 6px;
    margin-left: 5px;
    margin-top: 4px;
    a.prev_page span.arrow, a.prev_post span.arrow {
    background: url(../images/arrows.png) no-repeat left top;
    float: left;
    height: 9px;
    position: relative;
    width: 6px;
    margin-right: 5px;
    margin-top: 4px;
    a.next_page, a.next_post {
    -moz-border-radius-topright: 3px;
    -moz-border-radius-bottomright: 3px;
    -webkit-border-top-right-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    border-radius: 0px 3px 3px 0px;
    position: relative;
    a.prev_page, a.prev_post {
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-bottomleft: 3px;
    -webkit-border-top-left-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    border-radius: 3px 0px 0px 3px;
    a.next_page:hover,
    a.prev_page:hover,
    a.next_post:hover,
    a.prev_post:hover {
    -webkit-transition: background-color .3s;
    background-color: #D0DDE4;
    a.cancel {
    color: #e35533;
    border: none;
    text-decoration: underline;
    a.logout {
    /* color: #5B7C99;*/
    color: #8699a3;
    border: none;
    float: right;
    a.logout:hover {
    color: #45555d;
    /* Finish Content Control Links */
    .inline_edit {
    color: #8699a3;
    padding: 1em;
    background: #D0DDE4;
    position: relative;
    .inline_edit input[type="text"],
    .inline_edit textarea {
    background-color: #f4f5f6;
    border: none;
    color: #45555d;
    padding: .4em;
    width: 490px;
    .inline_edit .more_options_link:link {
    color: #5B7C99;
    display: block;
    font-weight: bold;
    padding: 0 0 .3em 0;
    .inline_edit .more_options {
    background-color: #E4EBEF;
    padding: 1em;
    .inline_edit .more_options p {
    float: left;
    width: 50%;
    min-height: 5em;
    padding-bottom: .5em;
    margin: 0;
    .inline_edit .more_options p input[type="text"] {
    width: 90%;
    margin-bottom: 0;
    .inline_edit .more_options p .sub {
    font-size: .8em;
    color: #8699a3;
    .inline_edit .buttons {
    padding: .5em;
    background: #D0DDE4;
    color: #45555d;
    .inline_edit h2 {
    color: #83A650;
    .post_edit {
    margin-bottom: 2em;
    div.pagination {
    margin: 0 0 2em 0;
    .sub {
    font-size: .85em;
    color: #8699a3;
    font-weight: normal;
    button {
    background-color: #E4EBEF;
    border: 1px solid #D0DDE4;
    border-bottom: 1px solid #a0b5bf;
    border-right: 1px solid #a0b5bf;
    color: #45555d;
    font-size: 1em;
    font-weight: bold;
    padding: 5px 8px;
    button:hover {
    color: #5B7C99;
    cursor: pointer;
    p.lost_pass { margin: 0 0 1em 0; }
    span.pages {
    color: #8699a3;
    font-weight: bold;
    padding: 0 0.3em;
    span.who,
    span.waiting {
    background-color: #fffdcc;
    display: block;
    margin: 0 0 1em;
    padding: 4px 6px;
    .clear {
    clear: both;
    .right {
    float: right;
    .left {
    float: left;
    /* Comments Styling */
    div#comment_form {
    padding: 20px;
    h3.comments { margin: 1em 0; }
    ol.comments {
    list-style: none;
    margin-bottom: 1em;
    padding: 0;
    word-wrap: break-word;
    ol.comments li {
    list-style: none;
    margin-bottom: 1.5em;
    width: auto;
    ol.comments li blockquote {
    background: #E4EBEF;
    color: #45555d;
    margin: 0;
    padding: 1em 1em 0;
    ol.comments li blockquote p {
    padding: 0 0 1em;
    ol.comments li blockquote a:link,
    ol.comments li blockquote a:visited {
    color: #aaa;
    ol.comments li blockquote blockquote {
    padding: 0 1em;
    color: #aaa;
    ol.comments li cite {
    background: #E4EBEF;
    color: #8699a3;
    display: block;
    font-style: normal;
    margin: 0;
    padding: .4em 1.3em;
    font-size: 0.91em;
    ol.comments li cite a:link,
    ol.comments li cite a:visited {
    color: #45555d;
    border: none;
    ol.comments li cite a.permalink:link,
    ol.comments li cite a.permalink:visited {
    color: #8699a3;
    border-bottom: 1px dotted;
    ol.comments li cite a:hover {
    color: #45555d!important;
    border: none!important;
    ol.comments li ul,
    ol.comments li ol {
    margin: 0;
    padding: 0 0 1em 1.5em;
    ol.comments li ul li,
    ol.comments li ol li {
    margin: 0;
    padding: 0;
    ol.comments li ol li {
    list-style-type: decimal;
    ol.comments li.child{
    margin-left:25px;
    span.comment_author a {
    color: #ff6039!important;
    span.label { color: #8699a3; }
    #add_comment { margin-top: 3em; border-top: 4px solid #D0DDE4; padding-top: 1em; }
    /* Miscellaneous */
    /* Emoticons module. */
    img.smiley {
    margin: 0 0 -.3em;
    /* Tags module. */
    .tag {
    font-family: "Droid Serif", Georgia, serif;
    .tags_select {
    display: inline-block;
    margin-top: .5em;
    .tags_select a {
    padding: .1em .4em;
    border: .1em solid #DDDDA8;
    background: #fffdcc;
    text-decoration: none;
    border-top-width: 0;
    border-left-width: 0;
    color: #45555d;
    .tags_select a.tag_added {
    background: #D0DDE4;
    border-top-width: .1em;
    border-bottom: 0;
    border-left-width: .1em;
    border-right: 0;
    border-color: #8699a3;
    /*** FOOTER ***/
    div#footer {
    background: #E4EBEF;
    clear: both;
    color: #8699a3;
    margin: 8em 0 3em;
    padding: .4em .9em;
    border-top: 1px solid #D0DDE4;
    width: 500px;
    -webkit-border-bottom-right-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-bottomleft: 3px;
    -moz-border-radius-bottomright: 3px;
    border-radius: 0px 0px 3px 3px;
    font-size: 0.91em;
    div#footer a:link, div#footer a:visited { color: #8699A3; }
    div#footer a:hover { color: #45555d; }
    div#footer a.atom {
    border: none;
    margin-top: -2em;
    padding: .3em .6em;
    float: right;
    div#footer a.atom:hover { background-color: #fffdcc; }
    /*** DEBUGGER ***/
    #debug {
    background: #ffffdd;
    font-family: normal 1.1em/1.5em 'Helvetica Neue', Helvetica, Arial, Verdana, sans-serif;
    color: #666;
    padding: .4em .75em .5em .75em;
    border-top: .1em solid #ddd;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    max-height: 33%;
    overflow-y: auto;
    overflow-x: hidden;
    #debug h5 {
    margin: 0;
    font-size: 1.1em;
    color: #a3a39a;
    #debug h5 .sub {
    color: #b3b3aa;
    #debug ol.queries li {
    margin: 0 0 1em;
    #debug pre {
    background: #fff;
    border: 1px solid #ddd;
    padding: 0 .5em;
    word-wrap: break-word;
    #debug .toggle {
    font-weight: bold;
    color: #666;
    float: right;
    FOR FLATPRESS:
    These following files are also shown as plain text in the browser itself. So NO downloading:
    http://192.168.xxx.xxx/flatpress/admin/res/admin.css
    http://192.168.xxx.xxx/flatpress/fp-interface/themes/leggero/flatmaas-rev/res/admin.css
    http://192.168.xxx.xxx/flatpress/fp-interface/themes/leggero/flatmaas-rev/res/column.css
    http://192.168.xxx.xxx/flatpress/fp-interface/themes/leggero/flatmaas-rev/res/common.css
    http://192.168.xxx.xxx/flatpress/fp-interface/themes/leggero/flatmaas-rev/res/globals.css
    http://192.168.xxx.xxx/flatpress/fp-interface/themes/leggero/flatmaas-rev/res/style.css

  • Custom graphics in java.awt.ScrollPane

    Hi all,
    I have to draw a custom created image in a scroll pane. As the image is very large I want to display it in a scroll pane. As parts of the image may change within seconds, and drawing the whole image is very time consuming (several seconds) I want to draw only the part of the image that is currently visible to the user.
    My idea: creating a new class that extends from java.awt.ScrollPane, overwrite the paint(Graphics) method and do the drawings inside. Unfortunately, it does not work. The background of the scoll pane is blue, but it does not show the red box (the current viewport is not shown in red).
    Below please find the source code that I am using:
    package graphics;
    import java.awt.Color;
    import java.awt.Graphics;
    import java.awt.ScrollPane;
    import java.awt.event.AdjustmentEvent;
    public class CMyComponent extends ScrollPane {
         /** <p>Listener to force a component to repaint when a scroll bar changes its
          * position.</p>
         private final class ScrollBarAdjustmentListener implements java.awt.event.AdjustmentListener {
              /** <p>The component to force to repaint.</p> */
              private final Component m_Target;
              /** <p>Default constructor.</p>
               * @param Target The component to force to repaint.
              private ScrollBarAdjustmentListener(Component Target) { m_Target = Target; }
              /** <p>Forces to component to repaint upon adjustment of the scroll bar.</p>
               *  @see java.awt.event.AdjustmentListener#adjustmentValueChanged(java.awt.event.AdjustmentEvent)
              public void adjustmentValueChanged(AdjustmentEvent e) { m_Target.paint(m_Target.getGraphics()); }
         public CMyComponent() {
              // Ensure that the component repaints upon changing of the scroll bars
              ScrollBarAdjustmentListener sbal = new ScrollBarAdjustmentListener(this);
              getHAdjustable().addAdjustmentListener(sbal);
              getVAdjustable().addAdjustmentListener(sbal);
         public void paint(Graphics g) {
              setBackground(Color.BLUE);
              g.setColor(Color.RED);
              g.fillRect(getScrollPosition().x, getScrollPosition().y, getViewportSize().width, getViewportSize().height);
         public final static void main(String[] args) {
              java.awt.Frame f = new java.awt.Frame();
              f.add(new CMyComponent());
              f.pack();
              f.setVisible(true);
    }

    Dear all,
    I used the last days and tried several things. I think now I have a quite good working solution (just one bug remains) and it is very performant. To give others a chance to see what I have done I post the source code of the main class (a canvas drawing and implementing scrolling) here. As soon as the sourceforge project is accepted, I will publish the whole sources at there. Enjoy. And if you have some idea for my last bug in getElementAtPixel(Point), then please tell me.
    package internetrail.graphics.hexgrid;
    import java.awt.Canvas;
    import java.awt.Color;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.Image;
    import java.awt.Point;
    import java.awt.Polygon;
    import java.awt.event.ComponentEvent;
    import java.awt.event.ComponentListener;
    import java.awt.geom.Area;
    import java.awt.image.BufferedImage;
    import java.util.WeakHashMap;
    import java.util.Map;
    /** <p>Hex grid view.</p>
    * <p>Visualizes a {@link IHexGridModel}.</p>
    * @version 0.1, 03.06.2006
    * @author Bjoern Wuest, Germany
    public final class CHexGridView extends Canvas implements ComponentListener, IHexGridElementListener {
         /** <p>Serial version unique identifier.</p> */
         private static final long serialVersionUID = -965902826101261530L;
         /** <p>Instance-constant parameter for the width of a hex grid element.</p> */
         public final int CONST_Width;
         /** <p>Instance-constant parameter for 1/4 of the width of a hex grid element.</p> */
         public final int CONST_Width1fourth;
         /** <p>Instance-constant parameter for 3/4 of the width of a hex grid element.</p> */
         public final int CONST_Width3fourth;
         /** <p>Instance-constant parameter for 1.5 times of the width of a hex grid element.</p> */
         public final int CONST_Width1dot5;
         /** <p>Instance-constant parameter for 4 times of the width of a hex grid element.</p> */
         public final int CONST_Widthquad;
         /** <p>Instance-constant parameter for the height of a hex grid element.</p> */
         public final int CONST_Height;
         /** <p>Instance-constant parameter for 1/2 of the height of a hex grid element.</p> */
         public final int CONST_Heighthalf;
         /** <p>Instance-constant parameter for the double height of a hex grid element.</p> */
         public final int CONST_Heightdouble;
         /** <p>The steepness of a side of the hex grid element (calculated for the upper left arc).</p> */
         public final double CONST_Steepness;
         /** <p>The model of this hex grid </p> */
         private final IHexGridModel m_Model;
         /** <p>A cache for already created images of the hex map.</p> */
         private final Map<Point, Image> m_Cache = new WeakHashMap<Point, Image>();
         /** <p>The graphical area to draw the selection ring around a hex element.</p> */
         private final Area m_SelectionRing;
         /** <p>The image of the selection ring around a hex element.</p> */
         private final BufferedImage m_SelectionRingImage;
         /** <p>The current position of the hex grid in pixels (top left visible corner).</p> */
         private Point m_ScrollPosition = new Point(0, 0);
         /** <p>Flag to define if a grid is shown ({@code true}) or not ({@code false}).</p> */
         private boolean m_ShowGrid = true;
         /** <p>Flag to define if the selected hex grid element should be highlighted ({@code true}) or not ({@code false}).</p> */
         private boolean m_ShowSelected = true;
         /** <p>The offset of hex grid elements shown on the screen, measured in hex grid elements.</p> */
         private Point m_CurrentOffset = new Point(0, 0);
         /** <p>The offset of the image shown on the screen, measured in pixels.</p> */
         private Point m_PixelOffset = new Point(0, 0);
         /** <p>The index of the currently selected hex grid element.</p> */
         private Point m_CurrentSelected = new Point(0, 0);
         /** <p>The width of a buffered pre-calculated image in pixel.</p> */
         private int m_ImageWidth;
         /** <p>The height of a buffered pre-calculated image in pixel.</p> */
         private int m_ImageHeight;
         /** <p>The maximum number of columns of hex grid elements to be shown at once on the screen.</p> */
         private int m_MaxColumn;
         /** <p>The maximum number of rows of hex grid elements to be shown at once on the screen.</p> */
         private int m_MaxRow;
         /** <p>Create a new hex grid view.</p>
          * <p>The hex grid view is bound to a {@link IHexGridModel} and registers at
          * that model to listen for {@link IHexGridElement} updates.</p>
          * @param Model The model backing this view.
         public CHexGridView(IHexGridModel Model) {
              // Set the model
              m_Model = Model;
              CONST_Width = m_Model.getElementsWidth();
              CONST_Height = m_Model.getElementsHeight();
              CONST_Width1fourth = CONST_Width/4;
              CONST_Width3fourth = CONST_Width*3/4;
              CONST_Width1dot5 = CONST_Width*3/2;
              CONST_Heighthalf = CONST_Height/2;
              CONST_Widthquad = CONST_Width*4;
              CONST_Heightdouble = CONST_Height*2;
              CONST_Steepness = (double)CONST_Heighthalf / CONST_Width1fourth;
              m_ImageWidth = getSize().width+CONST_Widthquad;
              m_ImageHeight = getSize().height+CONST_Heightdouble;
              m_MaxColumn = m_ImageWidth / CONST_Width3fourth;
              m_MaxRow = m_ImageHeight / CONST_Height;
              // Register this canvas for various notifications
              m_Model.addElementListener(this);
              addComponentListener(this);
              // Create the selection ring to highlight hex grid elements
              m_SelectionRing = new Area(new Polygon(new int[]{-1, CONST_Width1fourth-1, CONST_Width3fourth+1, CONST_Width+1, CONST_Width3fourth+1, CONST_Width1fourth-1}, new int[]{CONST_Heighthalf, -1, -1, CONST_Heighthalf, CONST_Height+1, CONST_Height+1}, 6));
              m_SelectionRing.subtract(new Area(new Polygon(new int[]{2, CONST_Width1fourth+2, CONST_Width3fourth-2, CONST_Width-2, CONST_Width3fourth-2, CONST_Width1fourth+2}, new int[]{CONST_Heighthalf, 2, 2, CONST_Heighthalf, CONST_Height-2, CONST_Height-2}, 6)));
              m_SelectionRingImage = new BufferedImage(CONST_Width, CONST_Height, BufferedImage.TYPE_INT_ARGB);
              Graphics2D g = m_SelectionRingImage.createGraphics();
              g.setColor(Color.WHITE);
              g.fill(m_SelectionRing);
         @Override public synchronized void paint(Graphics g2) {
              // Caculate the offset of indexes to show
              int offsetX = 2 * (m_ScrollPosition.x / CONST_Width1dot5) - 2;
              int offsetY = (int)(Math.ceil(m_ScrollPosition.y / CONST_Height) - 1);
              m_CurrentOffset = new Point(offsetX, offsetY);
              // Check if the image is in the cache
              Image drawing = m_Cache.get(m_CurrentOffset);
              if (drawing == null) {
                   // The image is not cached, so draw it
                   drawing = new BufferedImage(m_ImageWidth, m_ImageHeight, BufferedImage.TYPE_INT_ARGB);
                   Graphics2D g = ((BufferedImage)drawing).createGraphics();
                   // Draw background
                   g.setColor(Color.BLACK);
                   g.fillRect(0, 0, m_ImageWidth, m_ImageHeight);
                   // Draw the hex grid
                   for (int column = 0; column <= m_MaxColumn; column += 2) {
                        for (int row = 0; row <= m_MaxRow; row++) {
                             // Draw even column
                             IHexGridElement element = m_Model.getElementAt(offsetX + column, offsetY + row);
                             if (element != null) { g.drawImage(element.getImage(m_ShowGrid), (int)(column*(CONST_Width3fourth-0.5)), CONST_Height*row, null); }
                             // Draw odd column
                             element = m_Model.getElementAt(offsetX + column+1, offsetY + row);
                             if (element!= null) { g.drawImage(element.getImage(m_ShowGrid), (int)(column*(CONST_Width3fourth-0.5)+CONST_Width3fourth), CONST_Heighthalf*(row*2+1), null); }
                   // Put the image into the cache
                   m_Cache.put(m_CurrentOffset, drawing);
              // Calculate the position of the image to show
              offsetX = CONST_Width1dot5 + (m_ScrollPosition.x % CONST_Width1dot5);
              offsetY = CONST_Height + (m_ScrollPosition.y % CONST_Height);
              m_PixelOffset = new Point(offsetX, offsetY);
              g2.drawImage(drawing, -offsetX, -offsetY, null);
              // If the selected element should he highlighted, then do so
              if (m_ShowSelected) {
                   // Check if the selected element is on screen
                   if (isElementOnScreen(m_CurrentSelected)) {
                        // Correct vertical offset for odd columns
                        if ((m_CurrentSelected.x % 2 == 1)) { offsetY -= CONST_Heighthalf; }
                        // Draw the selection circle
                        g2.drawImage(m_SelectionRingImage, (m_CurrentSelected.x - m_CurrentOffset.x) * CONST_Width3fourth - offsetX - ((m_CurrentSelected.x + 1) / 2), (m_CurrentSelected.y - m_CurrentOffset.y) * CONST_Height - offsetY, null);
         @Override public synchronized void update(Graphics g) { paint(g); }
         public synchronized void componentResized(ComponentEvent e) {
              // Upon resizing of the component, adjust several pre-calculated values
              m_ImageWidth = getSize().width+CONST_Widthquad;
              m_ImageHeight = getSize().height+CONST_Heightdouble;
              m_MaxColumn = m_ImageWidth / CONST_Width3fourth;
              m_MaxRow = m_ImageHeight / CONST_Height;
              // And flush the cache
              m_Cache.clear();
         public void componentMoved(ComponentEvent e) { /* do nothing */ }
         public void componentShown(ComponentEvent e) { /* do nothing */ }
         public void componentHidden(ComponentEvent e) { /* do nothing */ }
         public synchronized void elementUpdated(IHexGridElement Element) {
              // Clear cache where the element may be contained at
              for (Point p : m_Cache.keySet()) { if (isElementInScope(Element.getIndex(), p, new Point(p.x + m_MaxColumn, p.y + m_MaxRow))) { m_Cache.remove(p); } }
              // Update the currently shown image if the update element is shown, too
              if (isElementOnScreen(Element.getIndex())) { repaint(); }
         /** <p>Returns the model visualized by this grid view.</p>
          * @return The model visualized by this grid view.
         public IHexGridModel getModel() { return m_Model; }
         /** <p>Returns the current selected hex grid element.</p>
          * @return The current selected hex grid element.
         public IHexGridElement getSelected() { return m_Model.getElementAt(m_CurrentSelected.x, m_CurrentSelected.y); }
         /** <p>Sets the current selected hex grid element by its index.</p>
          * <p>If the selected hex grid element should be highlighted and is currently
          * shown on the screen, then this method will {@link #repaint() redraw} this
          * component automatically.</p>
          * @param Index The index of the hex grid element to become the selected one.
          * @throws IllegalArgumentException If the index refers to a non-existing hex
          * grid element.
         public synchronized void setSelected(Point Index) throws IllegalArgumentException {
              // Check that the index is valid
              if ((Index.x < 0) || (Index.y < 0) || (Index.x > m_Model.getXElements()) || (Index.y > m_Model.getYElements())) { throw new IllegalArgumentException("There is no hex grid element with such index."); }
              m_CurrentSelected = Index;
              // If the element is on screen and should be highlighted, then repaint
              if (m_ShowSelected && isElementOnScreen(m_CurrentSelected)) { repaint(); }
         /** <p>Moves the visible elements to the left by the number of pixels.</p>
          * <p>To move the visible elements to the left by one hex grid element, pass
          * {@link #CONST_Width3fourth} as the parameter. The component will
          * automatically {@link #repaint()}.</p>
          * @param Pixels The number of pixels to move to the left.
          * @return The number of pixels moved to the left. This is always between 0
          * and {@code abs(Pixels)}.
         public synchronized int moveLeft(int Pixels) {
              int delta = m_ScrollPosition.x - Math.max(0, m_ScrollPosition.x - Math.max(0, Pixels));
              if (delta != 0) {
                   m_ScrollPosition.x -= delta;
                   repaint();
              return delta;
         /** <p>Moves the visible elements up by the number of pixels.</p>
          * <p>To move the visible elements up by one hex grid element, pass {@link
          * #CONST_Height} as the parameter. The component will automatically {@link
          * #repaint()}.</p>
          * @param Pixels The number of pixels to move up.
          * @return The number of pixels moved up. This is always between 0 and {@code
          * abs(Pixels)}.
         public synchronized int moveUp(int Pixels) {
              int delta = m_ScrollPosition.y - Math.max(0, m_ScrollPosition.y - Math.max(0, Pixels));
              if (delta != 0) {
                   m_ScrollPosition.y -= delta;
                   repaint();
              return delta;
         /** <p>Moves the visible elements to the right by the number of pixels.</p>
          * <p>To move the visible elements to the right by one hex grid element, pass
          * {@link #CONST_Width3fourth} as the parameter. The component will
          * automatically {@link #repaint()}.</p>
          * @param Pixels The number of pixels to move to the right.
          * @return The number of pixels moved to the right. This is always between 0
          * and {@code abs(Pixels)}.
         public synchronized int moveRight(int Pixels) {
              int delta = Math.min(m_Model.getXElements() * CONST_Width3fourth + CONST_Width1fourth - getSize().width, m_ScrollPosition.x + Math.max(0, Pixels)) - m_ScrollPosition.x;
              if (delta != 0) {
                   m_ScrollPosition.x += delta;
                   repaint();
              return delta;
         /** <p>Moves the visible elements down by the number of pixels.</p>
          * <p>To move the visible elements down by one hex grid element, pass {@link
          * #CONST_Height} as the parameter. The component will automatically {@link
          * #repaint()}.</p>
          * @param Pixels The number of pixels to move down.
          * @return The number of pixels moved down. This is always between 0 and
          * {@code abs(Pixels)}.
         public synchronized int moveDown(int Pixels) {
              int delta = Math.min(m_Model.getYElements() * CONST_Height + CONST_Heighthalf - getSize().height, m_ScrollPosition.y + Math.max(0, Pixels)) - m_ScrollPosition.y;
              if (delta != 0) {
                   m_ScrollPosition.y += delta;
                   repaint();
              return delta;
         /** <p>Checks if the hex grid element of the given index is currently
          * displayed on the screen (even just one pixel).</p>
          * <p>The intention of this method is to check if a {@link #repaint()} is
          * necessary or not.</p>
          * @param ElementIndex The index of the element to check.
          * @return {@code true} if the hex grid element of the given index is
          * displayed on the screen, {@code false} if not.
         public synchronized boolean isElementOnScreen(Point ElementIndex) { return isElementInScope(ElementIndex, m_CurrentOffset, new Point(m_CurrentOffset.x + m_MaxColumn, m_CurrentOffset.y + m_MaxRow)); }
         /** <p>Checks if the hex grid element of the given index is within the given
          * indexes.</p>
          * <p>The intention of this method is to check if a {@link #repaint()} is
          * necessary or not.</p>
          * @param ElementIndex The index of the element to check.
          * @param ReferenceIndexLeftTop The left top index of the area to check.
          * @param ReferenceIndexRightBottom The right bottom index of the area to check.
          * @return {@code true} if the hex grid element of the given index is within
          * the given area, {@code false} if not.
         public synchronized boolean isElementInScope(Point ElementIndex, Point ReferenceIndexLeftTop, Point ReferenceIndexRightBottom) { if ((ElementIndex.x >= ReferenceIndexLeftTop.x) && (ElementIndex.x <= ReferenceIndexRightBottom.x) && (ElementIndex.y >= ReferenceIndexLeftTop.y) && (ElementIndex.y <= (ReferenceIndexRightBottom.y))) { return true; } else { return false; } }
         /** <p>Return the {@link IHexGridElement hex grid element} shown at the given
          * pixel on the screen.</p>
          * <p><b>Remark: There seems to be a bug in retrieving the proper element,
          * propably caused by rounding errors and unprecise pixel calculations.</p>
          * @param P The pixel on the screen.
          * @return The {@link IHexGridElement hex grid element} shown at the pixel.
         public synchronized IHexGridElement getElementAtPixel(Point P) {
              // @FIXME Here seems to be some bugs remaining
              int dummy = 0; // Variable for warning to indicate that there is something to do :)
              // Calculate the pixel on the image, not on the screen
              int px = P.x + m_PixelOffset.x;
              int py = P.y + m_PixelOffset.y;
              // Determine the x-index of the column (is maybe decreased by one)
              int x = px / CONST_Width3fourth + m_CurrentOffset.x;
              // If the column is odd, then shift the y-pixel by half element height
              if ((x % 2) == 1) { py -= CONST_Heighthalf; }
              // Determine the y-index of the row (is maybe decreased by one)
              int y = py / CONST_Height + m_CurrentOffset.y;
              // Normative coordinates to a single element
              px -= (x - m_CurrentOffset.x) * CONST_Width3fourth;
              py -= (y - m_CurrentOffset.y) * CONST_Height;
              // Check if the normative pixel is in the first quarter of a column
              if (px < CONST_Width1fourth) {
                   // Adjustments to the index may be necessary
                   if (py < CONST_Heighthalf) {
                        // We are in the upper half of a hex-element
                        double ty = CONST_Heighthalf - CONST_Steepness * px;
                        if (py < ty) { x--; }
                   } else {
                        // We are in the lower half of a hex-element
                        double ty = CONST_Heighthalf + CONST_Steepness * px;
                        if (py > ty) {
                             x--;
                             y++;
              return m_Model.getElementAt(x, y);
    }Ah, just to give you some idea: I use this component to visualize a hex grid map with more than 1 million grid elements. And it works, really fast, and requires less than 10 MByte of memory.

  • How to draw a point without double buffering?

    Hello all,
    I am drawing points as small red circles, but they are a bit ugly without double buffering. Am I able to draw the points to be nice? I mean not to draw them as just circles, but some special circle with light border that will looks much more nicer?
    Or what radius and position of the circle must be to be a nice small circle containing only 5 pixels? (upper, lower, right, left, middle)
    ps - they are ugly in the way of having a strange dot on the left side

    I use this method:
        private static final float POINT_RADIUS = 2f;
        private static final float POINT_DIAMETER = POINT_RADIUS * 2;
    private void drawPoint(float x, float y, Color c) {
            Ellipse2D point = new Ellipse2D.Float(x - POINT_RADIUS, -y
                    - POINT_RADIUS, POINT_DIAMETER, POINT_DIAMETER);
            graphics.setStroke(new BasicStroke(0.2f));
            graphics.fill(point);
    // and points looks like this:
       ***

  • AMD 5650/Intel switchable graphics setup configuration woes

    I was wondering if someone could help me with my POS HP DV7-4100 ATI Radeon 5650/Intel switchable graphics setup.  I'm so annoyed with this and don't know how to proceed but it looks like I'm not completing the configuration properly.
    I have tried seemingly everything so far: 
    Catalyst w/ Catalyst-utils
    Catalyst-hook
    Catalyst w & w/out utils-pxp
    Catalyst-total-pxp
    Anyway, loading catalyst without xorg.conf seems to get me the closest to a working setup but once I log into Cinnamon, I get a message saying that it has loaded in fallback mode and if I would like to try to restart cinnamon (nothing happens).
    This leads me to believe that this is a config issue.
    This is the dmesg without an xorg.conf file.
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.12.6-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.2 (GCC) ) #1 SMP PREEMPT Fri Dec 20 19:39:00 CET 2013
    [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a303086c-e564-4347-92f1-8ec5ecbdcf85 ro quiet
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009cfff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009d000-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000009b63efff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000009b63f000-0x000000009b6befff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000009b6bf000-0x000000009b7befff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000009b7bf000-0x000000009b7fefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x000000009b7ff000-0x000000009b7fffff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000009b800000-0x000000009fffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1b000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ffe80000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000001fbffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000001fc000000-0x00000001ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000200000000-0x000000025bffffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.6 present.
    [ 0.000000] DMI: Hewlett-Packard HP Pavilion dv7 Notebook PC/144B, BIOS F.29 11/07/2011
    [ 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 = 0x25c000 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-EFFFF write-through
    [ 0.000000] F0000-FFFFF write-combining
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F80000000 write-back
    [ 0.000000] 1 base 0FFE00000 mask FFFE00000 write-protect
    [ 0.000000] 2 base 080000000 mask FE0000000 write-back
    [ 0.000000] 3 base 09C000000 mask FFC000000 uncachable
    [ 0.000000] 4 base 09B800000 mask FFF800000 uncachable
    [ 0.000000] 5 base 100000000 mask F00000000 write-back
    [ 0.000000] 6 base 200000000 mask F80000000 write-back
    [ 0.000000] 7 base 25C000000 mask FFC000000 uncachable
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: last_pfn = 0x9b800 max_arch_pfn = 0x400000000
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
    [ 0.000000] 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 0x25be00000-0x25bffffff]
    [ 0.000000] [mem 0x25be00000-0x25bffffff] page 2M
    [ 0.000000] BRK [0x01b35000, 0x01b35fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x258000000-0x25bdfffff]
    [ 0.000000] [mem 0x258000000-0x25bdfffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x200000000-0x257ffffff]
    [ 0.000000] [mem 0x200000000-0x257ffffff] page 2M
    [ 0.000000] BRK [0x01b36000, 0x01b36fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x9b63efff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x9b5fffff] page 2M
    [ 0.000000] [mem 0x9b600000-0x9b63efff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x9b7ff000-0x9b7fffff]
    [ 0.000000] [mem 0x9b7ff000-0x9b7fffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x1fbffffff]
    [ 0.000000] [mem 0x100000000-0x1fbffffff] page 2M
    [ 0.000000] BRK [0x01b37000, 0x01b37fff] PGTABLE
    [ 0.000000] RAMDISK: [mem 0x37a28000-0x37d0bfff]
    [ 0.000000] ACPI: RSDP 00000000000fe020 00024 (v02 HPQOEM)
    [ 0.000000] ACPI: XSDT 000000009b7fe120 0007C (v01 HPQOEM SLIC-MPC 00000001 01000013)
    [ 0.000000] ACPI: FACP 000000009b7fc000 000F4 (v04 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
    [ 0.000000] ACPI: DSDT 000000009b7e9000 0F50F (v01 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
    [ 0.000000] ACPI: FACS 000000009b75e000 00040
    [ 0.000000] ACPI: ASF! 000000009b7fd000 000A5 (v32 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
    [ 0.000000] ACPI: HPET 000000009b7fb000 00038 (v01 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
    [ 0.000000] ACPI: APIC 000000009b7fa000 0008C (v02 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
    [ 0.000000] ACPI: MCFG 000000009b7f9000 0003C (v01 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
    [ 0.000000] ACPI: SLIC 000000009b7e8000 00176 (v01 HPQOEM SLIC-MPC 00000001 SLIC 000F4240)
    [ 0.000000] ACPI: BOOT 000000009b7e5000 00028 (v01 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
    [ 0.000000] ACPI: ASPT 000000009b7e2000 00034 (v04 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
    [ 0.000000] ACPI: WDAT 000000009b7e1000 00224 (v01 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
    [ 0.000000] ACPI: SSDT 000000009b7e0000 009F1 (v01 PmRef CpuPm 00003000 INTL 20051117)
    [ 0.000000] ACPI: SSDT 000000009b7de000 01B34 (v01 AmdRef AmdTabl 00001000 INTL 20051117)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000025bffffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x25bffffff]
    [ 0.000000] NODE_DATA [mem 0x25bff5000-0x25bff9fff]
    [ 0.000000] [ffffea0000000000-ffffea00097fffff] PMD -> [ffff880253600000-ffff88025b5fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x25bffffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0009cfff]
    [ 0.000000] node 0: [mem 0x00100000-0x9b63efff]
    [ 0.000000] node 0: [mem 0x9b7ff000-0x9b7fffff]
    [ 0.000000] node 0: [mem 0x100000000-0x1fbffffff]
    [ 0.000000] node 0: [mem 0x200000000-0x25bffffff]
    [ 0.000000] On node 0 totalpages: 2045404
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 21 pages reserved
    [ 0.000000] DMA zone: 3996 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 9881 pages used for memmap
    [ 0.000000] DMA32 zone: 632384 pages, LIFO batch:31
    [ 0.000000] Normal zone: 22272 pages used for memmap
    [ 0.000000] Normal zone: 1409024 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[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[0x04] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x05] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 8 CPUs, 4 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009d000-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 0x9b63f000-0x9b6befff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9b6bf000-0x9b7befff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9b7bf000-0x9b7fefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9b800000-0x9fffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xa0000000-0xefffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xf7ffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfeafffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfeb00000-0xfeb03fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfeb04000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-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-0xfed1afff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1b000-0xfed1ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffe7ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xffe80000-0xffffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x1fc000000-0x1ffffffff]
    [ 0.000000] e820: [mem 0xa0000000-0xefffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88025bc00000 s86464 r8192 d24128 u262144
    [ 0.000000] pcpu-alloc: s86464 r8192 d24128 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2013166
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a303086c-e564-4347-92f1-8ec5ecbdcf85 ro quiet
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 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: 7968736K/8181616K available (5124K kernel code, 807K rwdata, 1628K rodata, 1144K init, 1288K bss, 212880K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
    [ 0.000000] NR_IRQS:8448 nr_irqs:744 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 33554432 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.003333] tsc: Detected 2527.100 MHz processor
    [ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 5056.79 BogoMIPS (lpj=8423666)
    [ 0.000006] pid_max: default: 32768 minimum: 301
    [ 0.000033] Security Framework initialized
    [ 0.000044] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000045] Yama: becoming mindful.
    [ 0.000537] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.002402] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.003219] Mount-cache hash table entries: 256
    [ 0.003418] Initializing cgroup subsys memory
    [ 0.003430] Initializing cgroup subsys devices
    [ 0.003432] Initializing cgroup subsys freezer
    [ 0.003434] Initializing cgroup subsys net_cls
    [ 0.003435] Initializing cgroup subsys blkio
    [ 0.003456] CPU: Physical Processor ID: 0
    [ 0.003457] CPU: Processor Core ID: 0
    [ 0.003463] mce: CPU supports 9 MCE banks
    [ 0.003473] CPU0: Thermal monitoring enabled (TM1)
    [ 0.003483] Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
    tlb_flushall_shift: 6
    [ 0.003568] Freeing SMP alternatives memory: 20K (ffffffff819e9000 - ffffffff819ee000)
    [ 0.004537] ACPI: Core revision 20130725
    [ 0.013846] ACPI: All ACPI Tables successfully acquired
    [ 0.038849] ftrace: allocating 20318 entries in 80 pages
    [ 0.048808] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.081797] smpboot: CPU0: Intel(R) Core(TM) i5 CPU M 460 @ 2.53GHz (fam: 06, model: 25, stepping: 05)
    [ 0.187276] Performance Events: PEBS fmt1+, 16-deep LBR, Westmere events, Intel PMU driver.
    [ 0.187283] perf_event_intel: CPUID marked event: 'bus cycles' unavailable
    [ 0.187285] ... version: 3
    [ 0.187286] ... bit width: 48
    [ 0.187287] ... generic registers: 4
    [ 0.187288] ... value mask: 0000ffffffffffff
    [ 0.187288] ... max period: 000000007fffffff
    [ 0.187289] ... fixed-purpose events: 3
    [ 0.187290] ... event mask: 000000070000000f
    [ 0.660504] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.647139] smpboot: Booting Node 0, Processors # 1 # 2 # 3 OK
    [ 0.700394] Brought up 4 CPUs
    [ 0.700400] smpboot: Total of 4 processors activated (20224.16 BogoMIPS)
    [ 0.702976] devtmpfs: initialized
    [ 0.705408] PM: Registering ACPI NVS region [mem 0x9b6bf000-0x9b7befff] (1048576 bytes)
    [ 0.706249] RTC time: 18:58:44, date: 01/06/14
    [ 0.706292] NET: Registered protocol family 16
    [ 0.706388] cpuidle: using governor ladder
    [ 0.706389] cpuidle: using governor menu
    [ 0.706414] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.706416] ACPI: bus type PCI registered
    [ 0.706418] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.706482] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
    [ 0.706485] PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in E820
    [ 0.713484] PCI: Using configuration type 1 for base access
    [ 0.714057] bio: create slab <bio-0> at 0
    [ 0.714171] ACPI: Added _OSI(Module Device)
    [ 0.714172] ACPI: Added _OSI(Processor Device)
    [ 0.714174] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.714175] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.715777] ACPI: EC: Look up EC in DSDT
    [ 0.723731] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.729362] ACPI: SSDT 000000009b691918 00432 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    [ 0.729739] ACPI: Dynamic OEM Table Load:
    [ 0.729741] ACPI: SSDT (null) 00432 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    [ 0.729882] ACPI: SSDT 000000009b68f018 00891 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.730243] ACPI: Dynamic OEM Table Load:
    [ 0.730245] ACPI: SSDT (null) 00891 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.750624] ACPI: SSDT 000000009b690a98 00303 (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.751035] ACPI: Dynamic OEM Table Load:
    [ 0.751037] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.760515] ACPI: SSDT 000000009b68ed98 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.760902] ACPI: Dynamic OEM Table Load:
    [ 0.760904] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.813748] ACPI: Interpreter enabled
    [ 0.813763] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130725/hwxface-571)
    [ 0.813769] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130725/hwxface-571)
    [ 0.813788] ACPI: (supports S0 S3 S4 S5)
    [ 0.813790] ACPI: Using IOAPIC for interrupt routing
    [ 0.813825] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.813932] ACPI: No dock devices found.
    [ 1.447844] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
    [ 1.447876] \_SB_.PCI0:_OSC invalid UUID
    [ 1.447877] _OSC request data:1 8 0
    [ 1.447907] \_SB_.PCI0:_OSC invalid UUID
    [ 1.447908] _OSC request data:1 1f 0
    [ 1.447911] acpi PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    [ 1.447913] acpi PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
    [ 1.448565] ACPI: \_SB_.PCI0.ACEL: can't evaluate _ADR (0x5)
    [ 1.448567] ACPI: \_SB_.PCI0.PDRC: can't evaluate _ADR (0x5)
    [ 1.448573] PCI host bridge to bus 0000:00
    [ 1.448575] pci_bus 0000:00: root bus resource [bus 00-7e]
    [ 1.448577] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 1.448578] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 1.448580] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 1.448581] pci_bus 0000:00: root bus resource [mem 0xa0000000-0xfeafffff]
    [ 1.448589] pci 0000:00:00.0: [8086:0044] type 00 class 0x060000
    [ 1.448606] DMAR: Disabling batched IOTLB flush on Ironlake
    [ 1.448669] pci 0000:00:01.0: [8086:0045] type 01 class 0x060400
    [ 1.448699] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 1.448735] pci 0000:00:01.0: System wakeup disabled by ACPI
    [ 1.448767] pci 0000:00:02.0: [8086:0046] type 00 class 0x030000
    [ 1.448778] pci 0000:00:02.0: reg 0x10: [mem 0xc0000000-0xc03fffff 64bit]
    [ 1.448783] pci 0000:00:02.0: reg 0x18: [mem 0xb0000000-0xbfffffff 64bit pref]
    [ 1.448787] pci 0000:00:02.0: reg 0x20: [io 0x5050-0x5057]
    [ 1.448892] pci 0000:00:16.0: [8086:3b64] type 00 class 0x078000
    [ 1.448920] pci 0000:00:16.0: reg 0x10: [mem 0xc4504000-0xc450400f 64bit]
    [ 1.449016] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 1.449101] pci 0000:00:1a.0: [8086:3b3c] type 00 class 0x0c0320
    [ 1.449515] pci 0000:00:1a.0: reg 0x10: [mem 0xc450a000-0xc450a3ff]
    [ 1.451973] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 1.452031] pci 0000:00:1a.0: System wakeup disabled by ACPI
    [ 1.452072] pci 0000:00:1b.0: [8086:3b56] type 00 class 0x040300
    [ 1.452093] pci 0000:00:1b.0: reg 0x10: [mem 0xc4500000-0xc4503fff 64bit]
    [ 1.452188] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 1.452234] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 1.452267] pci 0000:00:1c.0: [8086:3b42] type 01 class 0x060400
    [ 1.452365] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 1.452412] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 1.452444] pci 0000:00:1c.1: [8086:3b44] type 01 class 0x060400
    [ 1.452541] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 1.452588] pci 0000:00:1c.1: System wakeup disabled by ACPI
    [ 1.452634] pci 0000:00:1d.0: [8086:3b34] type 00 class 0x0c0320
    [ 1.453043] pci 0000:00:1d.0: reg 0x10: [mem 0xc4509000-0xc45093ff]
    [ 1.455490] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 1.455548] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 1.455583] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    [ 1.455686] pci 0000:00:1e.0: System wakeup disabled by ACPI
    [ 1.455720] pci 0000:00:1f.0: [8086:3b09] type 00 class 0x060100
    [ 1.455888] pci 0000:00:1f.2: [8086:3b29] type 00 class 0x010601
    [ 1.455915] pci 0000:00:1f.2: reg 0x10: [io 0x5048-0x504f]
    [ 1.455926] pci 0000:00:1f.2: reg 0x14: [io 0x505c-0x505f]
    [ 1.455937] pci 0000:00:1f.2: reg 0x18: [io 0x5040-0x5047]
    [ 1.455947] pci 0000:00:1f.2: reg 0x1c: [io 0x5058-0x505b]
    [ 1.455958] pci 0000:00:1f.2: reg 0x20: [io 0x5020-0x503f]
    [ 1.455969] pci 0000:00:1f.2: reg 0x24: [mem 0xc4508000-0xc45087ff]
    [ 1.456035] pci 0000:00:1f.2: PME# supported from D3hot
    [ 1.456106] pci 0000:00:1f.3: [8086:3b30] type 00 class 0x0c0500
    [ 1.456126] pci 0000:00:1f.3: reg 0x10: [mem 0xc4506000-0xc45060ff 64bit]
    [ 1.456155] pci 0000:00:1f.3: reg 0x20: [io 0x5000-0x501f]
    [ 1.456246] pci 0000:00:1f.6: [8086:3b32] type 00 class 0x118000
    [ 1.456272] pci 0000:00:1f.6: reg 0x10: [mem 0xc4507000-0xc4507fff 64bit]
    [ 1.456465] pci 0000:01:00.0: [1002:68c1] type 00 class 0x030000
    [ 1.456479] pci 0000:01:00.0: reg 0x10: [mem 0xa0000000-0xafffffff 64bit pref]
    [ 1.456489] pci 0000:01:00.0: reg 0x18: [mem 0xc4400000-0xc441ffff 64bit]
    [ 1.456496] pci 0000:01:00.0: reg 0x20: [io 0x4000-0x40ff]
    [ 1.456507] pci 0000:01:00.0: reg 0x30: [mem 0xfffe0000-0xffffffff pref]
    [ 1.456544] pci 0000:01:00.0: supports D1 D2
    [ 1.456587] pci 0000:01:00.1: [1002:aa60] type 00 class 0x040300
    [ 1.456603] pci 0000:01:00.1: reg 0x10: [mem 0xc4420000-0xc4423fff 64bit]
    [ 1.456673] pci 0000:01:00.1: supports D1 D2
    [ 1.456730] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 1.456732] pci 0000:00:01.0: bridge window [io 0x4000-0x4fff]
    [ 1.456735] pci 0000:00:01.0: bridge window [mem 0xc4400000-0xc44fffff]
    [ 1.456738] pci 0000:00:01.0: bridge window [mem 0xa0000000-0xafffffff 64bit pref]
    [ 1.456862] pci 0000:02:00.0: [8086:0084] type 00 class 0x028000
    [ 1.456921] pci 0000:02:00.0: reg 0x10: [mem 0xc3400000-0xc3401fff 64bit]
    [ 1.457132] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
    [ 1.466741] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 1.466749] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    [ 1.466756] pci 0000:00:1c.0: bridge window [mem 0xc3400000-0xc43fffff]
    [ 1.466765] pci 0000:00:1c.0: bridge window [mem 0xc0400000-0xc13fffff 64bit pref]
    [ 1.466869] pci 0000:03:00.0: [10ec:8168] type 00 class 0x020000
    [ 1.466888] pci 0000:03:00.0: reg 0x10: [io 0x2000-0x20ff]
    [ 1.466916] pci 0000:03:00.0: reg 0x18: [mem 0xc1404000-0xc1404fff 64bit pref]
    [ 1.466934] pci 0000:03:00.0: reg 0x20: [mem 0xc1400000-0xc1403fff 64bit pref]
    [ 1.466946] pci 0000:03:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
    [ 1.467011] pci 0000:03:00.0: supports D1 D2
    [ 1.467012] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 1.467054] pci 0000:03:00.0: System wakeup disabled by ACPI
    [ 1.476687] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 1.476695] pci 0000:00:1c.1: bridge window [io 0x2000-0x2fff]
    [ 1.476702] pci 0000:00:1c.1: bridge window [mem 0xc2400000-0xc33fffff]
    [ 1.476712] pci 0000:00:1c.1: bridge window [mem 0xc1400000-0xc23fffff 64bit pref]
    [ 1.476826] pci 0000:00:1e.0: PCI bridge to [bus 04] (subtractive decode)
    [ 1.476839] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 1.476840] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 1.476842] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 1.476843] pci 0000:00:1e.0: bridge window [mem 0xa0000000-0xfeafffff] (subtractive decode)
    [ 1.477284] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    [ 1.477332] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 *11 12 14 15)
    [ 1.477378] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
    [ 1.477428] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    [ 1.477474] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
    [ 1.477521] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 *11 12 14 15)
    [ 1.477569] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 *10 12 14 15)
    [ 1.477615] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
    [ 1.680263] ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus 7f])
    [ 1.680266] acpi PNP0A03:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    [ 1.680268] acpi PNP0A03:00: Unable to request _OSC control (_OSC support mask: 0x08)
    [ 1.680328] PCI host bridge to bus 0000:7f
    [ 1.680331] pci_bus 0000:7f: root bus resource [bus 7f]
    [ 1.680335] pci 0000:7f:00.0: [8086:2c62] type 00 class 0x060000
    [ 1.680372] pci 0000:7f:00.1: [8086:2d01] type 00 class 0x060000
    [ 1.680411] pci 0000:7f:02.0: [8086:2d10] type 00 class 0x060000
    [ 1.680444] pci 0000:7f:02.1: [8086:2d11] type 00 class 0x060000
    [ 1.680478] pci 0000:7f:02.2: [8086:2d12] type 00 class 0x060000
    [ 1.680511] pci 0000:7f:02.3: [8086:2d13] type 00 class 0x060000
    [ 1.680856] ACPI: Enabled 7 GPEs in block 00 to 3F
    [ 1.680862] ACPI: \_SB_.PCI0: notify handler is installed
    [ 1.680897] ACPI: \_SB_.CPBG: notify handler is installed
    [ 1.680908] Found 2 acpi root devices
    [ 1.680944] ACPI: EC: GPE = 0x16, I/O: command/status = 0x66, data = 0x62
    [ 1.681029] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 1.681034] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
    [ 1.681036] vgaarb: loaded
    [ 1.681036] vgaarb: bridge control possible 0000:01:00.0
    [ 1.681037] vgaarb: no bridge control possible 0000:00:02.0
    [ 1.681073] PCI: Using ACPI for IRQ routing
    [ 1.685883] PCI: pci_cache_line_size set to 64 bytes
    [ 1.685985] e820: reserve RAM buffer [mem 0x0009d000-0x0009ffff]
    [ 1.685987] e820: reserve RAM buffer [mem 0x9b63f000-0x9bffffff]
    [ 1.685988] e820: reserve RAM buffer [mem 0x9b800000-0x9bffffff]
    [ 1.686076] NetLabel: Initializing
    [ 1.686077] NetLabel: domain hash size = 128
    [ 1.686078] NetLabel: protocols = UNLABELED CIPSOv4
    [ 1.686090] NetLabel: unlabeled traffic allowed by default
    [ 1.686116] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 1.686121] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 1.688150] Switched to clocksource hpet
    [ 1.692075] pnp: PnP ACPI init
    [ 1.692093] ACPI: bus type PNP registered
    [ 1.692220] pnp 00:00: [dma 4]
    [ 1.692249] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 1.692269] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
    [ 1.692384] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 1.692417] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 1.692471] system 00:04: [io 0x0680-0x069f] has been reserved
    [ 1.692473] system 00:04: [io 0x0800-0x080f] has been reserved
    [ 1.692475] system 00:04: [io 0xffff] has been reserved
    [ 1.692477] system 00:04: [io 0xffff] has been reserved
    [ 1.692479] system 00:04: [io 0x0400-0x047f] could not be reserved
    [ 1.692480] system 00:04: [io 0x0500-0x057f] has been reserved
    [ 1.692482] system 00:04: [io 0x164e-0x164f] has been reserved
    [ 1.692484] system 00:04: [io 0x0380-0x038e] has been reserved
    [ 1.692487] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 1.692512] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 1.692543] pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 1.692578] pnp 00:07: Plug and Play ACPI device, IDs SYN1e1d SYN1e00 SYN0002 PNP0f13 (active)
    [ 1.692691] pnp 00:08: Plug and Play ACPI device, IDs HPQ0004 (active)
    [ 1.692891] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 1.692893] system 00:09: [mem 0xfed10000-0xfed13fff] has been reserved
    [ 1.692895] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 1.692897] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 1.692899] system 00:09: [mem 0xf0000000-0xf1ffffff] has been reserved
    [ 1.692900] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 1.692905] system 00:09: [mem 0xff000000-0xffffffff] could not be reserved
    [ 1.692906] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 1.692908] system 00:09: [mem 0xc4600000-0xc4600fff] has been reserved
    [ 1.692911] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 1.891768] pnp: PnP ACPI: found 10 devices
    [ 1.891775] ACPI: bus type PNP unregistered
    [ 1.898277] pci 0000:01:00.0: no compatible bridge window for [mem 0xfffe0000-0xffffffff pref]
    [ 1.898281] pci 0000:03:00.0: no compatible bridge window for [mem 0xffff0000-0xffffffff pref]
    [ 1.898320] pci 0000:01:00.0: BAR 6: assigned [mem 0xc4440000-0xc445ffff pref]
    [ 1.898323] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 1.898326] pci 0000:00:01.0: bridge window [io 0x4000-0x4fff]
    [ 1.898328] pci 0000:00:01.0: bridge window [mem 0xc4400000-0xc44fffff]
    [ 1.898331] pci 0000:00:01.0: bridge window [mem 0xa0000000-0xafffffff 64bit pref]
    [ 1.898334] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 1.898337] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    [ 1.898343] pci 0000:00:1c.0: bridge window [mem 0xc3400000-0xc43fffff]
    [ 1.898347] pci 0000:00:1c.0: bridge window [mem 0xc0400000-0xc13fffff 64bit pref]
    [ 1.898355] pci 0000:03:00.0: BAR 6: assigned [mem 0xc1410000-0xc141ffff pref]
    [ 1.898356] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 1.898359] pci 0000:00:1c.1: bridge window [io 0x2000-0x2fff]
    [ 1.898365] pci 0000:00:1c.1: bridge window [mem 0xc2400000-0xc33fffff]
    [ 1.898369] pci 0000:00:1c.1: bridge window [mem 0xc1400000-0xc23fffff 64bit pref]
    [ 1.898376] pci 0000:00:1e.0: PCI bridge to [bus 04]
    [ 1.898391] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 1.898392] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 1.898394] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 1.898395] pci_bus 0000:00: resource 7 [mem 0xa0000000-0xfeafffff]
    [ 1.898397] pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
    [ 1.898399] pci_bus 0000:01: resource 1 [mem 0xc4400000-0xc44fffff]
    [ 1.898400] pci_bus 0000:01: resource 2 [mem 0xa0000000-0xafffffff 64bit pref]
    [ 1.898402] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
    [ 1.898403] pci_bus 0000:02: resource 1 [mem 0xc3400000-0xc43fffff]
    [ 1.898405] pci_bus 0000:02: resource 2 [mem 0xc0400000-0xc13fffff 64bit pref]
    [ 1.898406] pci_bus 0000:03: resource 0 [io 0x2000-0x2fff]
    [ 1.898408] pci_bus 0000:03: resource 1 [mem 0xc2400000-0xc33fffff]
    [ 1.898409] pci_bus 0000:03: resource 2 [mem 0xc1400000-0xc23fffff 64bit pref]
    [ 1.898411] pci_bus 0000:04: resource 4 [io 0x0000-0x0cf7]
    [ 1.898413] pci_bus 0000:04: resource 5 [io 0x0d00-0xffff]
    [ 1.898414] pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff]
    [ 1.898416] pci_bus 0000:04: resource 7 [mem 0xa0000000-0xfeafffff]
    [ 1.898448] NET: Registered protocol family 2
    [ 1.898658] TCP established hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 1.898905] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 1.899101] TCP: Hash tables configured (established 65536 bind 65536)
    [ 1.899137] TCP: reno registered
    [ 1.899150] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [ 1.899184] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [ 1.899281] NET: Registered protocol family 1
    [ 1.899297] pci 0000:00:02.0: Boot video device
    [ 1.924902] PCI: CLS 64 bytes, default 64
    [ 1.924949] Unpacking initramfs...
    [ 1.973386] Freeing initrd memory: 2960K (ffff880037a28000 - ffff880037d0c000)
    [ 1.973392] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 1.973394] software IO TLB [mem 0x9763f000-0x9b63f000] (64MB) mapped at [ffff88009763f000-ffff88009b63efff]
    [ 1.973427] Simple Boot Flag at 0x44 set to 0x1
    [ 1.973607] Scanning for low memory corruption every 60 seconds
    [ 1.973892] audit: initializing netlink socket (disabled)
    [ 1.973905] type=2000 audit(1389034724.406:1): initialized
    [ 1.984356] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 1.985602] zbud: loaded
    [ 1.985767] VFS: Disk quotas dquot_6.5.2
    [ 1.985802] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 1.985955] msgmni has been set to 15569
    [ 1.986298] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 1.986347] io scheduler noop registered
    [ 1.986349] io scheduler deadline registered
    [ 1.986371] io scheduler cfq registered (default)
    [ 1.986564] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 1.986816] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 1.986829] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 1.986868] vesafb: mode is 1600x900x32, linelength=6400, pages=0
    [ 1.986869] vesafb: scrolling: redraw
    [ 1.986870] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 1.987210] vesafb: framebuffer at 0xb0000000, mapped to 0xffffc90008f00000, using 5632k, total 5632k
    [ 2.194780] Console: switching to colour frame buffer device 200x56
    [ 2.401807] fb0: VESA VGA frame buffer device
    [ 2.401818] intel_idle: MWAIT substates: 0x1120
    [ 2.401819] intel_idle: v0.4 model 0x25
    [ 2.401820] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 2.401952] GHES: HEST is not enabled!
    [ 2.402009] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 2.402448] Linux agpgart interface v0.103
    [ 2.402509] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 2.424294] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 2.424318] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 2.424413] mousedev: PS/2 mouse device common for all mice
    [ 2.426083] rtc_cmos 00:05: RTC can wake from S4
    [ 2.426226] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [ 2.426258] rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 2.426312] drop_monitor: Initializing network drop monitor service
    [ 2.426376] TCP: cubic registered
    [ 2.426451] NET: Registered protocol family 10
    [ 2.426607] NET: Registered protocol family 17
    [ 2.426615] Key type dns_resolver registered
    [ 2.426872] registered taskstats version 1
    [ 2.427642] Magic number: 14:769:998
    [ 2.427665] pnp 00:00: hash matches
    [ 2.427763] rtc_cmos 00:05: setting system clock to 2014-01-06 18:58:45 UTC (1389034725)
    [ 2.427806] PM: Hibernation image not present or could not be loaded.
    [ 2.428656] Freeing unused kernel memory: 1144K (ffffffff818cb000 - ffffffff819e9000)
    [ 2.428658] Write protecting the kernel read-only data: 8192k
    [ 2.430898] Freeing unused kernel memory: 1008K (ffff880001504000 - ffff880001600000)
    [ 2.431903] Freeing unused kernel memory: 420K (ffff880001797000 - ffff880001800000)
    [ 2.444295] systemd-udevd[57]: starting version 208
    [ 2.454799] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 2.473820] SCSI subsystem initialized
    [ 2.474804] ACPI: bus type USB registered
    [ 2.474841] usbcore: registered new interface driver usbfs
    [ 2.474855] usbcore: registered new interface driver hub
    [ 2.474933] usbcore: registered new device driver usb
    [ 2.474994] libata version 3.00 loaded.
    [ 2.475610] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 2.475775] ehci-pci: EHCI PCI platform driver
    [ 2.475950] ehci-pci 0000:00:1a.0: setting latency timer to 64
    [ 2.475967] ehci-pci 0000:00:1a.0: EHCI Host Controller
    [ 2.475975] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 2.475992] ehci-pci 0000:00:1a.0: debug port 2
    [ 2.479915] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    [ 2.479939] ehci-pci 0000:00:1a.0: irq 16, io mem 0xc450a000
    [ 2.487831] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 2.488136] hub 1-0:1.0: USB hub found
    [ 2.488148] hub 1-0:1.0: 3 ports detected
    [ 2.488623] ahci 0000:00:1f.2: version 3.0
    [ 2.488766] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
    [ 2.488870] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 3 Gbps 0x33 impl SATA mode
    [ 2.488874] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems sxs apst
    [ 2.488880] ahci 0000:00:1f.2: setting latency timer to 64
    [ 2.508305] scsi0 : ahci
    [ 2.508478] scsi1 : ahci
    [ 2.508661] scsi2 : ahci
    [ 2.508872] scsi3 : ahci
    [ 2.509076] scsi4 : ahci
    [ 2.509232] scsi5 : ahci
    [ 2.509314] ata1: SATA max UDMA/133 abar m2048@0xc4508000 port 0xc4508100 irq 41
    [ 2.509319] ata2: SATA max UDMA/133 abar m2048@0xc4508000 port 0xc4508180 irq 41
    [ 2.509322] ata3: DUMMY
    [ 2.509324] ata4: DUMMY
    [ 2.509328] ata5: SATA max UDMA/133 abar m2048@0xc4508000 port 0xc4508300 irq 41
    [ 2.509332] ata6: SATA max UDMA/133 abar m2048@0xc4508000 port 0xc4508380 irq 41
    [ 2.509617] ehci-pci 0000:00:1d.0: setting latency timer to 64
    [ 2.509640] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 2.509655] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 2.509681] ehci-pci 0000:00:1d.0: debug port 2
    [ 2.513619] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 2.513636] ehci-pci 0000:00:1d.0: irq 21, io mem 0xc4509000
    [ 2.521138] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 2.521432] hub 2-0:1.0: USB hub found
    [ 2.521446] hub 2-0:1.0: 3 ports detected
    [ 2.794491] usb 1-1: new high-speed USB device number 2 using ehci-pci
    [ 2.827773] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 2.827866] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 2.830049] ata2.00: ATAPI: hp BD-ROM BC-5501H, 2.90, max UDMA/100
    [ 2.831101] ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 2.831251] ata1.00: ATA-8: Corsair CSSD-F60GB2, 2.0, max UDMA/133
    [ 2.831257] ata1.00: 117231408 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
    [ 2.832374] ata2.00: configured for UDMA/100
    [ 2.834382] ata6: SATA link down (SStatus 0 SControl 300)
    [ 2.841297] ata1.00: configured for UDMA/133
    [ 2.841651] scsi 0:0:0:0: Direct-Access ATA Corsair CSSD-F60 2.0 PQ: 0 ANSI: 5
    [ 2.842799] scsi 1:0:0:0: CD-ROM hp BD ROM BC-5501H 2.90 PQ: 0 ANSI: 5
    [ 2.918525] hub 1-1:1.0: USB hub found
    [ 2.918713] hub 1-1:1.0: 6 ports detected
    [ 2.974340] tsc: Refined TSC clocksource calibration: 2527.281 MHz
    [ 3.024393] usb 2-1: new high-speed USB device number 2 using ehci-pci
    [ 3.148413] hub 2-1:1.0: USB hub found
    [ 3.148604] hub 2-1:1.0: 8 ports detected
    [ 3.227872] usb 1-1.1: new low-speed USB device number 3 using ehci-pci
    [ 3.231028] ata5.00: ATA-8: TOSHIBA MK5075GSX, GT001U, max UDMA/100
    [ 3.231032] ata5.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 3.232183] ata5.00: configured for UDMA/100
    [ 3.232540] scsi 4:0:0:0: Direct-Access ATA TOSHIBA MK5075GS GT00 PQ: 0 ANSI: 5
    [ 3.236887] sd 0:0:0:0: [sda] 117231408 512-byte logical blocks: (60.0 GB/55.8 GiB)
    [ 3.236939] sd 4:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 3.236941] sd 4:0:0:0: [sdb] 4096-byte physical blocks
    [ 3.237016] sd 4:0:0:0: [sdb] Write Protect is off
    [ 3.237019] sd 4:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 3.237035] sd 0:0:0:0: [sda] Write Protect is off
    [ 3.237040] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 3.237050] sd 4:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 3.237086] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 3.237518] sda: sda1 sda2 sda3 sda4
    [ 3.237920] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 3.237923] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 3.237954] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 3.238066] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 3.280297] sdb: sdb1 sdb3
    [ 3.281140] sd 4:0:0:0: [sdb] Attached SCSI disk
    [ 3.320840] hidraw: raw HID events driver (C) Jiri Kosina
    [ 3.324133] usbcore: registered new interface driver usbhid
    [ 3.324137] usbhid: USB HID core driver
    [ 3.324888] input: Microsoft Microsoft Basic Optical Mouse v2.0 as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.0/input/input2
    [ 3.325079] hid-generic 0003:045E:00CB.0001: input,hidraw0: USB HID v1.11 Mouse [Microsoft Microsoft Basic Optical Mouse v2.0 ] on usb-0000:00:1a.0-1.1/input0
    [ 3.384362] usb 1-1.6: new full-speed USB device number 4 using ehci-pci
    [ 3.550965] usb 2-1.3: new full-speed USB device number 3 using ehci-pci
    [ 3.714287] usb 2-1.5: new high-speed USB device number 4 using ehci-pci
    [ 3.795307] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
    [ 3.853249] systemd[1]: systemd 208 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 3.854872] systemd[1]: Set hostname to <HP-DV7>.
    [ 3.858373] systemd-fstab-generator[118]: Mount point swap is not a valid path, ignoring.
    [ 3.909882] systemd[1]: Cannot add dependency job for unit atieventsd.service, ignoring: Unit acpid.socket failed to load: No such file or directory.
    [ 3.910099] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 3.910161] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 3.910174] systemd[1]: Starting Login Prompts.
    [ 3.910186] systemd[1]: Reached target Login Prompts.
    [ 3.910195] systemd[1]: Starting Remote File Systems.
    [ 3.910203] systemd[1]: Reached target Remote File Systems.
    [ 3.910213] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 3.910241] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 3.910250] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 3.910267] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 3.910276] systemd[1]: Starting Delayed Shutdown Socket.
    [ 3.910299] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 3.910309] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 3.910330] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 3.910359] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 3.910451] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 3.910465] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 3.910492] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 3.910501] systemd[1]: Starting Paths.
    [ 3.910535] systemd[1]: Reached target Paths.
    [ 3.910550] systemd[1]: Starting udev Kernel Socket.
    [ 3.910571] systemd[1]: Listening on udev Kernel Socket.
    [ 3.910582] systemd[1]: Starting udev Control Socket.
    [ 3.910602] systemd[1]: Listening on udev Control Socket.
    [ 3.910612] systemd[1]: Starting Journal Socket.
    [ 3.910647] systemd[1]: Listening on Journal Socket.
    [ 3.910661] systemd[1]: Starting udev Coldplug all Devices...
    [ 3.911488] systemd[1]: Starting Apply Kernel Variables...
    [ 3.911775] systemd[1]: Mounting Huge Pages File System...
    [ 3.912052] systemd[1]: Mounting POSIX Message Queue File System...
    [ 3.914336] systemd[1]: Starting Load Kernel Modules...
    [ 3.919413] systemd[1]: Starting Create list of required static device nodes for the current kernel...
    [ 3.920515] systemd[1]: Started Set Up Additional Binary Formats.
    [ 3.920540] systemd[1]: Starting Journal Service...
    [ 3.920857] systemd[1]: Started Journal Service.
    [ 3.934908] systemd-journald[130]: Vacuuming done, freed 0 bytes
    [ 3.936662] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input3
    [ 3.936668] ACPI: Power Button [PWRB]
    [ 3.936710] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input4
    [ 3.937069] ACPI: Lid Switch [LID0]
    [ 3.937129] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
    [ 3.937132] ACPI: Power Button [PWRF]
    [ 3.938040] AMD IOMMUv2 driver by Joerg Roedel <[email protected]>
    [ 3.938042] AMD IOMMUv2 functionality not available on this system
    [ 3.968968] EXT4-fs (sda4): re-mounted. Opts: discard
    [ 3.974125] Switched to clocksource tsc
    [ 3.990703] systemd-udevd[155]: starting version 208
    [ 3.994113] systemd-journald[130]: Received request to flush runtime journal from PID 1
    [ 4.011409] fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel.
    [ 4.011415] Disabling lock debugging due to kernel taint
    [ 4.022291] <6>[fglrx] Maximum main memory to use for locked dma buffers: 7558 MBytes.
    [ 4.022509] <6>[fglrx] vendor: 1002 device: 68c1 count: 1
    [ 4.022812] <6>[fglrx] ioport: bar 4, base 0x4000, size: 0x100
    [ 4.022823] pci 0000:01:00.0: enabling device (0000 -> 0003)
    [ 4.023031] <6>[fglrx] Kernel PAT support is enabled
    [ 4.023051] <6>[fglrx] module loaded - fglrx 13.25.5 [Dec 6 2013] with 1 minors
    [ 4.092258] ACPI: Requesting acpi_cpufreq
    [ 4.101543] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20130725/utaddress-251)
    [ 4.101553] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 4.101558] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \GPIO 1 (20130725/utaddress-251)
    [ 4.101563] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \SGGP 2 (20130725/utaddress-251)
    [ 4.101568] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \_SB_.PCI0.P0P3.PEGP.GPIO 3 (20130725/utaddress-251)
    [ 4.101573] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 4.101575] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20130725/utaddress-251)
    [ 4.101580] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \SGGP 2 (20130725/utaddress-251)
    [ 4.101585] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \_SB_.PCI0.P0P3.PEGP.GPIO 3 (20130725/utaddress-251)
    [ 4.101589] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 4.101591] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20130725/utaddress-251)
    [ 4.101595] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \SGGP 2 (20130725/utaddress-251)
    [ 4.101600] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \_SB_.PCI0.P0P3.PEGP.GPIO 3 (20130725/utaddress-251)
    [ 4.101604] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 4.101606] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 4.103941] intel ips 0000:00:1f.6: CPU TDP doesn't match expected value (found 25, expected 29)
    [ 4.104143] intel ips 0000:00:1f.6: failed to get i915 symbols, graphics turbo disabled until i915 loads
    [ 4.106273] intel ips 0000:00:1f.6: IPS driver initialized, MCP temp limit 90
    [ 4.106627] agpgart-intel 0000:00:00.0: Intel HD Graphics Chipset
    [ 4.106742] agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
    [ 4.108091] agpgart-intel 0000:00:00.0: detected 32768K stolen memory
    [ 4.108226] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xb0000000
    [ 4.108419] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 4.109161] mei_me 0000:00:16.0: setting latency timer to 64
    [ 4.109212] mei_me 0000:00:16.0: irq 42 for MSI/MSI-X
    [ 4.116824] ACPI Warning: 0x0000000000005000-0x000000000000501f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20130725/utaddress-251)
    [ 4.116833] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 4.125699] [drm] Initialized drm 1.1.0 20060810
    [ 4.151578] [Firmware Bug]: Invalid critical threshold (0)
    [ 4.152801] hp_accel: hardware type DV7 found
    [ 4.153398] lis3lv02d: 8 bits sensor found
    [ 4.162429] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 4.162451] r8169 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 4.162458] pcieport 0000:00:1c.1: driver skip pci_set_master, fix it!
    [ 4.162734] r8169 0000:03:00.0: irq 43 for MSI/MSI-X
    [ 4.163141] [drm] Memory usable by graphics device = 2048M
    [ 4.163146] checking generic (b0000000 580000) vs hw (b0000000 10000000)
    [ 4.163149] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
    [ 4.163171] Console: switching to colour dummy device 80x25
    [ 4.163258] r8169 0000:03:00.0 eth0: RTL8168d/8111d at 0xffffc90008efe000, 78:ac:c0:41:2a:dc, XID 083000c0 IRQ 43
    [ 4.163262] r8169 0000:03:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
    [ 4.165071] thermal LNXTHERM:00: registered as thermal_zone0
    [ 4.165073] ACPI: Thermal Zone [TZ01] (60 C)
    [ 4.167001] i915 0000:00:02.0: setting latency timer to 64
    [ 4.189598] Bluetooth: Core ver 2.16
    [ 4.189618] NET: Registered protocol family 31
    [ 4.189620] Bluetooth: HCI device and connection manager initialized
    [ 4.189632] Bluetooth: HCI socket layer initialized
    [ 4.189636] Bluetooth: L2CAP socket layer initialized
    [ 4.189642] Bluetooth: SCO socket layer initialized
    [ 4.189750] cfg80211: Calling CRDA to update world regulatory domain
    [ 4.193820] input: ST LIS3LV02DL Accelerometer as /devices/platform/lis3lv02d/input/input6
    [ 4.200427] Intel(R) Wireless WiFi driver for Linux, in-tree:
    [ 4.200432] Copyright(c) 2003-2013 Intel Corporation
    [ 4.200504] pcieport 0000:00:1c.0: driver skip pci_set_master, fix it!
    [ 4.200613] iwlwifi 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 4.200826] iwlwifi 0000:02:00.0: irq 44 for MSI/MSI-X
    [ 4.203438] usbcore: registered new interface driver btusb
    [ 4.206393] iwlwifi 0000:02:00.0: loaded firmware version 39.31.5.1 build 35138 op_mode iwldvm
    [ 4.209620] i915 0000:00:02.0: irq 45 for MSI/MSI-X
    [ 4.209634] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 4.209636] [drm] Driver supports precise vblank timestamp query.
    [ 4.209838] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=none
    [ 4.212021] input: PC Speaker as /devices/platform/pcspkr/input/input7
    [ 4.224616] microcode: CPU0 sig=0x20655, pf=0x10, revision=0x2
    [ 4.235557] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEBUG disabled
    [ 4.235562] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
    [ 4.235564] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
    [ 4.235566] iwlwifi 0000:02:00.0: Detected Intel(R) Centrino(R) Wireless-N 1000 BGN, REV=0x6C
    [ 4.235664] iwlwifi 0000:02:00.0: L1 Enabled; Disabling L0S
    [ 4.259013] fbcon: inteldrmfb (fb0) is primary device
    [ 4.262350] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
    [ 4.284850] iTCO_vendor_support: vendor-support=0
    [ 4.285523] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 4.285561] iTCO_wdt: Found a HM55 TCO device (Version=2, TCOBASE=0x0460)
    [ 4.285676] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 4.286793] media: Linux media interface: v0.10
    [ 4.290737] Linux video capture interface: v2.00
    [ 4.301250] systemd-udevd[174]: renamed network interface eth0 to enp3s0
    [ 4.302202] uvcvideo: Found UVC 1.00 device HP Webcam (064e:f209)
    [ 4.304880] cfg80211: World regulatory domain updated:
    [ 4.304881] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
    [ 4.304883] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm)
    [ 4.304883] cfg80211: (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm)
    [ 4.304884] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm)
    [ 4.304885] cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz), (N/A, 2000 mBm)
    [ 4.304886] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm)
    [ 4.304887] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm)
    [ 4.309128] input: HP Webcam as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5/2-1.5:1.0/input/input9
    [ 4.309335] usbcore: registered new interface driver uvcvideo
    [ 4.309336] USB Video Class driver (1.1.1)
    [ 4.311646] microcode: CPU1 sig=0x20655, pf=0x10, revision=0x2
    [ 4.316794] ACPI: Battery Slot [BAT0] (battery present)
    [ 4.325688] microcode: CPU2 sig=0x20655, pf=0x10, revision=0x2
    [ 4.327465] microcode: CPU3 sig=0x20655, pf=0x10, revision=0x2
    [ 4.328001] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 4.337248] systemd-udevd[192]: renamed network interface wlan0 to wlo1
    [ 4.345739] kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL does not work properly. Using workaround
    [ 4.355989] iwlwifi 0000:02:00.0: L1 Enabled; Disabling L0S
    [ 4.364320] iwlwifi 0000:02:00.0: Radio type=0x0-0x0-0x3
    [ 4.398187] iwlwifi 0000:02:00.0: L1 Enabled; Disabling L0S
    [ 4.405698] iwlwifi 0000:02:00.0: Radio type=0x0-0x0-0x3
    [ 4.414845] ACPI: AC Adapter [ACAD] (on-line)
    [ 4.415293] wmi: Mapper loaded
    [ 4.435932] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
    [ 4.467799] input: HP WMI hotkeys as /devices/virtual/input/input10
    [ 4.498300] r8169 0000:03:00.0 enp3s0: link down
    [ 4.498337] IPv6: ADDRCONF(NETDEV_UP): enp3s0: link is not ready
    [ 5.050228] Console: switching to colour frame buffer device 200x56
    [ 5.056819] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [ 5.056821] i915 0000:00:02.0: registered panic notifier
    [ 5.062898] acpi device:02: registered as cooling_device5
    [ 5.063042] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 5.063105] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input11
    [ 5.074847] acpi device:14: registered as cooling_device6
    [ 5.081681] acpi device:15: registered as cooling_device7
    [ 5.081715] ACPI: Video Device [VGA1] (multi-head: yes rom: no post: no)
    [ 5.081795] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:11/LNXVIDEO:02/input/input12
    [ 5.081995] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 5.082246] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
    [ 5.096419] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input13
    [ 5.114610] input: HDA Intel MID Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input15
    [ 5.114695] input: HDA Intel MID Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
    [ 5.114984] hda-intel 0000:01:00.1: Handle VGA-switcheroo audio client
    [ 5.115037] snd_hda_intel 0000:01:00.1: irq 47 for MSI/MSI-X
    [ 5.123576] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input16
    [ 5.343735] wlo1: authenticate with 04:a1:51:18:3f:5a
    [ 5.357336] wlo1: send auth to 04:a1:51:18:3f:5a (try 1/3)
    [ 5.360056] wlo1: authenticated
    [ 5.363243] wlo1: associate with 04:a1:51:18:3f:5a (try 1/3)
    [ 5.367023] wlo1: RX AssocResp from 04:a1:51:18:3f:5a (capab=0x411 status=0 aid=1)
    [ 5.370719] wlo1: associated
    [ 5.370764] IPv6: ADDRCONF(NETDEV_CHANGE): wlo1: link becomes ready
    [ 5.649701] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.4, id: 0x1e0b1, caps: 0xd04773/0xe40000/0x5a0400, board id: 3655, fw id: 631163
    [ 5.737424] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input8
    [ 9.301633] intel ips 0000:00:1f.6: i915 driver attached, reenabling gpu turbo
    [ 12.411184] systemd-journald[130]: File /var/log/journal/9f3480e1044d4c389152563598411bae/user-1000.journal corrupted or uncleanly shut down, renaming and replacing.
    [ 12.848912] fuse init (API version 7.22)
    [ 14.026946] traps: cinnamon[570] trap int3 ip:7ff3d815c289 sp:7fffd52060f0 error:0
    [ 14.114772] systemd-journald[130]: Deleted empty journal /var/log/journal/9f3480e1044d4c389152563598411bae/[email protected]~ (3256320 bytes).
    [ 14.116644] systemd-journald[130]: Vacuuming done, freed 10727424 bytes
    [ 14.129219] systemd-journald[130]: Failed to write entry (26 items, 14336620 bytes) despite vacuuming, ignoring: Argument list too long
    [ 14.305135] ISO 9660 Extensions: Microsoft Joliet Level 3
    [ 14.347792] ISO 9660 Extensions: RRIP_1991A
    [ 62.027286] Corrupted low memory at ffff880000006598 (6598 phys) = 100000000000
    [ 62.027363] ------------[ cut here ]------------
    [ 62.027373] WARNING: CPU: 0 PID: 45 at arch/x86/kernel/check.c:140 check_for_bios_corruption+0x10f/0x120()
    [ 62.027375] Memory corruption detected in low memory
    [ 62.027417] Modules linked in: nls_utf8 isofs fuse snd_hda_codec_hdmi snd_hda_codec_idt hp_wmi sparse_keymap joydev intel_powerclamp coretemp kvm_intel kvm crc32c_intel uvcvideo videobuf2_vmalloc videobuf2_memops videobuf2_core videodev media iTCO_wdt iTCO_vendor_support arc4 iwldvm mac80211 microcode psmouse serio_raw pcspkr btusb iwlwifi bluetooth cfg80211 r8169 snd_hda_intel rfkill hp_accel mii i915 thermal snd_hda_codec lis3lv02d wmi snd_hwdep snd_pcm input_polldev drm_kms_helper snd_page_alloc ac video drm snd_timer i2c_i801 i2c_algo_bit snd battery mei_me i2c_core soundcore intel_agp mei shpchp intel_ips intel_gtt lpc_ich acpi_cpufreq processor evdev fglrx(PO) amd_iommu_v2 button ext4 crc16 mbcache jbd2 hid_generic usbhid hid sr_mod cdrom sd_mod ahci ehci_pci ehci_hcd libahci libata scsi_mod
    [ 62.027498] usbcore usb_common
    [ 62.027504] CPU: 0 PID: 45 Comm: kworker/0:2 Tainted: P O 3.12.6-1-ARCH #1
    [ 62.027506] Hardware name: Hewlett-Packard HP Pavilion dv7 Notebook PC/144B, BIOS F.29 11/07/2011
    [ 62.027511] Workqueue: events check_corruption
    [ 62.027513] 0000000000000009 ffff88024f0b5d30 ffffffff814ee4fb ffff88024f0b5d78
    [ 62.027518] ffff88024f0b5d68 ffffffff81062bcd 0000000000000000 ffff880000010000
    [ 62.027521] ffffffff81a28c50 0000000000000001 ffff880000000000 ffff88024f0b5dc8
    [ 62.027525] Call Trace:
    [ 62.027534] [<ffffffff814ee4fb>] dump_stack+0x54/0x8d
    [ 62.027541] [<ffffffff81062bcd>] warn_slowpath_common+0x7d/0xa0
    [ 62.027545] [<ffffffff81062c3c>] warn_slowpath_fmt+0x4c/0x50
    [ 62.027548] [<ffffffff8105046f>] check_for_bios_corruption+0x10f/0x120
    [ 62.027552] [<ffffffff8105048e>] check_corruption+0xe/0x40
    [ 62.027558] [<ffffffff8107dbc7>] process_one_work+0x167/0x450
    [ 62.027561] [<ffffffff8107e5d1>] worker_thread+0x121/0x3a0
    [ 62.027565] [<ffffffff8107e4b0>] ? manage_workers.isra.23+0x2b0/0x2b0
    [ 62.027572] [<ffffffff81084fe0>] kthread+0xc0/0xd0
    [ 62.027576] [<ffffffff81084f20>] ? kthread_create_on_node+0x120/0x120
    [ 62.027581] [<ffffffff814fcffc>] ret_from_fork+0x7c/0xb0
    [ 62.027585] [<ffffffff81084f20>] ? kthread_create_on_node+0x120/0x120
    [ 62.027588] ---[ end trace 7db8b9483b232f3c ]---
    [ 379.895022] systemd-journald[130]: Vacuuming done, freed 7458816 bytes
    [ 382.437200] usb 2-1.1: new high-speed USB device number 5 using ehci-pci
    [ 382.535763] usb-storage 2-1.1:1.0: USB Mass Storage device detected
    [ 382.535904] scsi6 : usb-storage 2-1.1:1.0
    [ 382.536046] usbcore: registered new interface driver usb-storage
    [ 383.537746] scsi 6:0:0:0: Direct-Access SanDisk Cruzer Glide 1.26 PQ: 0 ANSI: 5
    [ 383.539529] sd 6:0:0:0: [sdc] 31266816 512-byte logical blocks: (16.0 GB/14.9 GiB)
    [ 383.541031] sd 6:0:0:0: [sdc] Write Protect is off
    [ 383.541037] sd 6:0:0:0: [sdc] Mode Sense: 43 00 00 00
    [ 383.542023] sd 6:0:0:0: [sdc] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
    [ 383.554355] sdc: sdc1
    [ 383.558183] sd 6:0:0:0: [sdc] Attached SCSI removable disk
    If I run aticonfig --intial, xorg does not start and the dmesg output is:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.12.6-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.2 (GCC) ) #1 SMP PREEMPT Fri Dec 20 19:39:00 CET 2013
    [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a303086c-e564-4347-92f1-8ec5ecbdcf85 ro quiet
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009cfff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009d000-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000009b63efff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000009b63f000-0x000000009b6befff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000009b6bf000-0x000000009b7befff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000009b7bf000-0x000000009b7fefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x000000009b7ff000-0x000000009b7fffff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000009b800000-0x000000009fffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1b000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ffe80000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000001fbffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000001fc000000-0x00000001ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000200000000-0x000000025bffffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.6 present.
    [ 0.000000] DMI: Hewlett-Packard HP Pavilion dv7 Notebook PC/144B, BIOS F.29 11/07/2011
    [ 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 = 0x25c000 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-EFFFF write-through
    [ 0.000000] F0000-FFFFF write-combining
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F80000000 write-back
    [ 0.000000] 1 base 0FFE00000 mask FFFE00000 write-protect
    [ 0.000000] 2 base 080000000 mask FE0000000 write-back
    [ 0.000000] 3 base 09C000000 mask FFC000000 uncachable
    [ 0.000000] 4 base 09B800000 mask FFF800000 uncachable
    [ 0.000000] 5 base 100000000 mask F00000000 write-back
    [ 0.000000] 6 base 200000000 mask F80000000 write-back
    [ 0.000000] 7 base 25C000000 mask FFC000000 uncachable
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: last_pfn = 0x9b800 max_arch_pfn = 0x400000000
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
    [ 0.000000] 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 0x25be00000-0x25bfffff

    I have toyed with the catalyst-total-pxp configuration and it will now launch x but executing a cinnamon session kicks me back out into the console.
    E: Dmesg output and Xorg log both look fine (to me).
    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.8-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.2 20131219 (prerelease) (GCC) ) #1 SMP PREEMPT Thu Jan 16 09:16:34 CET 2014
    [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a303086c-e564-4347-92f1-8ec5ecbdcf85 rw
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009cfff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009d000-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000009b63efff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000009b63f000-0x000000009b6befff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000009b6bf000-0x000000009b7befff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000009b7bf000-0x000000009b7fefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x000000009b7ff000-0x000000009b7fffff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000009b800000-0x000000009fffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1b000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ffe80000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000001fbffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000001fc000000-0x00000001ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000200000000-0x000000025bffffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.6 present.
    [ 0.000000] DMI: Hewlett-Packard HP Pavilion dv7 Notebook PC/144B, BIOS F.29 11/07/2011
    [ 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 = 0x25c000 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-EFFFF write-through
    [ 0.000000] F0000-FFFFF write-combining
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F80000000 write-back
    [ 0.000000] 1 base 0FFE00000 mask FFFE00000 write-protect
    [ 0.000000] 2 base 080000000 mask FE0000000 write-back
    [ 0.000000] 3 base 09C000000 mask FFC000000 uncachable
    [ 0.000000] 4 base 09B800000 mask FFF800000 uncachable
    [ 0.000000] 5 base 100000000 mask F00000000 write-back
    [ 0.000000] 6 base 200000000 mask F80000000 write-back
    [ 0.000000] 7 base 25C000000 mask FFC000000 uncachable
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: last_pfn = 0x9b800 max_arch_pfn = 0x400000000
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
    [ 0.000000] 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 0x25be00000-0x25bffffff]
    [ 0.000000] [mem 0x25be00000-0x25bffffff] page 2M
    [ 0.000000] BRK [0x01b35000, 0x01b35fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x258000000-0x25bdfffff]
    [ 0.000000] [mem 0x258000000-0x25bdfffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x200000000-0x257ffffff]
    [ 0.000000] [mem 0x200000000-0x257ffffff] page 2M
    [ 0.000000] BRK [0x01b36000, 0x01b36fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x9b63efff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x9b5fffff] page 2M
    [ 0.000000] [mem 0x9b600000-0x9b63efff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x9b7ff000-0x9b7fffff]
    [ 0.000000] [mem 0x9b7ff000-0x9b7fffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x1fbffffff]
    [ 0.000000] [mem 0x100000000-0x1fbffffff] page 2M
    [ 0.000000] BRK [0x01b37000, 0x01b37fff] PGTABLE
    [ 0.000000] RAMDISK: [mem 0x37a28000-0x37d0bfff]
    [ 0.000000] ACPI: RSDP 00000000000fe020 00024 (v02 HPQOEM)
    [ 0.000000] ACPI: XSDT 000000009b7fe120 0007C (v01 HPQOEM SLIC-MPC 00000001 01000013)
    [ 0.000000] ACPI: FACP 000000009b7fc000 000F4 (v04 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
    [ 0.000000] ACPI: DSDT 000000009b7e9000 0F50F (v01 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
    [ 0.000000] ACPI: FACS 000000009b75e000 00040
    [ 0.000000] ACPI: ASF! 000000009b7fd000 000A5 (v32 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
    [ 0.000000] ACPI: HPET 000000009b7fb000 00038 (v01 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
    [ 0.000000] ACPI: APIC 000000009b7fa000 0008C (v02 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
    [ 0.000000] ACPI: MCFG 000000009b7f9000 0003C (v01 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
    [ 0.000000] ACPI: SLIC 000000009b7e8000 00176 (v01 HPQOEM SLIC-MPC 00000001 SLIC 000F4240)
    [ 0.000000] ACPI: BOOT 000000009b7e5000 00028 (v01 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
    [ 0.000000] ACPI: ASPT 000000009b7e2000 00034 (v04 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
    [ 0.000000] ACPI: WDAT 000000009b7e1000 00224 (v01 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
    [ 0.000000] ACPI: SSDT 000000009b7e0000 009F1 (v01 PmRef CpuPm 00003000 INTL 20051117)
    [ 0.000000] ACPI: SSDT 000000009b7de000 01B34 (v01 AmdRef AmdTabl 00001000 INTL 20051117)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000025bffffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x25bffffff]
    [ 0.000000] NODE_DATA [mem 0x25bff5000-0x25bff9fff]
    [ 0.000000] [ffffea0000000000-ffffea00097fffff] PMD -> [ffff880253600000-ffff88025b5fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x25bffffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0009cfff]
    [ 0.000000] node 0: [mem 0x00100000-0x9b63efff]
    [ 0.000000] node 0: [mem 0x9b7ff000-0x9b7fffff]
    [ 0.000000] node 0: [mem 0x100000000-0x1fbffffff]
    [ 0.000000] node 0: [mem 0x200000000-0x25bffffff]
    [ 0.000000] On node 0 totalpages: 2045404
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 21 pages reserved
    [ 0.000000] DMA zone: 3996 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 9881 pages used for memmap
    [ 0.000000] DMA32 zone: 632384 pages, LIFO batch:31
    [ 0.000000] Normal zone: 22272 pages used for memmap
    [ 0.000000] Normal zone: 1409024 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[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[0x04] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x05] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 8 CPUs, 4 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009d000-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 0x9b63f000-0x9b6befff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9b6bf000-0x9b7befff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9b7bf000-0x9b7fefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9b800000-0x9fffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xa0000000-0xefffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xf7ffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfeafffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfeb00000-0xfeb03fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfeb04000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-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-0xfed1afff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1b000-0xfed1ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffe7ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xffe80000-0xffffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x1fc000000-0x1ffffffff]
    [ 0.000000] e820: [mem 0xa0000000-0xefffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88025bc00000 s86464 r8192 d24128 u262144
    [ 0.000000] pcpu-alloc: s86464 r8192 d24128 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2013166
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a303086c-e564-4347-92f1-8ec5ecbdcf85 rw
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 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: 7968736K/8181616K available (5116K kernel code, 807K rwdata, 1628K rodata, 1144K init, 1288K bss, 212880K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
    [ 0.000000] NR_IRQS:8448 nr_irqs:744 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 33554432 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.003333] tsc: Detected 2527.115 MHz processor
    [ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 5056.82 BogoMIPS (lpj=8423716)
    [ 0.000006] pid_max: default: 32768 minimum: 301
    [ 0.000034] Security Framework initialized
    [ 0.000044] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000045] Yama: becoming mindful.
    [ 0.000540] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.002404] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.003228] Mount-cache hash table entries: 256
    [ 0.003423] Initializing cgroup subsys memory
    [ 0.003435] Initializing cgroup subsys devices
    [ 0.003437] Initializing cgroup subsys freezer
    [ 0.003439] Initializing cgroup subsys net_cls
    [ 0.003440] Initializing cgroup subsys blkio
    [ 0.003461] CPU: Physical Processor ID: 0
    [ 0.003462] CPU: Processor Core ID: 0
    [ 0.003467] mce: CPU supports 9 MCE banks
    [ 0.003478] CPU0: Thermal monitoring enabled (TM1)
    [ 0.003488] Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
    tlb_flushall_shift: 6
    [ 0.003577] Freeing SMP alternatives memory: 20K (ffffffff819e9000 - ffffffff819ee000)
    [ 0.004553] ACPI: Core revision 20130725
    [ 0.013862] ACPI: All ACPI Tables successfully acquired
    [ 0.040074] ftrace: allocating 20317 entries in 80 pages
    [ 0.050041] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.083030] smpboot: CPU0: Intel(R) Core(TM) i5 CPU M 460 @ 2.53GHz (fam: 06, model: 25, stepping: 05)
    [ 0.187276] Performance Events: PEBS fmt1+, 16-deep LBR, Westmere events, Intel PMU driver.
    [ 0.187282] perf_event_intel: CPUID marked event: 'bus cycles' unavailable
    [ 0.187285] ... version: 3
    [ 0.187285] ... bit width: 48
    [ 0.187286] ... generic registers: 4
    [ 0.187287] ... value mask: 0000ffffffffffff
    [ 0.187288] ... max period: 000000007fffffff
    [ 0.187289] ... fixed-purpose events: 3
    [ 0.187290] ... event mask: 000000070000000f
    [ 0.663841] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.650477] smpboot: Booting Node 0, Processors # 1 # 2 # 3 OK
    [ 0.703729] Brought up 4 CPUs
    [ 0.703734] smpboot: Total of 4 processors activated (20225.29 BogoMIPS)
    [ 0.706247] devtmpfs: initialized
    [ 0.709362] PM: Registering ACPI NVS region [mem 0x9b6bf000-0x9b7befff] (1048576 bytes)
    [ 0.710207] RTC time: 6:14:18, date: 01/25/14
    [ 0.710248] NET: Registered protocol family 16
    [ 0.710345] cpuidle: using governor ladder
    [ 0.710347] cpuidle: using governor menu
    [ 0.710375] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.710377] ACPI: bus type PCI registered
    [ 0.710379] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.710443] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
    [ 0.710446] PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in E820
    [ 0.717442] PCI: Using configuration type 1 for base access
    [ 0.718023] bio: create slab <bio-0> at 0
    [ 0.718137] ACPI: Added _OSI(Module Device)
    [ 0.718139] ACPI: Added _OSI(Processor Device)
    [ 0.718140] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.718141] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.719738] ACPI: EC: Look up EC in DSDT
    [ 0.727062] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.732709] ACPI: SSDT 000000009b691918 00432 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    [ 0.733085] ACPI: Dynamic OEM Table Load:
    [ 0.733087] ACPI: SSDT (null) 00432 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    [ 0.733226] ACPI: SSDT 000000009b68f018 00891 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.733586] ACPI: Dynamic OEM Table Load:
    [ 0.733588] ACPI: SSDT (null) 00891 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.757289] ACPI: SSDT 000000009b690a98 00303 (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.757699] ACPI: Dynamic OEM Table Load:
    [ 0.757701] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.767184] ACPI: SSDT 000000009b68ed98 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.767569] ACPI: Dynamic OEM Table Load:
    [ 0.767571] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.827076] ACPI: Interpreter enabled
    [ 0.827091] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130725/hwxface-571)
    [ 0.827097] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130725/hwxface-571)
    [ 0.827117] ACPI: (supports S0 S3 S4 S5)
    [ 0.827119] ACPI: Using IOAPIC for interrupt routing
    [ 0.827154] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.827263] ACPI: No dock devices found.
    [ 1.461183] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
    [ 1.461215] \_SB_.PCI0:_OSC invalid UUID
    [ 1.461216] _OSC request data:1 8 0
    [ 1.461245] \_SB_.PCI0:_OSC invalid UUID
    [ 1.461246] _OSC request data:1 1f 0
    [ 1.461249] acpi PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    [ 1.461251] acpi PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
    [ 1.461907] PCI host bridge to bus 0000:00
    [ 1.461911] pci_bus 0000:00: root bus resource [bus 00-7e]
    [ 1.461912] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 1.461914] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 1.461915] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 1.461917] pci_bus 0000:00: root bus resource [mem 0xa0000000-0xfeafffff]
    [ 1.461925] pci 0000:00:00.0: [8086:0044] type 00 class 0x060000
    [ 1.461941] DMAR: Disabling batched IOTLB flush on Ironlake
    [ 1.462003] pci 0000:00:01.0: [8086:0045] type 01 class 0x060400
    [ 1.462034] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 1.462069] pci 0000:00:01.0: System wakeup disabled by ACPI
    [ 1.462102] pci 0000:00:02.0: [8086:0046] type 00 class 0x030000
    [ 1.462112] pci 0000:00:02.0: reg 0x10: [mem 0xc0000000-0xc03fffff 64bit]
    [ 1.462118] pci 0000:00:02.0: reg 0x18: [mem 0xb0000000-0xbfffffff 64bit pref]
    [ 1.462122] pci 0000:00:02.0: reg 0x20: [io 0x5050-0x5057]
    [ 1.462225] pci 0000:00:16.0: [8086:3b64] type 00 class 0x078000
    [ 1.462253] pci 0000:00:16.0: reg 0x10: [mem 0xc4504000-0xc450400f 64bit]
    [ 1.462346] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 1.462430] pci 0000:00:1a.0: [8086:3b3c] type 00 class 0x0c0320
    [ 1.462844] pci 0000:00:1a.0: reg 0x10: [mem 0xc450a000-0xc450a3ff]
    [ 1.465285] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 1.465342] pci 0000:00:1a.0: System wakeup disabled by ACPI
    [ 1.465384] pci 0000:00:1b.0: [8086:3b56] type 00 class 0x040300
    [ 1.465404] pci 0000:00:1b.0: reg 0x10: [mem 0xc4500000-0xc4503fff 64bit]
    [ 1.465500] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 1.465545] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 1.465580] pci 0000:00:1c.0: [8086:3b42] type 01 class 0x060400
    [ 1.465677] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 1.465723] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 1.465756] pci 0000:00:1c.1: [8086:3b44] type 01 class 0x060400
    [ 1.465853] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 1.465899] pci 0000:00:1c.1: System wakeup disabled by ACPI
    [ 1.465946] pci 0000:00:1d.0: [8086:3b34] type 00 class 0x0c0320
    [ 1.466360] pci 0000:00:1d.0: reg 0x10: [mem 0xc4509000-0xc45093ff]
    [ 1.468800] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 1.468856] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 1.468891] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    [ 1.468992] pci 0000:00:1e.0: System wakeup disabled by ACPI
    [ 1.469026] pci 0000:00:1f.0: [8086:3b09] type 00 class 0x060100
    [ 1.469192] pci 0000:00:1f.2: [8086:3b29] type 00 class 0x010601
    [ 1.469218] pci 0000:00:1f.2: reg 0x10: [io 0x5048-0x504f]
    [ 1.469229] pci 0000:00:1f.2: reg 0x14: [io 0x505c-0x505f]
    [ 1.469239] pci 0000:00:1f.2: reg 0x18: [io 0x5040-0x5047]
    [ 1.469250] pci 0000:00:1f.2: reg 0x1c: [io 0x5058-0x505b]
    [ 1.469261] pci 0000:00:1f.2: reg 0x20: [io 0x5020-0x503f]
    [ 1.469272] pci 0000:00:1f.2: reg 0x24: [mem 0xc4508000-0xc45087ff]
    [ 1.469336] pci 0000:00:1f.2: PME# supported from D3hot
    [ 1.469405] pci 0000:00:1f.3: [8086:3b30] type 00 class 0x0c0500
    [ 1.469425] pci 0000:00:1f.3: reg 0x10: [mem 0xc4506000-0xc45060ff 64bit]
    [ 1.469455] pci 0000:00:1f.3: reg 0x20: [io 0x5000-0x501f]
    [ 1.469543] pci 0000:00:1f.6: [8086:3b32] type 00 class 0x118000
    [ 1.469570] pci 0000:00:1f.6: reg 0x10: [mem 0xc4507000-0xc4507fff 64bit]
    [ 1.469761] pci 0000:01:00.0: [1002:68c1] type 00 class 0x030000
    [ 1.469775] pci 0000:01:00.0: reg 0x10: [mem 0xa0000000-0xafffffff 64bit pref]
    [ 1.469785] pci 0000:01:00.0: reg 0x18: [mem 0xc4400000-0xc441ffff 64bit]
    [ 1.469792] pci 0000:01:00.0: reg 0x20: [io 0x4000-0x40ff]
    [ 1.469803] pci 0000:01:00.0: reg 0x30: [mem 0xfffe0000-0xffffffff pref]
    [ 1.469840] pci 0000:01:00.0: supports D1 D2
    [ 1.469884] pci 0000:01:00.1: [1002:aa60] type 00 class 0x040300
    [ 1.469899] pci 0000:01:00.1: reg 0x10: [mem 0xc4420000-0xc4423fff 64bit]
    [ 1.469966] pci 0000:01:00.1: supports D1 D2
    [ 1.470024] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 1.470027] pci 0000:00:01.0: bridge window [io 0x4000-0x4fff]
    [ 1.470029] pci 0000:00:01.0: bridge window [mem 0xc4400000-0xc44fffff]
    [ 1.470032] pci 0000:00:01.0: bridge window [mem 0xa0000000-0xafffffff 64bit pref]
    [ 1.470151] pci 0000:02:00.0: [8086:0084] type 00 class 0x028000
    [ 1.470195] pci 0000:02:00.0: reg 0x10: [mem 0xc3400000-0xc3401fff 64bit]
    [ 1.470407] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
    [ 1.480075] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 1.480083] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    [ 1.480090] pci 0000:00:1c.0: bridge window [mem 0xc3400000-0xc43fffff]
    [ 1.480101] pci 0000:00:1c.0: bridge window [mem 0xc0400000-0xc13fffff 64bit pref]
    [ 1.480205] pci 0000:03:00.0: [10ec:8168] type 00 class 0x020000
    [ 1.480221] pci 0000:03:00.0: reg 0x10: [io 0x2000-0x20ff]
    [ 1.480247] pci 0000:03:00.0: reg 0x18: [mem 0xc1404000-0xc1404fff 64bit pref]
    [ 1.480264] pci 0000:03:00.0: reg 0x20: [mem 0xc1400000-0xc1403fff 64bit pref]
    [ 1.480276] pci 0000:03:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
    [ 1.480339] pci 0000:03:00.0: supports D1 D2
    [ 1.480340] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 1.480382] pci 0000:03:00.0: System wakeup disabled by ACPI
    [ 1.490020] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 1.490028] pci 0000:00:1c.1: bridge window [io 0x2000-0x2fff]
    [ 1.490035] pci 0000:00:1c.1: bridge window [mem 0xc2400000-0xc33fffff]
    [ 1.490046] pci 0000:00:1c.1: bridge window [mem 0xc1400000-0xc23fffff 64bit pref]
    [ 1.490160] pci 0000:00:1e.0: PCI bridge to [bus 04] (subtractive decode)
    [ 1.490173] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 1.490174] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 1.490176] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 1.490177] pci 0000:00:1e.0: bridge window [mem 0xa0000000-0xfeafffff] (subtractive decode)
    [ 1.490618] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    [ 1.490666] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 *11 12 14 15)
    [ 1.490712] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
    [ 1.490761] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    [ 1.490808] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
    [ 1.490854] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 *11 12 14 15)
    [ 1.490902] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 *10 12 14 15)
    [ 1.490948] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
    [ 1.693626] ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus 7f])
    [ 1.693629] acpi PNP0A03:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    [ 1.693631] acpi PNP0A03:00: Unable to request _OSC control (_OSC support mask: 0x08)
    [ 1.693691] PCI host bridge to bus 0000:7f
    [ 1.693694] pci_bus 0000:7f: root bus resource [bus 7f]
    [ 1.693698] pci 0000:7f:00.0: [8086:2c62] type 00 class 0x060000
    [ 1.693735] pci 0000:7f:00.1: [8086:2d01] type 00 class 0x060000
    [ 1.693774] pci 0000:7f:02.0: [8086:2d10] type 00 class 0x060000
    [ 1.693808] pci 0000:7f:02.1: [8086:2d11] type 00 class 0x060000
    [ 1.693841] pci 0000:7f:02.2: [8086:2d12] type 00 class 0x060000
    [ 1.693875] pci 0000:7f:02.3: [8086:2d13] type 00 class 0x060000
    [ 1.694220] ACPI: Enabled 7 GPEs in block 00 to 3F
    [ 1.694226] ACPI: \_SB_.PCI0: notify handler is installed
    [ 1.694261] ACPI: \_SB_.CPBG: notify handler is installed
    [ 1.694272] Found 2 acpi root devices
    [ 1.694307] ACPI: EC: GPE = 0x16, I/O: command/status = 0x66, data = 0x62
    [ 1.694393] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 1.694397] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
    [ 1.694399] vgaarb: loaded
    [ 1.694400] vgaarb: bridge control possible 0000:01:00.0
    [ 1.694401] vgaarb: no bridge control possible 0000:00:02.0
    [ 1.694436] PCI: Using ACPI for IRQ routing
    [ 1.699238] PCI: pci_cache_line_size set to 64 bytes
    [ 1.699337] e820: reserve RAM buffer [mem 0x0009d000-0x0009ffff]
    [ 1.699339] e820: reserve RAM buffer [mem 0x9b63f000-0x9bffffff]
    [ 1.699340] e820: reserve RAM buffer [mem 0x9b800000-0x9bffffff]
    [ 1.699428] NetLabel: Initializing
    [ 1.699429] NetLabel: domain hash size = 128
    [ 1.699430] NetLabel: protocols = UNLABELED CIPSOv4
    [ 1.699443] NetLabel: unlabeled traffic allowed by default
    [ 1.699467] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 1.699472] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 1.701500] Switched to clocksource hpet
    [ 1.705449] pnp: PnP ACPI init
    [ 1.705466] ACPI: bus type PNP registered
    [ 1.705591] pnp 00:00: [dma 4]
    [ 1.705621] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 1.705641] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
    [ 1.705757] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 1.705791] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 1.705846] system 00:04: [io 0x0680-0x069f] has been reserved
    [ 1.705848] system 00:04: [io 0x0800-0x080f] has been reserved
    [ 1.705850] system 00:04: [io 0xffff] has been reserved
    [ 1.705852] system 00:04: [io 0xffff] has been reserved
    [ 1.705853] system 00:04: [io 0x0400-0x047f] could not be reserved
    [ 1.705855] system 00:04: [io 0x0500-0x057f] has been reserved
    [ 1.705857] system 00:04: [io 0x164e-0x164f] has been reserved
    [ 1.705858] system 00:04: [io 0x0380-0x038e] has been reserved
    [ 1.705861] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 1.705887] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 1.705918] pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 1.705955] pnp 00:07: Plug and Play ACPI device, IDs SYN1e1d SYN1e00 SYN0002 PNP0f13 (active)
    [ 1.706069] pnp 00:08: Plug and Play ACPI device, IDs HPQ0004 (active)
    [ 1.706268] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 1.706270] system 00:09: [mem 0xfed10000-0xfed13fff] has been reserved
    [ 1.706272] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 1.706274] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 1.706275] system 00:09: [mem 0xf0000000-0xf1ffffff] has been reserved
    [ 1.706277] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 1.706281] system 00:09: [mem 0xff000000-0xffffffff] could not be reserved
    [ 1.706283] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 1.706285] system 00:09: [mem 0xc4600000-0xc4600fff] has been reserved
    [ 1.706287] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 1.905114] pnp: PnP ACPI: found 10 devices
    [ 1.905115] ACPI: bus type PNP unregistered
    [ 1.911635] pci 0000:01:00.0: no compatible bridge window for [mem 0xfffe0000-0xffffffff pref]
    [ 1.911639] pci 0000:03:00.0: no compatible bridge window for [mem 0xffff0000-0xffffffff pref]
    [ 1.911677] pci 0000:01:00.0: BAR 6: assigned [mem 0xc4440000-0xc445ffff pref]
    [ 1.911680] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 1.911682] pci 0000:00:01.0: bridge window [io 0x4000-0x4fff]
    [ 1.911685] pci 0000:00:01.0: bridge window [mem 0xc4400000-0xc44fffff]
    [ 1.911687] pci 0000:00:01.0: bridge window [mem 0xa0000000-0xafffffff 64bit pref]
    [ 1.911691] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 1.911694] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    [ 1.911699] pci 0000:00:1c.0: bridge window [mem 0xc3400000-0xc43fffff]
    [ 1.911704] pci 0000:00:1c.0: bridge window [mem 0xc0400000-0xc13fffff 64bit pref]
    [ 1.911711] pci 0000:03:00.0: BAR 6: assigned [mem 0xc1410000-0xc141ffff pref]
    [ 1.911713] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 1.911716] pci 0000:00:1c.1: bridge window [io 0x2000-0x2fff]
    [ 1.911721] pci 0000:00:1c.1: bridge window [mem 0xc2400000-0xc33fffff]
    [ 1.911726] pci 0000:00:1c.1: bridge window [mem 0xc1400000-0xc23fffff 64bit pref]
    [ 1.911733] pci 0000:00:1e.0: PCI bridge to [bus 04]
    [ 1.911747] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 1.911749] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 1.911750] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 1.911752] pci_bus 0000:00: resource 7 [mem 0xa0000000-0xfeafffff]
    [ 1.911753] pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
    [ 1.911755] pci_bus 0000:01: resource 1 [mem 0xc4400000-0xc44fffff]
    [ 1.911756] pci_bus 0000:01: resource 2 [mem 0xa0000000-0xafffffff 64bit pref]
    [ 1.911758] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
    [ 1.911760] pci_bus 0000:02: resource 1 [mem 0xc3400000-0xc43fffff]
    [ 1.911761] pci_bus 0000:02: resource 2 [mem 0xc0400000-0xc13fffff 64bit pref]
    [ 1.911763] pci_bus 0000:03: resource 0 [io 0x2000-0x2fff]
    [ 1.911764] pci_bus 0000:03: resource 1 [mem 0xc2400000-0xc33fffff]
    [ 1.911766] pci_bus 0000:03: resource 2 [mem 0xc1400000-0xc23fffff 64bit pref]
    [ 1.911767] pci_bus 0000:04: resource 4 [io 0x0000-0x0cf7]
    [ 1.911769] pci_bus 0000:04: resource 5 [io 0x0d00-0xffff]
    [ 1.911770] pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff]
    [ 1.911772] pci_bus 0000:04: resource 7 [mem 0xa0000000-0xfeafffff]
    [ 1.911805] NET: Registered protocol family 2
    [ 1.912015] TCP established hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 1.912263] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 1.912459] TCP: Hash tables configured (established 65536 bind 65536)
    [ 1.912493] TCP: reno registered
    [ 1.912506] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [ 1.912542] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [ 1.912641] NET: Registered protocol family 1
    [ 1.912657] pci 0000:00:02.0: Boot video device
    [ 1.938251] PCI: CLS 64 bytes, default 64
    [ 1.938297] Unpacking initramfs...
    [ 1.987010] Freeing initrd memory: 2960K (ffff880037a28000 - ffff880037d0c000)
    [ 1.987017] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 1.987019] software IO TLB [mem 0x9763f000-0x9b63f000] (64MB) mapped at [ffff88009763f000-ffff88009b63efff]
    [ 1.987050] Simple Boot Flag at 0x44 set to 0x1
    [ 1.987234] Scanning for low memory corruption every 60 seconds
    [ 1.987523] audit: initializing netlink socket (disabled)
    [ 1.987536] type=2000 audit(1390630458.423:1): initialized
    [ 1.998005] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 1.999257] zbud: loaded
    [ 1.999421] VFS: Disk quotas dquot_6.5.2
    [ 1.999457] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 1.999614] msgmni has been set to 15569
    [ 1.999955] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 2.000004] io scheduler noop registered
    [ 2.000006] io scheduler deadline registered
    [ 2.000029] io scheduler cfq registered (default)
    [ 2.000219] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 2.000474] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 2.000487] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 2.000526] vesafb: mode is 1600x900x32, linelength=6400, pages=0
    [ 2.000528] vesafb: scrolling: redraw
    [ 2.000529] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 2.000872] vesafb: framebuffer at 0xb0000000, mapped to 0xffffc90008f00000, using 5632k, total 5632k
    [ 2.208493] Console: switching to colour frame buffer device 200x56
    [ 2.415572] fb0: VESA VGA frame buffer device
    [ 2.415583] intel_idle: MWAIT substates: 0x1120
    [ 2.415585] intel_idle: v0.4 model 0x25
    [ 2.415585] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 2.415721] GHES: HEST is not enabled!
    [ 2.415778] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 2.416220] Linux agpgart interface v0.103
    [ 2.416282] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 2.437802] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 2.437825] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 2.437928] mousedev: PS/2 mouse device common for all mice
    [ 2.439572] rtc_cmos 00:05: RTC can wake from S4
    [ 2.439720] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [ 2.439752] rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 2.439804] drop_monitor: Initializing network drop monitor service
    [ 2.439867] TCP: cubic registered
    [ 2.439942] NET: Registered protocol family 10
    [ 2.440100] NET: Registered protocol family 17
    [ 2.440110] Key type dns_resolver registered
    [ 2.440362] registered taskstats version 1
    [ 2.441127] Magic number: 14:648:216
    [ 2.441252] rtc_cmos 00:05: setting system clock to 2014-01-25 06:14:19 UTC (1390630459)
    [ 2.441297] PM: Hibernation image not present or could not be loaded.
    [ 2.442333] Freeing unused kernel memory: 1144K (ffffffff818cb000 - ffffffff819e9000)
    [ 2.442335] Write protecting the kernel read-only data: 8192k
    [ 2.444650] Freeing unused kernel memory: 1016K (ffff880001502000 - ffff880001600000)
    [ 2.445600] Freeing unused kernel memory: 420K (ffff880001797000 - ffff880001800000)
    [ 2.458198] systemd-udevd[57]: starting version 208
    [ 2.466960] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 2.485606] SCSI subsystem initialized
    [ 2.487357] ACPI: bus type USB registered
    [ 2.487410] usbcore: registered new interface driver usbfs
    [ 2.487487] libata version 3.00 loaded.
    [ 2.487522] usbcore: registered new interface driver hub
    [ 2.487576] usbcore: registered new device driver usb
    [ 2.488154] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 2.488305] ehci-pci: EHCI PCI platform driver
    [ 2.488453] ehci-pci 0000:00:1a.0: setting latency timer to 64
    [ 2.488473] ehci-pci 0000:00:1a.0: EHCI Host Controller
    [ 2.488484] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 2.488507] ehci-pci 0000:00:1a.0: debug port 2
    [ 2.492709] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    [ 2.492734] ehci-pci 0000:00:1a.0: irq 16, io mem 0xc450a000
    [ 2.501178] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 2.501456] hub 1-0:1.0: USB hub found
    [ 2.501468] hub 1-0:1.0: 3 ports detected
    [ 2.501772] ehci-pci 0000:00:1d.0: setting latency timer to 64
    [ 2.501779] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 2.501786] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 2.501801] ehci-pci 0000:00:1d.0: debug port 2
    [ 2.505713] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 2.505733] ehci-pci 0000:00:1d.0: irq 21, io mem 0xc4509000
    [ 2.514513] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 2.514735] hub 2-0:1.0: USB hub found
    [ 2.514741] hub 2-0:1.0: 3 ports detected
    [ 2.514993] ahci 0000:00:1f.2: version 3.0
    [ 2.515120] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
    [ 2.515225] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 3 Gbps 0x33 impl SATA mode
    [ 2.515229] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems sxs apst
    [ 2.515236] ahci 0000:00:1f.2: setting latency timer to 64
    [ 2.535192] scsi0 : ahci
    [ 2.535558] scsi1 : ahci
    [ 2.535764] scsi2 : ahci
    [ 2.535955] scsi3 : ahci
    [ 2.536149] scsi4 : ahci
    [ 2.536359] scsi5 : ahci
    [ 2.536451] ata1: SATA max UDMA/133 abar m2048@0xc4508000 port 0xc4508100 irq 41
    [ 2.536457] ata2: SATA max UDMA/133 abar m2048@0xc4508000 port 0xc4508180 irq 41
    [ 2.536459] ata3: DUMMY
    [ 2.536462] ata4: DUMMY
    [ 2.536467] ata5: SATA max UDMA/133 abar m2048@0xc4508000 port 0xc4508300 irq 41
    [ 2.536471] ata6: SATA max UDMA/133 abar m2048@0xc4508000 port 0xc4508380 irq 41
    [ 2.807839] usb 1-1: new high-speed USB device number 2 using ehci-pci
    [ 2.854462] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 2.854564] ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 2.854611] ata6: SATA link down (SStatus 0 SControl 300)
    [ 2.854735] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 2.856919] ata2.00: ATAPI: hp BD-ROM BC-5501H, 2.90, max UDMA/100
    [ 2.859217] ata2.00: configured for UDMA/100
    [ 2.861881] ata1.00: ATA-8: Corsair CSSD-F60GB2, 2.0, max UDMA/133
    [ 2.861886] ata1.00: 117231408 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 2.871886] ata1.00: configured for UDMA/133
    [ 2.872196] scsi 0:0:0:0: Direct-Access ATA Corsair CSSD-F60 2.0 PQ: 0 ANSI: 5
    [ 2.873244] scsi 1:0:0:0: CD-ROM hp BD ROM BC-5501H 2.90 PQ: 0 ANSI: 5
    [ 2.903929] ata5.00: ATA-8: TOSHIBA MK5075GSX, GT001U, max UDMA/100
    [ 2.903933] ata5.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 2.905148] ata5.00: configured for UDMA/100
    [ 2.905285] scsi 4:0:0:0: Direct-Access ATA TOSHIBA MK5075GS GT00 PQ: 0 ANSI: 5
    [ 2.909966] sd 0:0:0:0: [sda] 117231408 512-byte logical blocks: (60.0 GB/55.8 GiB)
    [ 2.910041] sd 0:0:0:0: [sda] Write Protect is off
    [ 2.910048] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 2.910091] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.910499] sd 4:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 2.910501] sd 4:0:0:0: [sdb] 4096-byte physical blocks
    [ 2.910526] sd 4:0:0:0: [sdb] Write Protect is off
    [ 2.910528] sd 4:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 2.910540] sd 4:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.910633] sda: sda1 sda2 sda3 sda4
    [ 2.911010] sr0: scsi3-mmc drive: 62x/62x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 2.911016] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 2.911095] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 2.911204] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 2.932118] hub 1-1:1.0: USB hub found
    [ 2.932226] hub 1-1:1.0: 6 ports detected
    [ 2.953159] sdb: sdb1 sdb3
    [ 2.953757] sd 4:0:0:0: [sdb] Attached SCSI disk
    [ 2.987624] tsc: Refined TSC clocksource calibration: 2527.285 MHz
    [ 3.037677] usb 2-1: new high-speed USB device number 2 using ehci-pci
    [ 3.161529] hub 2-1:1.0: USB hub found
    [ 3.161615] hub 2-1:1.0: 8 ports detected
    [ 3.241106] usb 1-1.2: new low-speed USB device number 3 using ehci-pci
    [ 3.333324] hidraw: raw HID events driver (C) Jiri Kosina
    [ 3.336248] usbcore: registered new interface driver usbhid
    [ 3.336250] usbhid: USB HID core driver
    [ 3.336850] input: Microsoft Microsoft Basic Optical Mouse v2.0 as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input2
    [ 3.337086] hid-generic 0003:045E:00CB.0001: input,hidraw0: USB HID v1.11 Mouse [Microsoft Microsoft Basic Optical Mouse v2.0 ] on usb-0000:00:1a.0-1.2/input0
    [ 3.397519] usb 1-1.6: new full-speed USB device number 4 using ehci-pci
    [ 3.486816] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
    [ 3.546180] systemd[1]: systemd 208 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 3.548701] systemd[1]: Set hostname to <HP-DV7>.
    [ 3.553751] systemd-fstab-generator[119]: Mount point swap is not a valid path, ignoring.
    [ 3.564291] usb 2-1.1: new high-speed USB device number 3 using ehci-pci
    [ 3.601149] systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory.
    [ 3.601160] systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory.
    [ 3.601361] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 3.601419] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 3.601433] systemd[1]: Starting Remote File Systems.
    [ 3.602633] systemd[1]: Reached target Remote File Systems.
    [ 3.602645] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 3.604045] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 3.604055] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 3.605524] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 3.605534] systemd[1]: Starting Delayed Shutdown Socket.
    [ 3.606751] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 3.606760] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 3.608067] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 3.608103] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 3.610164] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 3.610180] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 3.610209] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 3.610218] systemd[1]: Starting Paths.
    [ 3.611135] systemd[1]: Reached target Paths.
    [ 3.611150] systemd[1]: Starting udev Kernel Socket.
    [ 3.612271] systemd[1]: Listening on udev Kernel Socket.
    [ 3.612284] systemd[1]: Starting udev Control Socket.
    [ 3.613423] systemd[1]: Listening on udev Control Socket.
    [ 3.613435] systemd[1]: Starting Journal Socket.
    [ 3.614518] systemd[1]: Listening on Journal Socket.
    [ 3.614535] systemd[1]: Starting udev Coldplug all Devices...
    [ 3.616439] systemd[1]: Starting Apply Kernel Variables...
    [ 3.617780] systemd[1]: Mounting Huge Pages File System...
    [ 3.619103] systemd[1]: Mounting POSIX Message Queue File System...
    [ 3.622065] systemd[1]: Starting Load Kernel Modules...
    [ 3.626618] systemd[1]: Starting Create list of required static device nodes for the current kernel...
    [ 3.629265] systemd[1]: Starting Set Up Additional Binary Formats...
    [ 3.630812] systemd[1]: Starting Journal Service...
    [ 3.633257] systemd[1]: Started Journal Service.
    [ 3.643151] systemd-journald[134]: Vacuuming done, freed 0 bytes
    [ 3.643416] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input3
    [ 3.643422] ACPI: Power Button [PWRB]
    [ 3.643483] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input4
    [ 3.643552] EXT4-fs (sda4): re-mounted. Opts: discard
    [ 3.643855] ACPI: Lid Switch [LID0]
    [ 3.643927] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
    [ 3.643930] ACPI: Power Button [PWRF]
    [ 3.644676] AMD IOMMUv2 driver by Joerg Roedel <[email protected]>
    [ 3.644679] AMD IOMMUv2 functionality not available on this system
    [ 3.705533] systemd-udevd[157]: starting version 208
    [ 3.714133] usb 2-1.3: new full-speed USB device number 4 using ehci-pci
    [ 3.723418] fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel.
    [ 3.723419] Disabling lock debugging due to kernel taint
    [ 3.734452] <6>[fglrx] Maximum main memory to use for locked dma buffers: 7558 MBytes.
    [ 3.734648] <6>[fglrx] vendor: 1002 device: 68c1 count: 1
    [ 3.734918] <6>[fglrx] ioport: bar 4, base 0x4000, size: 0x100
    [ 3.734926] pci 0000:01:00.0: enabling device (0000 -> 0003)
    [ 3.735095] <6>[fglrx] Kernel PAT support is enabled
    [ 3.735114] <6>[fglrx] module loaded - fglrx 13.25.5 [Dec 6 2013] with 1 minors
    [ 3.783368] ACPI: Requesting acpi_cpufreq
    [ 3.784868] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 3.785719] agpgart-intel 0000:00:00.0: Intel HD Graphics Chipset
    [ 3.785798] agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
    [ 3.786504] agpgart-intel 0000:00:00.0: detected 32768K stolen memory
    [ 3.786902] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xb0000000
    [ 3.787185] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20130725/utaddress-251)
    [ 3.787188] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 3.787192] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \GPIO 1 (20130725/utaddress-251)
    [ 3.787195] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \SGGP 2 (20130725/utaddress-251)
    [ 3.787198] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \_SB_.PCI0.P0P3.PEGP.GPIO 3 (20130725/utaddress-251)
    [ 3.787198] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 3.787200] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20130725/utaddress-251)
    [ 3.787203] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \SGGP 2 (20130725/utaddress-251)
    [ 3.787205] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \_SB_.PCI0.P0P3.PEGP.GPIO 3 (20130725/utaddress-251)
    [ 3.787206] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 3.787208] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20130725/utaddress-251)
    [ 3.787210] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \SGGP 2 (20130725/utaddress-251)
    [ 3.787213] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \_SB_.PCI0.P0P3.PEGP.GPIO 3 (20130725/utaddress-251)
    [ 3.787213] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 3.787214] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 3.788226] mei_me 0000:00:16.0: setting latency timer to 64
    [ 3.788279] mei_me 0000:00:16.0: irq 42 for MSI/MSI-X
    [ 3.803478] hp_accel: hardware type DV7 found
    [ 3.804108] lis3lv02d: 8 bits sensor found
    [ 3.806403] [drm] Initialized drm 1.1.0 20060810
    [ 3.817825] snd_hda_intel 0000:00:1b.0: irq 43 for MSI/MSI-X
    [ 3.820698] usb-storage 2-1.1:1.0: USB Mass Storage device detected
    [ 3.821478] scsi6 : usb-storage 2-1.1:1.0
    [ 3.822190] usbcore: registered new interface driver usb-storage
    [ 3.836293] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input6
    [ 3.840807] input: ST LIS3LV02DL Accelerometer as /devices/platform/lis3lv02d/input/input7
    [ 3.842785] [Firmware Bug]: Invalid critical threshold (0)
    [ 3.848265] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 3.848278] r8169 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 3.848284] pcieport 0000:00:1c.1: driver skip pci_set_master, fix it!
    [ 3.848512] r8169 0000:03:00.0: irq 44 for MSI/MSI-X
    [ 3.848684] r8169 0000:03:00.0 eth0: RTL8168d/8111d at 0xffffc90000c4e000, 78:ac:c0:41:2a:dc, XID 083000c0 IRQ 44
    [ 3.848685] r8169 0000:03:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
    [ 3.848994] thermal LNXTHERM:00: registered as thermal_zone0
    [ 3.848996] ACPI: Thermal Zone [TZ01] (60 C)
    [ 3.854926] input: HDA Intel MID Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
    [ 3.855035] input: HDA Intel MID Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
    [ 3.855410] hda-intel 0000:01:00.1: Handle VGA-switcheroo audio client
    [ 3.855479] snd_hda_intel 0000:01:00.1: irq 45 for MSI/MSI-X
    [ 3.856762] [drm] Memory usable by graphics device = 2048M
    [ 3.856877] checking generic (b0000000 580000) vs hw (b0000000 10000000)
    [ 3.856906] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
    [ 3.861908] cfg80211: Calling CRDA to update world regulatory domain
    [ 3.867315] usb 2-1.5: new high-speed USB device number 5 using ehci-pci
    [ 3.872505] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input10
    [ 3.873734] Intel(R) Wireless WiFi driver for Linux, in-tree:
    [ 3.873734] Copyright(c) 2003-2013 Intel Corporation
    [ 3.873811] pcieport 0000:00:1c.0: driver skip pci_set_master, fix it!
    [ 3.875297] iwlwifi 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 3.875446] iwlwifi 0000:02:00.0: irq 46 for MSI/MSI-X
    [ 3.879450] iwlwifi 0000:02:00.0: loaded firmware version 39.31.5.1 build 35138 op_mode iwldvm
    [ 3.879788] Bluetooth: Core ver 2.16
    [ 3.881003] NET: Registered protocol family 31
    [ 3.881005] Bluetooth: HCI device and connection manager initialized
    [ 3.881016] Bluetooth: HCI socket layer initialized
    [ 3.881019] Bluetooth: L2CAP socket layer initialized
    [ 3.881026] Bluetooth: SCO socket layer initialized
    [ 3.883938] usbcore: registered new interface driver btusb
    [ 3.884347] Console: switching to colour dummy device 80x25
    [ 3.886414] i915 0000:00:02.0: setting latency timer to 64
    [ 3.892348] ACPI: AC Adapter [ACAD] (on-line)
    [ 3.906181] systemd-journald[134]: Received request to flush runtime journal from PID 1
    [ 3.910134] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEBUG disabled
    [ 3.910140] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
    [ 3.910142] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
    [ 3.910145] iwlwifi 0000:02:00.0: Detected Intel(R) Centrino(R) Wireless-N 1000 BGN, REV=0x6C
    [ 3.910257] iwlwifi 0000:02:00.0: L1 Enabled; Disabling L0S
    [ 3.930630] i915 0000:00:02.0: irq 47 for MSI/MSI-X
    [ 3.930654] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 3.930656] [drm] Driver supports precise vblank timestamp query.
    [ 3.931084] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=none
    [ 3.934147] input: PC Speaker as /devices/platform/pcspkr/input/input11
    [ 3.936986] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
    [ 3.950834] microcode: CPU0 sig=0x20655, pf=0x10, revision=0x2
    [ 3.966690] fbcon: inteldrmfb (fb0) is primary device
    [ 3.987780] Switched to clocksource tsc
    [ 3.996141] iTCO_vendor_support: vendor-support=0
    [ 3.996902] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 3.996972] iTCO_wdt: Found a HM55 TCO device (Version=2, TCOBASE=0x0460)
    [ 3.997186] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 4.022206] systemd-udevd[171]: renamed network interface eth0 to enp3s0
    [ 4.023553] cfg80211: World regulatory domain updated:
    [ 4.023554] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
    [ 4.023555] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm)
    [ 4.023556] cfg80211: (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm)
    [ 4.023557] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm)
    [ 4.023558] cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz), (N/A, 2000 mBm)
    [ 4.023558] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm)
    [ 4.023559] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm)
    [ 4.080995] microcode: CPU1 sig=0x20655, pf=0x10, revision=0x2
    [ 4.098822] microcode: CPU2 sig=0x20655, pf=0x10, revision=0x2
    [ 4.099319] microcode: CPU3 sig=0x20655, pf=0x10, revision=0x2
    [ 4.099803] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 4.100209] ACPI: Battery Slot [BAT0] (battery present)
    [ 4.100361] wmi: Mapper loaded
    [ 4.103136] input: HP WMI hotkeys as /devices/virtual/input/input13
    [ 4.104748] systemd-udevd[164]: renamed network interface wlan0 to wlo1
    [ 4.125347] kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL does not work properly. Using workaround
    [ 4.240631] media: Linux media interface: v0.10
    [ 4.244154] Linux video capture interface: v2.00
    [ 4.252000] uvcvideo: Found UVC 1.00 device HP Webcam (064e:f209)
    [ 4.257341] input: HP Webcam as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5/2-1.5:1.0/input/input14
    [ 4.257488] usbcore: registered new interface driver uvcvideo
    [ 4.257489] USB Video Class driver (1.1.1)
    [ 4.770357] Console: switching to colour frame buffer device 200x56
    [ 4.778627] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [ 4.778629] i915 0000:00:02.0: registered panic notifier
    [ 4.785739] acpi device:02: registered as cooling_device5
    [ 4.785956] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 4.786022] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input15
    [ 4.797354] acpi device:14: registered as cooling_device6
    [ 4.802976] acpi device:15: registered as cooling_device7
    [ 4.803025] ACPI: Video Device [VGA1] (multi-head: yes rom: no post: no)
    [ 4.803087] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:11/LNXVIDEO:02/input/input16
    [ 4.803440] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 4.803977] intel ips 0000:00:1f.6: CPU TDP doesn't match expected value (found 25, expected 29)
    [ 4.805256] intel ips 0000:00:1f.6: IPS driver initialized, MCP temp limit 90
    [ 4.805400] ACPI Warning: 0x0000000000005000-0x000000000000501f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20130725/utaddress-251)
    [ 4.805408] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 4.824848] scsi 6:0:0:0: Direct-Access SanDisk Cruzer Glide 1.26 PQ: 0 ANSI: 5
    [ 4.827187] sd 6:0:0:0: [sdc] 31266816 512-byte logical blocks: (16.0 GB/14.9 GiB)
    [ 4.828646] sd 6:0:0:0: [sdc] Write Protect is off
    [ 4.828651] sd 6:0:0:0: [sdc] Mode Sense: 43 00 00 00
    [ 4.830784] sd 6:0:0:0: [sdc] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
    [ 4.839857] sdc: sdc1
    [ 4.843514] sd 6:0:0:0: [sdc] Attached SCSI removable disk
    [ 4.894625] iwlwifi 0000:02:00.0: L1 Enabled; Disabling L0S
    [ 4.902120] iwlwifi 0000:02:00.0: Radio type=0x0-0x0-0x3
    [ 4.937012] iwlwifi 0000:02:00.0: L1 Enabled; Disabling L0S
    [ 4.944514] iwlwifi 0000:02:00.0: Radio type=0x0-0x0-0x3
    [ 4.978524] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
    [ 5.038118] r8169 0000:03:00.0 enp3s0: link down
    [ 5.038174] IPv6: ADDRCONF(NETDEV_UP): enp3s0: link is not ready
    [ 5.376682] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.4, id: 0x1e0b1, caps: 0xd04773/0xe40000/0x5a0400, board id: 3655, fw id: 631163
    [ 5.470179] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input12
    [ 5.851763] wlo1: authenticate with 04:a1:51:18:3f:5a
    [ 5.865752] wlo1: send auth to 04:a1:51:18:3f:5a (try 1/3)
    [ 5.868512] wlo1: authenticated
    [ 5.869715] wlo1: associate with 04:a1:51:18:3f:5a (try 1/3)
    [ 5.873551] wlo1: RX AssocResp from 04:a1:51:18:3f:5a (capab=0x411 status=0 aid=2)
    [ 5.876272] wlo1: associated
    [ 5.876327] IPv6: ADDRCONF(NETDEV_CHANGE): wlo1: link becomes ready
    [ 38.341494] fuse init (API version 7.22)
    Xorg.0.log
    [ 20.932]
    X.Org X Server 1.14.5
    Release Date: 2013-12-12
    [ 20.932] X Protocol Version 11, Revision 0
    [ 20.932] Build Operating System: Linux 3.12.6-1-ARCH x86_64
    [ 20.932] Current Operating System: Linux HP-DV7 3.12.8-1-ARCH #1 SMP PREEMPT Thu Jan 16 09:16:34 CET 2014 x86_64
    [ 20.932] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a303086c-e564-4347-92f1-8ec5ecbdcf85 rw
    [ 20.932] Build Date: 08 January 2014 01:35:51PM
    [ 20.932]
    [ 20.932] Current version of pixman: 0.32.4
    [ 20.932] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 20.932] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 20.932] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Jan 25 01:16:07 2014
    [ 20.935] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 20.938] (==) No Layout section. Using the first Screen section.
    [ 20.938] (==) No screen section available. Using defaults.
    [ 20.938] (**) |-->Screen "Default Screen Section" (0)
    [ 20.938] (**) | |-->Monitor "<default monitor>"
    [ 20.938] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 20.938] (**) | |-->Device "Intel Graphics"
    [ 20.938] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 20.938] (==) Automatically adding devices
    [ 20.938] (==) Automatically enabling devices
    [ 20.938] (==) Automatically adding GPU devices
    [ 20.947] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 20.947] (**) ModulePath set to "/usr/lib/xorg/modules/updates,/usr/lib/xorg/modules"
    [ 20.947] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 20.947] (II) Loader magic: 0x7fac20
    [ 20.947] (II) Module ABI versions:
    [ 20.947] X.Org ANSI C Emulation: 0.4
    [ 20.947] X.Org Video Driver: 14.1
    [ 20.947] X.Org XInput driver : 19.1
    [ 20.947] X.Org Server Extension : 7.0
    [ 20.947] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 20.948] (--) PCI:*(0:0:2:0) 8086:0046:103c:144b rev 2, Mem @ 0xc0000000/4194304, 0xb0000000/268435456, I/O @ 0x00005050/8
    [ 20.949] (--) PCI: (0:1:0:0) 1002:68c1:103c:144b rev 0, Mem @ 0xa0000000/268435456, 0xc4400000/131072, I/O @ 0x00004000/256, BIOS @ 0x????????/131072
    [ 20.949] Initializing built-in extension Generic Event Extension
    [ 20.949] Initializing built-in extension SHAPE
    [ 20.949] Initializing built-in extension MIT-SHM
    [ 20.949] Initializing built-in extension XInputExtension
    [ 20.949] Initializing built-in extension XTEST
    [ 20.949] Initializing built-in extension BIG-REQUESTS
    [ 20.949] Initializing built-in extension SYNC
    [ 20.949] Initializing built-in extension XKEYBOARD
    [ 20.949] Initializing built-in extension XC-MISC
    [ 20.949] Initializing built-in extension SECURITY
    [ 20.949] Initializing built-in extension XINERAMA
    [ 20.949] Initializing built-in extension XFIXES
    [ 20.949] Initializing built-in extension RENDER
    [ 20.949] Initializing built-in extension RANDR
    [ 20.949] Initializing built-in extension COMPOSITE
    [ 20.949] Initializing built-in extension DAMAGE
    [ 20.949] Initializing built-in extension MIT-SCREEN-SAVER
    [ 20.950] Initializing built-in extension DOUBLE-BUFFER
    [ 20.950] Initializing built-in extension RECORD
    [ 20.950] Initializing built-in extension DPMS
    [ 20.950] Initializing built-in extension X-Resource
    [ 20.950] Initializing built-in extension XVideo
    [ 20.950] Initializing built-in extension XVideo-MotionCompensation
    [ 20.950] Initializing built-in extension XFree86-VidModeExtension
    [ 20.950] Initializing built-in extension XFree86-DGA
    [ 20.950] Initializing built-in extension XFree86-DRI
    [ 20.950] Initializing built-in extension DRI2
    [ 20.950] (II) LoadModule: "glx"
    [ 20.951] (II) Loading /usr/lib/xorg/modules/updates/extensions/libglx.so
    [ 20.954] (II) Module glx: vendor="Advanced Micro Devices, Inc."
    [ 20.954] compiled for 6.9.0, module version = 1.0.0
    [ 20.954] Loading extension GLX
    [ 20.954] (II) LoadModule: "intel"
    [ 20.955] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 20.959] (II) Module intel: vendor="X.Org Foundation"
    [ 20.959] compiled for 1.14.2, module version = 2.21.15
    [ 20.959] Module class: X.Org Video Driver
    [ 20.959] ABI class: X.Org Video Driver, version 14.1
    [ 20.959] (II) intel: Driver for Intel(R) 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, HD Graphics,
    HD Graphics 2000, HD Graphics 3000, HD Graphics 2500,
    HD Graphics 4000, HD Graphics P4000, HD Graphics 4600,
    HD Graphics 5000, HD Graphics P4600/P4700, Iris(TM) Graphics 5100,
    HD Graphics 4400, HD Graphics 4200, Iris(TM) Pro Graphics 5200
    [ 20.960] (++) using VT number 1
    [ 20.963] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 20.963] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 20.963] (==) intel(0): RGB weight 888
    [ 20.963] (==) intel(0): Default visual is TrueColor
    [ 20.963] (**) intel(0): Option "AccelMethod" "sna"
    [ 20.964] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics
    [ 20.964] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2
    [ 20.964] (**) intel(0): Framebuffer tiled
    [ 20.964] (**) intel(0): Pixmaps tiled
    [ 20.964] (**) intel(0): "Tear free" disabled
    [ 20.964] (**) intel(0): Forcing per-crtc-pixmaps? no
    [ 20.964] (II) intel(0): Output LVDS1 has no monitor section
    [ 20.965] (--) intel(0): found backlight control interface acpi_video0 (type 'firmware')
    [ 20.965] (II) intel(0): Output VGA1 has no monitor section
    [ 20.965] (--) intel(0): Output LVDS1 using initial mode 1600x900 on pipe 0
    [ 20.965] (==) intel(0): DPI set to (96, 96)
    [ 20.965] (II) Loading sub module "dri2"
    [ 20.965] (II) LoadModule: "dri2"
    [ 20.965] (II) Module "dri2" already built-in
    [ 20.965] (==) Depth 24 pixmap format is 32 bpp
    [ 20.969] (II) intel(0): SNA initialized with Ironlake (gen5) backend
    [ 20.969] (==) intel(0): Backing store disabled
    [ 20.969] (==) intel(0): Silken mouse enabled
    [ 20.969] (II) intel(0): HW Cursor enabled
    [ 20.969] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 20.972] (==) intel(0): DPMS enabled
    [ 20.972] (II) intel(0): [XvMC] xvmc_vld driver initialized.
    [ 20.972] (II) intel(0): [DRI2] Setup complete
    [ 20.972] (II) intel(0): [DRI2] DRI driver: i965
    [ 20.972] (II) intel(0): direct rendering: DRI2 Enabled
    [ 20.972] (==) intel(0): hotplug detection: "enabled"
    [ 20.972] (--) RandR disabled
    [ 20.984] (EE) GLX error: Can not get required symbols.
    [ 20.996] (II) intel(0): switch to mode [email protected] on pipe 0 using LVDS1, position (0, 0), rotation normal
    [ 21.006] (II) intel(0): Setting screen physical size to 423 x 238
    [ 21.139] (II) config/udev: Adding input device Power Button (/dev/input/event4)
    [ 21.139] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 21.139] (II) LoadModule: "evdev"
    [ 21.140] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 21.141] (II) Module evdev: vendor="X.Org Foundation"
    [ 21.141] compiled for 1.14.3, module version = 2.8.2
    [ 21.141] Module class: X.Org XInput Driver
    [ 21.141] ABI class: X.Org XInput driver, version 19.1
    [ 21.141] (II) Using input driver 'evdev' for 'Power Button'
    [ 21.141] (**) Po

  • Problem with Intel/ATI Hybrid Graphics

    Hi, I Just got a new laptop with the intel(hd4400)/ati(hd8670m) hybrid graphics. I followed exactly this https://wiki.archlinux.org/index.php/Hy … ons_So_Far, trying to disable my discrete card, but I did not have vgaswitcheroo under /sys/kernel/debug. Then I did a reboot, it stopped booting after FSCK, no login for me. I did add radeon and i915 to MODULES in /etc/mkinitcpio.conf if that's what you are wondering. I had to chroot with Arch installer and add a basic 20-intel.conf file to be able to boot into my DE.
    dmesg output below shows that I had radeon loaded, but still no vgaswitcheroo directory.
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.11.6-1-ARCH (nobody@var-lib-archbuild-extra-x86_64-thomas) (gcc version 4.8.1 20130725 (prerelease) (GCC) ) #1 SMP PREEMPT Fri Oct 18 23:22:36 CEST 2013
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=/dev/mapper/vg_tf-lv_root rw quiet radeon.dpm=1
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000006efff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000006f000-0x000000000006ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000070000-0x0000000000087fff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000000088000-0x00000000000bffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000094d5ffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000094d60000-0x0000000095d5ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000095d60000-0x000000009a36efff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000009a36f000-0x000000009aebefff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000009aebf000-0x000000009afbefff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000009afbf000-0x000000009affefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x000000009afff000-0x000000009affffff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000009b000000-0x000000009f9fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fe101000-0x00000000fe112fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb0ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000015f5fffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] efi: EFI v2.31 by INSYDE Corp.
    [ 0.000000] efi: ACPI=0x9affe000 ACPI 2.0=0x9affe014 SMBIOS=0x9aebef98
    [ 0.000000] efi: mem00: type=3, attr=0xf, range=[0x0000000000000000-0x0000000000001000) (0MB)
    [ 0.000000] efi: mem01: type=7, attr=0xf, range=[0x0000000000001000-0x000000000006f000) (0MB)
    [ 0.000000] efi: mem02: type=0, attr=0xf, range=[0x000000000006f000-0x0000000000070000) (0MB)
    [ 0.000000] efi: mem03: type=7, attr=0xf, range=[0x0000000000070000-0x0000000000088000) (0MB)
    [ 0.000000] efi: mem04: type=6, attr=0x800000000000000f, range=[0x0000000000088000-0x000000000009f000) (0MB)
    [ 0.000000] efi: mem05: type=0, attr=0xf, range=[0x000000000009f000-0x00000000000a0000) (0MB)
    [ 0.000000] efi: mem06: type=2, attr=0xf, range=[0x0000000000100000-0x0000000001051000) (15MB)
    [ 0.000000] efi: mem07: type=7, attr=0xf, range=[0x0000000001051000-0x0000000002000000) (15MB)
    [ 0.000000] efi: mem08: type=2, attr=0xf, range=[0x0000000002000000-0x0000000002f51000) (15MB)
    [ 0.000000] efi: mem09: type=7, attr=0xf, range=[0x0000000002f51000-0x000000003737a000) (836MB)
    [ 0.000000] efi: mem10: type=2, attr=0xf, range=[0x000000003737a000-0x00000000379b5000) (6MB)
    [ 0.000000] efi: mem11: type=7, attr=0xf, range=[0x00000000379b5000-0x000000006d8c0000) (863MB)
    [ 0.000000] efi: mem12: type=2, attr=0xf, range=[0x000000006d8c0000-0x0000000092d70000) (596MB)
    [ 0.000000] efi: mem13: type=4, attr=0xf, range=[0x0000000092d70000-0x0000000092d90000) (0MB)
    [ 0.000000] efi: mem14: type=7, attr=0xf, range=[0x0000000092d90000-0x0000000093ee1000) (17MB)
    [ 0.000000] efi: mem15: type=4, attr=0xf, range=[0x0000000093ee1000-0x0000000094d60000) (14MB)
    [ 0.000000] efi: mem16: type=0, attr=0xf, range=[0x0000000094d60000-0x0000000095d60000) (16MB)
    [ 0.000000] efi: mem17: type=7, attr=0xf, range=[0x0000000095d60000-0x0000000095f52000) (1MB)
    [ 0.000000] efi: mem18: type=1, attr=0xf, range=[0x0000000095f52000-0x0000000095f6f000) (0MB)
    [ 0.000000] efi: mem19: type=7, attr=0xf, range=[0x0000000095f6f000-0x0000000097260000) (18MB)
    [ 0.000000] efi: mem20: type=4, attr=0xf, range=[0x0000000097260000-0x0000000097262000) (0MB)
    [ 0.000000] efi: mem21: type=7, attr=0xf, range=[0x0000000097262000-0x0000000097272000) (0MB)
    [ 0.000000] efi: mem22: type=2, attr=0xf, range=[0x0000000097272000-0x000000009727c000) (0MB)
    [ 0.000000] efi: mem23: type=4, attr=0xf, range=[0x000000009727c000-0x0000000097c77000) (9MB)
    [ 0.000000] efi: mem24: type=7, attr=0xf, range=[0x0000000097c77000-0x0000000097c7a000) (0MB)
    [ 0.000000] efi: mem25: type=4, attr=0xf, range=[0x0000000097c7a000-0x0000000097c81000) (0MB)
    [ 0.000000] efi: mem26: type=7, attr=0xf, range=[0x0000000097c81000-0x0000000097c82000) (0MB)
    [ 0.000000] efi: mem27: type=4, attr=0xf, range=[0x0000000097c82000-0x0000000097db2000) (1MB)
    [ 0.000000] efi: mem28: type=7, attr=0xf, range=[0x0000000097db2000-0x0000000097db3000) (0MB)
    [ 0.000000] efi: mem29: type=4, attr=0xf, range=[0x0000000097db3000-0x0000000097e0a000) (0MB)
    [ 0.000000] efi: mem30: type=3, attr=0xf, range=[0x0000000097e0a000-0x0000000097e17000) (0MB)
    [ 0.000000] efi: mem31: type=4, attr=0xf, range=[0x0000000097e17000-0x0000000097e1f000) (0MB)
    [ 0.000000] efi: mem32: type=3, attr=0xf, range=[0x0000000097e1f000-0x0000000097e20000) (0MB)
    [ 0.000000] efi: mem33: type=4, attr=0xf, range=[0x0000000097e20000-0x0000000097e2c000) (0MB)
    [ 0.000000] efi: mem34: type=3, attr=0xf, range=[0x0000000097e2c000-0x0000000097e34000) (0MB)
    [ 0.000000] efi: mem35: type=4, attr=0xf, range=[0x0000000097e34000-0x0000000097e4c000) (0MB)
    [ 0.000000] efi: mem36: type=7, attr=0xf, range=[0x0000000097e4c000-0x0000000097e4d000) (0MB)
    [ 0.000000] efi: mem37: type=4, attr=0xf, range=[0x0000000097e4d000-0x0000000097e50000) (0MB)
    [ 0.000000] efi: mem38: type=3, attr=0xf, range=[0x0000000097e50000-0x0000000097e57000) (0MB)
    [ 0.000000] efi: mem39: type=4, attr=0xf, range=[0x0000000097e57000-0x0000000097e6e000) (0MB)
    [ 0.000000] efi: mem40: type=3, attr=0xf, range=[0x0000000097e6e000-0x0000000097ee9000) (0MB)
    [ 0.000000] efi: mem41: type=4, attr=0xf, range=[0x0000000097ee9000-0x0000000097efc000) (0MB)
    [ 0.000000] efi: mem42: type=7, attr=0xf, range=[0x0000000097efc000-0x0000000097efd000) (0MB)
    [ 0.000000] efi: mem43: type=4, attr=0xf, range=[0x0000000097efd000-0x0000000097f0b000) (0MB)
    [ 0.000000] efi: mem44: type=7, attr=0xf, range=[0x0000000097f0b000-0x0000000097f0d000) (0MB)
    [ 0.000000] efi: mem45: type=4, attr=0xf, range=[0x0000000097f0d000-0x000000009810f000) (2MB)
    [ 0.000000] efi: mem46: type=3, attr=0xf, range=[0x000000009810f000-0x0000000098111000) (0MB)
    [ 0.000000] efi: mem47: type=4, attr=0xf, range=[0x0000000098111000-0x0000000099f6f000) (30MB)
    [ 0.000000] efi: mem48: type=3, attr=0xf, range=[0x0000000099f6f000-0x000000009a36f000) (4MB)
    [ 0.000000] efi: mem49: type=5, attr=0x800000000000000f, range=[0x000000009a36f000-0x000000009a56f000) (2MB)
    [ 0.000000] efi: mem50: type=6, attr=0x800000000000000f, range=[0x000000009a56f000-0x000000009aabf000) (5MB)
    [ 0.000000] efi: mem51: type=0, attr=0xf, range=[0x000000009aabf000-0x000000009aebf000) (4MB)
    [ 0.000000] efi: mem52: type=10, attr=0xf, range=[0x000000009aebf000-0x000000009afbf000) (1MB)
    [ 0.000000] efi: mem53: type=9, attr=0xf, range=[0x000000009afbf000-0x000000009afff000) (0MB)
    [ 0.000000] efi: mem54: type=4, attr=0xf, range=[0x000000009afff000-0x000000009b000000) (0MB)
    [ 0.000000] efi: mem55: type=7, attr=0xf, range=[0x0000000100000000-0x000000015f600000) (1526MB)
    [ 0.000000] efi: mem56: type=0, attr=0x0, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
    [ 0.000000] efi: mem57: type=0, attr=0x0, range=[0x000000009b000000-0x000000009fa00000) (74MB)
    [ 0.000000] efi: mem58: type=11, attr=0x8000000000000001, range=[0x00000000e0000000-0x00000000f0000000) (256MB)
    [ 0.000000] efi: mem59: type=0, attr=0x0, range=[0x00000000fe101000-0x00000000fe113000) (0MB)
    [ 0.000000] efi: mem60: type=11, attr=0x8000000000000001, range=[0x00000000feb00000-0x00000000feb10000) (0MB)
    [ 0.000000] efi: mem61: type=11, attr=0x8000000000000001, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
    [ 0.000000] efi: mem62: type=11, attr=0x8000000000000001, range=[0x00000000fed00000-0x00000000fed1c000) (0MB)
    [ 0.000000] efi: mem63: type=11, attr=0x8000000000000000, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
    [ 0.000000] efi: mem64: type=11, attr=0x8000000000000001, range=[0x00000000fed20000-0x00000000fee01000) (0MB)
    [ 0.000000] efi: mem65: type=11, attr=0x8000000000000000, range=[0x00000000ffc00000-0x0000000100000000) (4MB)
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: Dell Inc. Inspiron 3537/028XKX, BIOS A05 08/30/2013
    [ 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 = 0x15f600 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-E7FFF write-protect
    [ 0.000000] E8000-EFFFF write-combining
    [ 0.000000] F0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0000000000 mask 7F80000000 write-back
    [ 0.000000] 1 base 0080000000 mask 7FE0000000 write-back
    [ 0.000000] 2 base 009B000000 mask 7FFF000000 uncachable
    [ 0.000000] 3 base 009C000000 mask 7FFC000000 uncachable
    [ 0.000000] 4 base 00FFC00000 mask 7FFFC00000 write-protect
    [ 0.000000] 5 base 0100000000 mask 7F80000000 write-back
    [ 0.000000] 6 base 015F600000 mask 7FFFE00000 uncachable
    [ 0.000000] 7 base 015F800000 mask 7FFF800000 uncachable
    [ 0.000000] 8 base 0160000000 mask 7FE0000000 uncachable
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: last_pfn = 0x9b000 max_arch_pfn = 0x400000000
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff88000007e000] 7e000 size 24576
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x02b2f000, 0x02b2ffff] PGTABLE
    [ 0.000000] BRK [0x02b30000, 0x02b30fff] PGTABLE
    [ 0.000000] BRK [0x02b31000, 0x02b31fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x15f400000-0x15f5fffff]
    [ 0.000000] [mem 0x15f400000-0x15f5fffff] page 2M
    [ 0.000000] BRK [0x02b32000, 0x02b32fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x15c000000-0x15f3fffff]
    [ 0.000000] [mem 0x15c000000-0x15f3fffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x15bffffff]
    [ 0.000000] [mem 0x100000000-0x13fffffff] page 1G
    [ 0.000000] [mem 0x140000000-0x15bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x94d5ffff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x3fffffff] page 2M
    [ 0.000000] [mem 0x40000000-0x7fffffff] page 1G
    [ 0.000000] [mem 0x80000000-0x94bfffff] page 2M
    [ 0.000000] [mem 0x94c00000-0x94d5ffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x95d60000-0x9a36efff]
    [ 0.000000] [mem 0x95d60000-0x95dfffff] page 4k
    [ 0.000000] [mem 0x95e00000-0x9a1fffff] page 2M
    [ 0.000000] [mem 0x9a200000-0x9a36efff] page 4k
    [ 0.000000] BRK [0x02b33000, 0x02b33fff] PGTABLE
    [ 0.000000] BRK [0x02b34000, 0x02b34fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x9afff000-0x9affffff]
    [ 0.000000] [mem 0x9afff000-0x9affffff] page 4k
    [ 0.000000] RAMDISK: [mem 0x3737a000-0x379b4fff]
    [ 0.000000] ACPI: RSDP 000000009affe014 00024 (v02 DELL )
    [ 0.000000] ACPI: XSDT 000000009affe210 000AC (v01 DELL CL09 00000001 01000013)
    [ 0.000000] ACPI: FACP 000000009aff8000 0010C (v05 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI Error: Gpe0Block - 32-bit FADT register is too long (32 bytes, 256 bits) to convert to GAS struct - 255 bits max, truncating (20130517/tbfadt-202)
    [ 0.000000] ACPI: DSDT 000000009afe9000 0B8AC (v01 DELL CL09 00000000 ASL 00040000)
    [ 0.000000] ACPI: FACS 000000009afb8000 00040
    [ 0.000000] ACPI: SLIC 000000009affd000 00176 (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: UEFI 000000009affc000 00236 (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: FPDT 000000009affa000 00044 (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: ASF! 000000009aff9000 000A5 (v32 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: HPET 000000009aff7000 00038 (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: APIC 000000009aff6000 0008C (v03 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: MCFG 000000009aff5000 0003C (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: SSDT 000000009afe8000 006FE (v01 COMPAL CRV ORB 00001000 ACPI 00040000)
    [ 0.000000] ACPI: BOOT 000000009afe6000 00028 (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: ASPT 000000009afe4000 00034 (v07 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: DBGP 000000009afe3000 00034 (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: SSDT 000000009afdd000 00539 (v01 COMPAL CRV ORB 00003000 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 000000009afdc000 00AD8 (v01 COMPAL CRV ORB 00003000 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 000000009afd8000 0343C (v01 COMPAL CRV ORB 00003000 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 000000009afd5000 01E3D (v01 COMPAL CRV ORB 00001000 ACPI 00040000)
    [ 0.000000] ACPI: BGRT 000000009afd7000 00038 (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000015f5fffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x15f5fffff]
    [ 0.000000] NODE_DATA [mem 0x15f5f8000-0x15f5fcfff]
    [ 0.000000] [ffffea0000000000-ffffea00057fffff] PMD -> [ffff88015ac00000-ffff88015ebfffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x15f5fffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0006efff]
    [ 0.000000] node 0: [mem 0x00070000-0x00087fff]
    [ 0.000000] node 0: [mem 0x00100000-0x94d5ffff]
    [ 0.000000] node 0: [mem 0x95d60000-0x9a36efff]
    [ 0.000000] node 0: [mem 0x9afff000-0x9affffff]
    [ 0.000000] node 0: [mem 0x100000000-0x15f5fffff]
    [ 0.000000] On node 0 totalpages: 1018102
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 22 pages reserved
    [ 0.000000] DMA zone: 3974 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 9742 pages used for memmap
    [ 0.000000] DMA32 zone: 623472 pages, LIFO batch:31
    [ 0.000000] Normal zone: 6104 pages used for memmap
    [ 0.000000] Normal zone: 390656 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x1808
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-39
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 8 CPUs, 4 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 56
    [ 0.000000] PM: Registered nosave memory: [mem 0x0006f000-0x0006ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x00088000-0x000bffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000c0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x94d60000-0x95d5ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9a36f000-0x9aebefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9aebf000-0x9afbefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9afbf000-0x9affefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9b000000-0x9f9fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9fa00000-0xdfffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfe100fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfe101000-0xfe112fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfe113000-0xfeafffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfeb00000-0xfeb0ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfeb10000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfee00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffbfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffffffff]
    [ 0.000000] e820: [mem 0x9fa00000-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:8 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88015f200000 s86528 r8192 d24064 u262144
    [ 0.000000] pcpu-alloc: s86528 r8192 d24064 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1002170
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=/dev/mapper/vg_tf-lv_root rw quiet radeon.dpm=1
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 3856592K/4072408K available (5050K kernel code, 799K rwdata, 1696K rodata, 1140K init, 1288K bss, 215816K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
    [ 0.000000] NR_IRQS:8448 nr_irqs:1016 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 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.003333] tsc: Detected 2294.570 MHz processor
    [ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 4590.35 BogoMIPS (lpj=7648566)
    [ 0.000007] pid_max: default: 32768 minimum: 301
    [ 0.000040] init_memory_mapping: [mem 0x9a36f000-0x9a56efff]
    [ 0.000042] [mem 0x9a36f000-0x9a56efff] page 4k
    [ 0.000064] init_memory_mapping: [mem 0x9a56f000-0x9aabefff]
    [ 0.000066] [mem 0x9a56f000-0x9a5fffff] page 4k
    [ 0.000067] [mem 0x9a600000-0x9a9fffff] page 2M
    [ 0.000069] [mem 0x9aa00000-0x9aabefff] page 4k
    [ 0.059748] Security Framework initialized
    [ 0.059759] AppArmor: AppArmor disabled by boot time parameter
    [ 0.059761] Yama: becoming mindful.
    [ 0.060120] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.061320] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.061810] Mount-cache hash table entries: 256
    [ 0.062052] Initializing cgroup subsys memory
    [ 0.062063] Initializing cgroup subsys devices
    [ 0.062065] Initializing cgroup subsys freezer
    [ 0.062067] Initializing cgroup subsys net_cls
    [ 0.062069] Initializing cgroup subsys blkio
    [ 0.062098] CPU: Physical Processor ID: 0
    [ 0.062100] CPU: Processor Core ID: 0
    [ 0.062105] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.063398] mce: CPU supports 7 MCE banks
    [ 0.063415] CPU0: Thermal monitoring enabled (TM1)
    [ 0.063429] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0
    tlb_flushall_shift: 6
    [ 0.063562] Freeing SMP alternatives memory: 20K (ffffffff819e6000 - ffffffff819eb000)
    [ 0.064699] ACPI: Core revision 20130517
    [ 0.077923] ACPI: All ACPI Tables successfully acquired
    [ 0.083767] ftrace: allocating 20100 entries in 79 pages
    [ 0.096243] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.129231] smpboot: CPU0: Intel(R) Core(TM) i5-4200U CPU @ 1.60GHz (fam: 06, model: 45, stepping: 01)
    [ 0.129240] TSC deadline timer enabled
    [ 0.129252] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
    [ 0.129261] ... version: 3
    [ 0.129262] ... bit width: 48
    [ 0.129263] ... generic registers: 4
    [ 0.129265] ... value mask: 0000ffffffffffff
    [ 0.129267] ... max period: 0000ffffffffffff
    [ 0.129268] ... fixed-purpose events: 3
    [ 0.129269] ... event mask: 000000070000000f
    [ 0.167457] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.152681] smpboot: Booting Node 0, Processors #1 #2 #3
    [ 0.209878] Brought up 4 CPUs
    [ 0.209882] smpboot: Total of 4 processors activated (18363.41 BogoMIPS)
    [ 0.215147] devtmpfs: initialized
    [ 0.216459] PM: Registering ACPI NVS region [mem 0x9aebf000-0x9afbefff] (1048576 bytes)
    [ 0.217451] RTC time: 2:22:13, date: 11/08/13
    [ 0.217501] NET: Registered protocol family 16
    [ 0.217661] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.217663] ACPI: bus type PCI registered
    [ 0.217666] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.217737] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.217740] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    [ 0.252752] PCI: Using configuration type 1 for base access
    [ 0.252922] dmi type 0xB1 record - unknown flag
    [ 0.253726] bio: create slab <bio-0> at 0
    [ 0.253868] ACPI: Added _OSI(Module Device)
    [ 0.253870] ACPI: Added _OSI(Processor Device)
    [ 0.253872] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.253874] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.256659] ACPI: EC: Look up EC in DSDT
    [ 0.259524] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.272874] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.274013] ACPI: SSDT 000000009ae7dc18 003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20130117)
    [ 0.274706] ACPI: Dynamic OEM Table Load:
    [ 0.274709] ACPI: SSDT (null) 003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20130117)
    [ 0.282313] ACPI: SSDT 000000009ae7d618 005AA (v01 PmRef ApIst 00003000 INTL 20130117)
    [ 0.283108] ACPI: Dynamic OEM Table Load:
    [ 0.283111] ACPI: SSDT (null) 005AA (v01 PmRef ApIst 00003000 INTL 20130117)
    [ 0.301675] ACPI: SSDT 000000009ae7cd98 00119 (v01 PmRef ApCst 00003000 INTL 20130117)
    [ 0.302368] ACPI: Dynamic OEM Table Load:
    [ 0.302370] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20130117)
    [ 0.431586] ACPI: Interpreter enabled
    [ 0.431597] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130517/hwxface-571)
    [ 0.431606] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130517/hwxface-571)
    [ 0.431630] ACPI: (supports S0 S3 S4 S5)
    [ 0.431632] ACPI: Using IOAPIC for interrupt routing
    [ 0.431666] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.431855] ACPI: No dock devices found.
    [ 0.634551] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
    [ 0.634846] acpi PNP0A08:00: Requesting ACPI _OSC control (0x1d)
    [ 0.635302] acpi PNP0A08:00: ACPI _OSC control (0x1d) granted
    [ 0.635816] PCI host bridge to bus 0000:00
    [ 0.635820] pci_bus 0000:00: root bus resource [bus 00-fe]
    [ 0.635823] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.635825] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.635828] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.635830] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
    [ 0.635832] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
    [ 0.635834] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
    [ 0.635836] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff]
    [ 0.635838] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 0.635840] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.635842] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.635844] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.635846] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    [ 0.635848] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    [ 0.635850] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff]
    [ 0.635852] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff]
    [ 0.635854] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff]
    [ 0.635856] pci_bus 0000:00: root bus resource [mem 0x9fa00000-0xfeafffff]
    [ 0.635867] pci 0000:00:00.0: [8086:0a04] type 00 class 0x060000
    [ 0.636037] pci 0000:00:02.0: [8086:0a16] type 00 class 0x030000
    [ 0.636053] pci 0000:00:02.0: reg 0x10: [mem 0xc0000000-0xc03fffff 64bit]
    [ 0.636062] pci 0000:00:02.0: reg 0x18: [mem 0xb0000000-0xbfffffff 64bit pref]
    [ 0.636069] pci 0000:00:02.0: reg 0x20: [io 0x5000-0x503f]
    [ 0.636232] pci 0000:00:03.0: [8086:0a0c] type 00 class 0x040300
    [ 0.636243] pci 0000:00:03.0: reg 0x10: [mem 0xc0810000-0xc0813fff 64bit]
    [ 0.636435] pci 0000:00:14.0: [8086:9c31] type 00 class 0x0c0330
    [ 0.636456] pci 0000:00:14.0: reg 0x10: [mem 0xc0800000-0xc080ffff 64bit]
    [ 0.636523] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.636647] pci 0000:00:14.0: System wakeup disabled by ACPI
    [ 0.636693] pci 0000:00:16.0: [8086:9c3a] type 00 class 0x078000
    [ 0.636717] pci 0000:00:16.0: reg 0x10: [mem 0xc0818000-0xc081801f 64bit]
    [ 0.636795] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.636949] pci 0000:00:1b.0: [8086:9c20] type 00 class 0x040300
    [ 0.636965] pci 0000:00:1b.0: reg 0x10: [mem 0xc0814000-0xc0817fff 64bit]
    [ 0.637037] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.637182] pci 0000:00:1c.0: [8086:9c14] type 01 class 0x060400
    [ 0.637255] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.637400] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 0.637446] pci 0000:00:1c.3: [8086:9c16] type 01 class 0x060400
    [ 0.637518] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 0.637662] pci 0000:00:1c.4: [8086:9c18] type 01 class 0x060400
    [ 0.637734] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 0.637885] pci 0000:00:1d.0: [8086:9c26] type 00 class 0x0c0320
    [ 0.638879] pci 0000:00:1d.0: reg 0x10: [mem 0xc081c000-0xc081c3ff]
    [ 0.644729] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.644857] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.644903] pci 0000:00:1f.0: [8086:9c43] type 00 class 0x060100
    [ 0.645161] pci 0000:00:1f.2: [8086:9c03] type 00 class 0x010601
    [ 0.645179] pci 0000:00:1f.2: reg 0x10: [io 0x5088-0x508f]
    [ 0.645188] pci 0000:00:1f.2: reg 0x14: [io 0x5094-0x5097]
    [ 0.645196] pci 0000:00:1f.2: reg 0x18: [io 0x5080-0x5087]
    [ 0.645205] pci 0000:00:1f.2: reg 0x1c: [io 0x5090-0x5093]
    [ 0.645213] pci 0000:00:1f.2: reg 0x20: [io 0x5060-0x507f]
    [ 0.645222] pci 0000:00:1f.2: reg 0x24: [mem 0xc081b000-0xc081b7ff]
    [ 0.645264] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.645401] pci 0000:00:1f.3: [8086:9c22] type 00 class 0x0c0500
    [ 0.645417] pci 0000:00:1f.3: reg 0x10: [mem 0xc0819000-0xc08190ff 64bit]
    [ 0.645440] pci 0000:00:1f.3: reg 0x20: [io 0x5040-0x505f]
    [ 0.645679] pci 0000:01:00.0: [10ec:8136] type 00 class 0x020000
    [ 0.645710] pci 0000:01:00.0: reg 0x10: [io 0x4000-0x40ff]
    [ 0.645750] pci 0000:01:00.0: reg 0x18: [mem 0xc0700000-0xc0700fff 64bit]
    [ 0.645779] pci 0000:01:00.0: reg 0x20: [mem 0xc0400000-0xc0403fff 64bit pref]
    [ 0.645873] pci 0000:01:00.0: supports D1 D2
    [ 0.645875] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.652308] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.652312] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
    [ 0.652316] pci 0000:00:1c.0: bridge window [mem 0xc0700000-0xc07fffff]
    [ 0.652322] pci 0000:00:1c.0: bridge window [mem 0xc0400000-0xc04fffff 64bit pref]
    [ 0.652414] pci 0000:02:00.0: [168c:0036] type 00 class 0x028000
    [ 0.652447] pci 0000:02:00.0: reg 0x10: [mem 0xc0600000-0xc067ffff 64bit]
    [ 0.652527] pci 0000:02:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
    [ 0.652608] pci 0000:02:00.0: supports D1 D2
    [ 0.652610] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.658964] pci 0000:00:1c.3: PCI bridge to [bus 02]
    [ 0.658970] pci 0000:00:1c.3: bridge window [mem 0xc0600000-0xc06fffff]
    [ 0.659066] pci 0000:03:00.0: [1002:6660] type 00 class 0x038000
    [ 0.659093] pci 0000:03:00.0: reg 0x10: [mem 0xa0000000-0xafffffff 64bit pref]
    [ 0.659113] pci 0000:03:00.0: reg 0x18: [mem 0xc0500000-0xc053ffff 64bit]
    [ 0.659127] pci 0000:03:00.0: reg 0x20: [io 0x3000-0x30ff]
    [ 0.659154] pci 0000:03:00.0: reg 0x30: [mem 0xfffe0000-0xffffffff pref]
    [ 0.659233] pci 0000:03:00.0: supports D1 D2
    [ 0.659235] pci 0000:03:00.0: PME# supported from D1 D2 D3hot
    [ 0.665628] pci 0000:00:1c.4: PCI bridge to [bus 03]
    [ 0.665632] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff]
    [ 0.665636] pci 0000:00:1c.4: bridge window [mem 0xc0500000-0xc05fffff]
    [ 0.665642] pci 0000:00:1c.4: bridge window [mem 0xa0000000-0xafffffff 64bit pref]
    [ 0.665658] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
    [ 0.726347] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.726411] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.726470] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.726529] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.726588] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.726646] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.726705] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.726765] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.727383] ACPI: Enabled 5 GPEs in block 00 to 7F
    [ 0.727392] ACPI: \_SB_.PCI0: notify handler is installed
    [ 0.727488] Found 1 acpi root devices
    [ 0.727533] ACPI: EC: GPE = 0xa, I/O: command/status = 0x66, data = 0x62
    [ 0.727642] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.727647] vgaarb: loaded
    [ 0.727648] vgaarb: bridge control possible 0000:00:02.0
    [ 0.727700] PCI: Using ACPI for IRQ routing
    [ 0.734096] PCI: pci_cache_line_size set to 64 bytes
    [ 0.734149] e820: reserve RAM buffer [mem 0x0006f000-0x0006ffff]
    [ 0.734151] e820: reserve RAM buffer [mem 0x00088000-0x0008ffff]
    [ 0.734152] e820: reserve RAM buffer [mem 0x94d60000-0x97ffffff]
    [ 0.734154] e820: reserve RAM buffer [mem 0x9a36f000-0x9bffffff]
    [ 0.734157] e820: reserve RAM buffer [mem 0x9b000000-0x9bffffff]
    [ 0.734158] e820: reserve RAM buffer [mem 0x15f600000-0x15fffffff]
    [ 0.734265] NetLabel: Initializing
    [ 0.734267] NetLabel: domain hash size = 128
    [ 0.734268] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.734282] NetLabel: unlabeled traffic allowed by default
    [ 0.734302] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.734309] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.736336] Switched to clocksource hpet
    [ 0.741791] pnp: PnP ACPI init
    [ 0.741808] ACPI: bus type PNP registered
    [ 0.741844] pnp 00:00: [dma 4]
    [ 0.741872] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.741898] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.742037] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.742091] system 00:03: [io 0x0680-0x069f] has been reserved
    [ 0.742094] system 00:03: [io 0xfd60-0xfd63] has been reserved
    [ 0.742096] system 00:03: [io 0xffff] has been reserved
    [ 0.742099] system 00:03: [io 0xffff] has been reserved
    [ 0.742101] system 00:03: [io 0xffff] has been reserved
    [ 0.742103] system 00:03: [io 0x1800-0x18fe] could not be reserved
    [ 0.742106] system 00:03: [io 0x164e-0x164f] has been reserved
    [ 0.742109] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.742169] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.742223] system 00:05: [io 0x1854-0x1857] has been reserved
    [ 0.742227] system 00:05: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.742290] pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.742323] pnp 00:07: Plug and Play ACPI device, IDs DLL05eb PNP0f13 (active)
    [ 0.799825] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.799828] system 00:08: [mem 0xfed10000-0xfed17fff] has been reserved
    [ 0.799831] system 00:08: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.799833] system 00:08: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.799836] system 00:08: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.799838] system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.799840] system 00:08: [mem 0xfed90000-0xfed93fff] has been reserved
    [ 0.799843] system 00:08: [mem 0xff000000-0xff000fff] has been reserved
    [ 0.799845] system 00:08: [mem 0xff010000-0xffffffff] could not be reserved
    [ 0.799848] system 00:08: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 0.799850] system 00:08: [mem 0x9fa22000-0x9fa22fff] has been reserved
    [ 0.799853] system 00:08: [mem 0x9fa10000-0x9fa1ffff] has been reserved
    [ 0.799856] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.800510] pnp: PnP ACPI: found 9 devices
    [ 0.800512] ACPI: bus type PNP unregistered
    [ 0.807188] pci 0000:02:00.0: no compatible bridge window for [mem 0xffff0000-0xffffffff pref]
    [ 0.807192] pci 0000:03:00.0: no compatible bridge window for [mem 0xfffe0000-0xffffffff pref]
    [ 0.807227] pci 0000:00:1c.3: BAR 15: assigned [mem 0x9fb00000-0x9fbfffff pref]
    [ 0.807230] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.807234] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
    [ 0.807240] pci 0000:00:1c.0: bridge window [mem 0xc0700000-0xc07fffff]
    [ 0.807244] pci 0000:00:1c.0: bridge window [mem 0xc0400000-0xc04fffff 64bit pref]
    [ 0.807251] pci 0000:02:00.0: BAR 6: assigned [mem 0x9fb00000-0x9fb0ffff pref]
    [ 0.807254] pci 0000:00:1c.3: PCI bridge to [bus 02]
    [ 0.807259] pci 0000:00:1c.3: bridge window [mem 0xc0600000-0xc06fffff]
    [ 0.807263] pci 0000:00:1c.3: bridge window [mem 0x9fb00000-0x9fbfffff pref]
    [ 0.807270] pci 0000:03:00.0: BAR 6: assigned [mem 0xc0540000-0xc055ffff pref]
    [ 0.807272] pci 0000:00:1c.4: PCI bridge to [bus 03]
    [ 0.807275] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff]
    [ 0.807280] pci 0000:00:1c.4: bridge window [mem 0xc0500000-0xc05fffff]
    [ 0.807285] pci 0000:00:1c.4: bridge window [mem 0xa0000000-0xafffffff 64bit pref]
    [ 0.807584] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.807586] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.807589] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.807591] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
    [ 0.807593] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
    [ 0.807595] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
    [ 0.807597] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff]
    [ 0.807599] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff]
    [ 0.807601] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff]
    [ 0.807603] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff]
    [ 0.807605] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff]
    [ 0.807607] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff]
    [ 0.807609] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff]
    [ 0.807611] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff]
    [ 0.807613] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff]
    [ 0.807615] pci_bus 0000:00: resource 19 [mem 0x000f0000-0x000fffff]
    [ 0.807617] pci_bus 0000:00: resource 20 [mem 0x9fa00000-0xfeafffff]
    [ 0.807619] pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
    [ 0.807622] pci_bus 0000:01: resource 1 [mem 0xc0700000-0xc07fffff]
    [ 0.807624] pci_bus 0000:01: resource 2 [mem 0xc0400000-0xc04fffff 64bit pref]
    [ 0.807626] pci_bus 0000:02: resource 1 [mem 0xc0600000-0xc06fffff]
    [ 0.807628] pci_bus 0000:02: resource 2 [mem 0x9fb00000-0x9fbfffff pref]
    [ 0.807630] pci_bus 0000:03: resource 0 [io 0x3000-0x3fff]
    [ 0.807632] pci_bus 0000:03: resource 1 [mem 0xc0500000-0xc05fffff]
    [ 0.807635] pci_bus 0000:03: resource 2 [mem 0xa0000000-0xafffffff 64bit pref]
    [ 0.807677] NET: Registered protocol family 2
    [ 0.807890] TCP established hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.808027] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.808127] TCP: Hash tables configured (established 32768 bind 32768)
    [ 0.808150] TCP: reno registered
    [ 0.808162] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.808181] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.808261] NET: Registered protocol family 1
    [ 0.808274] pci 0000:00:02.0: Boot video device
    [ 0.823082] PCI: CLS 64 bytes, default 64
    [ 0.823122] Unpacking initramfs...
    [ 0.982411] Freeing initrd memory: 6380K (ffff88003737a000 - ffff8800379b5000)
    [ 0.982417] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.982420] software IO TLB [mem 0x8ed70000-0x92d70000] (64MB) mapped at [ffff88008ed70000-ffff880092d6ffff]
    [ 0.982447] Simple Boot Flag at 0x44 set to 0x1
    [ 0.982626] Scanning for low memory corruption every 60 seconds
    [ 0.982970] audit: initializing netlink socket (disabled)
    [ 0.982981] type=2000 audit(1383877333.966:1): initialized
    [ 1.000018] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 1.001570] zbud: loaded
    [ 1.001748] VFS: Disk quotas dquot_6.5.2
    [ 1.001801] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 1.001998] msgmni has been set to 7672
    [ 1.002265] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 1.002308] io scheduler noop registered
    [ 1.002311] io scheduler deadline registered
    [ 1.002344] io scheduler cfq registered (default)
    [ 1.002441] pcieport 0000:00:1c.0: irq 56 for MSI/MSI-X
    [ 1.002526] pcieport 0000:00:1c.3: irq 57 for MSI/MSI-X
    [ 1.002598] pcieport 0000:00:1c.4: irq 58 for MSI/MSI-X
    [ 1.002681] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
    [ 1.002684] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
    [ 1.002688] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
    [ 1.002706] pcieport 0000:00:1c.3: Signaling PME through PCIe PME interrupt
    [ 1.002708] pci 0000:02:00.0: Signaling PME through PCIe PME interrupt
    [ 1.002712] pcie_pme 0000:00:1c.3:pcie01: service driver pcie_pme loaded
    [ 1.002728] pcieport 0000:00:1c.4: Signaling PME through PCIe PME interrupt
    [ 1.002730] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
    [ 1.002734] pcie_pme 0000:00:1c.4:pcie01: service driver pcie_pme loaded
    [ 1.002751] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 1.002769] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 1.002888] efifb: probing for efifb
    [ 1.003509] efifb: framebuffer at 0xb0000000, mapped to 0xffffc90020e00000, using 4160k, total 4160k
    [ 1.003511] efifb: mode is 1366x768x32, linelength=5504, pages=1
    [ 1.003513] efifb: scrolling: redraw
    [ 1.003515] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 1.007477] Console: switching to colour frame buffer device 170x48
    [ 1.011265] fb0: EFI VGA frame buffer device
    [ 1.011272] intel_idle: MWAIT substates: 0x11142120
    [ 1.011274] intel_idle: v0.4 model 0x45
    [ 1.011275] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 1.011336] GHES: HEST is not enabled!
    [ 1.011398] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 1.011946] Linux agpgart interface v0.103
    [ 1.012027] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 1.032274] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 1.032308] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 1.032411] mousedev: PS/2 mouse device common for all mice
    [ 1.032672] rtc_cmos 00:04: RTC can wake from S4
    [ 1.032819] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    [ 1.032857] rtc_cmos 00:04: alarms up to one month, 242 bytes nvram, hpet irqs
    [ 1.032871] Intel P-state driver initializing.
    [ 1.032884] Intel pstate controlling: cpu 0
    [ 1.032911] Intel pstate controlling: cpu 1
    [ 1.032923] Intel pstate controlling: cpu 2
    [ 1.032935] Intel pstate controlling: cpu 3
    [ 1.033105] cpuidle: using governor ladder
    [ 1.033295] cpuidle: using governor menu
    [ 1.033356] drop_monitor: Initializing network drop monitor service
    [ 1.033431] TCP: cubic registered
    [ 1.033524] NET: Registered protocol family 10
    [ 1.033688] NET: Registered protocol family 17
    [ 1.033697] Key type dns_resolver registered
    [ 1.033905] PM: Hibernation image not present or could not be loaded.
    [ 1.033915] registered taskstats version 1
    [ 1.034407] Magic number: 5:662:358
    [ 1.034483] rtc_cmos 00:04: setting system clock to 2013-11-08 02:22:14 UTC (1383877334)
    [ 1.035212] Freeing unused kernel memory: 1140K (ffffffff818c9000 - ffffffff819e6000)
    [ 1.035213] Write protecting the kernel read-only data: 8192k
    [ 1.037442] Freeing unused kernel memory: 1084K (ffff8800024f1000 - ffff880002600000)
    [ 1.038163] Freeing unused kernel memory: 352K (ffff8800027a8000 - ffff880002800000)
    [ 1.045866] systemd-udevd[57]: starting version 208
    [ 1.050291] [drm] Initialized drm 1.1.0 20060810
    [ 1.053926] [drm] radeon kernel modesetting enabled.
    [ 1.053955] checking generic (b0000000 410000) vs hw (a0000000 10000000)
    [ 1.053962] radeon 0000:03:00.0: enabling device (0000 -> 0003)
    [ 1.054153] [drm] initializing kernel modesetting (HAINAN 0x1002:0x6660 0x1028:0x05EA).
    [ 1.054190] [drm] register mmio base: 0xC0500000
    [ 1.054191] [drm] register mmio size: 262144
    [ 1.055856] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.982382] tsc: Refined TSC clocksource calibration: 2294.688 MHz
    [ 2.566653] ATOM BIOS: Dell
    [ 2.566668] [drm] GPU not posted. posting now...
    [ 2.570040] radeon 0000:03:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
    [ 2.570042] radeon 0000:03:00.0: GTT: 512M 0x0000000040000000 - 0x000000005FFFFFFF
    [ 2.570044] [drm] Detected VRAM RAM=1024M, BAR=256M
    [ 2.570045] [drm] RAM width 64bits DDR
    [ 2.570094] [TTM] Zone kernel: Available graphics memory: 1965320 kiB
    [ 2.570095] [TTM] Initializing pool allocator
    [ 2.570099] [TTM] Initializing DMA pool allocator
    [ 2.570117] [drm] radeon: 1024M of VRAM memory ready
    [ 2.570118] [drm] radeon: 512M of GTT memory ready.
    [ 2.570129] [drm] GART: num cpu pages 131072, num gpu pages 131072
    [ 2.570456] [drm] probing gen 2 caps for device 8086:9c18 = 5323c42/0
    [ 2.570460] [drm] PCIE gen 2 link speeds already enabled
    [ 2.570620] [drm] Loading HAINAN Microcode
    [ 2.981834] Switched to clocksource tsc
    [ 2.993997] [drm] PCIE GART of 512M enabled (table at 0x0000000000040000).
    [ 2.994098] radeon 0000:03:00.0: WB enabled
    [ 2.994100] radeon 0000:03:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00 and cpu addr 0xffff880156e63c00
    [ 2.994102] radeon 0000:03:00.0: fence driver on ring 1 use gpu addr 0x0000000040000c04 and cpu addr 0xffff880156e63c04
    [ 2.994103] radeon 0000:03:00.0: fence driver on ring 2 use gpu addr 0x0000000040000c08 and cpu addr 0xffff880156e63c08
    [ 2.994104] radeon 0000:03:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c and cpu addr 0xffff880156e63c0c
    [ 2.994106] radeon 0000:03:00.0: fence driver on ring 4 use gpu addr 0x0000000040000c10 and cpu addr 0xffff880156e63c10
    [ 2.994107] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 2.994108] [drm] Driver supports precise vblank timestamp query.
    [ 2.994126] radeon 0000:03:00.0: irq 59 for MSI/MSI-X
    [ 2.994137] radeon 0000:03:00.0: radeon: using MSI.
    [ 2.994157] [drm] radeon: irq initialized.
    [ 3.013688] [drm] ring test on 0 succeeded in 1 usecs
    [ 3.013694] [drm] ring test on 1 succeeded in 1 usecs
    [ 3.013698] [drm] ring test on 2 succeeded in 1 usecs
    [ 3.013761] [drm] ring test on 3 succeeded in 2 usecs
    [ 3.013770] [drm] ring test on 4 succeeded in 1 usecs
    [ 3.015377] [drm] ib test on ring 0 succeeded in 0 usecs
    [ 3.015424] [drm] ib test on ring 1 succeeded in 0 usecs
    [ 3.015476] [drm] ib test on ring 2 succeeded in 0 usecs
    [ 3.015496] [drm] ib test on ring 3 succeeded in 0 usecs
    [ 3.015517] [drm] ib test on ring 4 succeeded in 1 usecs
    [ 3.015656] [drm] Radeon Display Connectors
    [ 3.015663] [drm] Internal thermal controller without fan control
    [ 3.015712] [drm] probing gen 2 caps for device 8086:9c18 = 5323c42/0
    [ 3.015739] == power state 0 ==
    [ 3.015740] ui class: none
    [ 3.015742] internal class: boot
    [ 3.015744] caps:
    [ 3.015746] uvd vclk: 0 dclk: 0
    [ 3.015748] power level 0 sclk: 30000 mclk: 29900 vddc: 900 vddci: 0 pcie gen: 2
    [ 3.015749] status: c r b
    [ 3.015752] == power state 1 ==
    [ 3.015753] ui class: performance
    [ 3.015754] internal class: none
    [ 3.015756] caps:
    [ 3.015758] uvd vclk: 0 dclk: 0
    [ 3.015760] power level 0 sclk: 30000 mclk: 30000 vddc: 800 vddci: 0 pcie gen: 2
    [ 3.015761] power level 1 sclk: 40000 mclk: 90000 vddc: 875 vddci: 0 pcie gen: 2
    [ 3.015763] power level 2 sclk: 75000 mclk: 90000 vddc: 950 vddci: 0 pcie gen: 2
    [ 3.015765] power level 3 sclk: 90000 mclk: 90000 vddc: 1025 vddci: 0 pcie gen: 2
    [ 3.015767] power level 4 sclk: 97500 mclk: 90000 vddc: 1075 vddci: 0 pcie gen: 2
    [ 3.015768] status:
    [ 3.015769] == power state 2 ==
    [ 3.015771] ui class: battery
    [ 3.015772] internal class: none
    [ 3.015773] caps:
    [ 3.015775] uvd vclk: 0 dclk: 0
    [ 3.015777] power level 0 sclk: 30000 mclk: 30000 vddc: 800 vddci: 0 pcie gen: 2
    [ 3.015778] power level 1 sclk: 40000 mclk: 60000 vddc: 850 vddci: 0 pcie gen: 2
    [ 3.015780] power level 2 sclk: 40000 mclk: 60000 vddc: 850 vddci: 0 pcie gen: 2
    [ 3.015781] status:
    [ 3.023133] switching from power state:
    [ 3.023135] ui class: none
    [ 3.023136] internal class: boot
    [ 3.023138] caps:
    [ 3.023139] uvd vclk: 0 dclk: 0
    [ 3.023141] power level 0 sclk: 30000 mclk: 29900 vddc: 900 vddci: 0 pcie gen: 2
    [ 3.023142] status: c b
    [ 3.023143] switching to power state:
    [ 3.023144] ui class: performance
    [ 3.023145] internal class: none
    [ 3.023147] caps:
    [ 3.023148] uvd vclk: 0 dclk: 0
    [ 3.023149] power level 0 sclk: 30000 mclk: 30000 vddc: 800 vddci: 0 pcie gen: 2
    [ 3.023151] power level 1 sclk: 40000 mclk: 90000 vddc: 875 vddci: 0 pcie gen: 2
    [ 3.023152] power level 2 sclk: 75000 mclk: 90000 vddc: 950 vddci: 0 pcie gen: 2
    [ 3.023154] power level 3 sclk: 90000 mclk: 90000 vddc: 1025 vddci: 0 pcie gen: 2
    [ 3.023155] power level 4 sclk: 97500 mclk: 90000 vddc: 1075 vddci: 0 pcie gen: 2
    [ 3.023156] status: r
    [ 3.024470] [drm] radeon: dpm initialized
    [ 3.024475] radeon 0000:03:00.0: No connectors reported connected with modes
    [ 3.024477] [drm] Cannot find any crtc or sizes - going 1024x768
    [ 3.026968] [drm] fb mappable at 0xA1150000
    [ 3.026970] [drm] vram apper at 0xA0000000
    [ 3.026971] [drm] size 3145728
    [ 3.026972] [drm] fb depth is 24
    [ 3.026973] [drm] pitch is 4096
    [ 3.026976] checking generic (b0000000 410000) vs hw (a0000000 10000000)
    [ 3.027040] radeon 0000:03:00.0: fb1: radeondrmfb frame buffer device
    [ 3.027042] radeon 0000:03:00.0: registered panic notifier
    [ 3.027053] [drm] Initialized radeon 2.34.0 20080528 for 0000:03:00.0 on minor 0
    [ 3.027978] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/PNP0C0D:00/input/input1
    [ 3.028026] ACPI: Lid Switch [LID0]
    [ 3.028063] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/PNP0C0C:00/input/input2
    [ 3.028066] ACPI: Power Button [PWRB]
    [ 3.028114] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    [ 3.028116] ACPI: Power Button [PWRF]
    [ 3.031882] [drm] Memory usable by graphics device = 2048M
    [ 3.031886] checking generic (b0000000 410000) vs hw (b0000000 10000000)
    [ 3.031888] fb: conflicting fb hw usage inteldrmfb vs EFI VGA - removing generic driver
    [ 3.031900] Console: switching to colour dummy device 80x25
    [ 3.031959] i915 0000:00:02.0: setting latency timer to 64
    [ 3.056716] i915 0000:00:02.0: irq 60 for MSI/MSI-X
    [ 3.056723] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 3.056724] [drm] Driver supports precise vblank timestamp query.
    [ 3.056784] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 3.101180] fbcon: inteldrmfb (fb0) is primary device
    [ 4.361087] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
    [ 4.707482] Console: switching to colour frame buffer device 170x48
    [ 4.712160] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [ 4.712553] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
    [ 4.713578] ACPI Error: [\_SB_.PCI0.GFX0.DD02._BCL] Namespace lookup failure, AE_NOT_FOUND (20130517/psargs-359)
    [ 4.713584] ACPI Error: Method parse/execution failed [\_SB_.PCI0.RP05.PEGP.DD02._BCL] (Node ffff880159325d98), AE_NOT_FOUND (20130517/psparse-536)
    [ 4.713871] ACPI: Video Device [PEGP] (multi-head: yes rom: no post: no)
    [ 4.713930] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:2f/LNXVIDEO:00/input/input4
    [ 4.715381] acpi device:55: registered as cooling_device0
    [ 4.715415] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 4.715455] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input5
    [ 4.715487] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 1
    [ 4.738967] ACPI: bus type USB registered
    [ 4.738999] usbcore: registered new interface driver usbfs
    [ 4.739016] usbcore: registered new interface driver hub
    [ 4.739050] usbcore: registered new device driver usb
    [ 4.739638] xhci_hcd 0000:00:14.0: setting latency timer to 64
    [ 4.739642] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 4.739649] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
    [ 4.739721] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 4.739741] xhci_hcd 0000:00:14.0: irq 61 for MSI/MSI-X
    [ 4.740145] xHCI xhci_add_endpoint called for root hub
    [ 4.740148] xHCI xhci_check_bandwidth called for root hub
    [ 4.740208] hub 1-0:1.0: USB hub found
    [ 4.740218] hub 1-0:1.0: 9 ports detected
    [ 4.741007] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 4.741164] ehci-pci: EHCI PCI platform driver
    [ 4.742756] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 4.742760] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
    [ 4.743091] xHCI xhci_add_endpoint called for root hub
    [ 4.743093] xHCI xhci_check_bandwidth called for root hub
    [ 4.743135] hub 2-0:1.0: USB hub found
    [ 4.743141] hub 2-0:1.0: 4 ports detected
    [ 4.743425] SCSI subsystem initialized
    [ 4.745035] ACPI: bus type ATA registered
    [ 4.745122] libata version 3.00 loaded.
    [ 4.747867] ehci-pci 0000:00:1d.0: setting latency timer to 64
    [ 4.747875] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 4.747880] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 3
    [ 4.747891] ehci-pci 0000:00:1d.0: debug port 2
    [ 4.751784] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 4.751800] ehci-pci 0000:00:1d.0: irq 23, io mem 0xc081c000
    [ 4.760774] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 4.760925] hub 3-0:1.0: USB hub found
    [ 4.760930] hub 3-0:1.0: 2 ports detected
    [ 4.761082] ahci 0000:00:1f.2: version 3.0
    [ 4.761230] ahci 0000:00:1f.2: irq 62 for MSI/MSI-X
    [ 4.774140] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 3 ports 6 Gbps 0x3 impl SATA mode
    [ 4.774146] ahci 0000:00:1f.2: flags: 64bit ncq led clo only pio slum part deso sadm sds apst
    [ 4.774151] ahci 0000:00:1f.2: setting latency timer to 64
    [ 4.774614] scsi0 : ahci
    [ 4.774722] scsi1 : ahci
    [ 4.774798] scsi2 : ahci
    [ 4.774868] ata1: SATA max UDMA/133 abar m2048@0xc081b000 port 0xc081b100 irq 62
    [ 4.774871] ata2: SATA max UDMA/133 abar m2048@0xc081b000 port 0xc081b180 irq 62
    [ 4.774873] ata3: DUMMY
    [ 5.067345] usb 3-1: new high-speed USB device number 2 using ehci-pci
    [ 5.094002] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 5.094032] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 5.099568] ata2.00: ATAPI: PLDS DVD+/-RW DU-8A5HH, SD12, max UDMA/100
    [ 5.100914] ata2.00: configured for UDMA/100
    [ 5.129572] ata1.00: ATA-8: ST500LT012-1DG142, 0001SDM1, max UDMA/133
    [ 5.129577] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
    [ 5.191169] hub 3-1:1.0: USB hub found
    [ 5.191237] hub 3-1:1.0: 8 ports detected
    [ 5.255854] ata1.00: configured for UDMA/133
    [ 5.256061] scsi 0:0:0:0: Direct-Access ATA ST500LT012-1DG14 0001 PQ: 0 ANSI: 5
    [ 5.261341] scsi 1:0:0:0: CD-ROM PLDS DVD+-RW DU-8A5HH SD12 PQ: 0 ANSI: 5
    [ 5.263686] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 5.263691] sd 0:0:0:0: [sda] 4096-byte physical blocks
    [ 5.263724] sd 0:0:0:0: [sda] Write Protect is off
    [ 5.263727] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 5.263737] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 5.269320] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 5.269323] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 5.269521] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 5.332482] sda: sda1 sda2
    [ 5.333235] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 5.457253] usb 3-1.7: new high-speed USB device number 3 using ehci-pci
    [ 5.549500] device-mapper: uevent: version 1.0.3
    [ 5.549652] device-mapper: ioctl: 4.25.0-ioctl (2013-06-26) initialised: [email protected]
    [ 5.554331] bio: create slab <bio-1> at 1
    [ 5.607167] usb 3-1.8: new high-speed USB device number 4 using ehci-pci
    [ 6.510287] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
    [ 7.581705] systemd[1]: systemd 208 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 7.582431] systemd[1]: Set hostname to <archins3537>.
    [ 8.087615] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 8.087670] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 8.087682] systemd[1]: Starting Login Prompts.
    [ 8.087692] systemd[1]: Reached target Login Prompts.
    [ 8.087700] systemd[1]: Starting Remote File Systems.
    [ 8.087707] systemd[1]: Reached target Remote File Systems.
    [ 8.087715] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 8.087736] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 8.087743] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 8.087762] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 8.087769] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 8.087789] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 8.087796] systemd[1]: Starting Delayed Shutdown Socket.
    [ 8.087813] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 8.087822] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 8.087851] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 8.087858] systemd[1]: Starting Paths.
    [ 8.087865] systemd[1]: Reached target Paths.
    [ 8.087878] systemd[1]: Starting udev Kernel Socket.
    [ 8.087895] systemd[1]: Listening on udev Kernel Socket.
    [ 8.087904] systemd[1]: Starting udev Control Socket.
    [ 8.087920] systemd[1]: Listening on udev Control Socket.
    [ 8.087944] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 8.088034] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 8.088043] systemd[1]: Starting Encrypted Volumes.
    [ 8.088051] systemd[1]: Reached target Encrypted Volumes.
    [ 8.088059] systemd[1]: Starting Journal Socket.
    [ 8.088098] systemd[1]: Listening on Journal Socket.
    [ 8.094096] systemd[1]: Started Set Up Additional Binary Formats.
    [ 8.146808] systemd[1]: Starting Create list of required static device nodes for the current kernel...
    [ 8.147345] systemd[1]: Starting udev Coldplug all Devices...
    [ 8.147641] systemd[1]: Starting Setup Virtual Console...
    [ 8.156662] systemd[1]: Started Load Kernel Modules.
    [ 8.156702] systemd[1]: Mounted FUSE Control File System.
    [ 8.156719] systemd[1]: Mounting Debug File System...
    [ 8.160118] systemd[1]: Starting Apply Kernel Variables...
    [ 8.160456] systemd[1]: Mounting POSIX Message Queue File System...
    [ 8.160770] systemd[1]: Mounting Configuration File System...
    [ 8.161235] systemd[1]: Starting Journal Service...
    [ 8.161549] systemd[1]: Started Journal Service.
    [ 8.407759] systemd-journald[153]: Vacuuming done, freed 0 bytes
    [ 8.622532] EXT4-fs (dm-1): re-mounted. Opts: data=ordered
    [ 8.834003] systemd-udevd[177]: starting version 208
    [ 9.449711] ACPI: Requesting acpi_cpufreq
    [ 9.652388] snd_hda_intel 0000:00:03.0: irq 63 for MSI/MSI-X
    [ 9.652512] snd_hda_intel 0000:00:1b.0: irq 64 for MSI/MSI-X
    [ 9.703295] ACPI: AC Adapter [ACAD] (off-line)
    [ 9.734702] wmi: Mapper loaded
    [ 9.767167] input: PC Speaker as /devices/platform/pcspkr/input/input6
    [ 9.900528] microcode: CPU0 sig=0x40651, pf=0x40, revision=0x15
    [ 9.914682] ACPI: Battery Slot [BAT1] (battery present)
    [ 9.946497] hda_codec: invalid CONNECT_LIST verb 5[1]:0
    [ 9.946555] hda_codec: invalid CONNECT_LIST verb 6[1]:0
    [ 9.946621] hda_codec: invalid CONNECT_LIST verb 7[1]:0
    [ 9.948456] input: HDA Intel MID HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card0/input7
    [ 9.948585] input: HDA Intel MID HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card0/input8
    [ 9.948656] input: HDA Intel MID HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input9
    [ 9.953096] input: HDA Intel PCH Headphone Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input10
    [ 9.953371] ACPI Warning: 0x0000000000001828-0x000000000000182f SystemIO conflicts with Region \PMIO 1 (20130517/utaddress-251)
    [ 9.953378] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 9.953384] ACPI Warning: 0x0000000000000830-0x000000000000083f SystemIO conflicts with Region \GPRL 1 (20130517/utaddress-251)
    [ 9.953388] ACPI Warning: 0x0000000000000830-0x000000000000083f SystemIO conflicts with Region \GPR_ 2 (20130517/utaddress-251)
    [ 9.953392] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 9.953394] ACPI Warning: 0x0000000000000800-0x000000000000082f SystemIO conflicts with Region \GPRL 1 (20130517/utaddress-251)
    [ 9.953398] ACPI Warning: 0x0000000000000800-0x000000000000082f SystemIO conflicts with Region \GPR_ 2 (20130517/utaddress-251)
    [ 9.953402] ACPI Warning: 0x0000000000000800-0x000000000000082f SystemIO conflicts with Region \IO_D 3 (20130517/utaddress-251)
    [ 9.953406] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 9.953407] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 9.953792] mei_me 0000:00:16.0: setting latency timer to 64
    [ 9.953838] mei_me 0000:00:16.0: irq 65 for MSI/MSI-X
    [ 9.956390] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 9.956608] ACPI Warning: 0x0000000000005040-0x000000000000505f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20130517/utaddress-251)
    [ 9.956615] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 10.231648] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
    [ 10.250684] cfg80211: Calling CRDA to update world regulatory domain
    [ 10.307646] input: Dell WMI hotkeys as /devices/virtual/input/input11
    [ 10.310649] microcode: CPU1 sig=0x40651, pf=0x40, revision=0x15
    [ 10.313166] microcode: CPU2 sig=0x40651, pf=0x40, revision=0x15
    [ 10.313536] microcode: CPU3 sig=0x40651, pf=0x40, revision=0x15
    [ 10.313923] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 10.347294] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 10.347309] r8169 0000:01:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 10.347544] r8169 0000:01:00.0: irq 66 for MSI/MSI-X
    [ 10.347727] r8169 0000:01:00.0 eth0: RTL8106e at 0xffffc90022cee000, 74:86:7a:50:ce:f4, XID 04900000 IRQ 66
    [ 10.381911] iTCO_vendor_support: vendor-support=0
    [ 10.393283] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 10.393324] iTCO_wdt: Found a Lynx Point_LP TCO device (Version=2, TCOBASE=0x1860)
    [ 10.393578] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 10.400848] systemd-udevd[183]: renamed network interface eth0 to enp1s0
    [ 10.416483] ath: EEPROM regdomain: 0x60
    [ 10.416486] ath: EEPROM indicates we should expect a direct regpair map
    [ 10.416489] ath: Country alpha2 being used: 00
    [ 10.416490] ath: Regpair used: 0x60
    [ 10.614808] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
    [ 10.615079] ieee80211 phy0: Atheros AR9565 Rev:1 mem=0xffffc90035180000, irq=19
    [ 10.643067] rts5139: module is from the staging directory, the quality is unknown, you have been warned.
    [ 10.643619] systemd-udevd[189]: renamed network interface wlan0 to wlp2s0
    [ 10.646589] scsi3 : SCSI emulation for RTS5139 USB card reader
    [ 10.646742]

    Cdh wrote:
    You didn't give much information so...
    Blacklisting is now done via /etc/modprobe.d/*.conf files
    For example:
    /etc/modprobe.d/disable-radeon.conf would contain
    install radeon /bin/false
    You can also write "blacklist radeon" instead but that only prevents loading it automatically on itself while booting. You can still modprobe it and if it is a dependency of an automatically loaded module it will still get loaded. With the install ... /bin/false there is no way to load it.
    Also you need to make sure that it is not in the modules array in /etc/mkinitcpio.conf (or that your disable-radeon.conf is in the files array) because the initramfs is its own mini-system that doesn't know about the module configuration otherwise.
    but thats the problem ! i need radeon module to start because vgaswitcheroo needs it ! and then trun it off because 'I' dont need it ! anyway i ll give 'bin/false' method a try !

  • Problem with Double Buffering and Swing

    Hi
    I made a game and basically it works pretty well, my only problem is it flickers really badly right now. I read up on a whole lot of forums about double buffering and none of those methods seemed to work. Then I noticed that Swing has double buffering built in so I tried that but then I get compilation errors and I'm really not sure why. My original code was a console application and worked perfectly, then I ported it into a JApplet and it still works but it flickers and thats what I'm tryign to fix now.
    The code below is in my main class under the constructor.
    Heres the double buffering code I'm trying to use, I'm sure you all seen it before lol
    public void update(Graphics g)
              // initialize buffer
              if (dbImage == null)
                   dbImage = createImage(this.getSize().width, this.getSize().height);
                   dbg = dbImage.getGraphics();
              // clear screen in background
              dbg.setColor(getBackground());
              dbg.fillRect(0, 0, this.getSize().width, this.getSize().height);
              // draw elements in background
              dbg.setColor(getForeground());
              paint(dbg);
              // draw image on the screen
              g.drawImage(dbImage, 0, 0, this);
         }My paint is right under neath and heres how it looks
    This snipet of code works but when I change the method to
    public paintComponent(Graphics g){
    super.paintComponent(g)...
    everythign stops working and get a compilation error and says that it can't find paintComponent in javax.swing.JFrame.
    public void paint(Graphics g)
              super.paint(g);
              //if game starting display menue
              if (show_menue)
                   //to restart lives if player dies
                   lives = 3;
                   menue.draw_menue(g);
                   menue_ufo1.draw_shape(g);
                   menue_ufo2.shape_color = Color.DARK_GRAY;
                   menue_ufo2.draw_shape(g);
                   menue_ufo3.shape_color = Color.BLUE;
                   menue_ufo3.draw_shape(g);
                   menue_ufo4.shape_color = new Color(82, 157, 22);
                   menue_ufo4.draw_shape(g);
                   menue_ufo5.draw_shape(g);
                   menue_ufo6.shape_color = new Color(130, 3, 3); ;
                   menue_ufo6.draw_shape(g);
                   menue_turret.draw_ship(g);
                   menue_ammo.draw_ammo(g);
              else
                   //otherwise redraw game objects
                   gunner.draw_ship(g);
                   y_ammo.draw_ammo(g);
                   grass.draw_bar(g);
                   o_ufo.draw_shape(g);
                   b_ufo.draw_shape(g);
                   m_ufo.draw_shape(g);
                   s_ufo.draw_shape(g);
                   z_ufo.draw_shape(g);
                   xx_ufo.draw_shape(g);
                   info.draw_bar(g);
                   live_painter.draw_lives(g, lives);
                   score_painter.draw_score(g, score);
                   level_display.draw_level(g, level);
                   explosion.draw_boom(g);
         }I just want to get rid of the flickering for now so any help will be greatly appreciated. Depending which will be simpler I can either try to double buffer this program or port it all to swing but I'm not sure which elements are effected by AWT and which by Swing. Also I read some of the Java documentation but couldn't really understand how to implement it to fix my program.
    Thanks in advance
    Sebastian

    This is a simple animation example quickly thrown together. I have two classes, an animation panel which is a JPanel subclass that overrides paintComponent and draws the animation, and a JApplet subclass that simply holds the animation panel in the applet's contentpane:
    SimpleAnimationPanel.java
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.Point;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.image.BufferedImage;
    import java.io.IOException;
    import java.net.MalformedURLException;
    import java.net.URL;
    import javax.imageio.ImageIO;
    import javax.swing.JPanel;
    import javax.swing.Timer;
    class SimpleAnimationPanel extends JPanel
        private static final int DELAY = 20;
        public static final int X_TRANSLATION = 2;
        public static final int Y_TRANSLATION = 2;
        private Point point = new Point(5, 32);
        private BufferedImage duke = null;
        private Timer timer = new Timer(DELAY, new TimerAction());
        public SimpleAnimationPanel()
            try
                // borrow an image from sun.com
                duke = ImageIO.read(new URL(
                        "http://java.sun.com/products/plugin/images/duke.wave.med.gif"));
            catch (MalformedURLException e)
                e.printStackTrace();
            catch (IOException e)
                e.printStackTrace();
            setPreferredSize(new Dimension(600, 400));
            timer.start();
        // do our drawing here in the paintComponent override
        @Override
        protected void paintComponent(Graphics g)
            super.paintComponent(g);
            if (duke != null)
                g.drawImage(duke, point.x, point.y, this);
        private class TimerAction implements ActionListener
            @Override
            public void actionPerformed(ActionEvent e)
                int x = point.x;
                int y = point.y;
                Dimension size = SimpleAnimationPanel.this.getSize();
                if (x > size.width)
                    x = 0;
                else
                    x += X_TRANSLATION;
                if (y > size.height)
                    y = 0;
                else
                    y += Y_TRANSLATION;
                point.setLocation(new Point(x, y)); // update the point
                SimpleAnimationPanel.this.repaint();
    }AnimationApplet.java
    import java.lang.reflect.InvocationTargetException;
    import javax.swing.JApplet;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;
    public class AnimationApplet extends JApplet
        public void init()
            try
                SwingUtilities.invokeAndWait(new Runnable()
                    public void run()
                        // construct the panel
                        JPanel simpleAnimation = new SimpleAnimationPanel();
                        // put it in the contentPane of the JApplet
                        getContentPane().add(simpleAnimation);
                        setSize(simpleAnimation.getPreferredSize());
            catch (InterruptedException e)
                e.printStackTrace();
            catch (InvocationTargetException e)
                e.printStackTrace();
    }Here's a 3rd bonus class that shows how to put the JPanel into a stand-alone program, a JFrame. It's very similar to doing it in the JApplet:
    AnimationFrame.java
    import javax.swing.JFrame;
    public class AnimationFrame
        private static void createAndShowUI()
            JFrame frame = new JFrame("SimpleAnimationPanel");
            frame.getContentPane().add(new SimpleAnimationPanel());
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.pack();
            frame.setLocationRelativeTo(null);
            frame.setVisible(true);
        public static void main(String[] args)
            java.awt.EventQueue.invokeLater(new Runnable()
                public void run()
                    createAndShowUI();
    }Edited by: Encephalopathic on Mar 15, 2008 11:01 PM

  • Xinerama with a Mobile Intel 945GM graphics card

    Hi,
    I'm trying to write a xorg.conf to enable Xinerama. But as you've already guessed it isn't working.
    Xinerama works perfectly fine, if i use xrandr.
    Could please look over my config and tell me what's wrong?
    Thanks in advance!
    Informations you may need:
    Im using the xf86-video-intel-legacy driver.
    This is my xorg.conf:
    Section "Monitor"
    Identifier "Main Monitor"
    EndSection
    Section "Monitor"
    Identifier "Second Monitor"
    VendorName "ACR"
    ModelName "Acer X233H"
    HorizSync 30.0 - 94.0
    VertRefresh 49.0 - 75.0
    Option "DPMS"
    Modeline "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
    EndSection
    Section "Device"
    Identifier "0 Intel 945GM"
    Driver "intel"
    BusID "PCI:0:2:0"
    Screen 0
    EndSection
    Section "Device"
    Identifier "1 Intel 945GM"
    Driver "intel"
    BusID "PCI:0:2:0"
    Screen 1
    EndSection
    Section "Screen"
    Identifier "0 Default Screen"
    Device "0 Intel 945GM"
    Monitor "Main Monitor"
    SubSection "Display"
    Depth 24
    Modes "1280x800"
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "1 Default Screen"
    Device "1 Intel 945GM"
    Monitor "Second Monitor"
    SubSection "Display"
    Depth 24
    Modes "1920x1080"
    EndSubSection
    EndSection
    Section "ServerLayout"
    Identifier "Default Layout"
    Screen 0 "0 Default Screen"
    Screen 1 "1 Default Screen" LeftOf "0 Default Screen"
    # Option "Xinerama" "true"
    EndSection
    Section "DRI"
    Mode 0666
    EndSection
    # vim: sw=4 ts=4
    And this is my /var/log/Xorg0.log:
    X.Org X Server 1.6.0
    Release Date: 2009-2-25
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.29-ARCH i686
    Current Operating System: Linux skynet 2.6.29-ARCH #1 SMP PREEMPT Wed Apr 8 12:47:56 UTC 2009 i686
    Build Date: 10 April 2009 07:03:14PM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Apr 13 22:49:02 2009
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "Default Layout"
    (**) |-->Screen "0 Default Screen" (0)
    (**) | |-->Monitor "Main Monitor"
    (**) | |-->Device "0 Intel 945GM"
    (**) |-->Screen "1 Default Screen" (1)
    (**) | |-->Monitor "Second Monitor"
    (**) | |-->Device "1 Intel 945GM"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (==) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1,
    built-ins
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (II) Cannot locate a core pointer device.
    (II) Cannot locate a core keyboard device.
    (II) The server relies on HAL to provide the list of input devices.
    If no devices become available, reconfigure HAL or disable AllowEmptyInput.
    (II) Loader magic: 0x1a40
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 5.0
    X.Org XInput driver : 4.0
    X.Org Server Extension : 2.0
    (II) Loader running on linux
    (--) using VT number 7
    (--) PCI:*(0@0:2:0) Intel Corporation Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller rev 3, Mem @ 0xdc100000/524288, 0xc0000000/268435456, 0xdc200000/262144, I/O @ 0x00001800/8
    (--) PCI: (0@0:2:1) Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller rev 3, Mem @ 0xdc180000/524288
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) System resource ranges:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (==) AIGLX enabled
    (II) Loading extension GLX
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "intel"
    (II) Loading /usr/lib/xorg/modules/drivers//intel_drv.so
    (II) Module intel: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 2.3.2
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 5.0
    (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, 965G, G35, 965Q, 946GZ,
    965GM, 965GME/GLE, G33, Q35, Q33, Intel Integrated Graphics Device
    (II) Primary Device is: PCI 00@00:02:0
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) resource ranges after probing:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    (II) Loading sub module "int10"
    (II) LoadModule: "int10"
    (II) Loading /usr/lib/xorg/modules//libint10.so
    (II) Module int10: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 1.0.0
    ABI class: X.Org Video Driver, version 5.0
    (II) Loading sub module "vbe"
    (II) LoadModule: "vbe"
    (II) Loading /usr/lib/xorg/modules//libvbe.so
    (II) Module vbe: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 1.1.0
    ABI class: X.Org Video Driver, version 5.0
    (II) Loading sub module "vgahw"
    (II) LoadModule: "vgahw"
    (II) Loading /usr/lib/xorg/modules//libvgahw.so
    (II) Module vgahw: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 0.1.0
    ABI class: X.Org Video Driver, version 5.0
    (==) intel(0): Depth 24, (--) framebuffer bpp 32
    (==) intel(0): RGB weight 888
    (==) intel(0): Default visual is TrueColor
    (II) intel(0): Integrated Graphics Chipset: Intel(R) 945GM
    (--) intel(0): Chipset: "945GM"
    (--) intel(0): Linear framebuffer at 0xC0000000
    (--) intel(0): IO registers at addr 0xDC100000
    (II) intel(0): 2 display pipes available.
    (==) intel(0): Using EXA for acceleration
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"
    (II) Module "ddc" already built-in
    (II) Loading sub module "i2c"
    (II) LoadModule: "i2c"
    (II) Module "i2c" already built-in
    (II) intel(0): Output VGA using monitor section Main Monitor
    (II) intel(0): I2C bus "CRTDDC_A" initialized.
    (II) intel(0): Output LVDS has no monitor section
    (II) intel(0): I2C bus "LVDSDDC_C" initialized.
    (II) intel(0): Attempting to determine panel fixed mode.
    (II) intel(0): I2C device "LVDSDDC_C:E-EDID segment register" registered at address 0x60.
    (II) intel(0): I2C device "LVDSDDC_C:ddc2" registered at address 0xA0.
    (II) Loading sub module "int10"
    (II) LoadModule: "int10"
    (II) Reloading /usr/lib/xorg/modules//libint10.so
    (II) intel(0): initializing int10
    (II) intel(0): Bad V_BIOS checksum
    (II) intel(0): Primary V_BIOS segment is: 0xc000
    (II) intel(0): VESA BIOS detected
    (II) intel(0): VESA VBE Version 3.0
    (II) intel(0): VESA VBE Total Mem: 7872 kB
    (II) intel(0): VESA VBE OEM: Intel(r) 82945GM Chipset Family Graphics Chip Accelerated VGA BIOS
    (II) intel(0): VESA VBE OEM Software Rev: 1.0
    (II) intel(0): VESA VBE OEM Vendor: Intel Corporation
    (II) intel(0): VESA VBE OEM Product: Intel(r) 82945GM Chipset Family Graphics Controller
    (II) intel(0): VESA VBE OEM Product Rev: Hardware Version 0.0
    (II) intel(0): found backlight control method /sys/class/backlight/acpi_video0
    (II) intel(0): I2C bus "SDVOCTRL_E for SDVOB" initialized.
    (II) intel(0): I2C device "SDVOCTRL_E for SDVOB:SDVO Controller B" registered at address 0x70.
    (II) intel(0): No SDVO device found on SDVOB
    (II) intel(0): I2C device "SDVOCTRL_E for SDVOB:SDVO Controller B" removed.
    (II) intel(0): I2C bus "SDVOCTRL_E for SDVOB" removed.
    (II) intel(0): I2C bus "SDVOCTRL_E for SDVOC" initialized.
    (II) intel(0): I2C device "SDVOCTRL_E for SDVOC:SDVO Controller C" registered at address 0x72.
    (II) intel(0): No SDVO device found on SDVOC
    (II) intel(0): I2C device "SDVOCTRL_E for SDVOC:SDVO Controller C" removed.
    (II) intel(0): I2C bus "SDVOCTRL_E for SDVOC" removed.
    (II) intel(0): Output TV has no monitor section
    (II) intel(0): I2C device "CRTDDC_A:E-EDID segment register" registered at address 0x60.
    (II) intel(0): I2C device "CRTDDC_A:ddc2" registered at address 0xA0.
    (II) intel(0): EDID vendor "ACR", prod id 147
    (II) intel(0): Using EDID range info for horizontal sync
    (II) intel(0): Using EDID range info for vertical refresh
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    (II) intel(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    (II) intel(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz)
    (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
    (II) intel(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
    (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    (II) intel(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
    (II) intel(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    (II) intel(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    (II) intel(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    (II) intel(0): Modeline "1920x1080"x60.0 172.80 1920 2040 2248 2576 1080 1081 1084 1118 -hsync +vsync (67.1 kHz)
    (II) intel(0): EDID vendor "ACR", prod id 147
    (II) intel(0): Output VGA connected
    (II) intel(0): Output LVDS connected
    (II) intel(0): Output TV disconnected
    (II) intel(0): Using user preference for initial modes
    (II) intel(0): Output VGA using initial mode 1280x800
    (II) intel(0): Output LVDS using initial mode 1280x800
    (II) intel(0): Monitoring connected displays enabled
    (II) intel(0): detected 256 kB GTT.
    (II) intel(0): detected 7932 kB stolen memory.
    (==) intel(0): video overlay key set to 0x101fe
    (==) intel(0): Will not try to enable page flipping
    (==) intel(0): Triple buffering disabled
    (==) intel(0): Intel XvMC decoder disabled
    (==) intel(0): Using gamma correction (1.0, 1.0, 1.0)
    (**) intel(0): Display dimensions: (510, 290) mm
    (**) intel(0): DPI set to (95, 168)
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "exa"
    (II) LoadModule: "exa"
    (II) Loading /usr/lib/xorg/modules//libexa.so
    (II) Module exa: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 2.4.0
    ABI class: X.Org Video Driver, version 5.0
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    (II) intel(0): Comparing regs from server start up to After PreInit
    (WW) intel(0): Register 0x61200 (PP_STATUS) changed from 0xc0000008 to 0xd000000a
    (WW) intel(0): PP_STATUS before: on, ready, sequencing idle
    (WW) intel(0): PP_STATUS after: on, ready, sequencing on
    (II) Loading sub module "int10"
    (II) LoadModule: "int10"
    (II) Reloading /usr/lib/xorg/modules//libint10.so
    (II) Loading sub module "vbe"
    (II) LoadModule: "vbe"
    (II) Reloading /usr/lib/xorg/modules//libvbe.so
    (II) Loading sub module "vgahw"
    (II) LoadModule: "vgahw"
    (II) Reloading /usr/lib/xorg/modules//libvgahw.so
    (==) intel(1): Depth 24, (--) framebuffer bpp 32
    (==) intel(1): RGB weight 888
    (==) intel(1): Default visual is TrueColor
    (II) intel(1): Integrated Graphics Chipset: Intel(R) 945GM
    (--) intel(1): Chipset: "945GM"
    (--) intel(1): Linear framebuffer at 0xC0000000
    (--) intel(1): IO registers at addr 0xDC100000
    (II) intel(1): 2 display pipes available.
    (==) intel(1): Using EXA for acceleration
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"
    (II) Module "ddc" already built-in
    (II) Loading sub module "i2c"
    (II) LoadModule: "i2c"
    (II) Module "i2c" already built-in
    (II) intel(1): Output VGA using monitor section Second Monitor
    (II) intel(1): I2C bus "CRTDDC_A" initialized.
    (II) intel(1): Output LVDS has no monitor section
    (II) intel(1): I2C bus "LVDSDDC_C" initialized.
    (II) intel(1): Attempting to determine panel fixed mode.
    (II) intel(1): I2C device "LVDSDDC_C:E-EDID segment register" registered at address 0x60.
    (II) intel(1): I2C device "LVDSDDC_C:ddc2" registered at address 0xA0.
    (II) Loading sub module "int10"
    (II) LoadModule: "int10"
    (II) Reloading /usr/lib/xorg/modules//libint10.so
    (II) intel(0): initializing int10
    (II) intel(0): Bad V_BIOS checksum
    (II) intel(0): Primary V_BIOS segment is: 0xc000
    (II) intel(0): VESA BIOS detected
    (II) intel(0): VESA VBE Version 3.0
    (II) intel(0): VESA VBE Total Mem: 7872 kB
    (II) intel(0): VESA VBE OEM: Intel(r) 82945GM Chipset Family Graphics Chip Accelerated VGA BIOS
    (II) intel(0): VESA VBE OEM Software Rev: 1.0
    (II) intel(0): VESA VBE OEM Vendor: Intel Corporation
    (II) intel(0): VESA VBE OEM Product: Intel(r) 82945GM Chipset Family Graphics Controller
    (II) intel(0): VESA VBE OEM Product Rev: Hardware Version 0.0
    (II) intel(1): found backlight control method /sys/class/backlight/acpi_video0
    (II) intel(1): I2C bus "SDVOCTRL_E for SDVOB" initialized.
    (II) intel(1): I2C device "SDVOCTRL_E for SDVOB:SDVO Controller B" registered at address 0x70.
    (II) intel(1): No SDVO device found on SDVOB
    (II) intel(1): I2C device "SDVOCTRL_E for SDVOB:SDVO Controller B" removed.
    (II) intel(1): I2C bus "SDVOCTRL_E for SDVOB" removed.
    (II) intel(1): I2C bus "SDVOCTRL_E for SDVOC" initialized.
    (II) intel(1): I2C device "SDVOCTRL_E for SDVOC:SDVO Controller C" registered at address 0x72.
    (II) intel(1): No SDVO device found on SDVOC
    (II) intel(1): I2C device "SDVOCTRL_E for SDVOC:SDVO Controller C" removed.
    (II) intel(1): I2C bus "SDVOCTRL_E for SDVOC" removed.
    (II) intel(1): Output TV has no monitor section
    (II) intel(1): I2C device "CRTDDC_A:E-EDID segment register" registered at address 0x60.
    (II) intel(1): I2C device "CRTDDC_A:ddc2" registered at address 0xA0.
    (II) intel(1): EDID vendor "ACR", prod id 147
    (II) intel(1): Using hsync ranges from config file
    (II) intel(1): Using vrefresh ranges from config file
    (II) intel(1): Printing DDC gathered Modelines:
    (II) intel(1): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    (II) intel(1): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    (II) intel(1): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    (II) intel(1): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz)
    (II) intel(1): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    (II) intel(1): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
    (II) intel(1): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
    (II) intel(1): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    (II) intel(1): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
    (II) intel(1): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    (II) intel(1): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    (II) intel(1): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    (II) intel(1): Modeline "1920x1080"x60.0 172.80 1920 2040 2248 2576 1080 1081 1084 1118 -hsync +vsync (67.1 kHz)
    (II) intel(1): EDID vendor "ACR", prod id 147
    (II) intel(1): Output VGA connected
    (II) intel(1): Output LVDS connected
    (II) intel(1): Output TV disconnected
    (II) intel(1): Using user preference for initial modes
    (II) intel(1): Output VGA using initial mode 1920x1080
    (II) intel(1): Output LVDS using initial mode 1280x800
    (II) intel(1): Monitoring connected displays enabled
    (II) intel(1): detected 256 kB GTT.
    (II) intel(1): detected 7932 kB stolen memory.
    (==) intel(1): video overlay key set to 0x101fe
    (==) intel(1): Will not try to enable page flipping
    (==) intel(1): Triple buffering disabled
    (==) intel(1): Intel XvMC decoder disabled
    (==) intel(1): Using gamma correction (1.0, 1.0, 1.0)
    (--) intel(1): Using HW Cursor because it's enabled on primary head.
    (**) intel(1): Display dimensions: (510, 290) mm
    (**) intel(1): DPI set to (95, 168)
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Reloading /usr/lib/xorg/modules//libfb.so
    (II) Loading sub module "exa"
    (II) LoadModule: "exa"
    (II) Reloading /usr/lib/xorg/modules//libexa.so
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    (II) intel(1): Comparing regs from server start up to After PreInit
    (WW) intel(1): Register 0x61200 (PP_STATUS) changed from 0xd0000009 to 0xd000000a
    (WW) intel(1): PP_STATUS before: on, ready, sequencing on
    (WW) intel(1): PP_STATUS after: on, ready, sequencing on
    (==) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? Yes, I do.
    (II) resource ranges after preInit:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b](OprD)
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b](OprD)
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b](OprD)
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b](OprU)
    (II) intel(0): Kernel reported 488960 total, 1 used
    (II) intel(0): I830CheckAvailableMemory: 1955836 kB available
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:00:02.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: drmOpenMinor returns 11
    drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
    (II) [drm] DRM interface version 1.3
    (II) [drm] DRM open master succeeded.
    (II) intel(0): [drm] Using the DRM lock SAREA also for drawables.
    (II) intel(0): [drm] framebuffer mapped by ddx driver
    (II) intel(0): [drm] added 1 reserved context for kernel
    (II) intel(0): X context handle = 0x1
    (II) intel(0): [drm] installed DRM signal handler
    (**) intel(0): Framebuffer compression enabled
    (**) intel(0): Tiling enabled
    (==) intel(0): VideoRam: 262144 KB
    (II) intel(0): Attempting memory allocation with tiled buffers.
    Backtrace:
    0: /usr/bin/X(xorg_backtrace+0x3b) [0x813278b]
    1: /usr/bin/X(xf86SigHandler+0x51) [0x80dda61]
    2: [0xb7fcb400]
    3: /usr/lib/xorg/modules/drivers//intel_drv.so [0xb7a5258e]
    4: /usr/lib/xorg/modules/drivers//intel_drv.so(i830_allocate_2d_memory+0x144) [0xb7a527b4]
    5: /usr/lib/xorg/modules/drivers//intel_drv.so [0xb7a47e2b]
    6: /usr/lib/xorg/modules/drivers//intel_drv.so [0xb7a4cafd]
    7: /usr/bin/X(AddScreen+0x19d) [0x807167d]
    8: /usr/bin/X(InitOutput+0x206) [0x80aeb16]
    9: /usr/bin/X(main+0x1e1) [0x8071d61]
    10: /lib/libc.so.6(__libc_start_main+0xe5) [0xb7bab6c5]
    11: /usr/bin/X [0x8071401]
    Fatal server error:
    Caught signal 11. Server aborting
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    Please also check the log file at "/var/log/Xorg.0.log" for additional information.

    Blind wrote:Umm, weelll, xorgconfig or X -config might produce something to work with, but in general you need to edit the xorg.conf file for best performance. As to your editing of 'vga' to 'xf86-video-intel': you should replace it with 'intel'. There are many, many sample xorg.conf's out there that use the intel driver, so google is your friend.
    Cheers,
    Blind
    +1
    You can specify the amount of videoram in xorg.conf and you need to add the 1280*800 resolution to it too. That's all I had to do to get it to work on my father's laptop.
    Zl.
    /EDIT: numerous wiki-entries could help you, f.e. http://wiki.archlinux.org/index.php/Intel_GMA_950
    Last edited by zenlord (2008-01-21 09:54:09)

Maybe you are looking for

  • Post with clearing

    Hi Experts, I'm using t-code F-04 to clear open items.  I entered a GL account and Account type S in the parameter but I cannot proceed due to the error 'There are no open items managed in account 171200' But if you check FBL3n there are lots of open

  • I deleted my hard drive on my macbook pro

    I am about to lose my mind if I don't find a solution. I have spent almost two weeks trying to find my hard drive on my mac. I used bootcamp to install windows like an idiot and partitioned the hard drive, giving 80GB for windows and the rest for mac

  • I bought logic studio 8 used, how can I register it to my name?, I bought logic studio 8 used, how can I register it to my name?

    I bought this Logic studio 8 from craigs list, the guy who sold it to me said he never registered the program but I asume he installed it in his mac which he also said that it crashed and that was the reason to get rid of logic since he is using a pc

  • Objects required for transport operations

    Hello, I am preparing to upgrade and migrate databases from 10g on AIX to 12c on OEL6. I found a great doc that details the use of Transportable Tablespaces for metadata movement and RMAN for the migration of the datafiles from big endian to little e

  • Required to calculate the depreciation from 01.04.2011

    Hello Experts My client did the capitalization of certains assets through WBS settlement with a capitalization data as 31.03.2011 (he is folloiwng the fiscal year variant as April to March). However, as per his internal policy the depreciation calcul