Solving a system of nonlinear equations

Hey guys,
I am currently trying to solve a set of nonlinear equations in LabView with the help of MathScript and MATLAB code. I'm trying to create a working code since hours, but I haven't achieved this goal yet.
System of equations:
x^2 + y^2 + z^2 - R1^2 == 0
x^2 + (y-Y0)^2 + z^2 - R2^2 == 0
(x-X0)^2 + y^2 + z^2 - R3^2 == 0
R1, R2, R3, X0, Y0 are known.
Possible solution in MATLAB (assuming X0 = Y0 = 100, R1^2 = R3^2 = 11000, R2^2= 9000):
Create myfun.m with content:
function F = myfun(x);
F = [x(1)^2 + x(2)^2 + x(3)^2 - 11000;
x(1)^2 + (x(2)-100)^2 + x(3)^2 - 9000;
(x(1)-100)^2 + x(2)^2 + x(3)^2 - 11000];
end
Set intial value for iteration:
x0 = [50 50 50]
Solve:
fsolve(@myfun, x0)
=> Works fine!
Now I tried to just plug all of this stuff into a MathScript Node:
function F = myfun(x);
F = [x(1)^2 + x(2)^2 + x(3)^2 - 11000;
x(1)^2 + (x(2)-100)^2 + x(3)^2 - 9000;
(x(1)-100)^2 + x(2)^2 + x(3)^2 - 11000];
x0 = [50 50 50];
Sol = fsolve(@myfun, x0);
This is where the problem starts.
When I try to run the program, I get the follwing error message:
A function is defined in this script. You must save and call the
function with appropriate input values to execute the function.
I can't really figure out, what I did wrong and I would be very thankful, if somebody could help me.
Regards,
fuchrist
Solved!
Go to Solution.

Hi,
MathScript does not support inline user-defined function (UDF). What you need to do is
Define the UDF in a .m file. Give that .m file the same name as your UDF.
Save the .m file in MathScript Search Path. By default, the search path is the LabVIEW Data folder.
Pass the name of .m file as the first string input to function fsolve in MathScript Node.
I attach my .m file and snapshot of MathScript Node. The result I got is [50, 60, 70] which should be correct.
Attachments:
myfun.zip ‏1 KB

Similar Messages

  • How can I solve a system of linear equations for the non trivial solution?

    I want to solve the equation A Q =0 where A is a 1xn matrix and Q is an nxn matrix for A. I tried using the Solve Linear Equations sub.vi but it just gave me the trivial solution. What can I do to solve this?

    Larry of KochLab,
    Have you looked at the MathScript Node? Would it be possible to post a simple example of what you are trying to do?
    Ben Sisney
    FlexRIO V&V Engineer
    National Instruments

  • System calibration as a solution of nonlinear equations

    Good day,
    The challenge of the day is to provide a calibration for an accelerometer output, expressed as a binary value.
    I have an accelerometer whose operating range can be set (±2g, ±4g, ±8g).  The accelerometer itself then generates a binary value at 16bit resolution.  Hence, that 2^16 value (0-65535) represents an acceleration whose value depends on the ranges we set.
    So, we make the asumption that the response is linear, allowing us to claim:
    Acceleration = Scale x Binary Value + Offset
    I have three axes worth of data, accelerometer A, B and C.  If I hold the accelerometer stationary, the only thing I should be reading is the accleration due to gravity, g.  This gets me the relationship
    (A)^2 + (B)^2 + (C)^2 = g^2
    since, in any orientation, the magnitude of the combination of all three acceleration readings should be the acceleration due to gravity (and that shouldn't change no matter which way you happen to be pointing the accelerometer).
    What this gives me, then, is a nonlinear relationship of 6 variables (three scale factors and three offsets). I should be able to take six measurements in arbitrary orientations, which will give me six output values of each acclerometer.  I should then be able to pull out the scale factors and offsets for each accelerometer, either in terms of g or relating to what I think g is.
    My question, then, is how can I get Labview to do this?  I'm see that there's a Solve Linear Equations tool, but I'm not seeing one appropriate for the nonlinear case.  I'm also quite comfortable believing I'm just missing it :-)
    Thanks!
    Solved!
    Go to Solution.

    OK, so I've dug a bit deeper and believe that the Nonlinear System Solver is the appropriate starting point, as found in the example file Equation Explorer.vi.
    In that example, I can define a system of nonlinear equations and the vi should spit out the solutions (zeros) of the variables.  I got it to work with some arbitrary test data generated through excel.
    Now, I'm moving on to the next level of complexity in the model, and have derailed m'self again..
    The simulated device:
    a three axis accelerometer, each of which would generate an output of the form Voltage = Scale * Acceleration + Offset. 
    In a perfect world, the only accleration I'll be seeing is gravity (9.8 m/s^2), and I set that gravity in a random direction (indicating the accelerometer is at an arbitrary orientation).  Knowing that orientation, I then calculated what the components of the acceleration would be along all three axes, and then applied values for Scale and Offet to deterine what the equivalent voltage reading off the accelerometers would be.
    So now I start the long way home again.  From a Labview perspective, I know that I have three voltage outputs which would feed into a known relationship
    ((Vx - OffsetX)/ScaleX)^2 + ((Vy - OffsetY)/ScaleY)^2 + ((Vz - OffsetZ)/ScaleZ)^2 - 96.04 = 0
    where the 96.04 comes from g^2.  This is my nonlinear equation with six unknowns in it and three constants.
    Since I have six unknowns, I need six equations, which I can get by rerunning my simulation, right? 
    I put six generated "voltages" (Vx, Vy, Vz) into this form using my expected values for Scale and Offset, and run the vi. However, the vi returns nothing.  I know there should be a solution vecotr, because that's what I used to created the simulated data.  Is there something I'm overlooking?
    Attachments:
    Calibration.png ‏74 KB

  • Solving nonlinear equation with VI

    Hi,
    I want to use LabView to solve a nonlinear equation. I read forums and figured out that I can use Nonlinear System Solver. vi and I noticed there are two options to write the equation: 1) F(X) is formula and 2) F(X) is VI. I could use the first option and write the equation with that but I did not understand how to use a sub-Vi to provide the equation. Would any one please tell me how to do that?
    Thank you 

    Soran,
    Read the detailed help for the solver VI. 
    The VI usually executes much faster than the formula parser/evaluator. Since solvers (and curve fitters, which have the same options) may need to evaluate the function many times while solving, that time can become significant.
    In the help is a link to a template for the VI you need. You must use the exact connector pane and reference type. While you can create your own VI, it is much easier to use the template. On the block diagram create the code to generate your equation values in the configuration required by the solver. Be careful to put the parameters in the correcto order.
    Lynn

  • Can I solve 3 nonlinear equations in LabWindows/CVI

    I have 3 nonliear equations with 3 unknowns (x^2, y^2, and z^2) and get the roots?

    There is no CVI function for finding nonlinear roots, but you can use any other C routine, e.g. the ones provided in the GNU Scientific Library 

  • [Solved] Move system out of LVM DBus problems

    Hi,
    Earlier was using LVM and Arch age on Vol0/archlinux, today I moved the system out of LVM, then system now is on sda1, for move I do this (I can't remember the correct order but I thinks that's it):
    1. copied system using "rsync -ah --progress" ignoring sys,dev,run,mnt,proc
    2. configured /etc/fstab accordly:
    /dev/sda1 / btrfs rw,relatime,space_cache,compress=lzo 0 1
    3. from a chroot installed grub (no error reported), i.e.:
    grub-install --recheck /dev/sda
    4. booted in the system
    all are working well, except some services can't start at boot: dnsmasq and after login in console systemd-logind fail to start at first try (automatically) after it start normally and is working.
    another thing is that LightDM won't start, the complete output:
    [+0.00s] DEBUG: Logging to /var/log/lightdm/lightdm.log
    [+0.00s] DEBUG: Starting Light Display Manager 1.6.0, UID=0 PID=3230
    [+0.00s] DEBUG: Loaded configuration from /etc/lightdm/lightdm.conf
    [+0.00s] DEBUG: Using D-Bus name org.freedesktop.DisplayManager
    [+0.00s] DEBUG: Using Xephyr for X servers
    [+0.00s] DEBUG: Registered seat module xlocal
    [+0.00s] DEBUG: Registered seat module xremote
    [+0.01s] DEBUG: Adding default seat
    [+0.01s] DEBUG: Starting seat
    [+0.01s] DEBUG: Starting new display for greeter
    [+0.01s] DEBUG: Starting local X display
    [+0.01s] DEBUG: Could not run plymouth --ping: Failed to execute child process "plymouth" (No such file or directory)
    [+0.01s] DEBUG: Using VT 7
    [+0.01s] DEBUG: Logging to /var/log/lightdm/x-2.log
    [+0.01s] DEBUG: Can't launch X server Xephyr, not found in path
    [+0.01s] DEBUG: X server stopped
    [+0.01s] DEBUG: Releasing VT 7
    [+0.01s] DEBUG: Display server stopped
    [+0.01s] DEBUG: Stopping display
    [+0.01s] DEBUG: Stopping seat, failed to start a display
    [+0.01s] DEBUG: Stopping seat
    [+0.01s] DEBUG: Seat stopped
    Failed to get D-Bus connection
    tried:
    1. re-installing lightdm
    2. regenerating initramfs
    3. removing and re-installing dbus and systemd (i.e.: pacman -Rnsdd systemd dbus; pacman -S systemd dbus)
    nothing of these things solves, So I think that it isn't a LightDM issue.
    dbus-monitor looks correct!
    Last edited by hotvic (2013-07-26 03:06:54)

    Is X server Xephyr in your path?
    By the way, you would be better advised to use the rsync flags mentioned in the wiki page for full system backup with rsync to make sure that you do not lose information. -a will get most stuff but not everything. For example, ping may not work and I think you will lose ACLs as well as capabilities. I doubt this is why it can't find the X server, though.

  • (SOLVED) No system sounds, and no sound for some applications

    For some reason, system sounds stopped working (like when one takes a screenshot). aplay plays sounds (I mean, no errors whatsoever), but I can hear nothing. Listening from mplayer or vlc still works as normal.
    When I 'aplay sound.wav', I see the leds going up and down on pavucontrol, but I hear nothing.
    I run openbox and I don't start gnome-settings-daemon with it. It is "pure" openbox.
    I checked pavucontrol settings, and also alsamixer but couldn't find anything that could solve the problem. I use pulse-audio, and have pulseaudio-alsa and alsa-utils installed.
    Last edited by FernandoBasso (2013-11-16 22:09:34)

    raavas wrote:Good thing you posted the solution, even when you found it elsewhere. This helped me too, my speaker channel was at somehow set at zero.
    Yeah, I can guarantee that I didn't touch alsamixer myself. I didn't even know the F6 option (although, today I realized it is there very well visible). Anyway, I guess an update might have changed something... I saw other people with similar problems in #archlinux this morning.

  • Need Help Solving a 2nd order Differential Equation

    I need to write a computer program in MATLAB to solve the following 2nd order differential equation:
         y" + (1/r)y' + (200/80) = 0
    I can't remember which method I'm supposed to use to get an equation for y(r)? Once I know the method... I'm sure I can implement it.
    Thanks for your time

    You can implement Java code in MATLAB??? Is that what you're saying? If so, please tell me how because that would be helpful to me!

  • [SOLVED]GNOME-SYSTEM-TOOLS: The configuration could not be loaded

    Hello there!
    I'm a ubuntu user completely new to arch. I got my desktop up and running but there seems to be a problem setting up the gnome-system-tools program. Whenever I try to laaunch any application in this package I get this error message:
    The configuration could not be loaded
    You are not allowed to access the system configuration.
    I tried the solution on this forum thread (http://bbs.archlinux.org/viewtopic.php?id=45854 ), but to no avail. I am still getting the same error message. This is my DAEMONS line in rc.conf:
    DAEMONS=(syslog-ng hal stbd !network !dhcdbd !networkmanager wicd netfs crond alsa fam gdm)
    I have added both my user and root to the stb-admin group, this is the part of my groups file that shows this:
    stb-admin:x:103:root,abhishek
    Can anyone please help me figure out where I'm going wrong.
    Many thanks in advance.
    Last edited by bhadotia (2012-02-16 00:50:03)

    I was reading post installation wiki and found the following command to reinstall the whole system:
    pacman -S $(comm -3 <(pacman -Qq) <(pacman -Qqm))
    As a few things were not going right and I was unable to solve the problems using the ordinary methods, I decided to run the above command and now everything seems to be working fine .Though I'm not sure that this will remain like that, as the process was inturrpted a couple of times such that I had to hard reset the laptop.
    But everything seems to be going fine now - the system tools have started to work normally and another gnome-related problem has been solved.:D

  • [SOLVED]Random system freezes

    Hello,
    My Dell Studio 1558 runs ArchLinux with XFCE. Everything is fine except two problems: Random system freezes and slow wlan download speed. I think that those problems might be related.
    Since some updates ago my Laptop will just randomly freeze. Unfortunately I cannot remember exactly when it started. The freezes will randomly appear without any regularity or possibility to reproduce. Sometimes it freezes immediately after booting, sometimes after some hours. Heating should be no problem as it also freezes when the Laptop is cold (what a joke )
    Sometimes it will freeze several times in a row, sometimes it won't freeze a whole day. It seems that it only freezes if there is Wireless LAN connection available. (I use wicd if that is of any importance.). It feels like the highest freeze rate is while downloading packages for system updates...
    lspci tells about the wireless chip:
    04:00.0 Network controller: Broadcom Corporation BCM4312 802.11b/g LP-PHY (rev 01)
    uname -a
    Linux mydell 2.6.38-ARCH #1 SMP PREEMPT Wed Mar 30 08:47:36 CEST 2011 x86_64 Intel(R) Core(TM) i3 CPU M 330 @ 2.13GHz GenuineIntel GNU/Linux
    So, according to the wiki page I use the broadcom-wl driver from AUR. I also tried the DKMS one which, of course, changed nothing. My modules array concerning broadcom looks like
    MODULES=(!b43 !ssb !lib80211 !brcm80211 lib80211_crypt_tkip wl)
    I ran memtest over several hours to make sure it's no memory problem. No errors in 5 passes. It has an ATI Chip which is powered by catalyst right now... Could be the source of the problem but I guess I'd have to test that further.
    Additionally I suffer slooooow download speed over wireless LAN since some periond (can't remember the exact starting point too...). It's not related to my AP, happens in other networks too. I tried several servers too. Max download speed: 148 kb/s :S
    I suspect that the freezes and the slow download speed are releated. Maybe a driver issue? I have no clue. I was unlucky to find error reports in the logs after the freezes. Besides, I have no real idea what to search for in the logs. I placed a desklet on my desktop now, to see the exact time and seconds when the freeze appears. I hope I'll be lucky.
    Can someone help me or give me some ideas what to do?
    Edit:
    There was another kernel upate and at least the low speed is gone... strange. Hope the same is for the freezes :S
    Edit 2:
    Downgrading pm-utils to 1.3.0 did the trick for me. No freezes anymore.
    Last edited by McFlow (2011-05-07 15:26:54)

    So, the freezes are still there. I also tried the open source ATI driver. My laptop will still freeze randomly. The highest freeze rate was during operations with pacman/clyde. I think this might point to either WLAN or HDD.
    I placed a desklet clock on my desktop and I could finally see the exact time when my laptop froze! But I cannot find anything interesting in the logfiles.
    This should be the last lines that were written before the freeze occurec in everything.log.
    Apr 22 16:49:46 localhost rtkit-daemon[3587]: Successfully called chroot.
    Apr 22 16:49:46 localhost rtkit-daemon[3587]: Successfully dropped privileges.
    Apr 22 16:49:46 localhost rtkit-daemon[3587]: Successfully limited resources.
    Apr 22 16:49:46 localhost rtkit-daemon[3587]: Running.
    Apr 22 16:49:46 localhost rtkit-daemon[3587]: Canary thread running.
    Apr 22 16:49:46 localhost rtkit-daemon[3587]: Watchdog thread running.
    Apr 22 16:49:47 localhost rtkit-daemon[3587]: Successfully made thread 3582 of process 3582 (/usr/bin/pulseaudio) owned by '1000' high priority at nice level -11.
    Apr 22 16:49:47 localhost rtkit-daemon[3587]: Supervising 1 threads of 1 processes of 1 users.
    Apr 22 18:49:47 localhost kernel: [   42.385322] eth1: no IPv6 routers present
    Apr 22 18:49:53 localhost logger: ACPI group/action undefined: processor / CPU0
    Apr 22 18:49:53 localhost logger: ACPI group/action undefined: processor / CPU0
    Last lines from messages.log
    Apr 22 18:49:34 localhost logger: ACPI action undefined: ADP1
    Apr 22 18:49:34 localhost logger: ACPI group/action undefined: processor / CPU0
    Apr 22 18:49:34 localhost logger: ACPI group/action undefined: processor / CPU0
    Apr 22 18:49:34 localhost logger: ACPI group/action undefined: processor / CPU0
    Apr 22 18:49:34 localhost logger: ACPI group/action undefined: processor / CPU0
    Apr 22 18:49:34 localhost logger: ACPI group/action undefined: processor / CPU0
    Apr 22 18:49:34 localhost logger: ACPI group/action undefined: processor / CPU0
    Apr 22 18:49:34 localhost logger: ACPI group/action undefined: processor / CPU0
    Apr 22 18:49:34 localhost kernel: [   28.860026] r8169 0000:09:00.0: eth0: link down
    Apr 22 18:49:34 localhost kernel: [   28.860452] ADDRCONF(NETDEV_UP): eth0: link is not ready
    Apr 22 18:49:37 localhost kernel: [   31.674805] r8169 0000:09:00.0: eth0: link down
    Apr 22 18:49:37 localhost kernel: [   31.674822] r8169 0000:09:00.0: eth0: link down
    Apr 22 18:49:37 localhost kernel: [   31.675249] ADDRCONF(NETDEV_UP): eth0: link is not ready
    Apr 22 18:49:39 localhost polkitd[3456]: started daemon version 0.99 using authority implementation `local' version `0.99'
    Apr 22 18:49:44 localhost kernel: [   39.143241] fuse init (API version 7.16)
    Apr 22 16:49:47 localhost rtkit-daemon[3587]: Successfully made thread 3582 of process 3582 (/usr/bin/pulseaudio) owned by '1000' high priority at nice level -11.
    Apr 22 18:49:53 localhost logger: ACPI group/action undefined: processor / CPU0
    Apr 22 18:49:53 localhost logger: ACPI group/action undefined: processor / CPU0
    My laptop sometimes hangs at boot with this screen. I cannot take some usful information from it. But it seems, that it's also related to networking stuff? But I am not sure if that's the cause for my problem.
    I am lost. I have no real idea what to do. I think of using some other distribution in order to see if the freezes will occur there too. I hope this is "just" a driver issue...
    Last edited by McFlow (2011-04-24 17:48:27)

  • [SOLVED] Slow System Startup

    Hello, it is a few weeks that I'm experiencing slow startups. Previously my system was starting up in less than 15 seconds, but now it takes about 30 seconds to start up. I thought that issue will probably go away after a few updates but it still persists. I was wondering if anyone can help me to find the issue.
    systemd-analyze && systemd-analyze blame
    Startup finished in 229ms (kernel) + 2.694s (initrd) + 25.387s (userspace) = 28.310s
    1.186s systemd-vconsole-setup.service
    1.010s systemd-logind.service
    818ms [email protected]
    736ms upower.service
    697ms [email protected]
    652ms systemd-remount-fs.service
    635ms polkit.service
    536ms [email protected]
    523ms kmod-static-nodes.service
    449ms dev-mqueue.mount
    434ms sys-kernel-config.mount
    434ms sys-kernel-debug.mount
    423ms udisks2.service
    379ms dev-hugepages.mount
    363ms systemd-tmpfiles-setup.service
    347ms powermanagement.service
    322ms systemd-tmpfiles-setup-dev.service
    191ms systemd-udev-trigger.service
    164ms systemd-random-seed.service
    164ms boot.mount
    158ms systemd-sysctl.service
    148ms systemd-user-sessions.service
    142ms systemd-update-utmp.service
    128ms home.mount
    113ms systemd-tmpfiles-clean.service
    82ms dev-sda9.swap
    57ms systemd-udevd.service
    43ms systemd-journal-flush.service
    43ms alsa-restore.service
    systemd-analyze critical-chain
    The time after the unit is active or started is printed after the "@" character.
    The time the unit takes to start is printed after the "+" character.
    graphical.target @25.387s
    └─multi-user.target @25.387s
    └─systemd-logind.service @24.376s +1.010s
    └─basic.target @24.364s
    └─timers.target @24.334s
    └─systemd-tmpfiles-clean.timer @5.672s
    └─sysinit.target @5.672s
    └─systemd-update-utmp.service @5.530s +142ms
    └─systemd-tmpfiles-setup.service @5.166s +363ms
    └─local-fs.target @5.165s
    └─home.mount @5.037s +128ms
    └─[email protected] @4.487s +536ms
    └─dev-sda11.device @4.486s
    journalctl -b
    -- Logs begin at Thu 2013-05-23 06:56:12 IRDT, end at Thu 2013-10-31 17:01:46 IRST. --
    Oct 31 20:14:09 localhost systemd-journal[47]: Runtime journal is using 712.0K (max 197.8M, leaving 296.7M of free 1.9G, current limit 197.8M).
    Oct 31 20:14:09 localhost systemd-journal[47]: Runtime journal is using 712.0K (max 197.8M, leaving 296.7M of free 1.9G, current limit 197.8M).
    Oct 31 20:14:09 localhost kernel: Initializing cgroup subsys cpuset
    Oct 31 20:14:09 localhost kernel: Initializing cgroup subsys cpu
    Oct 31 20:14:09 localhost kernel: Initializing cgroup subsys cpuacct
    Oct 31 20:14:09 localhost kernel: Linux version 3.11.6-1-ARCH (nobody@var-lib-archbuild-extra-x86_64-thomas) (gcc version 4.8.1 20130725 (prerelease) (GCC) ) #1 SMP PREEMPT Fri Oct 18 23:22:36 CEST 2013
    Oct 31 20:14:09 localhost kernel: Command line: BOOT_IMAGE=../vmlinuz-linux root=/dev/sda10 rw rootfstype=ext4 nmi_watchdog=0 noresume radeon.dpm=1 radeon.audio=0 quiet initrd=../initramfs-linux.img
    Oct 31 20:14:09 localhost kernel: e820: BIOS-provided physical RAM map:
    Oct 31 20:14:09 localhost kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
    Oct 31 20:14:09 localhost kernel: BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
    Oct 31 20:14:09 localhost kernel: BIOS-e820: [mem 0x00000000000e4000-0x00000000000fffff] reserved
    Oct 31 20:14:09 localhost kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000cff6ffff] usable
    Oct 31 20:14:09 localhost kernel: BIOS-e820: [mem 0x00000000cff70000-0x00000000cff7dfff] ACPI data
    Oct 31 20:14:09 localhost kernel: BIOS-e820: [mem 0x00000000cff7e000-0x00000000cffcffff] ACPI NVS
    Oct 31 20:14:09 localhost kernel: BIOS-e820: [mem 0x00000000cffd0000-0x00000000cfffffff] reserved
    Oct 31 20:14:09 localhost kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    Oct 31 20:14:09 localhost kernel: BIOS-e820: [mem 0x00000000fff00000-0x00000000ffffffff] reserved
    Oct 31 20:14:09 localhost kernel: BIOS-e820: [mem 0x0000000100000000-0x000000012fffffff] usable
    Oct 31 20:14:09 localhost kernel: NX (Execute Disable) protection: active
    Oct 31 20:14:09 localhost kernel: SMBIOS 2.5 present.
    Oct 31 20:14:09 localhost kernel: DMI: System manufacturer System Product Name/P5Q, BIOS 2209 03/11/2010
    Oct 31 20:14:09 localhost kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    Oct 31 20:14:09 localhost kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Oct 31 20:14:09 localhost kernel: No AGP bridge found
    Oct 31 20:14:09 localhost kernel: e820: last_pfn = 0x130000 max_arch_pfn = 0x400000000
    Oct 31 20:14:09 localhost kernel: MTRR default type: uncachable
    Oct 31 20:14:09 localhost kernel: MTRR fixed ranges enabled:
    Oct 31 20:14:09 localhost kernel: 00000-9FFFF write-back
    Oct 31 20:14:09 localhost kernel: A0000-BFFFF uncachable
    Oct 31 20:14:09 localhost kernel: C0000-DFFFF write-protect
    Oct 31 20:14:09 localhost kernel: E0000-EFFFF write-through
    Oct 31 20:14:09 localhost kernel: F0000-FFFFF write-protect
    Oct 31 20:14:09 localhost kernel: MTRR variable ranges enabled:
    Oct 31 20:14:09 localhost kernel: 0 base 000000000 mask F00000000 write-back
    Oct 31 20:14:09 localhost kernel: 1 base 100000000 mask FE0000000 write-back
    Oct 31 20:14:09 localhost kernel: 2 base 120000000 mask FF0000000 write-back
    Oct 31 20:14:09 localhost kernel: 3 base 0D0000000 mask FF0000000 uncachable
    Oct 31 20:14:09 localhost kernel: 4 base 0E0000000 mask FE0000000 uncachable
    Oct 31 20:14:09 localhost kernel: 5 disabled
    Oct 31 20:14:09 localhost kernel: 6 disabled
    Oct 31 20:14:09 localhost kernel: 7 disabled
    Oct 31 20:14:09 localhost kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Oct 31 20:14:09 localhost kernel: e820: update [mem 0xd0000000-0xffffffff] usable ==> reserved
    Oct 31 20:14:09 localhost kernel: e820: last_pfn = 0xcff70 max_arch_pfn = 0x400000000
    Oct 31 20:14:09 localhost kernel: found SMP MP-table at [mem 0x000ff780-0x000ff78f] mapped at [ffff8800000ff780]
    Oct 31 20:14:09 localhost kernel: Scanning 1 areas for low memory corruption
    Oct 31 20:14:09 localhost kernel: Base memory trampoline at [ffff880000099000] 99000 size 24576
    Oct 31 20:14:09 localhost kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    Oct 31 20:14:09 localhost kernel: [mem 0x00000000-0x000fffff] page 4k
    Oct 31 20:14:09 localhost kernel: BRK [0x01b2f000, 0x01b2ffff] PGTABLE
    Oct 31 20:14:09 localhost kernel: BRK [0x01b30000, 0x01b30fff] PGTABLE
    Oct 31 20:14:09 localhost kernel: BRK [0x01b31000, 0x01b31fff] PGTABLE
    Oct 31 20:14:09 localhost kernel: init_memory_mapping: [mem 0x12fe00000-0x12fffffff]
    Oct 31 20:14:09 localhost kernel: [mem 0x12fe00000-0x12fffffff] page 2M
    Oct 31 20:14:09 localhost kernel: BRK [0x01b32000, 0x01b32fff] PGTABLE
    Oct 31 20:14:09 localhost kernel: init_memory_mapping: [mem 0x12c000000-0x12fdfffff]
    Oct 31 20:14:09 localhost kernel: [mem 0x12c000000-0x12fdfffff] page 2M
    Oct 31 20:14:09 localhost kernel: init_memory_mapping: [mem 0x100000000-0x12bffffff]
    Oct 31 20:14:09 localhost kernel: [mem 0x100000000-0x12bffffff] page 2M
    Oct 31 20:14:09 localhost kernel: init_memory_mapping: [mem 0x00100000-0xcff6ffff]
    Oct 31 20:14:09 localhost kernel: [mem 0x00100000-0x001fffff] page 4k
    Oct 31 20:14:09 localhost kernel: [mem 0x00200000-0xcfdfffff] page 2M
    Oct 31 20:14:09 localhost kernel: [mem 0xcfe00000-0xcff6ffff] page 4k
    Oct 31 20:14:09 localhost kernel: RAMDISK: [mem 0x7f7ce000-0x7fffffff]
    Oct 31 20:14:09 localhost kernel: ACPI: RSDP 00000000000faff0 00024 (v02 ACPIAM)
    Oct 31 20:14:09 localhost kernel: ACPI: XSDT 00000000cff70100 0005C (v01 A_M_I_ OEMXSDT 03001011 MSFT 00000097)
    Oct 31 20:14:09 localhost kernel: ACPI: FACP 00000000cff70290 000F4 (v03 A_M_I_ OEMFACP 03001011 MSFT 00000097)
    Oct 31 20:14:09 localhost kernel: ACPI: DSDT 00000000cff70440 09720 (v01 A0993 A0993001 00000001 INTL 20060113)
    Oct 31 20:14:09 localhost kernel: ACPI: FACS 00000000cff7e000 00040
    Oct 31 20:14:09 localhost kernel: ACPI: APIC 00000000cff70390 0006C (v01 A_M_I_ OEMAPIC 03001011 MSFT 00000097)
    Oct 31 20:14:09 localhost kernel: ACPI: MCFG 00000000cff70400 0003C (v01 A_M_I_ OEMMCFG 03001011 MSFT 00000097)
    Oct 31 20:14:09 localhost kernel: ACPI: OEMB 00000000cff7e040 00089 (v01 A_M_I_ AMI_OEM 03001011 MSFT 00000097)
    Oct 31 20:14:09 localhost kernel: ACPI: HPET 00000000cff79b60 00038 (v01 A_M_I_ OEMHPET 03001011 MSFT 00000097)
    Oct 31 20:14:09 localhost kernel: ACPI: OSFR 00000000cff79ba0 000B0 (v01 A_M_I_ OEMOSFR 03001011 MSFT 00000097)
    Oct 31 20:14:09 localhost kernel: ACPI: SSDT 00000000cff7f040 00A7C (v01 DpgPmm CpuPm 00000012 INTL 20060113)
    Oct 31 20:14:09 localhost kernel: ACPI: Local APIC address 0xfee00000
    Oct 31 20:14:09 localhost kernel: No NUMA configuration found
    Oct 31 20:14:09 localhost kernel: Faking a node at [mem 0x0000000000000000-0x000000012fffffff]
    Oct 31 20:14:09 localhost kernel: Initmem setup node 0 [mem 0x00000000-0x12fffffff]
    Oct 31 20:14:09 localhost kernel: NODE_DATA [mem 0x12fff7000-0x12fffbfff]
    Oct 31 20:14:09 localhost kernel: [ffffea0000000000-ffffea0004bfffff] PMD -> [ffff88012b600000-ffff88012f5fffff] on node 0
    Oct 31 20:14:09 localhost kernel: Zone ranges:
    Oct 31 20:14:09 localhost kernel: DMA [mem 0x00001000-0x00ffffff]
    Oct 31 20:14:09 localhost kernel: DMA32 [mem 0x01000000-0xffffffff]
    Oct 31 20:14:09 localhost kernel: Normal [mem 0x100000000-0x12fffffff]
    Oct 31 20:14:09 localhost kernel: Movable zone start for each node
    Oct 31 20:14:09 localhost kernel: Early memory node ranges
    Oct 31 20:14:09 localhost kernel: node 0: [mem 0x00001000-0x0009efff]
    Oct 31 20:14:09 localhost kernel: node 0: [mem 0x00100000-0xcff6ffff]
    Oct 31 20:14:09 localhost kernel: node 0: [mem 0x100000000-0x12fffffff]
    Oct 31 20:14:09 localhost kernel: On node 0 totalpages: 1048334
    Oct 31 20:14:09 localhost kernel: DMA zone: 64 pages used for memmap
    Oct 31 20:14:09 localhost kernel: DMA zone: 21 pages reserved
    Oct 31 20:14:09 localhost kernel: DMA zone: 3998 pages, LIFO batch:0
    Oct 31 20:14:09 localhost kernel: DMA32 zone: 13246 pages used for memmap
    Oct 31 20:14:09 localhost kernel: DMA32 zone: 847728 pages, LIFO batch:31
    Oct 31 20:14:09 localhost kernel: Normal zone: 3072 pages used for memmap
    Oct 31 20:14:09 localhost kernel: Normal zone: 196608 pages, LIFO batch:31
    Oct 31 20:14:09 localhost kernel: ACPI: PM-Timer IO Port: 0x808
    Oct 31 20:14:09 localhost kernel: ACPI: Local APIC address 0xfee00000
    Oct 31 20:14:09 localhost kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Oct 31 20:14:09 localhost kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    Oct 31 20:14:09 localhost kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    Oct 31 20:14:09 localhost kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    Oct 31 20:14:09 localhost kernel: ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
    Oct 31 20:14:09 localhost kernel: IOAPIC[0]: apic_id 4, version 32, address 0xfec00000, GSI 0-23
    Oct 31 20:14:09 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Oct 31 20:14:09 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Oct 31 20:14:09 localhost kernel: ACPI: IRQ0 used by override.
    Oct 31 20:14:09 localhost kernel: ACPI: IRQ2 used by override.
    Oct 31 20:14:09 localhost kernel: ACPI: IRQ9 used by override.
    Oct 31 20:14:09 localhost kernel: Using ACPI (MADT) for SMP configuration information
    Oct 31 20:14:09 localhost kernel: ACPI: HPET id: 0x8086a301 base: 0xfed00000
    Oct 31 20:14:09 localhost kernel: smpboot: Allowing 4 CPUs, 0 hotplug CPUs
    Oct 31 20:14:09 localhost kernel: nr_irqs_gsi: 40
    Oct 31 20:14:09 localhost kernel: PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    Oct 31 20:14:09 localhost kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000e3fff]
    Oct 31 20:14:09 localhost kernel: PM: Registered nosave memory: [mem 0x000e4000-0x000fffff]
    Oct 31 20:14:09 localhost kernel: PM: Registered nosave memory: [mem 0xcff70000-0xcff7dfff]
    Oct 31 20:14:09 localhost kernel: PM: Registered nosave memory: [mem 0xcff7e000-0xcffcffff]
    Oct 31 20:14:09 localhost kernel: PM: Registered nosave memory: [mem 0xcffd0000-0xcfffffff]
    Oct 31 20:14:09 localhost kernel: PM: Registered nosave memory: [mem 0xd0000000-0xfedfffff]
    Oct 31 20:14:09 localhost kernel: PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    Oct 31 20:14:09 localhost kernel: PM: Registered nosave memory: [mem 0xfee01000-0xffefffff]
    Oct 31 20:14:09 localhost kernel: PM: Registered nosave memory: [mem 0xfff00000-0xffffffff]
    Oct 31 20:14:09 localhost kernel: e820: [mem 0xd0000000-0xfedfffff] available for PCI devices
    Oct 31 20:14:09 localhost kernel: Booting paravirtualized kernel on bare hardware
    Oct 31 20:14:09 localhost kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:4 nr_node_ids:1
    Oct 31 20:14:09 localhost kernel: PERCPU: Embedded 29 pages/cpu @ffff88012fc00000 s86528 r8192 d24064 u524288
    Oct 31 20:14:09 localhost kernel: pcpu-alloc: s86528 r8192 d24064 u524288 alloc=1*2097152
    Oct 31 20:14:09 localhost kernel: pcpu-alloc: [0] 0 1 2 3
    Oct 31 20:14:09 localhost kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 1031931
    Oct 31 20:14:09 localhost kernel: Policy zone: Normal
    Oct 31 20:14:09 localhost kernel: Kernel command line: BOOT_IMAGE=../vmlinuz-linux root=/dev/sda10 rw rootfstype=ext4 nmi_watchdog=0 noresume radeon.dpm=1 radeon.audio=0 quiet initrd=../initramfs-linux.img
    Oct 31 20:14:09 localhost kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Oct 31 20:14:09 localhost kernel: xsave: enabled xstate_bv 0x3, cntxt size 0x240
    Oct 31 20:14:09 localhost kernel: Checking aperture...
    Oct 31 20:14:09 localhost kernel: No AGP bridge found
    Oct 31 20:14:09 localhost kernel: Calgary: detecting Calgary via BIOS EBDA area
    Oct 31 20:14:09 localhost kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    Oct 31 20:14:09 localhost kernel: Memory: 4041048K/4193336K available (5050K kernel code, 799K rwdata, 1696K rodata, 1140K init, 1288K bss, 152288K reserved)
    Oct 31 20:14:09 localhost kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    Oct 31 20:14:09 localhost kernel: Preemptible hierarchical RCU implementation.
    Oct 31 20:14:09 localhost kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Oct 31 20:14:09 localhost kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Oct 31 20:14:09 localhost kernel: RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=4.
    Oct 31 20:14:09 localhost kernel: NR_IRQS:8448 nr_irqs:712 16
    Oct 31 20:14:09 localhost kernel: Console: colour VGA+ 80x25
    Oct 31 20:14:09 localhost kernel: console [tty0] enabled
    Oct 31 20:14:09 localhost kernel: allocated 16777216 bytes of page_cgroup
    Oct 31 20:14:09 localhost kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Oct 31 20:14:09 localhost kernel: hpet clockevent registered
    Oct 31 20:14:09 localhost kernel: tsc: Fast TSC calibration using PIT
    Oct 31 20:14:09 localhost kernel: tsc: Detected 2833.302 MHz processor
    Oct 31 20:14:09 localhost kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 5668.71 BogoMIPS (lpj=9444340)
    Oct 31 20:14:09 localhost kernel: pid_max: default: 32768 minimum: 301
    Oct 31 20:14:09 localhost kernel: Security Framework initialized
    Oct 31 20:14:09 localhost kernel: AppArmor: AppArmor disabled by boot time parameter
    Oct 31 20:14:09 localhost kernel: Yama: becoming mindful.
    Oct 31 20:14:09 localhost kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Oct 31 20:14:09 localhost kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Oct 31 20:14:09 localhost kernel: Mount-cache hash table entries: 256
    Oct 31 20:14:09 localhost kernel: Initializing cgroup subsys memory
    Oct 31 20:14:09 localhost kernel: Initializing cgroup subsys devices
    Oct 31 20:14:09 localhost kernel: Initializing cgroup subsys freezer
    Oct 31 20:14:09 localhost kernel: Initializing cgroup subsys net_cls
    Oct 31 20:14:09 localhost kernel: Initializing cgroup subsys blkio
    Oct 31 20:14:09 localhost kernel: CPU: Physical Processor ID: 0
    Oct 31 20:14:09 localhost kernel: CPU: Processor Core ID: 0
    Oct 31 20:14:09 localhost kernel: mce: CPU supports 6 MCE banks
    Oct 31 20:14:09 localhost kernel: CPU0: Thermal monitoring enabled (TM2)
    Oct 31 20:14:09 localhost kernel: Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
    Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32
    tlb_flushall_shift: -1
    Oct 31 20:14:09 localhost kernel: Freeing SMP alternatives memory: 20K (ffffffff819e6000 - ffffffff819eb000)
    Oct 31 20:14:09 localhost kernel: ACPI: Core revision 20130517
    Oct 31 20:14:09 localhost kernel: ACPI: All ACPI Tables successfully acquired
    Oct 31 20:14:09 localhost kernel: ftrace: allocating 20100 entries in 79 pages
    Oct 31 20:14:09 localhost kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Oct 31 20:14:09 localhost kernel: smpboot: CPU0: Intel(R) Core(TM)2 Quad CPU Q9550 @ 2.83GHz (fam: 06, model: 17, stepping: 0a)
    Oct 31 20:14:09 localhost kernel: Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
    Oct 31 20:14:09 localhost kernel: ... version: 2
    Oct 31 20:14:09 localhost kernel: ... bit width: 40
    Oct 31 20:14:09 localhost kernel: ... generic registers: 2
    Oct 31 20:14:09 localhost kernel: ... value mask: 000000ffffffffff
    Oct 31 20:14:09 localhost kernel: ... max period: 000000007fffffff
    Oct 31 20:14:09 localhost kernel: ... fixed-purpose events: 3
    Oct 31 20:14:09 localhost kernel: ... event mask: 0000000700000003
    Oct 31 20:14:09 localhost kernel: smpboot: Booting Node 0, Processors #1 #2 #3 OK
    Oct 31 20:14:09 localhost kernel: Brought up 4 CPUs
    Oct 31 20:14:09 localhost kernel: smpboot: Total of 4 processors activated (22675.85 BogoMIPS)
    Oct 31 20:14:09 localhost kernel: devtmpfs: initialized
    Oct 31 20:14:09 localhost kernel: PM: Registering ACPI NVS region [mem 0xcff7e000-0xcffcffff] (335872 bytes)
    Oct 31 20:14:09 localhost kernel: RTC time: 16:44:09, date: 10/31/13
    Oct 31 20:14:09 localhost kernel: NET: Registered protocol family 16
    Oct 31 20:14:09 localhost kernel: ACPI: bus type PCI registered
    Oct 31 20:14:09 localhost kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    Oct 31 20:14:09 localhost kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Oct 31 20:14:09 localhost kernel: PCI: not using MMCONFIG
    Oct 31 20:14:09 localhost kernel: PCI: Using configuration type 1 for base access
    Oct 31 20:14:09 localhost kernel: bio: create slab <bio-0> at 0
    Oct 31 20:14:09 localhost kernel: ACPI: Added _OSI(Module Device)
    Oct 31 20:14:09 localhost kernel: ACPI: Added _OSI(Processor Device)
    Oct 31 20:14:09 localhost kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Oct 31 20:14:09 localhost kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Oct 31 20:14:09 localhost kernel: ACPI: EC: Look up EC in DSDT
    Oct 31 20:14:09 localhost kernel: ACPI: Executed 1 blocks of module-level executable AML code
    Oct 31 20:14:09 localhost kernel: ACPI: SSDT 00000000cff7e0d0 00235 (v01 DpgPmm P001Ist 00000011 INTL 20060113)
    Oct 31 20:14:09 localhost kernel: ACPI: Dynamic OEM Table Load:
    Oct 31 20:14:09 localhost kernel: ACPI: SSDT (null) 00235 (v01 DpgPmm P001Ist 00000011 INTL 20060113)
    Oct 31 20:14:09 localhost kernel: ACPI: SSDT 00000000cff7e9d0 004B2 (v01 PmRef P001Cst 00003001 INTL 20060113)
    Oct 31 20:14:09 localhost kernel: ACPI: Dynamic OEM Table Load:
    Oct 31 20:14:09 localhost kernel: ACPI: SSDT (null) 004B2 (v01 PmRef P001Cst 00003001 INTL 20060113)
    Oct 31 20:14:09 localhost kernel: ACPI: SSDT 00000000cff7e310 00235 (v01 DpgPmm P002Ist 00000012 INTL 20060113)
    Oct 31 20:14:09 localhost kernel: ACPI: Dynamic OEM Table Load:
    Oct 31 20:14:09 localhost kernel: ACPI: SSDT (null) 00235 (v01 DpgPmm P002Ist 00000012 INTL 20060113)
    Oct 31 20:14:09 localhost kernel: ACPI: SSDT 00000000cff7ee90 00085 (v01 PmRef P002Cst 00003000 INTL 20060113)
    Oct 31 20:14:09 localhost kernel: ACPI: Dynamic OEM Table Load:
    Oct 31 20:14:09 localhost kernel: ACPI: SSDT (null) 00085 (v01 PmRef P002Cst 00003000 INTL 20060113)
    Oct 31 20:14:09 localhost kernel: ACPI: SSDT 00000000cff7e550 00235 (v01 DpgPmm P003Ist 00000012 INTL 20060113)
    Oct 31 20:14:09 localhost kernel: ACPI: Dynamic OEM Table Load:
    Oct 31 20:14:09 localhost kernel: ACPI: SSDT (null) 00235 (v01 DpgPmm P003Ist 00000012 INTL 20060113)
    Oct 31 20:14:09 localhost kernel: ACPI: SSDT 00000000cff7ef20 00085 (v01 PmRef P003Cst 00003000 INTL 20060113)
    Oct 31 20:14:09 localhost kernel: ACPI: Dynamic OEM Table Load:
    Oct 31 20:14:09 localhost kernel: ACPI: SSDT (null) 00085 (v01 PmRef P003Cst 00003000 INTL 20060113)
    Oct 31 20:14:09 localhost kernel: ACPI: SSDT 00000000cff7e790 00235 (v01 DpgPmm P004Ist 00000012 INTL 20060113)
    Oct 31 20:14:09 localhost kernel: ACPI: Dynamic OEM Table Load:
    Oct 31 20:14:09 localhost kernel: ACPI: SSDT (null) 00235 (v01 DpgPmm P004Ist 00000012 INTL 20060113)
    Oct 31 20:14:09 localhost kernel: ACPI: SSDT 00000000cff7efb0 00085 (v01 PmRef P004Cst 00003000 INTL 20060113)
    Oct 31 20:14:09 localhost kernel: ACPI: Dynamic OEM Table Load:
    Oct 31 20:14:09 localhost kernel: ACPI: SSDT (null) 00085 (v01 PmRef P004Cst 00003000 INTL 20060113)
    Oct 31 20:14:09 localhost kernel: ACPI: Interpreter enabled
    Oct 31 20:14:09 localhost kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130517/hwxface-571)
    Oct 31 20:14:09 localhost kernel: ACPI: (supports S0 S1 S3 S4 S5)
    Oct 31 20:14:09 localhost kernel: ACPI: Using IOAPIC for interrupt routing
    Oct 31 20:14:09 localhost kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Oct 31 20:14:09 localhost kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    Oct 31 20:14:09 localhost kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Oct 31 20:14:09 localhost kernel: ACPI: No dock devices found.
    Oct 31 20:14:09 localhost kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Oct 31 20:14:09 localhost kernel: acpi PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    Oct 31 20:14:09 localhost kernel: acpi PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
    Oct 31 20:14:09 localhost kernel: PCI host bridge to bus 0000:00
    Oct 31 20:14:09 localhost kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
    Oct 31 20:14:09 localhost kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    Oct 31 20:14:09 localhost kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    Oct 31 20:14:09 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Oct 31 20:14:09 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff]
    Oct 31 20:14:09 localhost kernel: pci_bus 0000:00: root bus resource [mem 0xd0000000-0xdfffffff]
    Oct 31 20:14:09 localhost kernel: pci_bus 0000:00: root bus resource [mem 0xf0000000-0xffffffff]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:00.0: [8086:2e20] type 00 class 0x060000
    Oct 31 20:14:09 localhost kernel: DMAR: Forcing write-buffer flush capability
    Oct 31 20:14:09 localhost kernel: DMAR: Disabling IOMMU for graphics on this chipset
    Oct 31 20:14:09 localhost kernel: pci 0000:00:01.0: [8086:2e21] type 01 class 0x060400
    Oct 31 20:14:09 localhost kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    Oct 31 20:14:09 localhost kernel: pci 0000:00:01.0: System wakeup disabled by ACPI
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1a.0: [8086:3a37] type 00 class 0x0c0300
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1a.0: reg 0x20: [io 0xc800-0xc81f]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1a.0: System wakeup disabled by ACPI
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1a.1: [8086:3a38] type 00 class 0x0c0300
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1a.1: reg 0x20: [io 0xc880-0xc89f]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1a.1: System wakeup disabled by ACPI
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1a.2: [8086:3a39] type 00 class 0x0c0300
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1a.2: reg 0x20: [io 0xcc00-0xcc1f]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1a.2: System wakeup disabled by ACPI
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1a.7: [8086:3a3c] type 00 class 0x0c0320
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1a.7: reg 0x10: [mem 0xfe9ffc00-0xfe9fffff]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1a.7: System wakeup disabled by ACPI
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1b.0: [8086:3a3e] type 00 class 0x040300
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xfe9f8000-0xfe9fbfff 64bit]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.0: [8086:3a40] type 01 class 0x060400
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.0: System wakeup disabled by ACPI
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.5: [8086:3a4a] type 01 class 0x060400
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.5: System wakeup disabled by ACPI
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1d.0: [8086:3a34] type 00 class 0x0c0300
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1d.0: reg 0x20: [io 0xc080-0xc09f]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1d.0: System wakeup disabled by ACPI
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1d.1: [8086:3a35] type 00 class 0x0c0300
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1d.1: reg 0x20: [io 0xc400-0xc41f]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1d.1: System wakeup disabled by ACPI
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1d.2: [8086:3a36] type 00 class 0x0c0300
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1d.2: reg 0x20: [io 0xc480-0xc49f]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1d.2: System wakeup disabled by ACPI
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1d.7: [8086:3a3a] type 00 class 0x0c0320
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1d.7: reg 0x10: [mem 0xfe9ff800-0xfe9ffbff]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1d.7: System wakeup disabled by ACPI
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1e.0: System wakeup disabled by ACPI
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1f.0: [8086:3a16] type 00 class 0x060100
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1f.0: address space collision: [io 0x0800-0x087f] conflicts with ACPI CPU throttle [??? 0x00000810-0x00000815 flags 0x80000000]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1f.0: quirk: [io 0x0500-0x053f] claimed by ICH6 GPIO
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0294 (mask 0003)
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 4700 (mask 001f)
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1f.2: [8086:3a20] type 00 class 0x01018a
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1f.2: reg 0x10: [io 0x0000-0x0007]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1f.2: reg 0x14: [io 0x0000-0x0003]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1f.2: reg 0x18: [io 0x0000-0x0007]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1f.2: reg 0x1c: [io 0x0000-0x0003]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1f.2: reg 0x20: [io 0xff90-0xff9f]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1f.2: reg 0x24: [io 0xffa0-0xffaf]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1f.3: [8086:3a30] type 00 class 0x0c0500
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xfe9ff400-0xfe9ff4ff 64bit]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1f.3: reg 0x20: [io 0x0400-0x041f]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1f.5: [8086:3a26] type 00 class 0x010185
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1f.5: reg 0x10: [io 0xc000-0xc007]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1f.5: reg 0x14: [io 0xbc00-0xbc03]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1f.5: reg 0x18: [io 0xb880-0xb887]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1f.5: reg 0x1c: [io 0xb800-0xb803]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1f.5: reg 0x20: [io 0xb480-0xb48f]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1f.5: reg 0x24: [io 0xb400-0xb40f]
    Oct 31 20:14:09 localhost kernel: pci 0000:01:00.0: [1002:9460] type 00 class 0x030000
    Oct 31 20:14:09 localhost kernel: pci 0000:01:00.0: reg 0x10: [mem 0xd0000000-0xdfffffff 64bit pref]
    Oct 31 20:14:09 localhost kernel: pci 0000:01:00.0: reg 0x18: [mem 0xfeae0000-0xfeaeffff 64bit]
    Oct 31 20:14:09 localhost kernel: pci 0000:01:00.0: reg 0x20: [io 0xd000-0xd0ff]
    Oct 31 20:14:09 localhost kernel: pci 0000:01:00.0: reg 0x30: [mem 0xfeac0000-0xfeadffff pref]
    Oct 31 20:14:09 localhost kernel: pci 0000:01:00.0: supports D1 D2
    Oct 31 20:14:09 localhost kernel: pci 0000:01:00.1: [1002:aa30] type 00 class 0x040300
    Oct 31 20:14:09 localhost kernel: pci 0000:01:00.1: reg 0x10: [mem 0xfeafc000-0xfeafffff 64bit]
    Oct 31 20:14:09 localhost kernel: pci 0000:01:00.1: supports D1 D2
    Oct 31 20:14:09 localhost kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:01.0: bridge window [mem 0xfea00000-0xfeafffff]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:01.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.0: PCI bridge to [bus 03]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.0: bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
    Oct 31 20:14:09 localhost kernel: pci 0000:02:00.0: [1969:1026] type 00 class 0x020000
    Oct 31 20:14:09 localhost kernel: pci 0000:02:00.0: reg 0x10: [mem 0xfebc0000-0xfebfffff 64bit]
    Oct 31 20:14:09 localhost kernel: pci 0000:02:00.0: reg 0x18: [io 0xec00-0xec7f]
    Oct 31 20:14:09 localhost kernel: pci 0000:02:00.0: PME# supported from D3hot D3cold
    Oct 31 20:14:09 localhost kernel: pci 0000:02:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.5: PCI bridge to [bus 02]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.5: bridge window [io 0xe000-0xefff]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.5: bridge window [mem 0xfeb00000-0xfebfffff]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1e.0: PCI bridge to [bus 04] (subtractive decode)
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1e.0: bridge window [mem 0x000d0000-0x000dffff] (subtractive decode)
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1e.0: bridge window [mem 0xd0000000-0xdfffffff] (subtractive decode)
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1e.0: bridge window [mem 0xf0000000-0xffffffff] (subtractive decode)
    Oct 31 20:14:09 localhost kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    Oct 31 20:14:09 localhost kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    Oct 31 20:14:09 localhost kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 7 10 11 12 14 15)
    Oct 31 20:14:09 localhost kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    Oct 31 20:14:09 localhost kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    Oct 31 20:14:09 localhost kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs *3 4 5 6 7 10 11 12 14 15)
    Oct 31 20:14:09 localhost kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 *7 10 11 12 14 15)
    Oct 31 20:14:09 localhost kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 *4 5 6 7 10 11 12 14 15)
    Oct 31 20:14:09 localhost kernel: ACPI: Enabled 3 GPEs in block 00 to 3F
    Oct 31 20:14:09 localhost kernel: ACPI: \_SB_.PCI0: notify handler is installed
    Oct 31 20:14:09 localhost kernel: Found 1 acpi root devices
    Oct 31 20:14:09 localhost kernel: vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    Oct 31 20:14:09 localhost kernel: vgaarb: loaded
    Oct 31 20:14:09 localhost kernel: vgaarb: bridge control possible 0000:01:00.0
    Oct 31 20:14:09 localhost kernel: PCI: Using ACPI for IRQ routing
    Oct 31 20:14:09 localhost kernel: PCI: pci_cache_line_size set to 64 bytes
    Oct 31 20:14:09 localhost kernel: e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
    Oct 31 20:14:09 localhost kernel: e820: reserve RAM buffer [mem 0xcff70000-0xcfffffff]
    Oct 31 20:14:09 localhost kernel: NetLabel: Initializing
    Oct 31 20:14:09 localhost kernel: NetLabel: domain hash size = 128
    Oct 31 20:14:09 localhost kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Oct 31 20:14:09 localhost kernel: NetLabel: unlabeled traffic allowed by default
    Oct 31 20:14:09 localhost kernel: HPET: 4 timers in total, 0 timers will be used for per-cpu timer
    Oct 31 20:14:09 localhost kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    Oct 31 20:14:09 localhost kernel: hpet0: 4 comparators, 64-bit 14.318180 MHz counter
    Oct 31 20:14:09 localhost kernel: Switched to clocksource hpet
    Oct 31 20:14:09 localhost kernel: pnp: PnP ACPI init
    Oct 31 20:14:09 localhost kernel: ACPI: bus type PNP registered
    Oct 31 20:14:09 localhost kernel: system 00:00: [mem 0xfed14000-0xfed19fff] has been reserved
    Oct 31 20:14:09 localhost kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    Oct 31 20:14:09 localhost kernel: pnp 00:01: [dma 4]
    Oct 31 20:14:09 localhost kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    Oct 31 20:14:09 localhost kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
    Oct 31 20:14:09 localhost kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0800 (active)
    Oct 31 20:14:09 localhost kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
    Oct 31 20:14:09 localhost kernel: system 00:05: [io 0x0290-0x029f] has been reserved
    Oct 31 20:14:09 localhost kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    Oct 31 20:14:09 localhost kernel: system 00:06: [io 0x04d0-0x04d1] has been reserved
    Oct 31 20:14:09 localhost kernel: system 00:06: [io 0x0800-0x087f] could not be reserved
    Oct 31 20:14:09 localhost kernel: system 00:06: [io 0x0500-0x057f] could not be reserved
    Oct 31 20:14:09 localhost kernel: system 00:06: [mem 0xfed08000-0xfed08fff] has been reserved
    Oct 31 20:14:09 localhost kernel: system 00:06: [mem 0xfed1c000-0xfed1ffff] has been reserved
    Oct 31 20:14:09 localhost kernel: system 00:06: [mem 0xfed20000-0xfed3ffff] has been reserved
    Oct 31 20:14:09 localhost kernel: system 00:06: [mem 0xfed50000-0xfed8ffff] has been reserved
    Oct 31 20:14:09 localhost kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
    Oct 31 20:14:09 localhost kernel: pnp 00:07: Plug and Play ACPI device, IDs PNP0103 (active)
    Oct 31 20:14:09 localhost kernel: pnp 00:08: Plug and Play ACPI device, IDs INT0800 (active)
    Oct 31 20:14:09 localhost kernel: system 00:09: [mem 0xffc00000-0xffefffff] has been reserved
    Oct 31 20:14:09 localhost kernel: system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    Oct 31 20:14:09 localhost kernel: system 00:0a: [mem 0xfec00000-0xfec00fff] could not be reserved
    Oct 31 20:14:09 localhost kernel: system 00:0a: [mem 0xfee00000-0xfee00fff] has been reserved
    Oct 31 20:14:09 localhost kernel: system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    Oct 31 20:14:09 localhost kernel: system 00:0b: [mem 0xe0000000-0xefffffff] has been reserved
    Oct 31 20:14:09 localhost kernel: system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
    Oct 31 20:14:09 localhost kernel: system 00:0c: [mem 0x00000000-0x0009ffff] could not be reserved
    Oct 31 20:14:09 localhost kernel: system 00:0c: [mem 0x000c0000-0x000cffff] could not be reserved
    Oct 31 20:14:09 localhost kernel: system 00:0c: [mem 0x000e0000-0x000fffff] could not be reserved
    Oct 31 20:14:09 localhost kernel: system 00:0c: [mem 0x00100000-0xcfffffff] could not be reserved
    Oct 31 20:14:09 localhost kernel: system 00:0c: [mem 0xe0000000-0xffffffff] could not be reserved
    Oct 31 20:14:09 localhost kernel: system 00:0c: Plug and Play ACPI device, IDs PNP0c01 (active)
    Oct 31 20:14:09 localhost kernel: pnp: PnP ACPI: found 13 devices
    Oct 31 20:14:09 localhost kernel: ACPI: bus type PNP unregistered
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 03] add_size 1000
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 03] add_size 400000
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.5: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1f.0: BAR 13: [io 0x0800-0x087f] has bogus alignment
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 400000
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.5: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.0: BAR 14: assigned [mem 0xf0000000-0xf03fffff]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.5: BAR 15: assigned [mem 0xf0400000-0xf05fffff 64bit pref]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.0: BAR 13: assigned [io 0x1000-0x1fff]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:01.0: bridge window [mem 0xfea00000-0xfeafffff]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:01.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.0: PCI bridge to [bus 03]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.0: bridge window [io 0x1000-0x1fff]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.0: bridge window [mem 0xf0000000-0xf03fffff]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.0: bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.5: PCI bridge to [bus 02]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.5: bridge window [io 0xe000-0xefff]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.5: bridge window [mem 0xfeb00000-0xfebfffff]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.5: bridge window [mem 0xf0400000-0xf05fffff 64bit pref]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1e.0: PCI bridge to [bus 04]
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1c.0: enabling device (0106 -> 0107)
    Oct 31 20:14:09 localhost kernel: pci 0000:00:1e.0: setting latency timer to 64
    Oct 31 20:14:09 localhost kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    Oct 31 20:14:09 localhost kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    Oct 31 20:14:09 localhost kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    Oct 31 20:14:09 localhost kernel: pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff]
    Oct 31 20:14:09 localhost kernel: pci_bus 0000:00: resource 8 [mem 0xd0000000-0xdfffffff]
    Oct 31 20:14:09 localhost kernel: pci_bus 0000:00: resource 9 [mem 0xf0000000-0xffffffff]
    Oct 31 20:14:09 localhost kernel: pci_bus 0000:01: resource 0 [io 0xd000-0xdfff]
    Oct 31 20:14:09 localhost kernel: pci_bus 0000:01: resource 1 [mem 0xfea00000-0xfeafffff]
    Oct 31 20:14:09 localhost kernel: pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
    Oct 31 20:14:09 localhost kernel: pci_bus 0000:03: resource 0 [io 0x1000-0x1fff]
    Oct 31 20:14:09 localhost kernel: pci_bus 0000:03: resource 1 [mem 0xf0000000-0xf03fffff]
    Oct 31 20:14:09 localhost kernel: pci_bus 0000:03: resource 2 [mem 0xfdf00000-0xfdffffff 64bit pref]
    Oct 31 20:14:09 localhost kernel: pci_bus 0000:02: resource 0 [io 0xe000-0xefff]
    Oct 31 20:14:09 localhost kernel: pci_bus 0000:02: resource 1 [mem 0xfeb00000-0xfebfffff]
    Oct 31 20:14:09 localhost kernel: pci_bus 0000:02: resource 2 [mem 0xf0400000-0xf05fffff 64bit pref]
    Oct 31 20:14:09 localhost kernel: pci_bus 0000:04: resource 4 [io 0x0000-0x0cf7]
    Oct 31 20:14:09 localhost kernel: pci_bus 0000:04: resource 5 [io 0x0d00-0xffff]
    Oct 31 20:14:09 localhost kernel: pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff]
    Oct 31 20:14:09 localhost kernel: pci_bus 0000:04: resource 7 [mem 0x000d0000-0x000dffff]
    Oct 31 20:14:09 localhost kernel: pci_bus 0000:04: resource 8 [mem 0xd0000000-0xdfffffff]
    Oct 31 20:14:09 localhost kernel: pci_bus 0000:04: resource 9 [mem 0xf0000000-0xffffffff]
    Oct 31 20:14:09 localhost kernel: NET: Registered protocol family 2
    Oct 31 20:14:09 localhost kernel: TCP established hash table entries: 32768 (order: 7, 524288 bytes)
    Oct 31 20:14:09 localhost kernel: TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    Oct 31 20:14:09 localhost kernel: TCP: Hash tables configured (established 32768 bind 32768)
    Oct 31 20:14:09 localhost kernel: TCP: reno registered
    Oct 31 20:14:09 localhost kernel: UDP hash table entries: 2048 (order: 4, 65536 bytes)
    Oct 31 20:14:09 localhost kernel: UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    Oct 31 20:14:09 localhost kernel: NET: Registered protocol family 1
    Oct 31 20:14:09 localhost kernel: pci 0000:01:00.0: Boot video device
    Oct 31 20:14:09 localhost kernel: PCI: CLS 32 bytes, default 64
    Oct 31 20:14:09 localhost kernel: Unpacking initramfs...
    Oct 31 20:14:09 localhost kernel: Freeing initrd memory: 8392K (ffff88007f7ce000 - ffff880080000000)
    Oct 31 20:14:09 localhost kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    Oct 31 20:14:09 localhost kernel: software IO TLB [mem 0xcbf70000-0xcff70000] (64MB) mapped at [ffff8800cbf70000-ffff8800cff6ffff]
    Oct 31 20:14:09 localhost kernel: Scanning for low memory corruption every 60 seconds
    Oct 31 20:14:09 localhost kernel: audit: initializing netlink socket (disabled)
    Oct 31 20:14:09 localhost kernel: type=2000 audit(1383237849.203:1): initialized
    Oct 31 20:14:09 localhost kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
    Oct 31 20:14:09 localhost kernel: zbud: loaded
    Oct 31 20:14:09 localhost kernel: VFS: Disk quotas dquot_6.5.2
    Oct 31 20:14:09 localhost kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Oct 31 20:14:09 localhost kernel: msgmni has been set to 7909
    Oct 31 20:14:09 localhost kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Oct 31 20:14:09 localhost kernel: io scheduler noop registered
    Oct 31 20:14:09 localhost kernel: io scheduler deadline registered
    Oct 31 20:14:09 localhost kernel: io scheduler cfq registered (default)
    Oct 31 20:14:09 localhost kernel: pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    Oct 31 20:14:09 localhost kernel: pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X
    Oct 31 20:14:09 localhost kernel: pcieport 0000:00:1c.5: irq 42 for MSI/MSI-X
    Oct 31 20:14:09 localhost kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    Oct 31 20:14:09 localhost kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    Oct 31 20:14:09 localhost kernel: intel_idle: does not run on family 6 model 23
    Oct 31 20:14:09 localhost kernel: GHES: HEST is not enabled!
    Oct 31 20:14:09 localhost kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Oct 31 20:14:09 localhost kernel: Linux agpgart interface v0.103
    Oct 31 20:14:09 localhost kernel: i8042: PNP: No PS/2 controller found. Probing ports directly.
    Oct 31 20:14:09 localhost kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Oct 31 20:14:09 localhost kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    Oct 31 20:14:09 localhost kernel: mousedev: PS/2 mouse device common for all mice
    Oct 31 20:14:09 localhost kernel: rtc_cmos 00:02: RTC can wake from S4
    Oct 31 20:14:09 localhost kernel: rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
    Oct 31 20:14:09 localhost kernel: rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    Oct 31 20:14:09 localhost kernel: cpuidle: using governor ladder
    Oct 31 20:14:09 localhost kernel: cpuidle: using governor menu
    Oct 31 20:14:09 localhost kernel: drop_monitor: Initializing network drop monitor service
    Oct 31 20:14:09 localhost kernel: TCP: cubic registered
    Oct 31 20:14:09 localhost kernel: NET: Registered protocol family 10
    Oct 31 20:14:09 localhost kernel: NET: Registered protocol family 17
    Oct 31 20:14:09 localhost kernel: Key type dns_resolver registered
    Oct 31 20:14:09 localhost kernel: registered taskstats version 1
    Oct 31 20:14:09 localhost kernel: Magic number: 1:736:743
    Oct 31 20:14:09 localhost kernel: rtc_cmos 00:02: setting system clock to 2013-10-31 16:44:09 UTC (1383237849)
    Oct 31 20:14:09 localhost kernel: Freeing unused kernel memory: 1140K (ffffffff818c9000 - ffffffff819e6000)
    Oct 31 20:14:09 localhost kernel: Write protecting the kernel read-only data: 8192k
    Oct 31 20:14:09 localhost kernel: Freeing unused kernel memory: 1084K (ffff8800014f1000 - ffff880001600000)
    Oct 31 20:14:09 localhost kernel: Freeing unused kernel memory: 352K (ffff8800017a8000 - ffff880001800000)
    Oct 31 20:14:09 localhost systemd[1]: systemd 208 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    Oct 31 20:14:09 localhost systemd[1]: Running in initial RAM disk.
    Oct 31 20:14:09 localhost systemd[1]: No hostname configured.
    Oct 31 20:14:09 localhost systemd[1]: Set hostname to <localhost>.
    Oct 31 20:14:09 localhost systemd[1]: Initializing machine ID from random generator.
    Oct 31 20:14:09 localhost systemd[1]: Cannot add dependency job for unit local-fs.target, ignoring: Unit local-fs.target failed to load: No such file or directory.
    Oct 31 20:14:09 localhost systemd[1]: Cannot add dependency job for unit swap.target, ignoring: Unit swap.target failed to load: No such file or directory.
    Oct 31 20:14:09 localhost systemd[1]: Cannot add dependency job for unit timers.target, ignoring: Unit timers.target failed to load: No such file or directory.
    Oct 31 20:14:09 localhost systemd[1]: Cannot add dependency job for unit paths.target, ignoring: Unit paths.target failed to load: No such file or directory.
    Oct 31 20:14:09 localhost systemd[1]: Cannot add dependency job for unit slices.target, ignoring: Unit slices.target failed to load: No such file or directory.
    Oct 31 20:14:09 localhost systemd[1]: Starting -.slice.
    Oct 31 20:14:09 localhost systemd[1]: Created slice -.slice.
    Oct 31 20:14:09 localhost systemd[1]: Starting system.slice.
    Oct 31 20:14:09 localhost systemd[1]: Created slice system.slice.
    Oct 31 20:14:09 localhost systemd[1]: Expecting device dev-sda10.device...
    Oct 31 20:14:09 localhost systemd[1]: Starting Journal Socket.
    Oct 31 20:14:09 localhost systemd[1]: Listening on Journal Socket.
    Oct 31 20:14:09 localhost systemd[1]: Starting Create list of required static device nodes for the current kernel...
    Oct 31 20:14:09 localhost systemd[1]: Starting Journal Service...
    Oct 31 20:14:09 localhost systemd[1]: Started Journal Service.
    Oct 31 20:14:09 localhost systemd-udevd[58]: starting version 208
    Oct 31 20:14:09 localhost systemd-journal[47]: Journal started
    Oct 31 20:14:09 localhost systemd[1]: Starting udev Kernel Socket.
    Oct 31 20:14:09 localhost systemd[1]: Listening on udev Kernel Socket.
    Oct 31 20:14:09 localhost systemd[1]: Starting udev Control Socket.
    Oct 31 20:14:09 localhost systemd[1]: Listening on udev Control Socket.
    Oct 31 20:14:09 localhost systemd[1]: Starting Sockets.
    Oct 31 20:14:09 localhost systemd[1]: Reached target Sockets.
    Oct 31 20:14:09 localhost systemd[1]: Starting udev Coldplug all Devices...
    Oct 31 20:14:09 localhost systemd[1]: Started Create list of required static device nodes for the current kernel.
    Oct 31 20:14:09 localhost systemd[1]: Starting Create static device nodes in /dev...
    Oct 31 20:14:09 localhost systemd[1]: Started Create static device nodes in /dev.
    Oct 31 20:14:09 localhost systemd[1]: Starting udev Kernel Device Manager...
    Oct 31 20:14:09 localhost systemd[1]: Started udev Kernel Device Manager.
    Oct 31 20:14:09 localhost systemd[1]: Started udev Coldplug all Devices.
    Oct 31 20:14:09 localhost systemd[1]: Starting System Initialization.
    Oct 31 20:14:09 localhost systemd[1]: Reached target System Initialization.
    Oct 31 20:14:09 localhost systemd[1]: Starting Basic System.
    Oct 31 20:14:09 localhost systemd[1]: Reached target Basic System.
    Oct 31 20:14:09 localhost kernel: ACPI: bus type USB registered
    Oct 31 20:14:09 localhost kernel: usbcore: registered new interface driver usbfs
    Oct 31 20:14:09 localhost kernel: usbcore: registered new interface driver hub
    Oct 31 20:14:09 localhost kernel: usbcore: registered new device driver usb
    Oct 31 20:14:09 localhost kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Oct 31 20:14:09 localhost kernel: uhci_hcd: USB Universal Host Controller Interface driver
    Oct 31 20:14:09 localhost kernel: uhci_hcd 0000:00:1a.0: setting latency timer to 64
    Oct 31 20:14:09 localhost kernel: uhci_hcd 0000:00:1a.0: UHCI Host Controller
    Oct 31 20:14:09 localhost kernel: uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
    Oct 31 20:14:09 localhost kernel: uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000c800
    Oct 31 20:14:09 localhost kernel: hub 1-0:1.0: USB hub found
    Oct 31 20:14:09 localhost kernel: hub 1-0:1.0: 2 ports detected
    Oct 31 20:14:09 localhost kernel: uhci_hcd 0000:00:1a.1: setting latency timer to 64
    Oct 31 20:14:09 localhost kernel: uhci_hcd 0000:00:1a.1: UHCI Host Controller
    Oct 31 20:14:09 localhost kernel: uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 2
    Oct 31 20:14:09 localhost kernel: uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000c880
    Oct 31 20:14:09 localhost kernel: hub 2-0:1.0: USB hub found
    Oct 31 20:14:09 localhost kernel: hub 2-0:1.0: 2 ports detected
    Oct 31 20:14:09 localhost kernel: uhci_hcd 0000:00:1a.2: setting latency timer to 64
    Oct 31 20:14:09 localhost kernel: uhci_hcd 0000:00:1a.2: UHCI Host Controller
    Oct 31 20:14:09 localhost kernel: uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 3
    Oct 31 20:14:09 localhost kernel: uhci_hcd 0000:00:1a.2: irq 18, io base 0x0000cc00
    Oct 31 20:14:09 localhost kernel: ehci-pci: EHCI PCI platform driver
    Oct 31 20:14:09 localhost kernel: hub 3-0:1.0: USB hub found
    Oct 31 20:14:09 localhost kernel: hub 3-0:1.0: 2 ports detected
    Oct 31 20:14:09 localhost kernel: uhci_hcd 0000:00:1d.0: setting latency timer to 64
    Oct 31 20:14:09 localhost kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
    Oct 31 20:14:09 localhost kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
    Oct 31 20:14:09 localhost kernel: uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000c080
    Oct 31 20:14:09 localhost kernel: hub 4-0:1.0: USB hub found
    Oct 31 20:14:09 localhost kernel: hub 4-0:1.0: 2 ports detected
    Oct 31 20:14:09 localhost kernel: uhci_hcd 0000:00:1d.1: setting latency timer to 64
    Oct 31 20:14:09 localhost kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
    Oct 31 20:14:09 localhost kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 5
    Oct 31 20:14:09 localhost kernel: uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000c400
    Oct 31 20:14:09 localhost kernel: [drm] Initialized drm 1.1.0 20060810
    Oct 31 20:14:09 localhost kernel: hub 5-0:1.0: USB hub found
    Oct 31 20:14:09 localhost kernel: hub 5-0:1.0: 2 ports detected
    Oct 31 20:14:09 localhost kernel: uhci_hcd 0000:00:1d.2: setting latency timer to 64
    Oct 31 20:14:09 localhost kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
    Oct 31 20:14:09 localhost kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 6
    Oct 31 20:14:09 localhost kernel: uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000c480
    Oct 31 20:14:09 localhost kernel: hub 6-0:1.0: USB hub found
    Oct 31 20:14:09 localhost kernel: hub 6-0:1.0: 2 ports detected
    Oct 31 20:14:09 localhost kernel: ehci-pci 0000:00:1a.7: setting latency timer to 64
    Oct 31 20:14:09 localhost kernel: ehci-pci 0000:00:1a.7: EHCI Host Controller
    Oct 31 20:14:09 localhost kernel: ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 7
    Oct 31 20:14:09 localhost kernel: ehci-pci 0000:00:1a.7: debug port 1
    Oct 31 20:14:09 localhost kernel: SCSI subsystem initialized
    Oct 31 20:14:09 localhost kernel: ACPI: bus type ATA registered
    Oct 31 20:14:09 localhost kernel: [drm] radeon kernel modesetting enabled.
    Oct 31 20:14:09 localhost kernel: ehci-pci 0000:00:1a.7: cache line size of 32 is not supported
    Oct 31 20:14:09 localhost kernel: ehci-pci 0000:00:1a.7: irq 18, io mem 0xfe9ffc00
    Oct 31 20:14:09 localhost kernel: libata version 3.00 loaded.
    Oct 31 20:14:09 localhost kernel: [drm] initializing kernel modesetting (RV770 0x1002:0x9460 0x1043:0x02B4).
    Oct 31 20:14:09 localhost kernel: [drm] register mmio base: 0xFEAE0000
    Oct 31 20:14:09 localhost kernel: [drm] register mmio size: 65536
    Oct 31 20:14:09 localhost kernel: ATOM BIOS: 9460.11.22.1.5.AS01
    Oct 31 20:14:09 localhost kernel: radeon 0000:01:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
    Oct 31 20:14:09 localhost kernel: radeon 0000:01:00.0: GTT: 512M 0x0000000040000000 - 0x000000005FFFFFFF
    Oct 31 20:14:09 localhost kernel: [drm] Detected VRAM RAM=1024M, BAR=256M
    Oct 31 20:14:09 localhost kernel: [drm] RAM width 256bits DDR
    Oct 31 20:14:09 localhost kernel: [TTM] Zone kernel: Available graphics memory: 2026018 kiB
    Oct 31 20:14:09 localhost kernel: [TTM] Initializing pool allocator
    Oct 31 20:14:09 localhost kernel: [TTM] Initializing DMA pool allocator
    Oct 31 20:14:09 localhost kernel: [drm] radeon: 1024M of VRAM memory ready
    Oct 31 20:14:09 localhost kernel: [drm] radeon: 512M of GTT memory ready.
    Oct 31 20:14:09 localhost kernel: [drm] GART: num cpu pages 131072, num gpu pages 131072
    Oct 31 20:14:09 localhost kernel: [drm] enabling PCIE gen 2 link speeds, disable with radeon.pcie_gen2=0
    Oct 31 20:14:09 localhost kernel: ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    Oct 31 20:14:09 localhost kernel: hub 7-0:1.0: USB hub found
    Oct 31 20:14:09 localhost kernel: hub 7-0:1.0: 6 ports detected
    Oct 31 20:14:09 localhost kernel: [drm] Loading RV770 Microcode
    Oct 31 20:14:09 localhost kernel: [drm] PCIE GART of 512M enabled (table at 0x0000000000040000).
    Oct 31 20:14:09 localhost kernel: radeon 0000:01:00.0: WB enabled
    Oct 31 20:14:09 localhost kernel: radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00 and cpu addr 0xffff880127ab8c00
    Oct 31 20:14:09 localhost kernel: radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c and cpu addr 0xffff880127ab8c0c
    Oct 31 20:14:09 localhost kernel: [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    Oct 31 20:14:09 localhost kernel: [drm] Driver supports precise vblank timestamp query.
    Oct 31 20:14:09 localhost kernel: radeon 0000:01:00.0: irq 43 for MSI/MSI-X
    Oct 31 20:14:09 localhost kernel: radeon 0000:01:00.0: radeon: using MSI.
    Oct 31 20:14:09 localhost kernel: [drm] radeon: irq initialized.
    Oct 31 20:14:09 localhost kernel: hub 1-0:1.0: USB hub found
    Oct 31 20:14:09 localhost kernel: hub 1-0:1.0: 2 ports detected
    Oct 31 20:14:09 localhost kernel: hub 2-0:1.0: USB hub found
    Oct 31 20:14:09 localhost kernel: hub 2-0:1.0: 2 ports detected
    Oct 31 20:14:09 localhost kernel: [drm] ring test on 0 succeeded in 1 usecs
    Oct 31 20:14:09 localhost kernel: [drm] ring test on 3 succeeded in 1 usecs
    Oct 31 20:14:09 localhost kernel: [drm] ib test on ring 0 succeeded in 0 usecs
    Oct 31 20:14:09 localhost kernel: [drm] ib test on ring 3 succeeded in 0 usecs
    Oct 31 20:14:09 localhost kernel: [drm] Radeon Display Connectors
    Oct 31 20:14:09 localhost kernel: [drm] Connector 0:
    Oct 31 20:14:09 localhost kernel: [drm] HDMI-A-1
    Oct 31 20:14:09 localhost kernel: [drm] HPD2
    Oct 31 20:14:09 localhost kernel: [drm] DDC: 0x7e60 0x7e60 0x7e64 0x7e64 0x7e68 0x7e68 0x7e6c 0x7e6c
    Oct 31 20:14:09 localhost kernel: [drm] Encoders:
    Oct 31 20:14:09 localhost kernel: [drm] DFP1: INTERNAL_UNIPHY
    Oct 31 20:14:09 localhost kernel: [drm] Connector 1:
    Oct 31 20:14:09 localhost kernel: [drm] VGA-1
    Oct 31 20:14:09 localhost kernel: [drm] DDC: 0x7e60 0x7e60 0x7e64 0x7e64 0x7e68 0x7e68 0x7e6c 0x7e6c
    Oct 31 20:14:09 localhost kernel: [drm] Encoders:
    Oct 31 20:14:09 localhost kernel: [drm] CRT2: INTERNAL_KLDSCP_DAC2
    Oct 31 20:14:09 localhost kernel: [drm] Connector 2:
    Oct 31 20:14:09 localhost kernel: [drm] DIN-1
    Oct 31 20:14:09 localhost kernel: [drm] Encoders:
    Oct 31 20:14:09 localhost kernel: [drm] TV1: INTERNAL_KLDSCP_DAC2
    Oct 31 20:14:09 localhost kernel: [drm] Connector 3:
    Oct 31 20:14:09 localhost kernel: [drm] DVI-I-1
    Oct 31 20:14:09 localhost kernel: [drm] HPD1
    Oct 31 20:14:09 localhost kernel: [drm] DDC: 0x7e20 0x7e20 0x7e24 0x7e24 0x7e28 0x7e28 0x7e2c 0x7e2c
    Oct 31 20:14:09 localhost kernel: [drm] Encoders:
    Oct 31 20:14:09 localhost kernel: [drm] CRT1: INTERNAL_KLDSCP_DAC1
    Oct 31 20:14:09 localhost kernel: [drm] DFP2: INTERNAL_KLDSCP_LVTMA
    Oct 31 20:14:09 localhost kernel: [drm] Internal thermal controller with fan control
    Oct 31 20:14:09 localhost kernel: == power state 0 ==
    Oct 31 20:14:09 localhost kernel: ui class: none
    Oct 31 20:14:09 localhost kernel: internal class: boot
    Oct 31 20:14:09 localhost kernel: caps: video
    Oct 31 20:14:09 localhost kernel: uvd vclk: 0 dclk: 0
    Oct 31 20:14:09 localhost kernel: power level 0 sclk: 85000 mclk: 97500 vddc: 1313
    Oct 31 20:14:09 localhost kernel: power level 1 sclk: 85000 mclk: 97500 vddc: 1313
    Oct 31 20:14:09 localhost kernel: power level 2 sclk: 85000 mclk: 97500 vddc: 1313
    Oct 31 20:14:09 localhost kernel: status: c r b
    Oct 31 20:14:09 localhost kernel: == power state 1 ==
    Oct 31 20:14:09 localhost kernel: ui class: performance
    Oct 31 20:14:09 localhost kernel: internal class: none
    Oct 31 20:14:09 localhost kernel: caps: single_disp video
    Oct 31 20:14:09 localhost kernel: uvd vclk: 0 dclk: 0
    Oct 31 20:14:09 localhost kernel: power level 0 sclk: 24000 mclk: 97500 vddc: 1053
    Oct 31 20:14:09 localhost kernel: power level 1 sclk: 50000 mclk: 97500 vddc: 1183
    Oct 31 20:14:09 localhost kernel: power level 2 sclk: 85000 mclk: 97500 vddc: 1313
    Oct 31 20:14:09 localhost kernel: status:
    Oct 31 20:14:09 localhost kernel: == power state 2 ==
    Oct 31 20:14:09 localhost kernel: ui class: none
    Oct 31 20:14:09 localhost kernel: internal class: uvd
    Oct 31 20:14:09 localhost kernel: caps: video
    Oct 31 20:14:09 localhost kernel: uvd vclk: 53300 dclk: 40000
    Oct 31 20:14:09 localhost kernel: power level 0 sclk: 50000 mclk: 97500 vddc: 1183
    Oct 31 20:14:09 localhost kernel: power level 1 sclk: 50000 mclk: 97500 vddc: 1183
    Oct 31 20:14:09 localhost kernel: power level 2 sclk: 50000 mclk: 97500 vddc: 1183
    Oct 31 20:14:09 localhost kernel: status:
    Oct 31 20:14:09 localhost kernel: == power state 3 ==
    Oct 31 20:14:09 localhost kernel: ui class: performance
    Oct 31 20:14:09 localhost kernel: internal class: none
    Oct 31 20:14:09 localhost kernel: caps: video
    Oct 31 20:14:09 localhost kernel: uvd vclk: 0 dclk: 0
    Oct 31 20:14:09 localhost kernel: power level 0 sclk: 24000 mclk: 97500 vddc: 1053
    Oct 31 20:14:09 localhost kernel: power level 1 sclk: 50000 mclk: 97500 vddc: 1183
    Oct 31 20:14:09 localhost kernel: power level 2 sclk: 85000 mclk: 97500 vddc: 1313
    Oct 31 20:14:09 localhost kernel: status:
    Oct 31 20:14:09 localhost kernel: == power state 4 ==
    Oct 31 20:14:09 localhost kernel: ui class: none
    Oct 31 20:14:09 localhost kernel: internal class: acpi
    Oct 31 20:14:09 localhost kernel: caps:
    Oct 31 20:14:09 localhost kernel: uvd vclk: 0 dclk: 0
    Oct 31 20:14:09 localhost kernel: power level 0 sclk: 24000 mclk: 97500 vddc: 1053
    Oct 31 20:14:09 localhost kernel: power level 1 sclk: 24000 mclk: 97500 vddc: 1053
    Oct 31 20:14:09 localhost kernel: power level 2 sclk: 24000 mclk: 97500 vddc: 1053
    Oct 31 20:14:09 localhost kernel: status:
    Oct 31 20:14:09 localhost kernel: switching from power state:
    Oct 31 20:14:09 localhost kernel: ui class: none
    Oct 31 20:14:09 localhost kernel: internal class: boot
    Oct 31 20:14:09 localhost kernel: caps: video
    Oct 31 20:14:09 localhost kernel: uvd vclk: 0 dclk: 0
    Oct 31 20:14:09 localhost kernel: power level 0 sclk: 85000 mclk: 97500 vddc: 1313
    Oct 31 20:14:09 localhost kernel: power level 1 sclk: 85000 mclk: 97500 vddc: 1313
    Oct 31 20:14:09 localhost kernel: power level 2 sclk: 85000 mclk: 97500 vddc: 1313
    Oct 31 20:14:09 localhost kernel: status: c b
    Oct 31 20:14:09 localhost kernel: switching to power state:
    Oct 31 20:14:09 localhost kernel: ui class: performance
    Oct 31 20:14:09 localhost kernel: internal class: none
    Oct 31 20:14:09 localhost kernel: caps: single_disp video
    Oct 31 20:14:09 localhost kernel: uvd vclk: 0 dclk: 0
    Oct 31 20:14:09 localhost kernel: power level 0 sclk: 24000 mclk: 97500 vddc: 1053
    Oct 31 20:14:09 localhost kernel: power level 1 sclk: 50000 mclk: 97500 vddc: 1183
    Oct 31 20:14:09 localhost kernel: power level 2 sclk: 85000 mclk: 97500 vddc: 1313
    Oct 31 20:14:09 localhost kernel: status: r
    Oct 31 20:14:09 localhost kernel: [drm] radeon: dpm initialized
    Oct 31 20:14:09 localhost kernel: hub 3-0:1.0: USB hub found
    Oct 31 20:14:09 localhost kernel: hub 3-0:1.0: 2 ports detected
    Oct 31 20:14:09 localhost kernel: ehci-pci 0000:00:1d.7: setting latency timer to 64
    Oct 31 20:14:09 localhost kernel: ehci-pci 0000:00:1d.7: EHCI Host Controller
    Oct 31 20:14:09 localhost kernel: ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 8
    Oct 31 20:14:09 localhost kernel: ehci-pci 0000:00:1d.7

    OK, I found a solution for this problem after fiddling with my fstab. Trick is to let Systemd mount partitions when necessary and do its business during boot like explained here in Arch wiki: https://wiki.archlinux.org/index.php/Im … tem_mounts
    $ nano /etc/fstab
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    /dev/sda8 /boot ext4 defaults,noatime,noauto,x-systemd.automount 0 2
    /dev/sda9 none swap defaults,noauto,x-systemd.automount 0 0
    # /dev/sda10 / ext4 defaults,noatime,noauto,x-systemd.automount 0 1
    /dev/sda11 /home ext4 defaults,noatime,noauto,x-systemd.automount 0 2
    Now my boot time is reduced from 28secs to 9secs without any SSD card or Readahead like software involved:
    $ systemd-analyze && systemd-analyze blame
    Startup finished in 229ms (kernel) + 2.544s (initrd) + 7.181s (userspace) = 9.954s
    2.275s systemd-vconsole-setup.service
    743ms systemd-logind.service
    559ms dev-mqueue.mount
    538ms sys-kernel-config.mount
    538ms sys-kernel-debug.mount
    536ms powermanagement.service
    498ms kmod-static-nodes.service
    493ms polkit.service
    483ms dev-hugepages.mount
    456ms systemd-sysctl.service
    402ms systemd-tmpfiles-setup.service
    398ms upower.service
    379ms udisks2.service
    332ms systemd-random-seed.service
    269ms systemd-tmpfiles-setup-dev.service
    261ms systemd-journal-flush.service
    233ms systemd-user-sessions.service
    208ms systemd-udev-trigger.service
    177ms systemd-udevd.service
    156ms [email protected]
    113ms [email protected]
    52ms systemd-update-utmp.service
    47ms systemd-remount-fs.service
    38ms home.mount
    4ms alsa-restore.service
    $ systemd-analyze critical-chain
    The time after the unit is active or started is printed after the "@" character.
    The time the unit takes to start is printed after the "+" character.
    graphical.target @7.181s
    └─multi-user.target @7.181s
    └─systemd-logind.service @6.437s +743ms
    └─basic.target @6.436s
    └─timers.target @6.434s
    └─systemd-tmpfiles-clean.timer @6.434s
    └─sysinit.target @2.986s
    └─systemd-vconsole-setup.service @711ms +2.275s
    └─systemd-journald.socket
    └─-.mount
    └─system.slice
    └─-.slice

  • [Solved] Full system upgrade fails because of Nvidia dependencies

    Problem:
    # pacman -Syu
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    :: Starting full system upgrade...
    resolving dependencies...
    looking for conflicting packages...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: nvidia-dkms: requires nvidia-utils=346.35
    Things I have tried:
    $ makepkg -s
    ==> Making package: nvidia-dkms 346.47-1 (Sun Mar 1 11:42:11 PST 2015)
    ==> Checking runtime dependencies...
    ==> Installing missing dependencies...
    [sudo] password for digger:
    resolving dependencies...
    looking for conflicting packages...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: nvidia-dkms: requires nvidia-utils=346.35
    ==> ERROR: 'pacman' failed to install missing dependencies.
    # pacman -R nvidia-utils
    checking dependencies...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: nvidia-dkms: requires nvidia-utils=346.35
    :: nvidia-libgl: requires nvidia-utils
    Some info:
    $ uname -a
    Linux <hostname> 3.18.6-1-ARCH #1 SMP PREEMPT Sat Feb 7 08:44:05 CET 2015 x86_64 GNU/Linux
    # dkms status
    nvidia, 346.35, 3.18.5-1-ARCH, x86_64: installed
    nvidia, 346.35, 3.18.6-1-ARCH, x86_64: installed
    $ lspci -k | grep -A 2 -i "VGA"
    03:00.0 VGA compatible controller: NVIDIA Corporation GK107 [GeForce GT 640] (rev a1)
    Subsystem: eVga.com. Corp. Device 2643
    Kernel driver in use: nvidia
    Kernel modules: nouveau, nvidia
    Subsystem: eVga.com. Corp. Device 2643
    Kernel driver in use: snd_hda_intel
    Kernel modules: snd_hda_intel
    # pacman -Ss nvidia | grep installed
    extra/libvdpau 0.9-1 [installed]
    extra/nvidia-libgl 346.47-2 [installed: 346.35-2]
    extra/nvidia-utils 346.47-2 [installed: 346.35-2]
    # cat /etc/mkinitcpio.conf | grep ^HOOKS
    HOOKS="base udev autodetect modconf block lvm2 nvidia filesystems keyboard fsck"
    # systemctl status dkms
    ● dkms.service - Dynamic Kernel Modules System
    Loaded: loaded (/usr/lib/systemd/system/dkms.service; enabled; vendor preset: disabled)
    Active: active (exited) since Sun 2015-03-01 11:40:15 PST; 1h 43min ago
    Process: 6196 ExecStart=/usr/lib/systemd/scripts/dkms start (code=exited, status=0/SUCCESS)
    Main PID: 6196 (code=exited, status=0/SUCCESS)
    CGroup: /system.slice/dkms.service
    # pacman -Qm | grep nvidia
    nvidia-dkms 346.35-2
    nvidia-hook 2.2-3
    Let me know if any other information is needed.
    Thanks.
    Last edited by digger (2015-03-03 03:12:52)

    The fix, thanks to Xabre
    # pacman -R nvidia-dkms
    checking dependencies...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: nvidia-hook: requires nvidia-dkms
    # pacman -Rs nvidia-dkms
    checking dependencies...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: nvidia-hook: requires nvidia-dkms
    [root@big-kahuna ~]# pacman -Rdd nvidia-dkms
    Packages (1) nvidia-dkms-346.35-2
    Total Removed Size: 12.29 MiB
    :: Do you want to remove these packages? [Y/n] Y
    -------- Uninstall Beginning --------
    Module: nvidia
    Version: 346.35
    Kernel: 3.18.5-1-ARCH (x86_64)
    Status: Before uninstall, this module version was ACTIVE on this kernel.
    nvidia.ko:
    - Uninstallation
    - Deleting from: /usr/lib/modules/3.18.5-1-ARCH/kernel/drivers/video/
    - Original module
    - No original module was found for this module on this kernel.
    - Use the dkms install command to reinstall any previous module version.
    nvidia-uvm.ko:
    - Uninstallation
    - Deleting from: /usr/lib/modules/3.18.5-1-ARCH/kernel/drivers/video/
    - Original module
    - No original module was found for this module on this kernel.
    - Use the dkms install command to reinstall any previous module version.
    depmod....
    DKMS: uninstall completed.
    -------- Uninstall Beginning --------
    Module: nvidia
    Version: 346.35
    Kernel: 3.18.6-1-ARCH (x86_64)
    Status: Before uninstall, this module version was ACTIVE on this kernel.
    nvidia.ko:
    - Uninstallation
    - Deleting from: /usr/lib/modules/3.18.6-1-ARCH/kernel/drivers/video/
    - Original module
    - No original module was found for this module on this kernel.
    - Use the dkms install command to reinstall any previous module version.
    nvidia-uvm.ko:
    - Uninstallation
    - Deleting from: /usr/lib/modules/3.18.6-1-ARCH/kernel/drivers/video/
    - Original module
    - No original module was found for this module on this kernel.
    - Use the dkms install command to reinstall any previous module version.
    depmod.....
    DKMS: uninstall completed.
    Deleting module version: 346.35
    completely from the DKMS tree.
    Done.
    (1/1) removing nvidia-dkms [######################] 100%
    # pacman -Syu ### This ran as expected.
    All I wanted was to have the simplest use of the Nvidia proprietary driver.  So I followed https://wiki.archlinux.org/index.php/NV … any_kernel
    So what I gather from the discussion here is that this (nvidia-dkms) should only be used for custom kernels?  And the topic should be a sub topic of https://wiki.archlinux.org/index.php/NV … tom_kernel?  Is that right?
    Thanks for you help.
    Last edited by digger (2015-03-03 03:11:58)

  • LV Applicatio​n Builder: solving "The system cannot find the file specified.​" error?

    Hello everyone,
    I don't mind banging my head off of something that feels complex but it's always frustrating to be stumped by something that seems simple... I have LabVIEW 2014 and Application Builder. I've built an program that runs flawlessly as a VI, then compiles and runs flawlessly as a .exe. But I can't seem to get the installer to work. I get the following error:
     Per the suggestions in this thread and this KB article, I created a new installer build spec, then a new application build spec, then a new project with all my VIs in it, building and testing the installer at each step. None of that seemed to make a difference.
    I ran the installer as admin, I created the install directories ahead of time (in case it didn't have the privileges to create folders), and built an installer without the Run-Time in it. None of that worked either. Lastly, I played around with putting all my subVIs in a library.
    So since the tutorial worked I'm assuming that it's some quirk in my program. Does anyone have any experience or advice as to what specific aspects of a program play nice with the AB installers? It's one primary VI, less than a dozen subVIs, a few Type Defs, and no hardware integration. Seems like a pretty straightforward and simple program but maybe something in there is persona non grata with Application Builder?
    Xander Cesari
    Automotive/Internal Combustion Test Engineer
    CLAD certified, mainly focused on data acquisition
    Been LabVIEWing for a few years, still a lot to learn
    Solved!
    Go to Solution.

    Hello,
    Thanks for the response. Nope, I'm running it from a regular directory, in the same folder as the rest of my project. Here's the project window showing the folder directory:
    Xander Cesari
    Automotive/Internal Combustion Test Engineer
    CLAD certified, mainly focused on data acquisition
    Been LabVIEWing for a few years, still a lot to learn

  • How to solve BPM system task timeout issue

    Guys,
             We have a BPM process with couple of human tasks and system tasks.
    One particular SYSTEM task is designed to call a web service method synchronously. Because of the complexity in the method, it takes more than 5 minutes for the particular system process to complete. But the BPM process times out by then.
    What are the suggested solution to this problem?
    1. Increase BPM time out? possible???
    2. can we make this synchronous call to asynchronous call using send and receive task???

    Hi,
    Don't expect that increasing the BPM time-out is a good idea (i also assume it's actually something in Weblogic which has a default 600 second max).
    But we often use Send and Receive task in Oracle BPM to call long-running (some up to weeks) generic components/processes.
    It works perfect as long as the component can perform a callback operation.
    Hope it helps. J@n

  • Clean install to solve buggy system?

    Hello,
    My MacBook Pro Retina has been buggy for quite a while. I was hoping the new OS would smooth things out, but I've noticed additional issues. For example, the folders in my finder are blurry and don't open, and my shortcut folders in the left pane are empty; I can only get into my folders via spotlight. Another bug I've noticed is that my desktop icons move around on their own.
    I have two questions: (1) Is performing a clean install a potential way to smooth this out? (2) Will restoring my computer from a time machine backup simply reintroduce these buggy issues back into the system?
    Thanks!

    Try restoring OS X from your recovery disk.
    That, at least, should eliminate the operating system as a source of your problems.
    You should also consider deleting third party software that affects the operating system.
    Barry

Maybe you are looking for

  • Wrong eMail used during iCloud setup.

    Ok, i'm really hoping someone can help me here. I will try my best to descibe the problem and hope ye understand. I wasn't there at the time so I can only go by what he said and guess the rest of it. My Nephew got a 2nd hand iPhone4s and while he was

  • Request.getRequestURL() equivalent in JSTL

    Hi, I am starting to mess with jstl. I was wondering if there is a "request.getRequestURL() " equivalent in JSTL. I have been messing with the implicit objects and do not seem to be able to find the url information in there. I can manually put the st

  • Has HTMLDB the chance to survive?

    I'm an old mod_plsql fan (Freelancer) and that's the reason that I love this new tool HTMLDB. But we all know these J2EE-fanatics, they were only satisfied when they have a bundle of different servers and a complicated architecture and lot of open so

  • Cant play video dvds

    When I put my netflix video into my dvd drive, nothing happens. Thanks

  • Is game center working right now with you guys?

    I keepo n trying to sign into ga,e center but it keeps on saying cannot connect to server. Is this happening to you guys too? This just started right now.