ApplicationControlBar not always on top in FB4

When you have an AppControlBar docked shouldn't it remain on top even over popups? Or if not is there a way to pevent popups from showing over top of the AppControlBar?

@dallas,
Are you using an mx:Application or s:Application?
If you're using s:Application, you should be using <s:controlBarContent>...</s:controlBarContent> instead of <mx:ApplicationControlBar dock="true">...</mx:ApplicationControlBar>
Peter

Similar Messages

  • Xmonad Question on Floating Applications not always on top

    Hey,
    I'm switching from Awesome to Xmonad (or, trying to at least) since I'm growing tired of trying to keep up with syntax changes with awesome updates (but still waiting for the numlock on + no keybindings bug to be fixed, so I can't disable updates for it entirely).  Everything is going fairly well, and the only issue I think I need to ask about (the rest is documented well, or already answered), is the fact that Xmonad seems to automatically place any floating windows above others.  This is all fine if you move it to it's own screen, but I generally keep Skype open on the active window, and I want it to lose focus while I'm working on other things, without putting everything else into floating mode as well.  I was wondering if it's an issue with my template xmonad.hs (off the wiki page, if I remember correctly, or else from the Xmonad thread on these forums), or if it's a default that can be changed (or can't be changed, for that matter).  Does anyone have it working so that floating windows just float and can be hidding by tiled windows?
    This is the template xmonad.hs I'm using (and will be editing properly if I get this issue sorted out):
    -- Initially from not4aw3some at deviantart.com
    -- {{{ Imports
    -- stuff
    import XMonad
    import qualified XMonad.StackSet as W
    import qualified Data.Map as M
    import System.Exit
    import Graphics.X11.Xlib
    import IO (Handle, hPutStrLn)
    -- utils
    import XMonad.Util.Run (spawnPipe)
    import XMonad.Actions.NoBorders
    -- hooks
    import XMonad.Hooks.ManageDocks
    import XMonad.Hooks.DynamicLog
    import XMonad.Hooks.XPropManage
    -- Dialog and menu hooks
    import Graphics.X11.Xlib.Extras
    import Foreign.C.Types (CLong)
    -- layouts
    import XMonad.Layout.NoBorders
    import XMonad.Layout.ResizableTile
    import XMonad.Layout.Gaps
    import XMonad.Layout.Named
    import XMonad.Layout.PerWorkspace
    import XMonad.Layout.IM
    import XMonad.Layout.Grid
    import Data.Ratio((%))
    -- {{{ Main
    main = do
    h <- spawnPipe "xmobar ~/.xmobarrc"
    xmonad $ defaultConfig
    { workspaces = ["main", "www", "code", "im", "gfx", "vid", "doc", "misc"]
    , modMask = mod1Mask
    , borderWidth = 1
    , normalBorderColor = "#5a5a5a"
    , focusedBorderColor = "#daff30"
    , terminal = "urxvt -title urxvt"
    , keys = keys'
    , logHook = logHook' h
    , layoutHook = layoutHook'
    , manageHook = manageHook'
    -- {{{ Log Hooks
    logHook' :: Handle -> X ()
    logHook' h = dynamicLogWithPP $ customPP { ppOutput = hPutStrLn h }
    customPP :: PP
    customPP = defaultPP { ppCurrent = xmobarColor "#daff30" "#000000" . wrap "[" "]"
    , ppTitle = shorten 80
    , ppSep = "<fc=#daff30> | </fc>"
    , ppHiddenNoWindows = xmobarColor "#777777" ""
    , ppUrgent = xmobarColor "#AFAFAF" "#333333" . wrap "*" "*"
    -- {{{ Layout hooks
    layoutHook' = customLayout
    customLayout = avoidStruts $ onWorkspace "im" im $ smartBorders tiled ||| smartBorders (Mirror tiled) ||| im ||| noBorders Full
    -- [[old (made gap for bottom)
    -- customLayout = gaps [(D,16)] $ avoidStruts $ onWorkspace "im" im $ smartBorders tiled ||| smartBorders (Mirror tiled) ||| im ||| noBorders Full
    -- ]]end
    where
    tiled = named "[]=" $ ResizableTall 1 (2/100) (1/2) [] --"Tiled"
    im = named "InstantMessenger" $ withIM (12/50) (Role "buddy_list") Grid
    -- {{{ Dialog and menu hooks
    getProp :: Atom -> Window -> X (Maybe [CLong])
    getProp a w = withDisplay $ \dpy -> io $ getWindowProperty32 dpy a w
    checkAtom name value = ask >>= \w -> liftX $ do
    a <- getAtom name
    val <- getAtom value
    mbr <- getProp a w
    case mbr of
    Just [r] -> return $ elem (fromIntegral r) [val]
    _ -> return False
    checkDialog = checkAtom "_NET_WM_WINDOW_TYPE" "_NET_WM_WINDOW_TYPE_DIALOG"
    checkMenu = checkAtom "_NET_WM_WINDOW_TYPE" "_NET_WM_WINDOW_TYPE_MENU"
    manageMenus = checkMenu --> doFloat
    manageDialogs = checkDialog --> doFloat
    -- {{{ Manage Hooks
    myManageHook :: ManageHook
    myManageHook = composeAll . concat $
    [ [ className =? c --> doFloat | c <- myFloats ]
    , [ title =? t --> doFloat | t <- myOtherFloats ]
    , [ resource =? r --> doIgnore | r <- myIgnores ]
    -- , [ (className =? "URxvt" <&&> title =? "urxvt") --> doF (W.shift "1:main")]
    , [ className =? "Gran Paradiso" --> doF (W.shift "www") ]
    , [ className =? "Firefox" --> doF (W.shift "www") ]
    -- , [ className =? "Gimp" --> doF (W.shift "etc") ]
    -- , [ className =? "Gvim" --> doF (W.shift "code") ]
    , [ className =? "OpenOffice.org 3.0" --> doF (W.shift "doc") ]
    , [ className =? "Abiword" --> doF (W.shift "doc") ]
    , [ className =? "Pidgin" --> doF (W.shift "im") ]
    where
    myIgnores = ["stalonetray"]
    myFloats = []
    myOtherFloats = ["alsamixer", "Настройки Firefox", "Загрузки", "Дополнения", "Clear Private Data", "Download; Gran Paradiso", "urxvt-float"]
    manageHook' :: ManageHook
    manageHook' = manageHook defaultConfig <+> manageDocks <+> manageMenus <+> manageDialogs <+> myManageHook
    -- {{{ Keys/Button bindings
    keys' :: XConfig Layout -> M.Map (KeyMask, KeySym) (X ())
    keys' conf@(XConfig {XMonad.modMask = modMask}) = M.fromList $
    -- launching and killing programs
    [ ((modMask, xK_Return ), spawn $ XMonad.terminal conf)
    , ((modMask, xK_p ), spawn "dmenu_run -fn \"-*-terminus-medium-r-normal-*-12-*-*-*-*-*-*-*\" -nb \"#daff30\" -nf \"#888888\" -sb \"#2A2A2A\" -sf \"#daff30\"")
    , ((modMask .|. shiftMask, xK_f ), spawn "firefox")
    , ((modMask .|. shiftMask, xK_c ), kill)
    -- layouts
    , ((modMask, xK_space ), sendMessage NextLayout)
    , ((modMask .|. shiftMask, xK_space ), setLayout $ XMonad.layoutHook conf)
    , ((modMask, xK_b ), sendMessage ToggleStruts)
    -- floating layer stuff
    , ((modMask, xK_t ), withFocused $ windows . W.sink)
    -- refresh
    , ((modMask, xK_n ), refresh)
    , ((modMask .|. shiftMask, xK_w ), withFocused toggleBorder)
    -- focus
    , ((modMask, xK_Tab ), windows W.focusDown)
    , ((modMask, xK_j ), windows W.focusDown)
    , ((modMask, xK_k ), windows W.focusUp)
    , ((modMask, xK_m ), windows W.focusMaster)
    -- swapping
    , ((modMask .|. shiftMask, xK_Return), windows W.swapMaster)
    , ((modMask .|. shiftMask, xK_j ), windows W.swapDown )
    , ((modMask .|. shiftMask, xK_k ), windows W.swapUp )
    -- increase or decrease number of windows in the master area
    , ((modMask .|. controlMask, xK_h ), sendMessage (IncMasterN 1))
    , ((modMask .|. controlMask, xK_l ), sendMessage (IncMasterN (-1)))
    -- resizing
    , ((modMask, xK_h ), sendMessage Shrink)
    , ((modMask, xK_l ), sendMessage Expand)
    , ((modMask .|. shiftMask, xK_h ), sendMessage MirrorShrink)
    , ((modMask .|. shiftMask, xK_l ), sendMessage MirrorExpand)
    -- quit, or restart
    , ((modMask .|. shiftMask, xK_q ), io (exitWith ExitSuccess))
    , ((modMask , xK_q ), restart "xmonad" True)
    ++
    -- mod-[1..9] %! Switch to workspace N
    -- mod-shift-[1..9] %! Move client to workspace N
    [((m .|. modMask, k), windows $ f i)
    | (i, k) <- zip (XMonad.workspaces conf) [xK_F1 .. xK_F9]
    , (f, m) <- [(W.greedyView, 0), (W.shift, shiftMask)]]
    Thanks in advance,
    Lswest
    Last edited by lswest (2009-06-26 12:10:43)

    brenix wrote:I'm not sure if this is the same issue, but I have a problem where new windows appear behind/below the current window. I've found a solution on the xmonad documentation, but it doesnt seem to do anything...
    Well, I think it would be under the same behaviour, depending on the layout you're using when that happens.  If you're using IM, floating windows (I believe) appear below the others.  Besides that, it's probably not the same issue and you should start a new thread (using a descriptive title describing the issue) (to ensure that people who may have a solution will read the thread, chances are if the title makes someone seem like they can't answer it, they won't always read it), and/or search the forums for anything similar.
    Last edited by lswest (2009-07-08 16:22:33)

  • "Always on Top" of jdk 1.5 is not working when...

    I created a sample application that has Frame/Window and displays some text. Then i needed to make the window always visible on top of any other application or windows. But then when i opened applications like Battle Realms, Counter Strike, or any other games, the window is blocked by the previously run application.
    Can you help me on how can i provide solution with this?
    Thanks in advance.

    This might help you!!!
    About setAlwaysOnTop()
    Changes the always-on-top window state. An always-on-top window is a window that stays above all other windows except maybe other always-on-top windows. If there are several always-on-top windows the order in which they stay relative to each other is not specified and is platform dependent.
    If some other window already is always-on-top then the relative order between these windows is unspecified (depends on platform). No window can be brought to be over always-on-top window except maybe another always-on-top window.
    All owned windows of an always-on-top window automatically become always-on-top windows. If a window ceases to be always-on-top its owned windows cease to be always-on-top.
    When an always-on-top window is sent toBack its always-on-top state is set to false.
    This method makes the window always-on-top if alwaysOnTop is true. If the window is visible, this includes bringing window toFront, then "sticking" it to the top-most position. If the window is not visible it does nothing other than setting the always-on-top property. If later the window is shown, it will be always-on-top. If the Window is already always-on-top, this call does nothing.
    If alwaysOnTop is false this method changes the state from always-on-top to normal. The window remains top-most but its z-order can be changed in the normal way as for any other window. Does nothing if this Window is not always-on-top. Has no effect on relative z-order of windows if there are no other always-on-top windows.

  • Why the office windows always on top of others - how to change it back?!!

    I'm using mac os x and office 2011.
    Since maybe couple weeks ago (maybe after one of the office upgrades?), when I have multiple office windows opened (e.g., multiple word documents, excel, powerpoint), these windows always appear on top of others (e.g., safari, calendar) first!
    Here is an example: now i'm using safari, so it's my active window.  If I want to go to calendar (which is already opened), when I click the calendar window, all the office windows (which are opened as well) will jump out first!!  Then I have to click the calendar again to make it become on top of the office windows.  That means, whenever I want to switch to other windows while office windows are opened, I have to click all the other windows twice, because the first time I click on any other type of window, the office windows will jump out no matter what.
    This is very annoying after a while.  I'm not sure if I explained this clear enough.  But how can I change the settings so the office windows can just not always on top of other windows??!!  

    Yes, I can view/hide the OSK with no problem but the keyboard, itself, changed somehow.

  • I hope this might interest someone. The situation; 3 floors,I am having trouble with an an Airport Extreme, 802.11n on the top floor and a Mac Pro 3.1 on the bottom floor. Not always but often it has trouble seeing the Airport and making a connection. I h

    I'm not sure how to post a message. I hope this might interest someone. The situation; 3 floors,I am having trouble with an an Airport Extreme, 802.11n on the top floor and a Mac Pro 3.1 on the bottom floor. Not always but often it has trouble seeing the Airport and making a connection. I have an older Airport Express, would it help to install it? would it work best if it was installed in the same room? should it be installed half way in between? Get another Extreme? The Mac Book Pro on the middle floor can see 11 networks in the neighbourhood if that might be causing a problem or would if I installed the Express. Thank for your consideration.   

    Thanks for your time ... I appologize for the font and colour, I compossed the question in pages and failed to notice the font colour as grey ... there are a variety of computers of various ages so I think it is using a setting that allows both 5G and 2.4 ... the connection to the Airport is thru a cable modem and cable does run throuhout the house ... maybe those hard wires would be a place to look at ... do you think that putting the 'Express' on the second floor might help ... thanks again ...

  • Always on top window (not modal)

    Hi, everyone:
    Is there a way of making a window to be displayed always on top? I don't want it to be a modal window. I want the user to be able to flip to another (background) form, but still being able to fully see my current form on top.
    Thanks a lot.
    Regards,
    Eugene.

    Yes this is possible - if you are using Forms client server on windows you can find the code on Metalink (metalink.oracle.com) Note:68822.1

  • Bug: not always staying on top

    Under Edit > Preferences > Advanced > General I checked "Keep MiniPlayer on top of all other windows". However this does not always work for me, and seems that when I listen to streaming music (Radio) and the station needs to rebuffer the stream, when the music resumes the setting doesn't stick (Also annoying is the pop-under nature of the rebuffering window, with no indication in the iTunes MiniPlayer that it's rebuffering). My temporary fix has been to return it to the normal view, then back to the MiniPlayer, after which it sticks again until the next rebuffering.
    I'm on WinXP SP3 with iTunes 7.7.1.11 - haven't tried this with v8.

    Hi all
    In addition to JulieW's excellent suggestion, and this was
    somewhat alluded to by DilbertG, I've had this happen to me from
    time to time. Even though I looked at the timeline, mouse was
    sitting right there on the top layer all big as life and twice as
    natural.
    My fix? - Drag the mouse to the bottom of the timeline
    layers. Now move to a different slide to call it into the editor.
    Then move
    back to the original slide and drag the mouse back to the
    top of the timeline layers.
    Hopefully this helps... Rick

  • How to open a form always on top but not at focus?

    I had a form application which will call another form as reference. May I know that is there any way I can to to set the called form always on top, but the focus is still set at the calling form so that I can still operate on the calling form?
    Many thanks
    MInny

    Hi:
    Thank you for reply to my question.
    I have tried your codes and apply them the following the form. However, I always got the following error:
    Error: (WWV-00000)
    No conversion performed for type INTEGER, value . (WWC-49102)
    No conversion performed for type INTEGER, value . (WWC-49102)
    No conversion performed for type INTEGER, value . (WWC-49102)
    No conversion performed for type INTEGER, value . (WWC-49102)
    My codes is:
    declare
    request_no number;
    blk varchar2(30) := 'DEFAULT';
    l_url varchar2(4000);
    begin
    request_no := p_session.get_value_as_NuMBER(
    p_block_name => blk,
    p_attribute_name => 'A_WORK_REQUEST_ID');
    l_url := 'portal30.wwa_app_module.link?p_arg_names=_moduleid&p_arg_values=11880470335&p_arg_names=_sessionid&p_arg_values=&p_arg_names=work_request_id&p_arg_values='||request_no;
    portal30.wwa_app_module.set_target(l_url,'call');
    end;
    then,
    I created another form which has two fields and the dattype of pk is varchar2 and change manually put the pk's p_arg_value into the url.
    e.g.
    l_url:='PORTAL30.wwa_app_module.link?p_arg_names=_moduleid&p_arg_values=9029417810&p_arg_names=WORK_AREA_CD&p_arg_values=APP';
    portal30.wwa_app_module.set_target(l_url,'call');
    However, I still get the error message as below:
    Error: (WWV-00000)
    No conversion performed for type INTEGER, value . (WWC-49102)
    No conversion performed for type INTEGER, value . (WWC-49102)
    No conversion performed for type INTEGER, value . (WWC-49102)
    No conversion performed for type INTEGER, value . (WWC-49102)
    No conversion performed for type INTEGER, value . (WWC-49102)
    Your help would be highly appreciated.
    Wei Ye

  • Trackpoint in Thinkpad X121e not always working

    Hi,
    my Lenovo Thinkpad X121e runs with ArchLinux x86_64 and all packages updated (no testing versions). All worked fine, but since a while i have the problem, that the trackpoint sometimes does not work. This occurs randomly at startup. Sometimes it works, sometimes not. If it works, it keeps working all the time the machine is running. If it is not running, after a reboot it will most likely work. This problem seems to occur randomly at about every tenth start of the machine. I remember that the trackpoint did work without problems in the past, but some update in the last few months has killed it. I currently cannot figure out, why this happens.
    I attached the dmesg and lsmod output for the working and non-working state of the trackpoint. If you need more info, please ask. I hope someone can help me :-)
    Thanks.
    Edit: Added also the Xorg.0.logs for working and non-working states.
    dmesg with a working trackpoint:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.3.8-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.0 20120505 (prerelease) (GCC) ) #1 SMP PREEMPT Tue Jun 5 15:20:32 CEST 2012
    [ 0.000000] Command line: root=/dev/sda3 ro
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009d800 (usable)
    [ 0.000000] BIOS-e820: 000000000009d800 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 00000000c6efd000 (usable)
    [ 0.000000] BIOS-e820: 00000000c6efd000 - 00000000c730d000 (reserved)
    [ 0.000000] BIOS-e820: 00000000c730d000 - 00000000c738d000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000c738d000 - 00000000c73ed000 (ACPI data)
    [ 0.000000] BIOS-e820: 00000000c73ed000 - 00000000c7e00000 (usable)
    [ 0.000000] BIOS-e820: 00000000c7e00000 - 00000000c8000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fed00000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed80000 - 00000000fed81000 (reserved)
    [ 0.000000] BIOS-e820: 00000000ffe00000 - 0000000100000000 (reserved)
    [ 0.000000] BIOS-e820: 0000000100000000 - 000000011f000000 (usable)
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI 2.6 present.
    [ 0.000000] DMI: LENOVO 30515QG/30515QG, BIOS 8RET26WW (1.08 ) 06/20/2011
    [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [ 0.000000] No AGP bridge found
    [ 0.000000] last_pfn = 0x11f000 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F80000000 write-back
    [ 0.000000] 1 base 080000000 mask FC0000000 write-back
    [ 0.000000] 2 base 0C0000000 mask FF8000000 write-back
    [ 0.000000] 3 base 0FFF90000 mask FFFFF0000 uncachable
    [ 0.000000] 4 base 0FED80000 mask FFFFFF000 uncachable
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 base 0FFE00000 mask FFFE00000 write-protect
    [ 0.000000] TOM2: 000000011f000000 aka 4592M
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] last_pfn = 0xc7e00 max_arch_pfn = 0x400000000
    [ 0.000000] initial memory mapped : 0 - 20000000
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 20480
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000c7e00000
    [ 0.000000] 0000000000 - 00c0000000 page 1G
    [ 0.000000] 00c0000000 - 00c7e00000 page 2M
    [ 0.000000] kernel direct mapping tables up to c7e00000 @ 1fffe000-20000000
    [ 0.000000] init_memory_mapping: 0000000100000000-000000011f000000
    [ 0.000000] 0100000000 - 011f000000 page 2M
    [ 0.000000] kernel direct mapping tables up to 11f000000 @ c7dfe000-c7e00000
    [ 0.000000] RAMDISK: 37d69000 - 37ff0000
    [ 0.000000] ACPI: RSDP 00000000000f00e0 00024 (v04 LENOVO)
    [ 0.000000] ACPI: XSDT 00000000c73ec120 00074 (v01 LENOVO TP-8R 00000003 PTEC 00000002)
    [ 0.000000] ACPI: FACP 00000000c73da000 000F4 (v04 LENOVO TP-8R 00001080 PTL 00000002)
    [ 0.000000] ACPI: DSDT 00000000c73dc000 0EAF9 (v01 LENOVO TP-8R 00001000 PTEC 00001080)
    [ 0.000000] ACPI: FACS 00000000c7378000 00040
    [ 0.000000] ACPI: SLIC 00000000c73eb000 00176 (v01 LENOVO TP-8R 00001080 PTEC 00000001)
    [ 0.000000] ACPI: HPET 00000000c73d9000 00038 (v01 LENOVO TP-8R 00001080 PTL 00000002)
    [ 0.000000] ACPI: APIC 00000000c73d8000 0005E (v02 LENOVO TP-8R 00001080 PTL 00000002)
    [ 0.000000] ACPI: MCFG 00000000c73d7000 0003C (v01 LENOVO TP-8R 00001080 PTL 00000002)
    [ 0.000000] ACPI: UEFI 00000000c73d6000 0003E (v01 LENOVO TP-8R 00001080 PTL 00000002)
    [ 0.000000] ACPI: UEFI 00000000c73d5000 00042 (v01 PTL COMBUF 00000001 PTL 00000001)
    [ 0.000000] ACPI: SSDT 00000000c73d4000 003DE (v01 AMD POWERNOW 00000001 AMD 00000001)
    [ 0.000000] ACPI: SSDT 00000000c73d2000 012FA (v02 AMD ALIB 00000001 MSFT 04000000)
    [ 0.000000] ACPI: UEFI 00000000c73d1000 0013E (v01 LENOVO TP-8R 00001080 PTL 00000002)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at 0000000000000000-000000011f000000
    [ 0.000000] Initmem setup node 0 0000000000000000-000000011f000000
    [ 0.000000] NODE_DATA [000000011effb000 - 000000011effffff]
    [ 0.000000] [ffffea0000000000-ffffea00047fffff] PMD -> [ffff88011ac00000-ffff88011e5fffff] on node 0
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] DMA32 0x00001000 -> 0x00100000
    [ 0.000000] Normal 0x00100000 -> 0x0011f000
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] Early memory PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009d
    [ 0.000000] 0: 0x00000100 -> 0x000c6efd
    [ 0.000000] 0: 0x000c73ed -> 0x000c7e00
    [ 0.000000] 0: 0x00100000 -> 0x0011f000
    [ 0.000000] On node 0 totalpages: 944285
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 5 pages reserved
    [ 0.000000] DMA zone: 3912 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 16320 pages used for memmap
    [ 0.000000] DMA32 zone: 797008 pages, LIFO batch:31
    [ 0.000000] Normal zone: 1984 pages used for memmap
    [ 0.000000] Normal zone: 124992 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x808
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 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: 0x43538210 base: 0xfed00000
    [ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
    [ 0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 00000000c6efd000 - 00000000c730d000
    [ 0.000000] PM: Registered nosave memory: 00000000c730d000 - 00000000c738d000
    [ 0.000000] PM: Registered nosave memory: 00000000c738d000 - 00000000c73ed000
    [ 0.000000] PM: Registered nosave memory: 00000000c7e00000 - 00000000c8000000
    [ 0.000000] PM: Registered nosave memory: 00000000c8000000 - 00000000fec00000
    [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fed00000
    [ 0.000000] PM: Registered nosave memory: 00000000fed00000 - 00000000fed80000
    [ 0.000000] PM: Registered nosave memory: 00000000fed80000 - 00000000fed81000
    [ 0.000000] PM: Registered nosave memory: 00000000fed81000 - 00000000ffe00000
    [ 0.000000] PM: Registered nosave memory: 00000000ffe00000 - 0000000100000000
    [ 0.000000] Allocating PCI resources starting at c8000000 (gap: c8000000:36c00000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:2 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88011ec00000 s82176 r8192 d24320 u1048576
    [ 0.000000] pcpu-alloc: s82176 r8192 d24320 u1048576 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 925912
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: root=/dev/sda3 ro
    [ 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: 3637724k/4702208k available (4496k kernel code, 925068k absent, 139416k reserved, 4326k data, 732k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Verbose stalled-CPUs detection is disabled.
    [ 0.000000] NR_IRQS:4352 nr_irqs:512 16
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 15204352 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] Fast TSC calibration using PIT
    [ 0.000000] Detected 1596.524 MHz processor.
    [ 0.003338] Calibrating delay loop (skipped), value calculated using timer frequency.. 3194.09 BogoMIPS (lpj=5321746)
    [ 0.003347] pid_max: default: 32768 minimum: 301
    [ 0.003396] Security Framework initialized
    [ 0.003405] AppArmor: AppArmor disabled by boot time parameter
    [ 0.004113] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.007521] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.008760] Mount-cache hash table entries: 256
    [ 0.009042] Initializing cgroup subsys cpuacct
    [ 0.009050] Initializing cgroup subsys memory
    [ 0.009069] Initializing cgroup subsys devices
    [ 0.009073] Initializing cgroup subsys freezer
    [ 0.009077] Initializing cgroup subsys net_cls
    [ 0.009080] Initializing cgroup subsys blkio
    [ 0.009143] tseg: 00c7e00000
    [ 0.009147] CPU: Physical Processor ID: 0
    [ 0.009150] CPU: Processor Core ID: 0
    [ 0.009154] mce: CPU supports 6 MCE banks
    [ 0.011336] ACPI: Core revision 20120111
    [ 0.026703] ftrace: allocating 17489 entries in 69 pages
    [ 0.037262] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.071189] CPU0: AMD E-350 Processor stepping 00
    [ 0.073329] Performance Events: AMD PMU driver.
    [ 0.073329] ... version: 0
    [ 0.073329] ... bit width: 48
    [ 0.073329] ... generic registers: 4
    [ 0.073329] ... value mask: 0000ffffffffffff
    [ 0.073329] ... max period: 00007fffffffffff
    [ 0.073329] ... fixed-purpose events: 0
    [ 0.073329] ... event mask: 000000000000000f
    [ 0.090166] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.116773] Booting Node 0, Processors #1 Ok.
    [ 0.116781] smpboot cpu 1: start_ip = 98000
    [ 0.130046] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.136704] Brought up 2 CPUs
    [ 0.136716] Total of 2 processors activated (6388.18 BogoMIPS).
    [ 0.137266] devtmpfs: initialized
    [ 0.140921] PM: Registering ACPI NVS region at c730d000 (524288 bytes)
    [ 0.141584] NET: Registered protocol family 16
    [ 0.141951] ACPI: bus type pci registered
    [ 0.142141] PCI: MMCONFIG for domain 0000 [bus 00-1f] at [mem 0xf8000000-0xf9ffffff] (base 0xf8000000)
    [ 0.142147] PCI: not using MMCONFIG
    [ 0.142150] PCI: Using configuration type 1 for base access
    [ 0.142153] PCI: Using configuration type 1 for extended access
    [ 0.143469] bio: create slab <bio-0> at 0
    [ 0.143469] ACPI: Added _OSI(Module Device)
    [ 0.143469] ACPI: Added _OSI(Processor Device)
    [ 0.143469] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.143469] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.146754] ACPI: EC: Look up EC in DSDT
    [ 0.157302] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.161305] ACPI: Interpreter enabled
    [ 0.161305] ACPI: (supports S0 S3 S4 S5)
    [ 0.161305] ACPI: Using IOAPIC for interrupt routing
    [ 0.161305] PCI: MMCONFIG for domain 0000 [bus 00-1f] at [mem 0xf8000000-0xf9ffffff] (base 0xf8000000)
    [ 0.163624] PCI: MMCONFIG at [mem 0xf8000000-0xf9ffffff] reserved in ACPI motherboard resources
    [ 0.169819] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
    [ 0.175499] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
    [ 0.177428] ACPI: EC: GPE = 0x3, I/O: command/status = 0x66, data = 0x62
    [ 0.177818] ACPI: No dock devices found.
    [ 0.177828] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.180145] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.181866] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    [ 0.181872] pci_root PNP0A08:00: host bridge window [mem 0x000c0000-0x000c1fff]
    [ 0.181877] pci_root PNP0A08:00: host bridge window [mem 0x000c2000-0x000c3fff]
    [ 0.181881] pci_root PNP0A08:00: host bridge window [mem 0x000c4000-0x000c5fff]
    [ 0.181885] pci_root PNP0A08:00: host bridge window [mem 0x000c6000-0x000c7fff]
    [ 0.181890] pci_root PNP0A08:00: host bridge window [mem 0x000c8000-0x000c9fff]
    [ 0.181894] pci_root PNP0A08:00: host bridge window [mem 0x000ca000-0x000cbfff]
    [ 0.181898] pci_root PNP0A08:00: host bridge window [mem 0x000cc000-0x000cdfff]
    [ 0.181902] pci_root PNP0A08:00: host bridge window [mem 0x000ce000-0x000cffff]
    [ 0.181906] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000d1fff]
    [ 0.181910] pci_root PNP0A08:00: host bridge window [mem 0x000d2000-0x000d3fff]
    [ 0.181915] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d5fff]
    [ 0.181919] pci_root PNP0A08:00: host bridge window [mem 0x000d6000-0x000d7fff]
    [ 0.181923] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000d9fff]
    [ 0.181927] pci_root PNP0A08:00: host bridge window [mem 0x000da000-0x000dbfff]
    [ 0.181931] pci_root PNP0A08:00: host bridge window [mem 0x000dc000-0x000ddfff]
    [ 0.181935] pci_root PNP0A08:00: host bridge window [mem 0x000de000-0x000dffff]
    [ 0.181940] pci_root PNP0A08:00: host bridge window [mem 0x000e0000-0x000e1fff]
    [ 0.181944] pci_root PNP0A08:00: host bridge window [mem 0x000e2000-0x000e3fff]
    [ 0.181948] pci_root PNP0A08:00: host bridge window [mem 0x000e4000-0x000e5fff]
    [ 0.181952] pci_root PNP0A08:00: host bridge window [mem 0x000e6000-0x000e7fff]
    [ 0.181956] pci_root PNP0A08:00: host bridge window [mem 0x000e8000-0x000e9fff]
    [ 0.181960] pci_root PNP0A08:00: host bridge window [mem 0x000ea000-0x000ebfff]
    [ 0.181964] pci_root PNP0A08:00: host bridge window [mem 0x000ec000-0x000edfff]
    [ 0.181968] pci_root PNP0A08:00: host bridge window [mem 0x000ee000-0x000effff]
    [ 0.181973] pci_root PNP0A08:00: host bridge window [mem 0xe0000000-0xf7ffffff]
    [ 0.181977] pci_root PNP0A08:00: host bridge window [mem 0xf8000000-0xffffffff]
    [ 0.181981] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
    [ 0.181985] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
    [ 0.182002] pci_root PNP0A08:00: ignoring host bridge window [mem 0x000ce000-0x000cffff] (conflicts with Video ROM [mem 0x000c0000-0x000ce3ff])
    [ 0.182081] PCI host bridge to bus 0000:00
    [ 0.182085] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.182090] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c1fff]
    [ 0.182094] pci_bus 0000:00: root bus resource [mem 0x000c2000-0x000c3fff]
    [ 0.182098] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c5fff]
    [ 0.182102] pci_bus 0000:00: root bus resource [mem 0x000c6000-0x000c7fff]
    [ 0.182106] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000c9fff]
    [ 0.182110] pci_bus 0000:00: root bus resource [mem 0x000ca000-0x000cbfff]
    [ 0.182114] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cdfff]
    [ 0.182117] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d1fff]
    [ 0.182121] pci_bus 0000:00: root bus resource [mem 0x000d2000-0x000d3fff]
    [ 0.182125] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d5fff]
    [ 0.182129] pci_bus 0000:00: root bus resource [mem 0x000d6000-0x000d7fff]
    [ 0.182133] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000d9fff]
    [ 0.182137] pci_bus 0000:00: root bus resource [mem 0x000da000-0x000dbfff]
    [ 0.182141] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000ddfff]
    [ 0.182144] pci_bus 0000:00: root bus resource [mem 0x000de000-0x000dffff]
    [ 0.182148] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e1fff]
    [ 0.182152] pci_bus 0000:00: root bus resource [mem 0x000e2000-0x000e3fff]
    [ 0.182156] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e5fff]
    [ 0.182160] pci_bus 0000:00: root bus resource [mem 0x000e6000-0x000e7fff]
    [ 0.182164] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000e9fff]
    [ 0.182168] pci_bus 0000:00: root bus resource [mem 0x000ea000-0x000ebfff]
    [ 0.182172] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000edfff]
    [ 0.182176] pci_bus 0000:00: root bus resource [mem 0x000ee000-0x000effff]
    [ 0.182180] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xf7ffffff]
    [ 0.182184] pci_bus 0000:00: root bus resource [mem 0xf8000000-0xffffffff]
    [ 0.182187] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.182191] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.182208] pci 0000:00:00.0: [1022:1510] type 0 class 0x000600
    [ 0.182268] pci 0000:00:01.0: [1002:9802] type 0 class 0x000300
    [ 0.182283] pci 0000:00:01.0: reg 10: [mem 0xe0000000-0xefffffff pref]
    [ 0.182294] pci 0000:00:01.0: reg 14: [io 0x4000-0x40ff]
    [ 0.182304] pci 0000:00:01.0: reg 18: [mem 0xf0300000-0xf033ffff]
    [ 0.182367] pci 0000:00:01.0: supports D1 D2
    [ 0.182392] pci 0000:00:01.1: [1002:1314] type 0 class 0x000403
    [ 0.182405] pci 0000:00:01.1: reg 10: [mem 0xf0344000-0xf0347fff]
    [ 0.182478] pci 0000:00:01.1: supports D1 D2
    [ 0.182559] pci 0000:00:05.0: [1022:1513] type 1 class 0x000604
    [ 0.182638] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
    [ 0.182671] pci 0000:00:06.0: [1022:1514] type 1 class 0x000604
    [ 0.182749] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
    [ 0.182845] pci 0000:00:11.0: [1002:4391] type 0 class 0x000106
    [ 0.182872] pci 0000:00:11.0: reg 10: [io 0x4118-0x411f]
    [ 0.182886] pci 0000:00:11.0: reg 14: [io 0x4124-0x4127]
    [ 0.182900] pci 0000:00:11.0: reg 18: [io 0x4110-0x4117]
    [ 0.182915] pci 0000:00:11.0: reg 1c: [io 0x4120-0x4123]
    [ 0.182929] pci 0000:00:11.0: reg 20: [io 0x4100-0x410f]
    [ 0.182943] pci 0000:00:11.0: reg 24: [mem 0xf034a000-0xf034a3ff]
    [ 0.183027] pci 0000:00:12.0: [1002:4397] type 0 class 0x000c03
    [ 0.183047] pci 0000:00:12.0: reg 10: [mem 0xf0349000-0xf0349fff]
    [ 0.183144] pci 0000:00:12.2: [1002:4396] type 0 class 0x000c03
    [ 0.183171] pci 0000:00:12.2: reg 10: [mem 0xf034a500-0xf034a5ff]
    [ 0.183281] pci 0000:00:12.2: supports D1 D2
    [ 0.183285] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    [ 0.183337] pci 0000:00:13.0: [1002:4397] type 0 class 0x000c03
    [ 0.183357] pci 0000:00:13.0: reg 10: [mem 0xf0348000-0xf0348fff]
    [ 0.183455] pci 0000:00:13.2: [1002:4396] type 0 class 0x000c03
    [ 0.183481] pci 0000:00:13.2: reg 10: [mem 0xf034a400-0xf034a4ff]
    [ 0.183591] pci 0000:00:13.2: supports D1 D2
    [ 0.183594] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
    [ 0.183629] pci 0000:00:14.0: [1002:4385] type 0 class 0x000c05
    [ 0.183736] pci 0000:00:14.2: [1002:4383] type 0 class 0x000403
    [ 0.183767] pci 0000:00:14.2: reg 10: [mem 0xf0340000-0xf0343fff 64bit]
    [ 0.183855] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    [ 0.183879] pci 0000:00:14.3: [1002:439d] type 0 class 0x000601
    [ 0.183982] pci 0000:00:14.4: [1002:4384] type 1 class 0x000604
    [ 0.184052] pci 0000:00:18.0: [1022:1700] type 0 class 0x000600
    [ 0.184102] pci 0000:00:18.1: [1022:1701] type 0 class 0x000600
    [ 0.184146] pci 0000:00:18.2: [1022:1702] type 0 class 0x000600
    [ 0.184192] pci 0000:00:18.3: [1022:1703] type 0 class 0x000600
    [ 0.184251] pci 0000:00:18.4: [1022:1704] type 0 class 0x000600
    [ 0.184295] pci 0000:00:18.5: [1022:1718] type 0 class 0x000600
    [ 0.184339] pci 0000:00:18.6: [1022:1716] type 0 class 0x000600
    [ 0.184383] pci 0000:00:18.7: [1022:1719] type 0 class 0x000600
    [ 0.184555] pci 0000:01:00.0: [10ec:8176] type 0 class 0x000280
    [ 0.184577] pci 0000:01:00.0: reg 10: [io 0x3000-0x30ff]
    [ 0.184612] pci 0000:01:00.0: reg 18: [mem 0xf0200000-0xf0203fff 64bit]
    [ 0.184714] pci 0000:01:00.0: supports D1 D2
    [ 0.184718] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.190067] pci 0000:00:05.0: PCI bridge to [bus 01-01]
    [ 0.190089] pci 0000:00:05.0: bridge window [io 0x3000-0x3fff]
    [ 0.190101] pci 0000:00:05.0: bridge window [mem 0xf0200000-0xf02fffff]
    [ 0.190192] pci 0000:02:00.0: [1969:1083] type 0 class 0x000200
    [ 0.190224] pci 0000:02:00.0: reg 10: [mem 0xf0100000-0xf013ffff 64bit]
    [ 0.190239] pci 0000:02:00.0: reg 18: [io 0x2000-0x207f]
    [ 0.190356] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.196733] pci 0000:00:06.0: PCI bridge to [bus 02-02]
    [ 0.196755] pci 0000:00:06.0: bridge window [io 0x2000-0x2fff]
    [ 0.196767] pci 0000:00:06.0: bridge window [mem 0xf0100000-0xf01fffff]
    [ 0.196860] pci 0000:00:14.4: PCI bridge to [bus 04-04] (subtractive decode)
    [ 0.196875] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.196881] pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000c1fff] (subtractive decode)
    [ 0.196885] pci 0000:00:14.4: bridge window [mem 0x000c2000-0x000c3fff] (subtractive decode)
    [ 0.196890] pci 0000:00:14.4: bridge window [mem 0x000c4000-0x000c5fff] (subtractive decode)
    [ 0.196894] pci 0000:00:14.4: bridge window [mem 0x000c6000-0x000c7fff] (subtractive decode)
    [ 0.196899] pci 0000:00:14.4: bridge window [mem 0x000c8000-0x000c9fff] (subtractive decode)
    [ 0.196903] pci 0000:00:14.4: bridge window [mem 0x000ca000-0x000cbfff] (subtractive decode)
    [ 0.196921] pci 0000:00:14.4: bridge window [mem 0x000cc000-0x000cdfff] (subtractive decode)
    [ 0.196925] pci 0000:00:14.4: bridge window [mem 0x000d0000-0x000d1fff] (subtractive decode)
    [ 0.196930] pci 0000:00:14.4: bridge window [mem 0x000d2000-0x000d3fff] (subtractive decode)
    [ 0.196935] pci 0000:00:14.4: bridge window [mem 0x000d4000-0x000d5fff] (subtractive decode)
    [ 0.196939] pci 0000:00:14.4: bridge window [mem 0x000d6000-0x000d7fff] (subtractive decode)
    [ 0.196944] pci 0000:00:14.4: bridge window [mem 0x000d8000-0x000d9fff] (subtractive decode)
    [ 0.196948] pci 0000:00:14.4: bridge window [mem 0x000da000-0x000dbfff] (subtractive decode)
    [ 0.196953] pci 0000:00:14.4: bridge window [mem 0x000dc000-0x000ddfff] (subtractive decode)
    [ 0.196957] pci 0000:00:14.4: bridge window [mem 0x000de000-0x000dffff] (subtractive decode)
    [ 0.196962] pci 0000:00:14.4: bridge window [mem 0x000e0000-0x000e1fff] (subtractive decode)
    [ 0.196966] pci 0000:00:14.4: bridge window [mem 0x000e2000-0x000e3fff] (subtractive decode)
    [ 0.196971] pci 0000:00:14.4: bridge window [mem 0x000e4000-0x000e5fff] (subtractive decode)
    [ 0.196975] pci 0000:00:14.4: bridge window [mem 0x000e6000-0x000e7fff] (subtractive decode)
    [ 0.196980] pci 0000:00:14.4: bridge window [mem 0x000e8000-0x000e9fff] (subtractive decode)
    [ 0.196984] pci 0000:00:14.4: bridge window [mem 0x000ea000-0x000ebfff] (subtractive decode)
    [ 0.196989] pci 0000:00:14.4: bridge window [mem 0x000ec000-0x000edfff] (subtractive decode)
    [ 0.196993] pci 0000:00:14.4: bridge window [mem 0x000ee000-0x000effff] (subtractive decode)
    [ 0.196998] pci 0000:00:14.4: bridge window [mem 0xe0000000-0xf7ffffff] (subtractive decode)
    [ 0.197002] pci 0000:00:14.4: bridge window [mem 0xf8000000-0xffffffff] (subtractive decode)
    [ 0.197007] pci 0000:00:14.4: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.197011] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.197091] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.197382] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB5_._PRT]
    [ 0.197462] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB6_._PRT]
    [ 0.197622] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT]
    [ 0.197990] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.198396] pci0000:00: ACPI _OSC control (0x1d) granted
    [ 0.207341] ACPI: PCI Interrupt Link [LNKA] (IRQs 10 11) *0
    [ 0.207552] ACPI: PCI Interrupt Link [LNKB] (IRQs 10 11) *0
    [ 0.207715] ACPI: PCI Interrupt Link [LNKC] (IRQs 10 11) *0
    [ 0.207830] ACPI: PCI Interrupt Link [LNKD] (IRQs 10 11) *0
    [ 0.207926] ACPI: PCI Interrupt Link [LNKE] (IRQs 10 11) *0
    [ 0.208048] ACPI: PCI Interrupt Link [LNKF] (IRQs 10 11) *0
    [ 0.208177] ACPI: PCI Interrupt Link [LNKG] (IRQs 10 11) *0
    [ 0.208300] ACPI: PCI Interrupt Link [LNKH] (IRQs 10 11) *0
    [ 0.208426] vgaarb: device added: PCI:0000:00:01.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.208426] vgaarb: loaded
    [ 0.208426] vgaarb: bridge control possible 0000:00:01.0
    [ 0.208426] PCI: Using ACPI for IRQ routing
    [ 0.210067] PCI: pci_cache_line_size set to 64 bytes
    [ 0.210205] reserve RAM buffer: 000000000009d800 - 000000000009ffff
    [ 0.210210] reserve RAM buffer: 00000000c6efd000 - 00000000c7ffffff
    [ 0.210215] reserve RAM buffer: 00000000c7e00000 - 00000000c7ffffff
    [ 0.210219] reserve RAM buffer: 000000011f000000 - 000000011fffffff
    [ 0.210416] NetLabel: Initializing
    [ 0.210420] NetLabel: domain hash size = 128
    [ 0.210422] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.210446] NetLabel: unlabeled traffic allowed by default
    [ 0.210504] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [ 0.210511] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
    [ 0.212540] Switching to clocksource hpet
    [ 0.225756] pnp: PnP ACPI init
    [ 0.225801] ACPI: bus type pnp registered
    [ 0.226870] pnp 00:00: [bus 00-ff]
    [ 0.226876] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.226881] pnp 00:00: [mem 0x000c0000-0x000c1fff window]
    [ 0.226885] pnp 00:00: [mem 0x000c2000-0x000c3fff window]
    [ 0.226889] pnp 00:00: [mem 0x000c4000-0x000c5fff window]
    [ 0.226893] pnp 00:00: [mem 0x000c6000-0x000c7fff window]
    [ 0.226897] pnp 00:00: [mem 0x000c8000-0x000c9fff window]
    [ 0.226901] pnp 00:00: [mem 0x000ca000-0x000cbfff window]
    [ 0.226904] pnp 00:00: [mem 0x000cc000-0x000cdfff window]
    [ 0.226908] pnp 00:00: [mem 0x000ce000-0x000cffff window]
    [ 0.226912] pnp 00:00: [mem 0x000d0000-0x000d1fff window]
    [ 0.226920] pnp 00:00: [mem 0x000d2000-0x000d3fff window]
    [ 0.226924] pnp 00:00: [mem 0x000d4000-0x000d5fff window]
    [ 0.226927] pnp 00:00: [mem 0x000d6000-0x000d7fff window]
    [ 0.226931] pnp 00:00: [mem 0x000d8000-0x000d9fff window]
    [ 0.226935] pnp 00:00: [mem 0x000da000-0x000dbfff window]
    [ 0.226938] pnp 00:00: [mem 0x000dc000-0x000ddfff window]
    [ 0.226942] pnp 00:00: [mem 0x000de000-0x000dffff window]
    [ 0.226946] pnp 00:00: [mem 0x000e0000-0x000e1fff window]
    [ 0.226950] pnp 00:00: [mem 0x000e2000-0x000e3fff window]
    [ 0.226953] pnp 00:00: [mem 0x000e4000-0x000e5fff window]
    [ 0.226957] pnp 00:00: [mem 0x000e6000-0x000e7fff window]
    [ 0.226961] pnp 00:00: [mem 0x000e8000-0x000e9fff window]
    [ 0.226964] pnp 00:00: [mem 0x000ea000-0x000ebfff window]
    [ 0.226968] pnp 00:00: [mem 0x000ec000-0x000edfff window]
    [ 0.226972] pnp 00:00: [mem 0x000ee000-0x000effff window]
    [ 0.226976] pnp 00:00: [mem 0xe0000000-0xf7ffffff window]
    [ 0.226979] pnp 00:00: [mem 0xf8000000-0xffffffff window]
    [ 0.226984] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.226987] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.226991] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.227102] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    [ 0.227189] pnp 00:01: [io 0x0f50-0x0f51]
    [ 0.227194] pnp 00:01: [mem 0xfec00000-0xfec00fff]
    [ 0.227198] pnp 00:01: [mem 0xfee00000-0xfee00fff]
    [ 0.227201] pnp 00:01: [mem 0xf8000000-0xf9ffffff]
    [ 0.227291] system 00:01: [io 0x0f50-0x0f51] has been reserved
    [ 0.227298] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.227303] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.227308] system 00:01: [mem 0xf8000000-0xf9ffffff] has been reserved
    [ 0.227314] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.228056] pnp 00:02: [io 0x0000-0x001f]
    [ 0.228060] pnp 00:02: [io 0x0081-0x008f]
    [ 0.228063] pnp 00:02: [io 0x00c0-0x00de]
    [ 0.228066] pnp 00:02: [io 0x040b]
    [ 0.228069] pnp 00:02: [io 0x04d6]
    [ 0.228073] pnp 00:02: [dma 4]
    [ 0.228138] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.228155] pnp 00:03: [io 0x00f0-0x00fe]
    [ 0.228221] pnp 00:03: [irq 13]
    [ 0.228286] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.228306] pnp 00:04: [io 0x0070-0x0071]
    [ 0.228361] pnp 00:04: [irq 8]
    [ 0.228418] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.228434] pnp 00:05: [io 0x0061]
    [ 0.228496] pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.228516] pnp 00:06: [io 0x0060]
    [ 0.228519] pnp 00:06: [io 0x0064]
    [ 0.228528] pnp 00:06: [irq 1]
    [ 0.228598] pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.228686] pnp 00:07: [irq 12]
    [ 0.228746] pnp 00:07: Plug and Play ACPI device, IDs LEN0026 PNP0f13 (active)
    [ 0.228772] pnp 00:08: [io 0x0022-0x0023]
    [ 0.228775] pnp 00:08: [io 0x002e-0x002f]
    [ 0.228779] pnp 00:08: [io 0x0072-0x0073]
    [ 0.228785] pnp 00:08: [io 0x0080]
    [ 0.228789] pnp 00:08: [io 0x0092]
    [ 0.228792] pnp 00:08: [io 0x00b0-0x00b1]
    [ 0.228795] pnp 00:08: [io 0x00b2]
    [ 0.228798] pnp 00:08: [io 0x00b8]
    [ 0.228801] pnp 00:08: [io 0x00bc]
    [ 0.228804] pnp 00:08: [io 0x00f0]
    [ 0.228807] pnp 00:08: [io 0x04d0-0x04d1]
    [ 0.228810] pnp 00:08: [io 0x0530-0x0537]
    [ 0.228813] pnp 00:08: [io 0x0800-0x0827]
    [ 0.228817] pnp 00:08: [io 0x0830]
    [ 0.228820] pnp 00:08: [io 0x0840-0x0847]
    [ 0.228823] pnp 00:08: [io 0x0b00-0x0b1f]
    [ 0.228826] pnp 00:08: [io 0x0b20-0x0b3f]
    [ 0.228829] pnp 00:08: [io 0x0c00-0x0c01]
    [ 0.228832] pnp 00:08: [io 0x0c14]
    [ 0.228835] pnp 00:08: [io 0x0c50-0x0c52]
    [ 0.228839] pnp 00:08: [io 0x0cd0-0x0cd1]
    [ 0.228842] pnp 00:08: [io 0x0cd2-0x0cd3]
    [ 0.228845] pnp 00:08: [io 0x0cd4-0x0cd5]
    [ 0.228848] pnp 00:08: [io 0x0cd6-0x0cd7]
    [ 0.228851] pnp 00:08: [io 0x0cd8-0x0cdf]
    [ 0.228854] pnp 00:08: [io 0x0cf9]
    [ 0.228858] pnp 00:08: [io 0x8100-0x81ff window]
    [ 0.228862] pnp 00:08: [io 0x8200-0x82ff window]
    [ 0.228977] system 00:08: [io 0x04d0-0x04d1] has been reserved
    [ 0.228982] system 00:08: [io 0x0530-0x0537] has been reserved
    [ 0.228987] system 00:08: [io 0x0800-0x0827] has been reserved
    [ 0.228991] system 00:08: [io 0x0830] has been reserved
    [ 0.228996] system 00:08: [io 0x0840-0x0847] has been reserved
    [ 0.229000] system 00:08: [io 0x0b00-0x0b1f] has been reserved
    [ 0.229005] system 00:08: [io 0x0b20-0x0b3f] has been reserved
    [ 0.229009] system 00:08: [io 0x0c00-0x0c01] has been reserved
    [ 0.229014] system 00:08: [io 0x0c14] has been reserved
    [ 0.229018] system 00:08: [io 0x0c50-0x0c52] has been reserved
    [ 0.229023] system 00:08: [io 0x0cd0-0x0cd1] has been reserved
    [ 0.229027] system 00:08: [io 0x0cd2-0x0cd3] has been reserved
    [ 0.229032] system 00:08: [io 0x0cd4-0x0cd5] has been reserved
    [ 0.229036] system 00:08: [io 0x0cd6-0x0cd7] has been reserved
    [ 0.229041] system 00:08: [io 0x0cd8-0x0cdf] has been reserved
    [ 0.229045] system 00:08: [io 0x0cf9] could not be reserved
    [ 0.229050] system 00:08: [io 0x8100-0x81ff window] has been reserved
    [ 0.229055] system 00:08: [io 0x8200-0x82ff window] has been reserved
    [ 0.229061] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.229217] pnp 00:09: [mem 0x000e0000-0x000fffff]
    [ 0.229221] pnp 00:09: [mem 0xffe00000-0xffffffff]
    [ 0.229225] pnp 00:09: [mem 0x00000000-0xffffffffffffffff disabled]
    [ 0.229229] pnp 00:09: [mem 0xfec10000-0xfec1001f]
    [ 0.229233] pnp 00:09: [mem 0xfed00000-0xfed003ff]
    [ 0.229236] pnp 00:09: [mem 0xfed61000-0xfed613ff]
    [ 0.229240] pnp 00:09: [mem 0xfed80000-0xfed80fff]
    [ 0.229272] pnp 00:09: [Firmware Bug]: [mem 0x00000000-0xffffffffffffffff disabled] covers only part of AMD MMCONFIG area [mem 0xf8000000-0xf9ffffff]; adding more reservations
    [ 0.229345] system 00:09: [mem 0x000e0000-0x000fffff] could not be reserved
    [ 0.229351] system 00:09: [mem 0xffe00000-0xffffffff] has been reserved
    [ 0.229356] system 00:09: [mem 0xfec10000-0xfec1001f] has been reserved
    [ 0.229360] system 00:09: [mem 0xfed00000-0xfed003ff] has been reserved
    [ 0.229365] system 00:09: [mem 0xfed61000-0xfed613ff] has been reserved
    [ 0.229370] system 00:09: [mem 0xfed80000-0xfed80fff] has been reserved
    [ 0.229376] system 00:09: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.229807] pnp: PnP ACPI: found 10 devices
    [ 0.229815] ACPI: ACPI bus type pnp unregistered
    [ 0.242341] PCI: max bus depth: 1 pci_try_num: 2
    [ 0.242430] pci 0000:00:05.0: PCI bridge to [bus 01-01]
    [ 0.242437] pci 0000:00:05.0: bridge window [io 0x3000-0x3fff]
    [ 0.242445] pci 0000:00:05.0: bridge window [mem 0xf0200000-0xf02fffff]
    [ 0.242455] pci 0000:00:06.0: PCI bridge to [bus 02-02]
    [ 0.242461] pci 0000:00:06.0: bridge window [io 0x2000-0x2fff]
    [ 0.242467] pci 0000:00:06.0: bridge window [mem 0xf0100000-0xf01fffff]
    [ 0.242477] pci 0000:00:14.4: PCI bridge to [bus 04-04]
    [ 0.242564] pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff]
    [ 0.242569] pci_bus 0000:00: resource 5 [mem 0x000c0000-0x000c1fff]
    [ 0.242573] pci_bus 0000:00: resource 6 [mem 0x000c2000-0x000c3fff]
    [ 0.242578] pci_bus 0000:00: resource 7 [mem 0x000c4000-0x000c5fff]
    [ 0.242582] pci_bus 0000:00: resource 8 [mem 0x000c6000-0x000c7fff]
    [ 0.242586] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000c9fff]
    [ 0.242590] pci_bus 0000:00: resource 10 [mem 0x000ca000-0x000cbfff]
    [ 0.242594] pci_bus 0000:00: resource 11 [mem 0x000cc000-0x000cdfff]
    [ 0.242598] pci_bus 0000:00: resource 12 [mem 0x000d0000-0x000d1fff]
    [ 0.242602] pci_bus 0000:00: resource 13 [mem 0x000d2000-0x000d3fff]
    [ 0.242606] pci_bus 0000:00: resource 14 [mem 0x000d4000-0x000d5fff]
    [ 0.242610] pci_bus 0000:00: resource 15 [mem 0x000d6000-0x000d7fff]
    [ 0.242614] pci_bus 0000:00: resource 16 [mem 0x000d8000-0x000d9fff]
    [ 0.242618] pci_bus 0000:00: resource 17 [mem 0x000da000-0x000dbfff]
    [ 0.242622] pci_bus 0000:00: resource 18 [mem 0x000dc000-0x000ddfff]
    [ 0.242626] pci_bus 0000:00: resource 19 [mem 0x000de000-0x000dffff]
    [ 0.242629] pci_bus 0000:00: resource 20 [mem 0x000e0000-0x000e1fff]
    [ 0.242633] pci_bus 0000:00: resource 21 [mem 0x000e2000-0x000e3fff]
    [ 0.242637] pci_bus 0000:00: resource 22 [mem 0x000e4000-0x000e5fff]
    [ 0.242641] pci_bus 0000:00: resource 23 [mem 0x000e6000-0x000e7fff]
    [ 0.242645] pci_bus 0000:00: resource 24 [mem 0x000e8000-0x000e9fff]
    [ 0.242649] pci_bus 0000:00: resource 25 [mem 0x000ea000-0x000ebfff]
    [ 0.242653] pci_bus 0000:00: resource 26 [mem 0x000ec000-0x000edfff]
    [ 0.242657] pci_bus 0000:00: resource 27 [mem 0x000ee000-0x000effff]
    [ 0.242661] pci_bus 0000:00: resource 28 [mem 0xe0000000-0xf7ffffff]
    [ 0.242665] pci_bus 0000:00: resource 29 [mem 0xf8000000-0xffffffff]
    [ 0.242669] pci_bus 0000:00: resource 30 [io 0x0000-0x0cf7]
    [ 0.242673] pci_bus 0000:00: resource 31 [io 0x0d00-0xffff]
    [ 0.242677] pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
    [ 0.242681] pci_bus 0000:01: resource 1 [mem 0xf0200000-0xf02fffff]
    [ 0.242685] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff]
    [ 0.242689] pci_bus 0000:02: resource 1 [mem 0xf0100000-0xf01fffff]
    [ 0.242694] pci_bus 0000:04: resource 4 [mem 0x000a0000-0x000bffff]
    [ 0.242698] pci_bus 0000:04: resource 5 [mem 0x000c0000-0x000c1fff]
    [ 0.242702] pci_bus 0000:04: resource 6 [mem 0x000c2000-0x000c3fff]
    [ 0.242706] pci_bus 0000:04: resource 7 [mem 0x000c4000-0x000c5fff]
    [ 0.242711] pci_bus 0000:04: resource 8 [mem 0x000c6000-0x000c7fff]
    [ 0.242715] pci_bus 0000:04: resource 9 [mem 0x000c8000-0x000c9fff]
    [ 0.242719] pci_bus 0000:04: resource 10 [mem 0x000ca000-0x000cbfff]
    [ 0.242723] pci_bus 0000:04: resource 11 [mem 0x000cc000-0x000cdfff]
    [ 0.242727] pci_bus 0000:04: resource 12 [mem 0x000d0000-0x000d1fff]
    [ 0.242731] pci_bus 0000:04: resource 13 [mem 0x000d2000-0x000d3fff]
    [ 0.242735] pci_bus 0000:04: resource 14 [mem 0x000d4000-0x000d5fff]
    [ 0.242739] pci_bus 0000:04: resource 15 [mem 0x000d6000-0x000d7fff]
    [ 0.242743] pci_bus 0000:04: resource 16 [mem 0x000d8000-0x000d9fff]
    [ 0.242746] pci_bus 0000:04: resource 17 [mem 0x000da000-0x000dbfff]
    [ 0.242750] pci_bus 0000:04: resource 18 [mem 0x000dc000-0x000ddfff]
    [ 0.242755] pci_bus 0000:04: resource 19 [mem 0x000de000-0x000dffff]
    [ 0.242759] pci_bus 0000:04: resource 20 [mem 0x000e0000-0x000e1fff]
    [ 0.242763] pci_bus 0000:04: resource 21 [mem 0x000e2000-0x000e3fff]
    [ 0.242767] pci_bus 0000:04: resource 22 [mem 0x000e4000-0x000e5fff]
    [ 0.242771] pci_bus 0000:04: resource 23 [mem 0x000e6000-0x000e7fff]
    [ 0.242775] pci_bus 0000:04: resource 24 [mem 0x000e8000-0x000e9fff]
    [ 0.242779] pci_bus 0000:04: resource 25 [mem 0x000ea000-0x000ebfff]
    [ 0.242783] pci_bus 0000:04: resource 26 [mem 0x000ec000-0x000edfff]
    [ 0.242787] pci_bus 0000:04: resource 27 [mem 0x000ee000-0x000effff]
    [ 0.242791] pci_bus 0000:04: resource 28 [mem 0xe0000000-0xf7ffffff]
    [ 0.242795] pci_bus 0000:04: resource 29 [mem 0xf8000000-0xffffffff]
    [ 0.242799] pci_bus 0000:04: resource 30 [io 0x0000-0x0cf7]
    [ 0.242803] pci_bus 0000:04: resource 31 [io 0x0d00-0xffff]
    [ 0.242879] NET: Registered protocol family 2
    [ 0.243147] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.245284] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 0.250181] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.250766] TCP: Hash tables configured (established 524288 bind 65536)
    [ 0.250771] TCP reno registered
    [ 0.250804] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.250858] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.251058] NET: Registered protocol family 1
    [ 0.251088] pci 0000:00:01.0: Boot video device
    [ 0.383864] PCI: CLS 32 bytes, default 64
    [ 0.383965] Unpacking initramfs...
    [ 0.478532] Freeing initrd memory: 2588k freed
    [ 0.480190] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.480198] Placing 64MB software IO TLB between ffff8800c2efd000 - ffff8800c6efd000
    [ 0.480203] software IO TLB at phys 0xc2efd000 - 0xc6efd000
    [ 0.480963] perf: AMD IBS detected (0x000000ff)
    [ 0.481379] audit: initializing netlink socket (disabled)
    [ 0.481404] type=2000 audit(1339340302.479:1): initialized
    [ 0.482558] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.487036] VFS: Disk quotas dquot_6.5.2
    [ 0.487152] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.487326] msgmni has been set to 7109
    [ 0.487931] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 0.488040] io scheduler noop registered
    [ 0.488044] io scheduler deadline registered
    [ 0.488154] io scheduler cfq registered (default)
    [ 0.488395] pcieport 0000:00:05.0: irq 40 for MSI/MSI-X
    [ 0.488550] pcieport 0000:00:06.0: irq 41 for MSI/MSI-X
    [ 0.488682] pcieport 0000:00:05.0: Signaling PME through PCIe PME interrupt
    [ 0.488687] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
    [ 0.488694] pcie_pme 0000:00:05.0:pcie01: service driver pcie_pme loaded
    [ 0.488719] pcieport 0000:00:06.0: Signaling PME through PCIe PME interrupt
    [ 0.488723] pci 0000:02:00.0: Signaling PME through PCIe PME interrupt
    [ 0.488729] pcie_pme 0000:00:06.0:pcie01: service driver pcie_pme loaded
    [ 0.488942] GHES: HEST is not enabled!
    [ 0.489246] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.490367] Linux agpgart interface v0.103
    [ 0.490508] i8042: PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSE0] at 0x60,0x64 irq 1,12
    [ 0.492943] i8042: Detected active multiplexing controller, rev 1.1
    [ 0.496025] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.496088] serio: i8042 AUX0 port at 0x60,0x64 irq 12
    [ 0.496136] serio: i8042 AUX1 port at 0x60,0x64 irq 12
    [ 0.496180] serio: i8042 AUX2 port at 0x60,0x64 irq 12
    [ 0.496225] serio: i8042 AUX3 port at 0x60,0x64 irq 12
    [ 0.496472] mousedev: PS/2 mouse device common for all mice
    [ 0.496667] rtc_cmos 00:04: RTC can wake from S4
    [ 0.497028] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    [ 0.497119] rtc0: alarms up to one month, 114 bytes nvram, hpet irqs
    [ 0.497144] cpuidle: using governor ladder
    [ 0.497148] cpuidle: using governor menu
    [ 0.497476] TCP cubic registered
    [ 0.497700] NET: Registered protocol family 10
    [ 0.498445] NET: Registered protocol family 17
    [ 0.498453] Registering the dns_resolver key type
    [ 0.499372] PM: Hibernation image not present or could not be loaded.
    [ 0.499393] registered taskstats version 1
    [ 0.500327] rtc_cmos 00:04: setting system clock to 2012-06-10 14:58:23 UTC (1339340303)
    [ 0.500417] Initializing network drop monitor service
    [ 0.502828] Freeing unused kernel memory: 732k freed
    [ 0.503217] Write protecting the kernel read-only data: 8192k
    [ 0.513112] Freeing unused kernel memory: 1628k freed
    [ 0.518185] Freeing unused kernel memory: 656k freed
    [ 0.536071] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.539774] udevd[37]: starting version 184
    [ 0.613296] usbcore: registered new interface driver usbfs
    [ 0.613442] usbcore: registered new interface driver hub
    [ 0.619684] usbcore: registered new device driver usb
    [ 0.620711] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.621584] ehci_hcd 0000:00:12.2: EHCI Host Controller
    [ 0.621640] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
    [ 0.621702] ehci_hcd 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 0.621746] QUIRK: Enable AMD PLL fix
    [ 0.621810] ehci_hcd 0000:00:12.2: debug port 1
    [ 0.621850] ehci_hcd 0000:00:12.2: irq 17, io mem 0xf034a500
    [ 0.630117] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
    [ 0.630310] SCSI subsystem initialized
    [ 0.636369] hub 1-0:1.0: USB hub found
    [ 0.636381] hub 1-0:1.0: 5 ports detected
    [ 0.636783] ehci_hcd 0000:00:13.2: EHCI Host Controller
    [ 0.636805] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2
    [ 0.636818] ehci_hcd 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 0.636859] ehci_hcd 0000:00:13.2: debug port 1
    [ 0.636884] ehci_hcd 0000:00:13.2: irq 17, io mem 0xf034a400
    [ 0.637204] libata version 3.00 loaded.
    [ 0.640574] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 0.646781] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
    [ 0.647066] hub 2-0:1.0: USB hub found
    [ 0.647076] hub 2-0:1.0: 5 ports detected
    [ 0.647328] ahci 0000:00:11.0: version 3.0
    [ 0.647600] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 1 ports 3 Gbps 0x1 impl SATA mode
    [ 0.647608] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc
    [ 0.648432] scsi0 : ahci
    [ 0.648735] ata1: SATA max UDMA/133 abar m1024@0xf034a000 port 0xf034a100 irq 19
    [ 0.648890] ohci_hcd 0000:00:12.0: OHCI Host Controller
    [ 0.648918] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 3
    [ 0.649020] ohci_hcd 0000:00:12.0: irq 18, io mem 0xf0349000
    [ 0.704676] hub 3-0:1.0: USB hub found
    [ 0.704691] hub 3-0:1.0: 5 ports detected
    [ 0.706337] ohci_hcd 0000:00:13.0: OHCI Host Controller
    [ 0.706357] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 4
    [ 0.706392] ohci_hcd 0000:00:13.0: irq 18, io mem 0xf0348000
    [ 0.761543] hub 4-0:1.0: USB hub found
    [ 0.761558] hub 4-0:1.0: 5 ports detected
    [ 1.137007] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.138642] ata1.00: ATA-8: HITACHI HTS723232A7A364, EC2ZB70B, max UDMA/100
    [ 1.138651] ata1.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.140067] ata1.00: configured for UDMA/100
    [ 1.140658] scsi 0:0:0:0: Direct-Access ATA HITACHI HTS72323 EC2Z PQ: 0 ANSI: 5
    [ 1.144742] sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
    [ 1.144844] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.144850] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.144893] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.185183] sda: sda1 sda2 sda3 sda4
    [ 1.187123] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.483438] Refined TSC clocksource calibration: 1596.599 MHz.
    [ 1.483459] Switching to clocksource tsc
    [ 1.820777] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    [ 4.075750] udevd[314]: starting version 185
    [ 4.538235] cfg80211: Calling CRDA to update world regulatory domain
    [ 4.618824] Using firmware rtlwifi/rtl8192cfw.bin
    [ 4.664522] ACPI: acpi_idle registered with cpuidle
    [ 4.677193] powernow-k8: Found 1 AMD E-350 Processor (2 cpu cores) (version 2.20.00)
    [ 4.677322] powernow-k8: 0 : pstate 0 (1600 MHz)
    [ 4.677326] powernow-k8: 1 : pstate 1 (1280 MHz)
    [ 4.677329] powernow-k8: 2 : pstate 2 (800 MHz)
    [ 5.014794] ACPI: AC Adapter [ACAD] (on-line)
    [ 5.015426] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
    [ 5.015836] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
    [ 5.016050] ACPI: Power Button [PWRB]
    [ 5.016149] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input2
    [ 5.016283] ACPI: Sleep Button [SLPB]
    [ 5.016405] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input3
    [ 5.033809] ACPI: Lid Switch [LID]
    [ 5.033969] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 5.034129] ACPI: Power Button [PWRF]
    [ 5.047632] acpi device:34: registered as cooling_device2
    [ 5.051373] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input5
    [ 5.051525] ACPI: Video Device [VGA1] (multi-head: yes rom: no post: no)
    [ 5.076994] ACPI: Battery Slot [BAT1] (battery present)
    [ 5.131780] thermal LNXTHERM:00: registered as thermal_zone0
    [ 5.131788] ACPI: Thermal Zone [THZ0] (43 C)
    [ 5.142726] wmi: Mapper loaded
    [ 5.157792] input: PC Speaker as /devices/platform/pcspkr/input/input6
    [ 5.227665] SP5100 TCO timer: SP5100 TCO WatchDog Timer Driver v0.01
    [ 5.227836] SP5100 TCO timer: mmio address 0xb80830 already in use
    [ 5.363443] Non-volatile memory driver v1.3
    [ 5.428563] atl1c 0000:02:00.0: version 1.0.1.0-NAPI
    [ 5.450972] [drm] Initialized drm 1.1.0 20060810
    [ 5.527616] ieee80211 phy0: Selected rate control algorithm 'rtl_rc'
    [ 5.529303] rtlwifi: wireless switch is on
    [ 5.694564] thinkpad_acpi: ThinkPad ACPI Extras v0.24
    [ 5.694576] thinkpad_acpi: http://ibm-acpi.sf.net/
    [ 5.694582] thinkpad_acpi: ThinkPad BIOS 8RET26WW (1.08 ), EC unknown
    [ 5.694590] thinkpad_acpi: Lenovo ThinkPad X120e, model 30515QG
    [ 5.697439] thinkpad_acpi: detected a 8-level brightness capable ThinkPad
    [ 5.698186] thinkpad_acpi: radio switch found; radios are enabled
    [ 5.698221] thinkpad_acpi: possible tablet mode switch found; ThinkPad in laptop mode
    [ 5.700698] Registered led device: tpacpi::power
    [ 5.700736] Registered led device: tpacpi::standby
    [ 5.700775] Registered led device: tpacpi::thinkvantage
    [ 5.702194] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one
    [ 5.703379] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
    [ 5.708361] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input7
    [ 5.766552] ACPI Warning: 0x0000000000000b00-0x0000000000000b07 SystemIO conflicts with Region \_SB_.PCI0.SMB_.SMB0 1 (20120111/utaddress-251)
    [ 5.766583] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 5.767192] snd_hda_intel 0000:00:01.1: irq 42 for MSI/MSI-X
    [ 5.780051] [drm] radeon defaulting to kernel modesetting.
    [ 5.780059] [drm] radeon kernel modesetting enabled.
    [ 5.817461] HDMI status: Codec=0 Pin=3 Presence_Detect=0 ELD_Valid=0
    [ 5.817754] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/sound/card0/input8
    [ 6.023285] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input9
    [ 6.032362] [drm] initializing kernel modesetting (PALM 0x1002:0x9802 0x17AA:0x21EC).
    [ 6.033956] [drm] register mmio base: 0xF0300000
    [ 6.033959] [drm] register mmio size: 262144
    [ 6.034116] ATOM BIOS: Lenovo
    [ 6.034164] radeon 0000:00:01.0: VRAM: 384M 0x0000000000000000 - 0x0000000017FFFFFF (384M used)
    [ 6.034170] radeon 0000:00:01.0: GTT: 512M 0x0000000018000000 - 0x0000000037FFFFFF
    [ 6.034639] [drm] Detected VRAM RAM=384M, BAR=256M
    [ 6.034646] [drm] RAM width 32bits DDR
    [ 6.037931] [TTM] Zone kernel: Available graphics memory: 1821664 kiB.
    [ 6.037938] [TTM] Initializing pool allocator.
    [ 6.037949] [TTM] Initializing DMA pool allocator.
    [ 6.038006] [drm] radeon: 384M of VRAM memory ready
    [ 6.038010] [drm] radeon: 512M of GTT memory ready.
    [ 6.038055] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 6.038059] [drm] Driver supports precise vblank timestamp query.
    [ 6.038123] radeon 0000:00:01.0: irq 43 for MSI/MSI-X
    [ 6.038144] radeon 0000:00:01.0: radeon: using MSI.
    [ 6.038191] [drm] radeon: irq initialized.
    [ 6.038201] [drm] GART: num cpu pages 131072, num gpu pages 131072
    [ 6.041298] [drm] radeon: ib pool ready.
    [ 6.043305] [drm] Loading PALM Microcode
    [ 6.088021] [drm] PCIE GART of 512M enabled (table at 0x0000000000040000).
    [ 6.088318] radeon 0000:00:01.0: WB enabled
    [ 6.088330] [drm] fence driver on ring 0 use gpu addr 0x18000c00 and cpu addr 0xffff880118705c00
    [ 6.110048] [drm] ring test on 0 succeeded in 1 usecs
    [ 6.111109] [drm] ib test on ring 0 succeeded in 0 usecs
    [ 6.111934] [drm] Radeon Display Connectors
    [ 6.111938] [drm] Connector 0:
    [ 6.111940] [drm] LVDS
    [ 6.111943] [drm] HPD1
    [ 6.111947] [drm] DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
    [ 6.111950] [drm] Encoders:
    [ 6.111953] [drm] LCD1: INTERNAL_UNIPHY
    [ 6.111956] [drm] Connector 1:
    [ 6.111958] [drm] HDMI-A
    [ 6.111960] [drm] HPD2
    [ 6.111964] [drm] DDC: 0x6440 0x6440 0x6444 0x6444 0x6448 0x6448 0x644c 0x644c
    [ 6.111967] [drm] Encoders:
    [ 6.111969] [drm] DFP1: INTERNAL_UNIPHY
    [ 6.111971] [drm] Connector 2:
    [ 6.111973] [drm] VGA
    [ 6.111977] [drm] DDC: 0x64d8 0x64d8 0x64dc 0x64dc 0x64e0 0x64e0 0x64e4 0x64e4
    [ 6.111980] [drm] Encoders:
    [ 6.111982] [drm] CRT1: INTERNAL_KLDSCP_DAC1
    [ 6.112043] [drm] Internal thermal controller without fan control
    [ 6.112128] [drm] radeon: power management initialized
    [ 6.151134] psmouse serio4: synaptics: Touchpad model: 1, fw: 8.0, id: 0x1e2b1, caps: 0xd001a3/0x940300/0x121c00
    [ 6.151161] psmouse serio4: synaptics: serio: Synaptics pass-through port at isa0060/serio4/input0
    [ 6.194596] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input10
    [ 6.588128] [drm] fb mappable at 0xE0142000
    [ 6.588135] [drm] vram apper at 0xE0000000
    [ 6.588139] [drm] size 4325376
    [ 6.588142] [drm] fb depth is 24
    [ 6.588145] [drm] pitch is 5632
    [ 6.588616] fbcon: radeondrmfb (fb0) is primary device
    [ 7.109264] Console: switching to colour frame buffer device 170x48
    [ 7.118245] fb0: radeondrmfb frame buffer device
    [ 7.118248] drm: registered panic notifier
    [ 7.118262] [drm] Initialized radeon 2.13.0 20080528 for 0000:00:01.0 on minor 0
    [ 7.852228] EXT4-fs (sda3): re-mounted. Opts: (null)
    [ 7.961705] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
    [ 8.003845] EXT4-fs (sda1): mounting ext2 file system using the ext4 subsystem
    [ 8.011207] EXT4-fs (sda1): mounted filesystem without journal. Opts: (null)
    [ 8.094702] Adding 15623208k swap on /dev/sda2. Priority:-1 extents:1 across:15623208k
    [ 9.918662] atl1c 0000:02:00.0: irq 44 for MSI/MSI-X
    [ 9.999979] ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 12.082650] IBM TrackPoint firmware: 0x0e, buttons: 3/3
    [ 12.315710] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio4/serio5/input/input11
    [ 13.383760] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 15.701075] wlan0: authenticate with 0c:60:76:4a:8c:44 (try 1)
    [ 15.702630] wlan0: authenticated
    [ 15.725379] wlan0: associate with 0c:60:76:4a:8c:44 (try 1)
    [ 15.728291] wlan0: RX AssocResp from 0c:60:76:4a:8c:44 (capab=0x411 status=0 aid=2)
    [ 15.728299] wlan0: associated
    [ 15.728306] wlan0: moving STA 0c:60:76:4a:8c:44 to state 1
    [ 15.728310] wlan0: moving STA 0c:60:76:4a:8c:44 to state 2
    [ 15.729381] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    [ 16.085499] EXT4-fs (sda3): re-mounted. Opts: user_xattr,acl,barrier=1,data=ordered,commit=360
    [ 16.126474] Intel AES-NI instructions are not detected.
    [ 16.133570] EXT4-fs (sda4): re-mounted. Opts: user_xattr,acl,barrier=1,data=ordered,commit=360
    [ 16.140127] wlan0: moving STA 0c:60:76:4a:8c:44 to state 3
    [ 16.184502] EXT4-fs (sda1): re-mounted. Opts: user_xattr,acl,barrier=1
    [ 24.359763] EXT4-fs (sda3): re-mounted. Opts: commit=0
    [ 24.565842] EXT4-fs (sda4): re-mounted. Opts: commit=0
    [ 26.590021] wlan0: no IPv6 routers present
    [ 42.605282] fuse init (API version 7.18)
    dmesg with a non-working trackpoint:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.3.8-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.0 20120505 (prerelease) (GCC) ) #1 SMP PREEMPT Tue Jun 5 15:20:32 CEST 2012
    [ 0.000000] Command line: root=/dev/sda3 ro
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009d800 (usable)
    [ 0.000000] BIOS-e820: 000000000009d800 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 00000000c6efd000 (usable)
    [ 0.000000] BIOS-e820: 00000000c6efd000 - 00000000c730d000 (reserved)
    [ 0.000000] BIOS-e820: 00000000c730d000 - 00000000c738d000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000c738d000 - 00000000c73ed000 (ACPI data)
    [ 0.000000] BIOS-e820: 00000000c73ed000 - 00000000c7e00000 (usable)
    [ 0.000000] BIOS-e820: 00000000c7e00000 - 00000000c8000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fed00000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed80000 - 00000000fed81000 (reserved)
    [ 0.000000] BIOS-e820: 00000000ffe00000 - 0000000100000000 (reserved)
    [ 0.000000] BIOS-e820: 0000000100000000 - 000000011f000000 (usable)
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI 2.6 present.
    [ 0.000000] DMI: LENOVO 30515QG/30515QG, BIOS 8RET26WW (1.08 ) 06/20/2011
    [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [ 0.000000] No AGP bridge found
    [ 0.000000] last_pfn = 0x11f000 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F80000000 write-back
    [ 0.000000] 1 base 080000000 mask FC0000000 write-back
    [ 0.000000] 2 base 0C0000000 mask FF8000000 write-back
    [ 0.000000] 3 base 0FFF90000 mask FFFFF0000 uncachable
    [ 0.000000] 4 base 0FED80000 mask FFFFFF000 uncachable
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 base 0FFE00000 mask FFFE00000 write-protect
    [ 0.000000] TOM2: 000000011f000000 aka 4592M
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] last_pfn = 0xc7e00 max_arch_pfn = 0x400000000
    [ 0.000000] initial memory mapped : 0 - 20000000
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 20480
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000c7e00000
    [ 0.000000] 0000000000 - 00c0000000 page 1G
    [ 0.000000] 00c0000000 - 00c7e00000 page 2M
    [ 0.000000] kernel direct mapping tables up to c7e00000 @ 1fffe000-20000000
    [ 0.000000] init_memory_mapping: 0000000100000000-000000011f000000
    [ 0.000000] 0100000000 - 011f000000 page 2M
    [ 0.000000] kernel direct mapping tables up to 11f000000 @ c7dfe000-c7e00000
    [ 0.000000] RAMDISK: 37d69000 - 37ff0000
    [ 0.000000] ACPI: RSDP 00000000000f00e0 00024 (v04 LENOVO)
    [ 0.000000] ACPI: XSDT 00000000c73ec120 00074 (v01 LENOVO TP-8R 00000003 PTEC 00000002)
    [ 0.000000] ACPI: FACP 00000000c73da000 000F4 (v04 LENOVO TP-8R 00001080 PTL 00000002)
    [ 0.000000] ACPI: DSDT 00000000c73dc000 0EAF9 (v01 LENOVO TP-8R 00001000 PTEC 00001080)
    [ 0.000000] ACPI: FACS 00000000c7378000 00040
    [ 0.000000] ACPI: SLIC 00000000c73eb000 00176 (v01 LENOVO TP-8R 00001080 PTEC 00000001)
    [ 0.000000] ACPI: HPET 00000000c73d9000 00038 (v01 LENOVO TP-8R 00001080 PTL 00000002)
    [ 0.000000] ACPI: APIC 00000000c73d8000 0005E (v02 LENOVO TP-8R 00001080 PTL 00000002)
    [ 0.000000] ACPI: MCFG 00000000c73d7000 0003C (v01 LENOVO TP-8R 00001080 PTL 00000002)
    [ 0.000000] ACPI: UEFI 00000000c73d6000 0003E (v01 LENOVO TP-8R 00001080 PTL 00000002)
    [ 0.000000] ACPI: UEFI 00000000c73d5000 00042 (v01 PTL COMBUF 00000001 PTL 00000001)
    [ 0.000000] ACPI: SSDT 00000000c73d4000 003DE (v01 AMD POWERNOW 00000001 AMD 00000001)
    [ 0.000000] ACPI: SSDT 00000000c73d2000 012FA (v02 AMD ALIB 00000001 MSFT 04000000)
    [ 0.000000] ACPI: UEFI 00000000c73d1000 0013E (v01 LENOVO TP-8R 00001080 PTL 00000002)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at 0000000000000000-000000011f000000
    [ 0.000000] Initmem setup node 0 0000000000000000-000000011f000000
    [ 0.000000] NODE_DATA [000000011effb000 - 000000011effffff]
    [ 0.000000] [ffffea0000000000-ffffea00047fffff] PMD -> [ffff88011ac00000-ffff88011e5fffff] on node 0
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] DMA32 0x00001000 -> 0x00100000
    [ 0.000000] Normal 0x00100000 -> 0x0011f000
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] Early memory PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009d
    [ 0.000000] 0: 0x00000100 -> 0x000c6efd
    [ 0.000000] 0: 0x000c73ed -> 0x000c7e00
    [ 0.000000] 0: 0x00100000 -> 0x0011f000
    [ 0.000000] On node 0 totalpages: 944285
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 5 pages reserved
    [ 0.000000] DMA zone: 3912 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 16320 pages used for memmap
    [ 0.000000] DMA32 zone: 797008 pages, LIFO batch:31
    [ 0.000000] Normal zone: 1984 pages used for memmap
    [ 0.000000] Normal zone: 124992 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x808
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 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: 0x43538210 base: 0xfed00000
    [ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
    [ 0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 00000000c6efd000 - 00000000c730d000
    [ 0.000000] PM: Registered nosave memory: 00000000c730d000 - 00000000c738d000
    [ 0.000000] PM: Registered nosave memory: 00000000c738d000 - 00000000c73ed000
    [ 0.000000] PM: Registered nosave memory: 00000000c7e00000 - 00000000c8000000
    [ 0.000000] PM: Registered nosave memory: 00000000c8000000 - 00000000fec00000
    [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fed00000
    [ 0.000000] PM: Registered nosave memory: 00000000fed00000 - 00000000fed80000
    [ 0.000000] PM: Registered nosave memory: 00000000fed80000 - 00000000fed81000
    [ 0.000000] PM: Registered nosave memory: 00000000fed81000 - 00000000ffe00000
    [ 0.000000] PM: Registered nosave memory: 00000000ffe00000 - 0000000100000000
    [ 0.000000] Allocating PCI resources starting at c8000000 (gap: c8000000:36c00000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:2 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88011ec00000 s82176 r8192 d24320 u1048576
    [ 0.000000] pcpu-alloc: s82176 r8192 d24320 u1048576 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 925912
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: root=/dev/sda3 ro
    [ 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: 3637724k/4702208k available (4496k kernel code, 925068k absent, 139416k reserved, 4326k data, 732k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Verbose stalled-CPUs detection is disabled.
    [ 0.000000] NR_IRQS:4352 nr_irqs:512 16
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 15204352 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgr

    OK, ignore my last post pointing the finger at udev.
    I poked around in the kernel code; it was actually kinda fun. Now this looks more like either a hardware problem (unlikely) or a driver bug (more likely) to me:
    http://ubuntuforums.org/showthread.php?t=1894892
    Thought I'd pass along what I found.
    During a boot, the kernel will "walk" all the buses looking for devices. The methods used to find them on some buses (like PCI) are well defined, while others are not (like the serial bus). On those buses that aren't well defined the kernel will (probably) literally "probe" the bus trying to not only find a device, but also determine the exact chip installed.
    It's the second case that's involved in your problem. The serio driver found the Synaptics touchpad device (via probing). If you look closely at the kernel log, you'll see it's attached to your i8042 (PS/2) chip.  But... since this touchpad device has a "passthru port", it has to perform extra steps to determine if there's a chip on the "other side" of that touchpad chip. In your case there is, and it's your Trackpoint.
    If it's successful in finding the Trackpoint chip, the drivers/input/mouse/trackpoint.c kernel driver file will put the following in your syslog:
    IBM TrackPoint firmware: 0x0e, buttons: 3/3
    Which is what you see in your logs when it works. Since you don't see it when it fails, then the code probably isn't being executed or it's failing with an error condition.
    Now... when a driver finds a device, it usually (but not always) creates some virtual "files" in the /sys directory... and that's what will happen if that trackpoint.c code is executed...
    input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio4/serio5/input/input11
    So... one question is... "Does it create something in /sys when it fails?". From looking at the code, I highly doubt it.
    Although this looks somewhat improbable, if the error path for this section of the code in the trackpoint_detect function of /drivers/input/mouse/trackpoint.c file is executed then it looks like it might match your error:
    psmouse->private = kzalloc(sizeof(struct trackpoint_data), GFP_KERNEL);
    if (!psmouse->private)
    return -ENOMEM;
    Perhaps you might want to put some sort of printk call in there to see if that's what's happening. Heck, also add one to the top of the function to see if it's even being called.
    Good luck.

  • Flash always on top in Safari 5.0.5

    Hi,
    I have some problems with flash in Safari 5.0.5 with Flash Player 10.2. My flash banners is always on top and covers menus and popups. wmode and z-index seems to be correct. It works as expected in the latest nightly build of webkit and Google Chrome, but not Safari.
    Here is the webpage, scroll down and you will see the flash covering the top menu: http://www.booli.se/bostad/villa/hisingen/plockerotegatan+16/786830
    I found this question on the same topic (https://discussions.apple.com/thread/2458855?start=0&tstart=0) where the problem was said to be solved with Safari 5.0.1. A test site was set up in that thread by user suastegui which can be found here: http://www.guru.ag/fl2/iframeTest/index.html. On this page the flash is still covering the other elements for me.
    Any ideas?

    BBC iPlayer relies on Adobe Air. AIR 1.5.3 is the last version of AIR that supports Mac PowerPC and Windows 2000. AIR applications that require AIR 2 or later cannot be installed or used on a Macintosh PowerPC or a computer running the Windows 2000 operating system.
    http://kb2.adobe.com/cps/853/cpsid_85304.html
    I am in the same boat. I cannot watch flash videos on the BBC website or on BBC iPlayer, although all other flash videos (YouTube for example) are fine.
    For reasons that passeth all understanding, they work with the PPC version of Firefox, called TenFourFoxG5.app, once you have anabled plug-ins, as it does not natively support Flash.
    You can download TenFourFoxG5 from here:
    http://www.floodgap.com/software/tenfourfox/
    Now for the intersting bit: TenFourFox, like Firefox, does not support most plug-ins. Unless you are prone to headaches (in which case don't) you can read about that here:
    http://code.google.com/p/tenfourfox/wiki/PluginsNoLongerSupported
    But there is a workaround!
    Open TenFourFox and type in the address bar: about:config (no spaces) and click return. This gives you a warning that it might harm the application. Ignore that and click on 'I'll be careful, I promise' and you get the config file that you can edit - with great care.
    Look/search (scroll down) for: tenfourfox.plugins.enabled
    Set it to true. (Double click it to toggle it)
    Now close TenFourFox, open it again, and Flash will now work, as it now uses the plug-ins that Safari has stored.
    I am using Flash 10.1.102.64 in TenFourFox and it works just fine.

  • Dreamweaver Panels - Only one panel visible at a time, others get obscured even with Always On Top.

    I have a problem with my Dreamweaver MX, and it is that I can only see one panel at a time, any other open panels get obscured. For example, with the work space maximized, and having the properties and behaviors panels open, I can only see one of the panels at the same time. If I click on any area of the work space each open panel will display and with the next click the other will display. If I make the work space smaller then the whole area of my screen, and move any open panels outside of the Dreamweaver work space, only then they will stay visible. I know this is not normal behavior, because I used to be able to see all the open panels simultaneously, with the work space maximized to use all the screen area. I went to Preferences> Panels> Always On Top, and all the checkmarks are still set, so as to keep all panels on top at all times, but this does no longer be the case. Can someone tell me what happened here, and how I can get back to being able to see all the open panels? BTW, I tried installing older version of Dreamweaver 4, and the same thing happens to both installed versions. This is extremely annoying!
    Thanks. -Al.

    Since I upgraded to Firefox 19 from 18.0.2, on my Windows XP (SP3) laptop, I, too, can no longer open a new window. File-->New Window does nothing; also can no longer tear off a tab and open it in a new window (it stays where it is). Also, if I right-click on a tab and select Move to New Window, nothing happens. All of these worked fine in FF 18.0.2. All of these work fine with FF 19 on Windows 7. Only an issue on my XP laptop.
    After trying to open a new window, and not seeing the new window come up (and yes, I waited a long time), I decided to close my current window, which had multiple tabs open. Instead of just closing, it pops up the message reminding me that I'm about to close all those tabs. If I say close, and then go into the Task Manager, the Firefox application has disappeared (as expected), but the firefox (and plug-in container) processes are still running. So I have to manually kill the Firefox process to get it to quit. it's as if it thinks there is another Window open (the one I tried to open but never appeared). This happens every single time! I've restarted my laptop, and that does not resolve the problem.
    Is there a way to downgrade back to v 18.0.2 until this is fixed?

  • "Show Desktop" bug forces any program windows to be stuck "Always-on-top"

    What I found under Windows 7, when you use the "Show Desktop" feature (I prefer the ⊞ Win + D shortcut) and then bring all windows back by using it again, some windows behave as if they're glued to the front of the z-order. What this means is, say, I have windows
    A B and C open, with focus on A, hit ⊞ Win +D twice, and now it may happen that if I then want to switch to B or C, either by Alt+Tab or by selecting them on the taskbar, the taskbar shows the highlight, but A stays visible (and usable, it's not just a rendering
    issue) in the foreground.
    Imagine the following situations, all three windows cascading and overlapping:
    A (focus)
    B
    C
    -> ⊞ Win + D
    Desktop (focus)
    -> ⊞ Win + D
    A (focus)
    B
    C
    -> click C on taskbar
    A
    C (focus)
    B
    -> click B on taskbar
    A
    B (focus)
    C
    And so on. Focus means actual input focus, i.e. in second situation, any keyboard typing is sent to window B while window A is in the foreground.
    It does not matter what kind of application; in my current case an instance of Outlook and an instance of Explorer is stuck, while a second instance of Explorer and an instance of Firefox behave normally. This should show that this problem can occur even between
    multiple instances of the same application, and that there are no fancy applications involved that like to pretend they are the most important program and internally force "always on top".
    Showing and unshowing the desktop again doesn't help; in the worst case another window might end up with the "glued to the top of the z-order" too. Between those, I can easily switch, but in order to get a window which still behaves normally on top, I have
    to manually minimize the offending windows.
    The only cure seems to close the offending windows so far, I've not found anything else that helps.
    Could it be that Windows 7 has a bug that can force an ALWAYS_ON_TOP flag
    onto some windows when restoring from "Show Desktop", or am I doing something wrong?
    More information from another user:
    I use win+d. Issue easy to replicate, Win7-64bit-Ultimate.
    The affected windows (any program) seem to be placed into a separate "Z" group. You can place multiple/many windows into this always-on-top state, those in the affected state will function normally in relation to each other with the exception that: - The group
    as a whole is always-on-top of any non-affected window - The whole group is on top of the taskbar. - The whole group does not respond to (context on taskbar) "cascade windows" or similar commands.
    The fact that the affected windows are on top of the taskbar and otherwise function as "special windows" shows that windows 7 has a hidden "feature" of always-on-top that gets applied with Win+D. The feature appears to place windows in a super window state
    that is on top of the taskbar. The normal group remaining behind the taskbar. (When you click the start menu or context menu of the taskbar, the start menu/taskbar comes to the foreground of the always-on-top group, however this does not revert the affected
    windows, only a temporary takeover until you switch to something other than the start menu/taskbar)
    This is key to finding an answer. How do we get windows to unassign the special status or not do the assignment in the first place?

    It appeared to have cleared by closing all windows and restarting. Initially I could not reproduce the error, then after opening all my working windows, I did indeed reproduce it on any window.
    I almost think it could be initialized with something to do with multiple windows of Chrome, and then the show desktop problem will crop up once one window has it. This was because: After messing around some more with a chrome session saver (session buddy)
    and restoring sessions and getting the super state, I restored and closed the window I was in and now I am again at a place where I can not reproduce the error, even in my "work environment" with some 35 chrome tabs in two windows, plus other programs, file
    locations, remote desktops and a second chrome profile with another dozen tabs.
    So, back to square one with finding the actual instigator of the super state phenomenon.
    Once you actually have the super sate issue, the following will reproduce:
    Ok, I am doing this as I type it:
    Open chrome (to view this website), then Notepad, then Calculator, (could be any windows, but for the purpose of demonstration, follow along with me)
    The windows should function normally, overlap your windows so that you can see the edge of all windows and the Z-order is (from front to back):the browser on top, then the calculator, then Notepad (you should be able to see part of the background windows).
    Now, with the browser on top, press win+d, then win+d again.
    Click on Calculator, then your browser, your browser is now stuck in the foreground. Clicking on notepad will bring the focus to notepad, and it will be in front of the calculator, yet it will stay behind the browser, as your browser is in "super state". (many
    arrangements of switching focus after returning from win+d will create the problem, with the exeption of clicking the desktop, I also noticed that I could not get calculator into super state unless it overlapped my chrome browser).
    Again, this does not seem to work until at least one of your windows is affected. We do not know how to get the initial window, only subsequent ones.
    I will post back if I find anything else.
    Let me know if there is anything that develops.

  • How to keep toolbar in Photoshop CS5 always on top

    I have just upgraded to CS5 from CS3. In CS5, when I move an open document around on screen it covers over the toolbar, but only if the toolbar is docked to the side of window.  It will also cover the property bar and menu bar at the top of the interface.  The palettes on the r/h side always stay on top if not docked to the edge of the window, but if docked they too get covered over. In CS3 all the interface items stayed on top.  Is there any way to make sure they is always on top when docked (I prefer not to have them free floating)?
    I'm using Vista Ultimate.  My monitor is a Dell 24" Ultrasharp running at native 1920x1200 res.

    Thanks for the suggestion.  Turning OpenGL off makes no difference, and with it turned on I have also tried the three different quality settings, none of which made any difference either.
    I've also just tried with CS5 in a window, rather than fully maximised, and like that I can actually drag an open image right outside the Photoshop interface!
    Dave

  • JOptionPane show Message Dialog always on top found a Solution

    just thought of a solution for the age old java problem with message boxes / dialogs / input .
    It's funny when you google it you'll find like a million people asking for a solution but none or very few that gives an answer that works.
    this is probly not a new solution but i came up with this yesterday and thought i would "share".
    dunno why the java developers hasnt made a always on top function for this since there seems to be a very high demand for it.
    this hax will hopefully work at all times.
    hope google will find this thread, i searched for a solution yesterday and found none? which is surprising and im a pro googler too.
    import javax.swing.*;
    public class main{
         public static void main(String args[]){
              JFrame j=new JFrame();
              j.setAlwaysOnTop(true);
              j.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              j.setVisible(true);
              j.setVisible(false);
              JOptionPane.showMessageDialog(j,"hi");
              System.exit(0);
    }

    I didn't realize it was an "age old problem." The JOptionPane's showXXX methods just show an ordinary modal dialog. If you want to set the alwaysOnTop property of said dialog then you just need to obtain a reference and call the method in question.
    JOptionPane op = new JOptionPane("hi",JOptionPane.INFORMATION_MESSAGE);
    JDialog dialog = op.createDialog("Message Dialog");
    dialog.setAlwaysOnTop(true); //<-- this line
    dialog.setModal(true);
    dialog.setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
    dialog.setVisible(true);No need for an intermediate frame.

  • I just installed the lastest update of Firefox and now the Firefox window is always on top of all other windows - what a pain! How can I fix this?

    I looked at all of the options available to me and did not see where there is a link or anything saying "always on top." Is there such a thing somewhere and if so, where?

    Well hells bells - I went to watch TV and came back and all is good. Is it magic? :) (Some days I just plain don't understand anything - I swear!)

Maybe you are looking for

  • Reading Each String From a text File

    Hello everyone..., I've a doubt in File...cos am not aware of File.....Could anyone plz tell me how do i read each String from a text file and store those Strings in each File...For example if a file contains "Java Tchnology forums, File handling in

  • How to Make sure the doc is there in the target system??

    Hello Everybody- I am trying to send a vendor master to a R/3 system from XI via Proxy,I did not write any code in Proxy yet as it will be written by the ABAP guys later in the R/3 system, I see a checkered flag in the XI monitor,but is there any way

  • Get Locale country and language codes

    I have checked the documentation, but nothing is jumping out at me. Is there a function that returns the locale country and language codes? GetLocale() returns the "locale name as it is represented in ColdFusion": ie: English (US) Spanish (Standard)

  • SQL 2005 Express on WE POSReady 7

    Hi all We have an issue spwaning with a SQL Express 2005 SP3 on POS machines running WE POSReady7  After running smoothly for over 1 year x4 units over the last 2 months have developed an issue where the SQL engine stops running and wont restart - gi

  • Elements Organizer and Editor Image Differences?

    I've noticed that the images displayed by Photoshop Elements Organizer are noticeable different from the display of the same image file by the Elements Editor.  Why does this happen and is there a way to correct one or the other displays.  Generally,