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)

Similar Messages

  • Smart applications not always so smart

    Hi.
    Most of us are becoming well aquainted with, and even to the point of depending upon, "smart" devices and "smart" programs for our daily activities and business dealings.
    And, these smart devices and smart programs have made a big difference in our lives.
    However, I've come to realize that many times, these smart devices or smart programs are anything but smart. In fact, they have begun to become rather aggravating, to say the least - doing more or less what they seem to want, not what we essentially ask for.
    My latest experience along this line is my experience with Safari operations on my macbook pro.
    For the longest time, I've not used Safari as my browser. I had used firefox for the longest time. Then, when having some issues with firefox operation (sometimes becoming sluggish in response time, etc.), I opted to delete firefox from my computer entirely, and returned to using safari.
    Now, I'm located geographically in Saudi Arabia, but as English is my mother tongue, and the vast majority of my internet (and other computer) work is in English, I prefer my browser and search engine to be in basic English mode. There is every once in a while I may search for something in particular in Arabic, but when I do, I simply switch over in the language field, and do the search in that language. But in general, I have all of my settings on English, and prefer my browser and search engine mode in deafult set to English.
    When I changed over to Safari, for some reason, even though I've gone back countless times into the settings pane to make sure, the browser default mode as well as the search engine mode comes up automatically in Arabic style, and presents to me selections of Arabic, even though I've typed in my search in English. This is the smart aspect of Safari, picking up that I'm in Saudi Arabia, and selecting this mode for me, on my behalf, even thought my settings are set to preference of English, not Arabic.
    In addition, Safari is insisting on giving me the default search enging of Genio, even thought I've already deleted it complete from my system, and have gone through all proper and necessary steps of completed shutting down and restarting, and then also resetting Safari to factory settings...still it is giving me Genio as default search engine, even though I've consistently returned to Safari preferences settings, and ensured the Google search engine is selected as default search engine (Genio is not even on the list of possible search engines to choose from).
    Hence, I've gone (once again) to the extent of re-downloading the latest version of Firefox, and of course selected my choice search engine to set as default, and now, finally, I have appearing in my window, complete English mode and selections when I type in a search in English...only reverting to Arabic mode when I type in a search in Arabic.
    Ah...the benefits and troubles of modern technology...hence 'smart' devices and 'smart' applications which are, as I've come to learn, not really so 'smart', afterall.
    Balqees Mohammed
    Mac-user since 2009

    You can tell Apple how you would like Safari improved at
    http://www.apple.com/feedback/safari.html

  • 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

  • "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.

  • HT204088 Dear sirs,  Could you please help me on my problem with my apple ID  I create new account with security questions, and when I try to purchase paid application,it ask me for answers the questions but it's not working,  My account have 50$ and stil

    Dear sirs,
    Could you please help me on my problem with my apple ID
    I create new account with security questions, and when I try to purchase paid application,it ask me for answers the questions but it's not working,
    My account have 50$ and still didn't buy anything

    You need to ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, phoning AppleCare and asking for the Account Security team, and filling out and submitting this form.
    (100546)

  • Two part question 1) what happens if you  sign into messages beta on os x lion 10.7.5 after it expired? does the whole application not work or just imessage? 2) does installing messages beta on os x lion 10.7.5  delete ichat?

    Two part question
    1) what happens if you  sign into messages beta on os x lion 10.7.5 after it expired? does the whole application not work or just imessage? can you stil use AIM, jabbar, google talk, or yahoo?  if you open messages beta does it immediately tell you that messages beta expired?
    2) does installing messages beta on os x lion 10.7.5  delete ichat or just transform ichat into messages beta giving the illusion that ichat is deleted?

    Hi,
    It was never completely clear whether it was just hidden or whether Apple ran a download page for iChat 6.
    As the Download for Messages Beta was separate and "Deleted" iChat it would seem it would be another download for iChat 6.
    iMessages will not function as it is only an Account type within Messages and iChat 6 does not have it.
    Therefore messages on the iPhone will not sync to the Mac. (until you get Mountain Lion and Messages in that OS X version).
    Mountain Lion and it's full version of Messages will not sync the iMessages that have happened in between the 14th December 2012  (end date of Messages beta) and the Install of Mountain Lion if you decide on that route.
    8:51 PM      Sunday; May 5, 2013
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.3)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Lately, I've been getting a blue screen in the midst of working and have to do a cold reboot to end it. Seems to happen when I'm closing windows or quitting applications. Not always, but sporadically. What causes this? I'm using 10.6.8 on early 2011 MBP.

    Lately, I've been getting a blue screen in the midst of working and have to do a cold reboot to end it. Seems to happen when I'm closing windows or quitting applications. Not always, but sporadically. What causes this? I'm using 10.6.8 on early 2011 MBP. Thanks for any help/advice!

    You have 10.6 on that machine, I suggest you stick with it for performance, third party hardware and software reasons as long as possible.
    Consider 10.8 (not 10.7) when it's released, because 10.7 and 10.8 will require a new investment in software and newer third party hardware as it requires newer drivers the old machines won't have. (forced upgrade because of software, really nice of them)
    http://roaringapps.com/apps:table
    Far as your Safari problem do these things until it's resolved:
    1: Software Update fully under the Apple menu.
    2: Check the status of your plug-ins and update (works for all browsers) also install Firefox and see if your problems continue. You should always have at least two browsers on the machine just in case one fails.
    https://www.mozilla.org/en-US/plugincheck/
    Flash install instructions/problem resolution here if you need it.
    How to install Flash, fix problems
    3: Install Safari again from Apple's web site
    https://www.apple.com/safari/
    4: Run through this list of fixes, stopping with #16 and report back before doing #17
    Step by Step to fix your Mac

  • My original note application is always crashed and i can't open it. Can you help me please??? Urgent

    My original note application is always crashed and i can't open it. Can you help me please??? Urgent

    CLOSE FROZEN APPS
    Hold the sleep button until ON/OFF slider appears. Let go of sleep button and ignore slider and then hold home button until the app closes
    Then  do this
    RESET DEVICE
    Hold down the Sleep/Wake button and the home button together until the apple logo appears (ignore the ON/OFF slider) then let both buttons go and wait for device to restart (no data will be lost).

  • Awesome window manager: How to keep application always on top

    Is it possible to keep media player applications always on top ?
    Following is my current configuration.
    { rule = { class = "Vlc" },
    properties = { floating = true, ontop = true } }
    This is working fine whenever I start application. But problem is, if I go to full screen and come back, ontop flag is unset.
    Is there anyway to fix this ?

    shmibs wrote:
    you could probably do something like
    client.connect_signal("property::fullscreen", function(c)
    if c.class == "mplayer" then
    c.ontop = true
    end
    end)
    i haven't tested this, though, so don't be surprised when it fails
    This is working partially. ie, VLC is keeping ontop propery, but video is not going full screen.

  • Error importing new version of our app "Application not available for edit"

    Hi,
    We are trying to import an app and get the error: Application not available for edit
    thats it on a clean white background - Application not available for edit shows up at the top left corner of the screen.
    Any clues?
    We tried a new id, tried a custom id.
    Then we tried deleting the existing app so we could insert the new app.
    We can't delete either.
    Help!

    I'm going to hijack this thread and ask a follow up question to Scott (or whoever reads this).
    When we export our application out of DEV it gets exported as Run + Build. When I have the DBA import into test or production on the Import screen I have them set it to Run Only and Reuse the Application ID. After installing it just forwards you to the same white screen with the "Application not available for edit" message on it. Now I understand the actual message since its Run Only, but its not clear that the import actually worked correctly or not.
    So although it does seem to import correctly, they always get nervous when they see this that it didnt import correctly. So is it better to have them import as Run + Build and then go change the build status through the admin front end rather than the way I'm doing it now?

  • 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.

  • Web Intelligence is not always working  well

    i found web intelligence is not always working, sometime, when i try to open a document, it takes so long, sometimes, it is fast, sometimes when i try to refresh the report, it gives me error, i am wondering if someone knows what could cause this kind of issue? is it proxy? or something else?

    Tara,
    there are many factors that can cause slow performance.  In those cases where it is sometimes fast, it may be due to caching -- another user recently requested the same report and the report is in the server's cache, so instead of running the report from the start it sends the cache to you.  In other cases there may be no cache built up so you get stuck waiting for cache and your report comes up slowly.  There are a couple of techniques for tracking down slow performance, but mostly it happens due to either a database problem or an overworked applications/web server, or poor communication/LAN/Network lines.  Depending on your expertise you'll gravitate to checking that aspect out first and investigating one of the aspects to see where a bottleneck is getting produced.  Another technique is to add -trace to your service startups to add more verbose messages to your logs.  Adding trace will help you to see more of what is going on in the background.  I guess it's a matter of digging in and following your instincts until you can nail down the culprit.
    Thanks,
    John

  • Help please-"Application Not Responding" for Safari and Mail

    I read in one discussion that if Safari is slow, you can go to Font Book and select the fonts with a bullet to get rid of duplicate fonts. I did that, and then decided to disable some japanese fonts I don't use.
    Now Safari and Mail don't work. Mail won't open at all, and Safari launches but doesn't load and I get the spinning wheel.
    I used Disk Utility to fix permissions, and that didn't solve the problem, and now my Disk Utility also says "Application Not Responding".
    I also went back to Font Book and enabled all the fonts I disabled. Still nothing.
    ( I can use Netscape-so it's only Mac applications I guess)
    Any help is very much appreciated.
    Thanks!
    powerpc g4   Mac OS X (10.3.2)  

    I read in one discussion that if Safari is slow, you
    can go to Font Book and select the fonts with a
    bullet to get rid of duplicate fonts. I did that, and
    then decided to disable some japanese fonts I don't
    use.
    Now Safari and Mail don't work. Mail won't open at
    all, and Safari launches but doesn't load and I get
    the spinning wheel.
    I used Disk Utility to fix permissions, and that
    didn't solve the problem, and now my Disk Utility
    also says "Application Not Responding".
    I also went back to Font Book and enabled all the
    fonts I disabled. Still nothing.
    ( I can use Netscape-so it's only Mac applications I
    guess)
    Any help is very much appreciated.
    Thanks!
    powerpc g4 Mac
    OS X (10.3.2)
    Wow- i fixed it! I remembered that when I was in Font Book originally, there were some fonts disabled, and I enabled them.
    I couldn't remember EXACTLY which ones, but I disabled some I thought were the ones, and VOILA!
    Mail works, Safari works...what a relief!
    And it only took me HOURS...oh well.
    If this might help anyone, here are the fonts I disabled again-
    BeteNoirA Regular
    BoyzRGross
    Chrome Yellow
    Coventry Garden
    FancyPants
    HardlyWorthit
    PleasinglyPlump
    RaggMoppRegular
    Anyone know if I should throw these fonts away? maybe a stupid question, but I'm not very good at this stuff and hesitate to change anything.
    powerpc g4 Mac OS X (10.3.2)

  • The PDF output is not always displayed!

    Hello
    I'm tryin' to build some PDF outputs and I have the next problem: I have 20 reports to make it on PDF form (viewed with the Acrobat plugin from IE 5.5 or higher) and when I try to see what was builded the PDF it's not always displayed ( mean it's not readed by the plugin). I generate the PDF output from a servlet (which also set the servlet output context as 'application/pdf') and, if the output it's generated too fast (meanning the report information was too small), the Acrobat plugin doesn't catch him ! I think that I have to slow down the servlet response to allow the plugin complete loading, but I don't khow how to do this (and, ofcourse, if it's possible).
    Please, I need a solution. !
    Thanx!

    Hi,
    setting content type as application/pdf is quite enough for the plugin to catch
    I generate the PDF output from a servlet
    (which also set the servlet output context as
    'application/pdf') and, if the output it's generated
    too fast (meanning the report information was too
    small), the Acrobat plugin doesn't catch him !but i think IE has a problem catching this, cause i also once ran thro this kind of problem
    I think that I have to slow down the servlet response to allow
    the plugin complete loading, but I don't khow how to
    do this (and, ofcourse, if it's possible). Yes it is possible.... if ur sevrvlet ehich is displaying pdf is http://host/PdfServert
    just make in such a way that the extention is pdf..
    http://host/PdfServert?xy=z.pdf or register the servlet with .pdf ext
    http://host/PdfServert.pdf...
    belive it really worked perfect for me..
    regards,
    Arun.N

Maybe you are looking for