UDF doesn't work in output

Hi
I use a UDF to remove leading zeros from an alphanumeric string. When I test it in the Message Mapping, it works fine. But when the output comes, it's not removing zeros, in SXMB_MONI
What possibly could be the reason ?
Regards

Bhavesh
FORMATNUM won't work. It's alphanumeric string. It will fail
Raja
I have activated Message Mapping. Cache refresh as in SXI_CACHE, complete cache refresh? I just did that and it says cache started in background. How long will it take to complete?
Regards

Similar Messages

  • My VGA output using Mini DisplayPort to VGA doesn't work.

    Since I upgraded to Mavericks, my VGA output using Mini DisplayPort to VGA doesn't work. When I was using Mountain Lion, as soon as you plugged in the Mini adaopter into the mini display port, the screen would shrink and format to where it would project via a RGB cable to a projector. No such luck since Mavericks! Also, I had a lot of trouble with the DVD player when I tried to play a DVD and project it via a projector. It all worked seamlessly with Mountain Lion. Can anyone help me?

    I think if you go to System Preferences >> Displays and Option-click on the "Scaled" radio button, it will show you all of the resolutions that you would have had before under Mountain Lion. I just upgraded to Maverick and my resolution preferences (mirrored on a TV using the Mini DisplayPort to VGA adapter, using 1280x768) were completely reset (my display was no longer mirrored, and the resolution on my main iMac screen became 2560x1440). I found my answer here: https://discussions.apple.com/message/23599645#23599645. Hope that helps.

  • I HAVE JUST BOUGHT a MacBook air. The earphone output doesn't work. I read somewhere that you have to make a choice with internal speakers. How?

    I have just bought my first Mac a MacBook Air 11 ". Thwe external output doesn't work . Do I have to make a choice between internal and external speakers? If so, How?

    Go to System Preferences -> Sound -> Output.

  • The VIServer doesn't work when importing/exporting complicated and many input/output VI.

    My VI server and client works fine when I importing and exporting uncomplicated VI. When I import/export many input/output and complicated VI, that complicated VI doesn't give any output. I don't get any error in the error message either (it said "No error"). And my client program looks like it gets hang - I can't stop the program. In this case, I have to shut down the server program then I can stop the client program. Is there any way that we can solve this problem?

    It's difficult to determine the cause of the problem from your description. Here are a few suggestions:
    1. Bundle the inputs to your complicated VI's into a cluster. Do the same with the outputs. You will technically then have only one input and output. This will keep you connector pane a lot cleaner and less confusing.
    2. Have Highlight Execution turned on in your complicated VIs. This will allow you see the portions of your complicated VIs that might be slowing them down.
    3. Run your complicated VI's without VI Server and with a set of input data that allows your VI to run quickly. Then, using VI Server, pass this same input data to your complicated VI's. This will allow you to determine if there is a problem with the way you are calling y
    our complicated VI's.
    Chris_Mitchell
    Product Development Engineer
    Certified LabVIEW Architect

  • HDMI Audio Output doesn't work in Windows on Retina MBP

    When I'm using Windows 7 (with BootCamp) on my Retina MacBook Pro, I like to connect it to my TV using the HDMI out to watch movies. However, when in Windows, it doesn't seem to output the audio to the TV. Instead, it plays through the MacBook's internal speakers. I don't know how to change it, and there doesn't seem to be in option in the Volume Controls in Windows.
    Anyone have any success having both video and audio outputted to a TV in Windows 7 on their rMBP? If so, how?

    Try downloading and installing bootcamp 3.1 it fixed my sound for me.

  • Audio output doesn't work right. How to fix it?

    I plugged my earphones in and noticed that the left side was much louder than the right. I tried different earphones and and it works fine on my iphone so it definately is the plug in of my mac that now doesn't work properly anymore

    What did you do, before this happened? Did you install new software? Update the system?
    Have you tried to restart the iPhoneor to reset the iPhone? See:   reset your device
    http://support.apple.com/kb/TS3281
    If that does not help, restore the device: restoring iOS software

  • What to do when your program doesn't work.

    A huge number of posts here seem to relate to code that has been written (one presumes by the poster), but which doesn't work.
    I get the impression that people don't know what to do next.
    It's really not that difficult. When you're writing your program you constantly have in mind what you expect will happen as a result of each bit of code that you put.
    If at the end of the day, the program as a whole doesn't behave as you expected, then somewhere in there there must be a point at which the program starts doing something that doesn't correspond to what you anticipated. So, you add some System.err.println statements to test your beliefs.
    Consider this program that tests whether a number is prime.
    public class Test
        public static void main(String args[])
            // Get the number to test.
            int number = Integer.parseInt(args[0]);
            // Try each possible factor.
            int factor;
            for(factor = 2; factor < number; factor++)
                // See whether it is really a factor.
                if(number / factor == 0)
                    break;
            if(factor == number)
                System.out.println("Number is not prime.");
            else
                System.out.println("Number is prime.");
    }Straight forward enough, but it doesn't actually work :( It seems to say that every number is not prime. (Actually, not quite true, but I didn't test it that carefully, since it didn't work).
    Now, I could scrutinise it for errors, and then, having failed to find the problem, I could post it here. But let's suppose I'm too proud for that.
    What might be going wrong. Well, how sure am I that I'm even managing to capture the number of interest, number. Let's put in a System.err.println() to test that.
    Is the program in fact trying the factors I expect? Put in System.err.println() for that.
    Is the program correctly determining whether a number is a factor? Need another System.err.prinln (or two) for that.
    public class Test
        public static void main(String args[])
            // Get the number to test.
            int number = Integer.parseInt(args[0]);
            System.err.println("Number to check is " + number);
            // Try each possible factor.
            int factor;
            for(factor = 2; factor < number; factor++)
                System.err.println("Trying factor " + factor);
                // See whether it is really a factor.
                if(number / factor == 0)
                    System.err.println(factor + " is a factor.");
                    break;
                System.err.println(factor + " is not a factor.");
            if(factor == number)
                System.out.println("Number is not prime.");
            else
                System.out.println("Number is prime.");
    }Let's try with on the number 6.
    The output is:
    Number to check is 6
    Trying factor 2
    2 is not a factor.
    Trying factor 3
    3 is not a factor.
    Trying factor 4
    4 is not a factor.
    Trying factor 5
    5 is not a factor.
    Number is not prime.
    Whoah! That's not right. Clearly, the problem is that it's not correctly deciding whether a number is a factor. Well, we know exactly where that test is done. It's this statement:
                if(number / factor == 0)Hmm.... let's try 6 / 3, 'cos 3 is a factor.
    6 / 3 = 2.
    But that's not zero. What the.... Oh - I see, it should have been number % factor.
    Ok - let's fix that, and run it again.
    Now the output is:
    Number to check is 6
    Trying factor 2
    2 is a factor.
    Number is prime.
    Not the right answer, but at least it's now figured out that 2 is a factor of 6. Let's try a different number.
    Number to check is 9
    Trying factor 2
    2 is not a factor.
    Trying factor 3
    3 is a factor.
    Number is prime.
    Again, got the right factor, but still the wrong answer. Let's try a prime:
    Number to check is 7
    Trying factor 2
    2 is not a factor.
    Trying factor 3
    3 is not a factor.
    Trying factor 4
    4 is not a factor.
    Trying factor 5
    5 is not a factor.
    Trying factor 6
    6 is not a factor.
    Number is not prime.
    Aagh! Obvious - the final test is the wrong way round. Just fix that, remove that System.err.println()s and we're done.
    Sylvia.

    Consider this program that tests whether a number is
    prime.
    [attempt to divide by each integer from 2 to n-1]At risk of lowering the signal to noise ratio, I
    should point out that the algorithm given is just
    about the worst possible.
    I know that the point was to illustrate debugging
    and not good prime test algorithms, and I disagree
    with the correspondent who thought the post was
    condescending.
    Anyway, the java libraries have good prime testing
    methods based on advanced number theory research that the
    non-specialist is unlikely to know. Looking at the java
    libraries first is always a good idea.
    Even with the naive approach, dramatic improvements
    are possible.
    First, only try putative divisors up to the square root
    of the number. For 999997 this is about 1000 times faster.
    Next only try dividing by prime numbers. This is about
    7 times faster again. The snag, of course, is to find the
    prime numbers up to 1000, so there might not be much
    advantage unless you already have such a list. The sieve
    of Erastosthenes could be used. This involves 31 passes
    through an array of 1000 booleans and might allow an
    improvement in speed at the expense of space.
    Sorry if I've added too much noise :-)

  • IPod to TV using digital camera cable, doesn't work. Help

    Hey
    I've got the iPod 5th Generation 30Gb video. I ripped one of my DVDs onto my computer and then used videora to convert the DVD for use on the ipod. I used iTunes to stick the movie on my iPod.
    The movie plays fine on the ipod, but when I go to connect the iPod to my LG Flatron TV it doesn't work. I am using a cable that came with my digital camera, it only has one black and one yellow rca plug. If I use it with the camera, the black is for video, and the yellow for audio. But on the ipod, I don't get anything. I have checked that the send to TV settings are On.
    I've tried changing the format on the output from PAL to NTSC, nothing.
    One thing I am not sure about is why my cable has got a little box thingy surrounding part of the wire, inside the box thingy are magnets, anyone know why these are here? Could this be what is causing it not to work. What should I do?
    Thanks

    Here is some info for the pinout for the iPod.
    http://www.anythingbutipod.com/archives/2006/04/zen-vision-m-video-cable-other-4 pole-35mm-pinouts.php
    You need to find the pinout of the camera cable you have.
    Probably be easier to get get an AV cable with a 3.5mm plug to (whatever fits into your TV) cable.
    Usually, you simply have to swap the Red and the Yellow for it to work properly.

  • Wired connection doesn't work if cable is not plugged in at boot time

    Hey all,
    I started using arch a few days ago and I simply love it, but I have a problem. The wired connection doesn't work if the cable is not plugged in at boot time, or if it was plugged in at boot time, then plugged out and in again. Switching it off and on again via the gui has the same effect. I am using NetworkManager with dhcpcd, NetworkManager is started via systemd, dhcpcd is not, I let NetworkManager do that. When I started investigating this problem there were some remnants of netctl, but now NetworkManager is the only networking-related service started at boot time. When the cable is plugged back in, NM-applet shows that it's connected, and an IP address is assigned, but the connection doesn't work.
    Here's some information regarding the system:
    It's a lenovo G50-70 laptop, it uses the r8169 driver for ethernet. (I dualboot it with windows 8.1, but arch is default and all this stuff happens also if i only use arch)
    The router is a Linksys EA2700/N600
    journalctl -u NetworkManager
    aug 26 19:14:33 arch_daboka NetworkManager[527]: <info> NetworkManager (version 0.9.10.1) is starting...
    aug 26 19:14:33 arch_daboka NetworkManager[527]: <info> Read config: /etc/NetworkManager/NetworkManager.conf
    aug 26 19:14:33 arch_daboka NetworkManager[527]: <info> WEXT support is enabled
    aug 26 19:14:35 arch_daboka NetworkManager[527]: <info> Loaded plugin keyfile: (c) 2007 - 2013 Red Hat, Inc. To report bugs please use the NetworkMan
    aug 26 19:14:35 arch_daboka NetworkManager[527]: <info> new connection /etc/NetworkManager/system-connections/Bokros
    aug 26 19:14:35 arch_daboka NetworkManager[527]: <info> new connection /etc/NetworkManager/system-connections/1. vezetékes kapcsolat
    aug 26 19:14:35 arch_daboka NetworkManager[527]: <info> new connection /etc/NetworkManager/system-connections/UPC1838142
    aug 26 19:14:35 arch_daboka NetworkManager[527]: <info> monitoring kernel firmware directory '/usr/lib/firmware'.
    aug 26 19:14:35 arch_daboka NetworkManager[527]: <info> rfkill0: found WiFi radio killswitch (at /sys/devices/pci0000:00/0000:00:1c.3/0000:02:00.0/iee
    aug 26 19:14:35 arch_daboka NetworkManager[527]: <info> rfkill1: found WiFi radio killswitch (at /sys/devices/pci0000:00/0000:00:1f.0/PNP0C09:00/VPC20
    aug 26 19:14:35 arch_daboka NetworkManager[527]: <info> WiFi hardware radio set enabled
    aug 26 19:14:35 arch_daboka NetworkManager[527]: <info> WWAN hardware radio set enabled
    aug 26 19:14:36 arch_daboka NetworkManager[527]: <info> Loaded device plugin: /usr/lib/NetworkManager/libnm-device-plugin-wifi.so
    aug 26 19:14:36 arch_daboka NetworkManager[527]: <info> Loaded device plugin: /usr/lib/NetworkManager/libnm-device-plugin-wwan.so
    aug 26 19:14:36 arch_daboka NetworkManager[527]: <info> Loaded device plugin: /usr/lib/NetworkManager/libnm-device-plugin-adsl.so
    aug 26 19:14:36 arch_daboka NetworkManager[527]: <info> Loaded device plugin: /usr/lib/NetworkManager/libnm-device-plugin-bluetooth.so
    aug 26 19:14:36 arch_daboka NetworkManager[527]: <info> WiFi enabled by radio killswitch; enabled by state file
    aug 26 19:14:36 arch_daboka NetworkManager[527]: <info> WWAN enabled by radio killswitch; enabled by state file
    aug 26 19:14:36 arch_daboka NetworkManager[527]: <info> WiMAX enabled by radio killswitch; enabled by state file
    aug 26 19:14:36 arch_daboka NetworkManager[527]: <info> Networking is enabled by state file
    aug 26 19:14:36 arch_daboka NetworkManager[527]: <info> (lo): link connected
    aug 26 19:14:36 arch_daboka NetworkManager[527]: <info> (lo): carrier is ON
    aug 26 19:14:36 arch_daboka NetworkManager[527]: <info> (lo): new Generic device (driver: 'unknown' ifindex: 1)
    aug 26 19:14:36 arch_daboka NetworkManager[527]: <info> (lo): exported as /org/freedesktop/NetworkManager/Devices/0
    aug 26 19:14:36 arch_daboka NetworkManager[527]: <info> (enp1s0): carrier is OFF
    aug 26 19:14:36 arch_daboka NetworkManager[527]: <info> (enp1s0): new Ethernet device (driver: 'r8169' ifindex: 2)
    aug 26 19:14:36 arch_daboka NetworkManager[527]: <info> (enp1s0): exported as /org/freedesktop/NetworkManager/Devices/1
    aug 26 19:14:36 arch_daboka NetworkManager[527]: <info> (enp1s0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
    aug 26 19:14:36 arch_daboka systemd[1]: Started Network Manager.
    aug 26 19:14:36 arch_daboka NetworkManager[527]: <info> (enp1s0): preparing device
    aug 26 19:14:36 arch_daboka NetworkManager[527]: <info> (wlp2s0): using nl80211 for WiFi device control
    aug 26 19:14:36 arch_daboka NetworkManager[527]: <info> (wlp2s0): driver supports Access Point (AP) mode
    aug 26 19:14:36 arch_daboka NetworkManager[527]: <info> (wlp2s0): new 802.11 WiFi device (driver: 'ath9k' ifindex: 3)
    aug 26 19:14:36 arch_daboka NetworkManager[527]: <info> (wlp2s0): exported as /org/freedesktop/NetworkManager/Devices/2
    aug 26 19:14:36 arch_daboka NetworkManager[527]: <info> (wlp2s0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
    aug 26 19:14:36 arch_daboka NetworkManager[527]: <info> (wlp2s0): preparing device
    aug 26 19:14:36 arch_daboka NetworkManager[527]: <info> use BlueZ version 5
    aug 26 19:14:37 arch_daboka NetworkManager[527]: <info> wpa_supplicant started
    aug 26 19:14:37 arch_daboka NetworkManager[527]: <info> (wlp2s0) supports 4 scan SSIDs
    aug 26 19:14:37 arch_daboka NetworkManager[527]: <info> (wlp2s0): supplicant interface state: starting -> ready
    aug 26 19:14:37 arch_daboka NetworkManager[527]: <info> (wlp2s0): device state change: unavailable -> disconnected (reason 'supplicant-available') [20
    aug 26 19:14:37 arch_daboka NetworkManager[527]: <info> (wlp2s0): supplicant interface state: ready -> disconnected
    aug 26 19:14:37 arch_daboka NetworkManager[527]: <info> (wlp2s0) supports 4 scan SSIDs
    aug 26 19:14:37 arch_daboka NetworkManager[527]: <info> (wlp2s0): supplicant interface state: disconnected -> inactive
    aug 26 19:14:42 arch_daboka NetworkManager[527]: <info> startup complete
    aug 26 19:15:00 arch_daboka NetworkManager[527]: <info> Auto-activating connection 'Bokros'.
    aug 26 19:15:00 arch_daboka NetworkManager[527]: <info> Activation (wlp2s0) starting connection 'Bokros'
    aug 26 19:15:00 arch_daboka NetworkManager[527]: <info> Activation (wlp2s0) Stage 1 of 5 (Device Prepare) scheduled...
    aug 26 19:15:00 arch_daboka NetworkManager[527]: <info> Activation (wlp2s0) Stage 1 of 5 (Device Prepare) started...
    aug 26 19:15:00 arch_daboka NetworkManager[527]: <info> (wlp2s0): device state change: disconnected -> prepare (reason 'none') [30 40 0]
    aug 26 19:15:00 arch_daboka NetworkManager[527]: <info> NetworkManager state is now CONNECTING
    aug 26 19:15:00 arch_daboka NetworkManager[527]: <info> Activation (wlp2s0) Stage 2 of 5 (Device Configure) scheduled...
    aug 26 19:15:00 arch_daboka NetworkManager[527]: <info> Activation (wlp2s0) Stage 1 of 5 (Device Prepare) complete.
    aug 26 19:15:00 arch_daboka NetworkManager[527]: <info> Activation (wlp2s0) Stage 2 of 5 (Device Configure) starting...
    aug 26 19:15:00 arch_daboka NetworkManager[527]: <info> (wlp2s0): device state change: prepare -> config (reason 'none') [40 50 0]
    aug 26 19:15:00 arch_daboka NetworkManager[527]: <info> Activation (wlp2s0/wireless): connection 'Bokros' has security, and secrets exist. No new sec
    aug 26 19:15:00 arch_daboka NetworkManager[527]: <info> Config: added 'ssid' value 'Bokros'
    aug 26 19:15:00 arch_daboka NetworkManager[527]: <info> Config: added 'scan_ssid' value '1'
    aug 26 19:15:00 arch_daboka NetworkManager[527]: <info> Config: added 'key_mgmt' value 'WPA-PSK'
    aug 26 19:15:00 arch_daboka NetworkManager[527]: <info> Config: added 'psk' value '<omitted>'
    aug 26 19:15:00 arch_daboka NetworkManager[527]: <info> Activation (wlp2s0) Stage 2 of 5 (Device Configure) complete.
    aug 26 19:15:00 arch_daboka NetworkManager[527]: <info> Config: set interface ap_scan to 1
    aug 26 19:15:00 arch_daboka NetworkManager[527]: <info> (wlp2s0): supplicant interface state: inactive -> authenticating
    aug 26 19:15:00 arch_daboka NetworkManager[527]: <info> (wlp2s0): supplicant interface state: authenticating -> associated
    aug 26 19:15:00 arch_daboka NetworkManager[527]: <info> (wlp2s0): supplicant interface state: associated -> 4-way handshake
    aug 26 19:15:01 arch_daboka NetworkManager[527]: <info> (wlp2s0): supplicant interface state: 4-way handshake -> completed
    aug 26 19:15:01 arch_daboka NetworkManager[527]: <info> Activation (wlp2s0/wireless) Stage 2 of 5 (Device Configure) successful. Connected to wireles
    aug 26 19:15:01 arch_daboka NetworkManager[527]: <info> Activation (wlp2s0) Stage 3 of 5 (IP Configure Start) scheduled.
    aug 26 19:15:01 arch_daboka NetworkManager[527]: <info> Activation (wlp2s0) Stage 3 of 5 (IP Configure Start) started...
    aug 26 19:15:01 arch_daboka NetworkManager[527]: <info> (wlp2s0): device state change: config -> ip-config (reason 'none') [50 70 0]
    aug 26 19:15:01 arch_daboka NetworkManager[527]: <info> Activation (wlp2s0) Beginning DHCPv4 transaction (timeout in 45 seconds)
    aug 26 19:15:01 arch_daboka NetworkManager[527]: <info> dhcpcd started with pid 3599
    aug 26 19:15:01 arch_daboka NetworkManager[527]: <info> Activation (wlp2s0) Stage 3 of 5 (IP Configure Start) complete.
    aug 26 19:15:01 arch_daboka dhcpcd[3599]: version 6.4.3 starting
    aug 26 19:15:01 arch_daboka NetworkManager[527]: dhcpcd[3599]: version 6.4.3 starting
    aug 26 19:15:01 arch_daboka NetworkManager[527]: <info> (wlp2s0): DHCPv4 state changed nbi -> preinit
    aug 26 19:15:01 arch_daboka dhcpcd[3599]: DUID 00:01:00:01:1b:7c:0d:d6:28:d2:44:7f:89:66
    aug 26 19:15:01 arch_daboka dhcpcd[3599]: wlp2s0: IAID 65:59:c9:b5
    aug 26 19:15:01 arch_daboka NetworkManager[527]: dhcpcd[3599]: DUID 00:01:00:01:1b:7c:0d:d6:28:d2:44:7f:89:66
    aug 26 19:15:01 arch_daboka NetworkManager[527]: dhcpcd[3599]: wlp2s0: IAID 65:59:c9:b5
    aug 26 19:15:01 arch_daboka dhcpcd[3599]: wlp2s0: soliciting an IPv6 router
    aug 26 19:15:01 arch_daboka NetworkManager[527]: dhcpcd[3599]: wlp2s0: soliciting an IPv6 router
    aug 26 19:15:02 arch_daboka dhcpcd[3599]: wlp2s0: rebinding lease of 192.168.1.137
    aug 26 19:15:02 arch_daboka NetworkManager[527]: dhcpcd[3599]: wlp2s0: rebinding lease of 192.168.1.137
    aug 26 19:15:07 arch_daboka dhcpcd[3599]: wlp2s0: leased 192.168.1.137 for 86400 seconds
    aug 26 19:15:07 arch_daboka dhcpcd[3599]: wlp2s0: adding route to 192.168.1.0/24
    aug 26 19:15:07 arch_daboka NetworkManager[527]: dhcpcd[3599]: wlp2s0: leased 192.168.1.137 for 86400 seconds
    aug 26 19:15:07 arch_daboka NetworkManager[527]: dhcpcd[3599]: wlp2s0: adding route to 192.168.1.0/24
    aug 26 19:15:07 arch_daboka NetworkManager[527]: <info> (wlp2s0): DHCPv4 state changed preinit -> reboot
    aug 26 19:15:07 arch_daboka NetworkManager[527]: <info> address 192.168.1.137
    aug 26 19:15:07 arch_daboka NetworkManager[527]: <info> plen 24 (255.255.255.0)
    aug 26 19:15:07 arch_daboka NetworkManager[527]: <info> gateway 192.168.1.1
    aug 26 19:15:07 arch_daboka NetworkManager[527]: <info> server identifier 192.168.1.1
    aug 26 19:15:07 arch_daboka NetworkManager[527]: <info> lease time 86400
    aug 26 19:15:07 arch_daboka NetworkManager[527]: <info> hostname 'arch_daboka'
    aug 26 19:15:07 arch_daboka NetworkManager[527]: <info> nameserver '192.168.1.1'
    aug 26 19:15:07 arch_daboka NetworkManager[527]: <info> domain name 'chello.hu'
    aug 26 19:15:07 arch_daboka NetworkManager[527]: <info> Activation (wlp2s0) Stage 5 of 5 (IPv4 Configure Commit) scheduled...
    aug 26 19:15:07 arch_daboka NetworkManager[527]: <info> Activation (wlp2s0) Stage 5 of 5 (IPv4 Commit) started...
    aug 26 19:15:07 arch_daboka NetworkManager[527]: <info> (wlp2s0): device state change: ip-config -> ip-check (reason 'none') [70 80 0]
    aug 26 19:15:07 arch_daboka NetworkManager[527]: <info> Activation (wlp2s0) Stage 5 of 5 (IPv4 Commit) complete.
    aug 26 19:15:07 arch_daboka NetworkManager[527]: <info> (wlp2s0): device state change: ip-check -> secondaries (reason 'none') [80 90 0]
    aug 26 19:15:07 arch_daboka NetworkManager[527]: <info> (wlp2s0): device state change: secondaries -> activated (reason 'none') [90 100 0]
    aug 26 19:15:07 arch_daboka NetworkManager[527]: <info> NetworkManager state is now CONNECTED_LOCAL
    aug 26 19:15:07 arch_daboka NetworkManager[527]: <info> NetworkManager state is now CONNECTED_GLOBAL
    aug 26 19:15:07 arch_daboka NetworkManager[527]: <info> Policy set 'Bokros' (wlp2s0) as default for IPv4 routing and DNS.
    aug 26 19:15:07 arch_daboka NetworkManager[527]: <info> Writing DNS information to /usr/bin/resolvconf
    aug 26 19:15:07 arch_daboka NetworkManager[527]: <info> Activation (wlp2s0) successful, device activated.
    aug 26 19:15:14 arch_daboka dhcpcd[3599]: wlp2s0: no IPv6 Routers available
    aug 26 19:15:14 arch_daboka NetworkManager[527]: dhcpcd[3599]: wlp2s0: no IPv6 Routers available
    aug 26 19:15:34 arch_daboka NetworkManager[527]: <info> (enp1s0): link connected
    aug 26 19:15:34 arch_daboka NetworkManager[527]: <info> (enp1s0): device state change: unavailable -> disconnected (reason 'carrier-changed') [20 30 4
    aug 26 19:15:34 arch_daboka NetworkManager[527]: <info> Auto-activating connection '1. vezetékes kapcsolat'.
    aug 26 19:15:34 arch_daboka NetworkManager[527]: <info> Activation (enp1s0) starting connection '1. vezetékes kapcsolat'
    aug 26 19:15:34 arch_daboka NetworkManager[527]: <info> Activation (enp1s0) Stage 1 of 5 (Device Prepare) scheduled...
    aug 26 19:15:34 arch_daboka NetworkManager[527]: <info> Activation (enp1s0) Stage 1 of 5 (Device Prepare) started...
    aug 26 19:15:34 arch_daboka NetworkManager[527]: <info> (enp1s0): device state change: disconnected -> prepare (reason 'none') [30 40 0]
    aug 26 19:15:34 arch_daboka NetworkManager[527]: <info> Activation (enp1s0) Stage 2 of 5 (Device Configure) scheduled...
    aug 26 19:15:34 arch_daboka NetworkManager[527]: <info> Activation (enp1s0) Stage 1 of 5 (Device Prepare) complete.
    aug 26 19:15:34 arch_daboka NetworkManager[527]: <info> Activation (enp1s0) Stage 2 of 5 (Device Configure) starting...
    aug 26 19:15:34 arch_daboka NetworkManager[527]: <info> (enp1s0): device state change: prepare -> config (reason 'none') [40 50 0]
    aug 26 19:15:34 arch_daboka NetworkManager[527]: <info> Activation (enp1s0) Stage 2 of 5 (Device Configure) successful.
    aug 26 19:15:34 arch_daboka NetworkManager[527]: <info> Activation (enp1s0) Stage 3 of 5 (IP Configure Start) scheduled.
    aug 26 19:15:34 arch_daboka NetworkManager[527]: <info> Activation (enp1s0) Stage 2 of 5 (Device Configure) complete.
    aug 26 19:15:34 arch_daboka NetworkManager[527]: <info> Activation (enp1s0) Stage 3 of 5 (IP Configure Start) started...
    aug 26 19:15:34 arch_daboka NetworkManager[527]: <info> (enp1s0): device state change: config -> ip-config (reason 'none') [50 70 0]
    aug 26 19:15:34 arch_daboka NetworkManager[527]: <info> Activation (enp1s0) Beginning DHCPv4 transaction (timeout in 45 seconds)
    aug 26 19:15:34 arch_daboka NetworkManager[527]: <info> dhcpcd started with pid 4322
    aug 26 19:15:34 arch_daboka NetworkManager[527]: <info> Activation (enp1s0) Stage 3 of 5 (IP Configure Start) complete.
    aug 26 19:15:34 arch_daboka dhcpcd[4322]: version 6.4.3 starting
    aug 26 19:15:34 arch_daboka dhcpcd[4322]: DUID 00:01:00:01:1b:7c:0d:d6:28:d2:44:7f:89:66
    aug 26 19:15:34 arch_daboka dhcpcd[4322]: enp1s0: IAID 44:7f:89:66
    aug 26 19:15:34 arch_daboka NetworkManager[527]: dhcpcd[4322]: version 6.4.3 starting
    aug 26 19:15:34 arch_daboka NetworkManager[527]: dhcpcd[4322]: DUID 00:01:00:01:1b:7c:0d:d6:28:d2:44:7f:89:66
    aug 26 19:15:34 arch_daboka NetworkManager[527]: dhcpcd[4322]: enp1s0: IAID 44:7f:89:66
    aug 26 19:15:34 arch_daboka NetworkManager[527]: <info> (enp1s0): DHCPv4 state changed nbi -> preinit
    aug 26 19:15:34 arch_daboka dhcpcd[4322]: enp1s0: soliciting an IPv6 router
    aug 26 19:15:34 arch_daboka NetworkManager[527]: dhcpcd[4322]: enp1s0: soliciting an IPv6 router
    aug 26 19:15:34 arch_daboka dhcpcd[4322]: enp1s0: rebinding lease of 192.168.1.138
    aug 26 19:15:34 arch_daboka NetworkManager[527]: dhcpcd[4322]: enp1s0: rebinding lease of 192.168.1.138
    aug 26 19:15:39 arch_daboka dhcpcd[4322]: enp1s0: leased 192.168.1.138 for 86400 seconds
    aug 26 19:15:39 arch_daboka dhcpcd[4322]: enp1s0: adding route to 192.168.1.0/24
    aug 26 19:15:39 arch_daboka NetworkManager[527]: dhcpcd[4322]: enp1s0: leased 192.168.1.138 for 86400 seconds
    aug 26 19:15:39 arch_daboka NetworkManager[527]: dhcpcd[4322]: enp1s0: adding route to 192.168.1.0/24
    aug 26 19:15:39 arch_daboka NetworkManager[527]: <info> (enp1s0): DHCPv4 state changed preinit -> reboot
    aug 26 19:15:39 arch_daboka NetworkManager[527]: <info> address 192.168.1.138
    aug 26 19:15:39 arch_daboka NetworkManager[527]: <info> plen 24 (255.255.255.0)
    aug 26 19:15:39 arch_daboka NetworkManager[527]: <info> gateway 192.168.1.1
    aug 26 19:15:39 arch_daboka NetworkManager[527]: <info> server identifier 192.168.1.1
    aug 26 19:15:39 arch_daboka NetworkManager[527]: <info> lease time 86400
    aug 26 19:15:39 arch_daboka NetworkManager[527]: <info> hostname 'arch_daboka'
    aug 26 19:15:39 arch_daboka NetworkManager[527]: <info> nameserver '192.168.1.1'
    aug 26 19:15:39 arch_daboka NetworkManager[527]: <info> domain name 'chello.hu'
    aug 26 19:15:39 arch_daboka NetworkManager[527]: <info> Activation (enp1s0) Stage 5 of 5 (IPv4 Configure Commit) scheduled...
    aug 26 19:15:39 arch_daboka NetworkManager[527]: <info> Activation (enp1s0) Stage 5 of 5 (IPv4 Commit) started...
    aug 26 19:15:39 arch_daboka NetworkManager[527]: <info> (enp1s0): device state change: ip-config -> ip-check (reason 'none') [70 80 0]
    aug 26 19:15:39 arch_daboka NetworkManager[527]: <info> Activation (enp1s0) Stage 5 of 5 (IPv4 Commit) complete.
    aug 26 19:15:39 arch_daboka NetworkManager[527]: <info> (enp1s0): device state change: ip-check -> secondaries (reason 'none') [80 90 0]
    aug 26 19:15:39 arch_daboka NetworkManager[527]: <info> (enp1s0): device state change: secondaries -> activated (reason 'none') [90 100 0]
    aug 26 19:15:40 arch_daboka NetworkManager[527]: <info> NetworkManager state is now CONNECTED_LOCAL
    aug 26 19:15:40 arch_daboka NetworkManager[527]: <info> NetworkManager state is now CONNECTED_GLOBAL
    aug 26 19:15:40 arch_daboka NetworkManager[527]: <info> Policy set '1. vezetékes kapcsolat' (enp1s0) as default for IPv4 routing and DNS.
    aug 26 19:15:40 arch_daboka NetworkManager[527]: <info> Writing DNS information to /usr/bin/resolvconf
    aug 26 19:15:40 arch_daboka NetworkManager[527]: <info> Activation (enp1s0) successful, device activated.
    aug 26 19:15:47 arch_daboka dhcpcd[4322]: enp1s0: no IPv6 Routers available
    aug 26 19:15:47 arch_daboka NetworkManager[527]: dhcpcd[4322]: enp1s0: no IPv6 Routers available
    ping -c 10 192.168.1.1
    PING 192.168.1.1 (192.168.1.1) 56(84) bytes of data.
    64 bytes from 192.168.1.1: icmp_seq=1 ttl=64 time=4.38 ms
    64 bytes from 192.168.1.1: icmp_seq=2 ttl=64 time=2.79 ms
    64 bytes from 192.168.1.1: icmp_seq=3 ttl=64 time=4.89 ms
    64 bytes from 192.168.1.1: icmp_seq=4 ttl=64 time=5.30 ms
    64 bytes from 192.168.1.1: icmp_seq=5 ttl=64 time=1.59 ms
    64 bytes from 192.168.1.1: icmp_seq=6 ttl=64 time=1.61 ms
    64 bytes from 192.168.1.1: icmp_seq=7 ttl=64 time=4.37 ms
    64 bytes from 192.168.1.1: icmp_seq=8 ttl=64 time=2.40 ms
    64 bytes from 192.168.1.1: icmp_seq=9 ttl=64 time=6.47 ms
    --- 192.168.1.1 ping statistics ---
    10 packets transmitted, 9 received, 10% packet loss, time 9014ms
    rtt min/avg/max/mdev = 1.599/3.759/6.471/1.627 ms
    ping -c 100 8.8.8.8 - it's not completely disconnected, but it's always 8 packets at once that are received
    PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
    64 bytes from 8.8.8.8: icmp_seq=20 ttl=46 time=41.7 ms
    64 bytes from 8.8.8.8: icmp_seq=21 ttl=46 time=40.0 ms
    64 bytes from 8.8.8.8: icmp_seq=22 ttl=46 time=38.8 ms
    64 bytes from 8.8.8.8: icmp_seq=23 ttl=46 time=39.3 ms
    64 bytes from 8.8.8.8: icmp_seq=24 ttl=46 time=41.8 ms
    64 bytes from 8.8.8.8: icmp_seq=25 ttl=46 time=38.4 ms
    64 bytes from 8.8.8.8: icmp_seq=26 ttl=46 time=38.4 ms
    64 bytes from 8.8.8.8: icmp_seq=27 ttl=46 time=38.0 ms
    64 bytes from 8.8.8.8: icmp_seq=56 ttl=46 time=43.4 ms
    64 bytes from 8.8.8.8: icmp_seq=57 ttl=46 time=49.8 ms
    64 bytes from 8.8.8.8: icmp_seq=58 ttl=46 time=40.2 ms
    64 bytes from 8.8.8.8: icmp_seq=59 ttl=46 time=44.3 ms
    64 bytes from 8.8.8.8: icmp_seq=60 ttl=46 time=38.5 ms
    64 bytes from 8.8.8.8: icmp_seq=61 ttl=46 time=43.4 ms
    64 bytes from 8.8.8.8: icmp_seq=62 ttl=46 time=39.2 ms
    64 bytes from 8.8.8.8: icmp_seq=63 ttl=46 time=40.5 ms
    64 bytes from 8.8.8.8: icmp_seq=92 ttl=46 time=38.3 ms
    64 bytes from 8.8.8.8: icmp_seq=93 ttl=46 time=43.7 ms
    64 bytes from 8.8.8.8: icmp_seq=94 ttl=46 time=42.3 ms
    64 bytes from 8.8.8.8: icmp_seq=95 ttl=46 time=46.6 ms
    64 bytes from 8.8.8.8: icmp_seq=96 ttl=46 time=44.9 ms
    64 bytes from 8.8.8.8: icmp_seq=97 ttl=46 time=42.9 ms
    64 bytes from 8.8.8.8: icmp_seq=98 ttl=46 time=41.7 ms
    64 bytes from 8.8.8.8: icmp_seq=99 ttl=46 time=37.8 ms
    --- 8.8.8.8 ping statistics ---
    100 packets transmitted, 24 received, 76% packet loss, time 99062ms
    rtt min/avg/max/mdev = 37.886/41.455/49.829/3.000 ms
    cat /etc/dhcpcd.conf - I tried clientid instead of duid and disabling IPv6, but neither of those helped.
    # A sample configuration for dhcpcd.
    # See dhcpcd.conf(5) for details.
    # Inform the DHCP server of our hostname for DDNS.
    hostname
    # Use the hardware address of the interface for the Client ID.
    #clientid
    # or
    # Use the same DUID + IAID as set in DHCPv6 for DHCPv4 ClientID as per RFC4361.
    duid
    # Persist interface configuration when dhcpcd exits.
    persistent
    # Rapid commit support.
    # Safe to enable by default because it requires the equivalent option set
    # on the server to actually work.
    option rapid_commit
    # A list of options to request from the DHCP server.
    option domain_name_servers, domain_name, domain_search, host_name
    option classless_static_routes
    # Most distributions have NTP support.
    option ntp_servers
    # Respect the network MTU.
    # Some interface drivers reset when changing the MTU so disabled by default.
    #option interface_mtu
    # A ServerID is required by RFC2131.
    require dhcp_server_identifier
    # Generate Stable Private IPv6 Addresses instead of hardware based ones
    slaac private
    # A hook script is provided to lookup the hostname if not set by the DHCP
    # server, but it should not be run by default.
    nohook lookup-hostname
    #noipv4ll
    #Disable IPv6
    #noipv6rs
    #noipv6
    cat /etc/NetworkManager/NetworkManager.conf
    [main]
    plugins=keyfile
    dhcp=dhcpcd
    ## Set static hostname
    #[keyfile]
    #hostname=foobar
    ## HTTP-based connectivity check
    #[connectivity]
    #uri=http://nmcheck.gnome.org/check_network_status.txt
    I couldn't find anything else to append, but if there are other log or conf files or anything else, which would help solving the problem, I should put here, please tell me.

    Try to use dhclient perhaps?  Might I also suggest letting systemd deal with the dhcp issue and not NM.  That may seem incongruous but it is possible NM is mis-handling the dhcp hand-off to the network card.  I'm no guru but I got thinking about this when I saw this in your output:
    aug 26 19:15:39 arch_daboka NetworkManager[527]: <info> (enp1s0): device state change: ip-check -> secondaries (reason 'none') [80 90 0]
    aug 26 19:15:39 arch_daboka NetworkManager[527]: <info> (enp1s0): device state change: secondaries -> activated (reason 'none') [90 100 0]
    aug 26 19:15:40 arch_daboka NetworkManager[527]: <info> NetworkManager state is now CONNECTED_LOCAL
    It is very possible that I'm mis-interpreting this information so please take it with a boulder of salt. 

  • Lirc doesn't work (Lifeview FlyVideo 98FM LR50) SOLVED

    Hi.  (Solution below).
    I've a problem with lirc. My card used to work with exactly the same configuration for years (first on Slack, then Ubuntu).
    That's what I've done (btw it's my first day with Arch, and I'm impressed):
    cp /usr/share/lirc/remotes/life-view/lircd.conf.flyvideo /etc/lircd.conf
    [root@greblushq greblus]# uname -r
    2.6.19-ARCH
    [root@greblushq greblus]# pacman -Q | grep lirc
    lirc 0.8.0.20061009-2
    lirc-utils 0.8.0.20061009-2
    i'm loading the bttv module this way:
    modprobe bttv card=56 radio=1 pll=1
    (I've added bttv lirc_dev lirc_gpio to the rc.conf MODULES  and lircd to DAEMONS, also options bttv card=56 radio=1 pll=1 went to /etc/modprobe.conf, but doing this manually should be the same)
    then
    modprobe lirc_dev
    modprobe lirc_gpio
    [root@greblushq greblus]# /etc/rc.d/lircd start
    :: Starting LIRC Daemon                                      [DONE]
    now, when i start irexec (as a normal user or root) and then  irw, it's starting, but irw doesn't show buttons i press and it's... not working.
    One thing that bothers me is the lack of lifevideo among the drivers supported by lircd (lircd --drivers=help).
    I was trying to recompile it with configure --with-driver=flyvideo and lirc builds fine, but I'm unable to build lirc-utils (no linux.h header). What's strange they're compiled --with-driver=all so flyvideo should be compiled-in.
    What should I do? Were there any changes I'm simply not aware of, or I'm doing something wrong?
    ---SOLVED---
    Finally I have it working.
    Something must have changed in the recent kernels. My card isn't automatically detected when loading bttv module (and never was), so I was loading the module as above, with card=56 modprobe option. It was working, but recently (2.6.19) mode2 -d /dev/lirc0 showed that there was nothing going on when buttons were pressed.
    I started fiddling with different card ids and with card=35 mode2 outputed some keycodes. That was it.
    All I had to do, was to generate a new lircd.conf using irrecord. Now it works even better than before (i can press buttons when the remote is in an arbitrary position).
    lspci says it's 01:0a.0 Multimedia video controller: Brooktree Corporation Bt878 Video Capture (rev 11), the card is a flyvideo 98 with fm tuner.
    Now i've a perfectly working Arch installation (lirc was the last thing missing from my previous distro).
    Automatically generated lircd.conf file:
    begin remote
      name  flyvideo
      bits            8
      eps            30
      aeps          100
      one             0     0
      zero            0     0
      gap          199963
      toggle_bit      0
          begin codes
              1                        0x18
              2                        0x04
              3                        0x14
              4                        0x1C
              5                        0x02
              6                        0x12
              7                        0x1A
              8                        0x06
              9                        0x16
              0                        0x1E
              POWER                    0x00
              FULL_SCREEN              0x08
              CHAN_PLUS                0x09
              CHAN_MINUS               0x19
              SQUARE                   0x17
              MUTE                     0x1B
              MOUSE_MODE               0x10
              ENTER                    0x01
              DOWN                     0x13
              UP                       0x0E
              ESC                      0x0B
              RETURN                   0x03
              VOL_PLUS                 0x05
              VOL_MINUS                0x1D
              MENU                     0x0C
              RIGHT                    0x15
              INC                      0x0A
              DEC                      0x0D
          end codes
    end remote

    Did you try to build it directly from the source from the lirc site? or did you recompile it with abs? abs should normally not give any problem.
    I recommend srcpac to make updates easy.
    This is really neat .
    Here's what I've done:
    1. first, to be absolutely sure i've what i need I ran abs to get the build system files.
    2. installed srcpac, then added:
    conf_lirc=('#--with-driver=all#--with-driver=flyvideo#')
    conf_lircXutils=('#--with-driver=all#--with-driver=flyvideo#')
    to the srcpac.conf, srcpac -So shows that the substitutions are correct.
    srcpac -Sb lirc went fine, but lirc-utils failed:
    /var/abs/extra/system/lirc-utils/src/lirc/drivers/lirc_dev/lirc_dev.c:35:26: error: linux/config.h: No such file or directory
    make[5]: *** [/var/abs/extra/system/lirc-utils/src/lirc/drivers/lirc_dev/lirc_dev.o] Error 1
    I found on Google that linux/config.h should be replaced by linux/autoconf.h, after this change it builds, but still lircd --driver=help shows only the default driver (no flyvideo) and it doesn't work.

  • Cursor style doesn't work on web forms

    Hi All,
    I have a FORM (6i) from which I run the report by clicking a button .
    I used to set_application_property to set cursor style to BUSY untill I get report output . It works in client/server but doesn't work in Web .
    Can I set this in any other way or is there any way we can show a progress bar in web FORMS without using ActiveX ? .
    Thanks in Advance,
    Sampath

    Hi Duncan,
    Thank you for your update . I didn't get "try a call to synchronize "
    in your note did you want me to run the report in Synchronous mode ?
    Thanks,
    Sampath
    Cursor Style does work on the Web (at least in 6i, there was an old bug in 4.5) - you shouldn't have to but try a call to synchronize after the set_application_property call.

  • [SOLVED] - xset at startup doesn't work

    I use the following command to set my screensaver options
    xset dpms 30 60 300
    After reading the Arch wiki, I found out that this can be made permanent by adding this to the xorg.conf or putting it in ~/.xprofile
    Contents of xorg.conf
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # nvidia-xconfig: version 1.0 (buildmeister@builder75) Tue Dec 8 21:04:28 PST 2009
    Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0" 0 0
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0" "CorePointer"
    Option "StandbyTime" "2"
    Option "SuspendTime" "3"
    Option "OffTime" "5"
    EndSection
    Section "Files"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "Monitor"
    Identifier "Dell Inspiron 1520 WXGA+ LCD"
    VendorName "Dell"
    ModelName "Unknown"
    HorizSync 28.0 - 33.0
    VertRefresh 43.0 - 72.0
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    Option "NoLogo" "true"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Section "InputDevice"
    Identifier "Touchpad"
    Driver "synaptics"
    Option "Device" "/dev/input/mouse0"
    Option "Protocol" "auto-dev"
    Option "LeftEdge" "1700"
    Option "RightEdge" "5300"
    Option "TopEdge" "1700"
    Option "BottomEdge" "4200"
    Option "FingerLow" "25"
    Option "FingerHigh" "30"
    Option "MaxTapTime" "180"
    Option "MaxTapMove" "220"
    Option "VertScrollDelta" "100"
    Option "MinSpeed" "0.06"
    Option "MaxSpeed" "0.12"
    Option "AccelFactor" "0.0010"
    Option "SHMConfig" "on"
    Option "CircularScrolling" "1"
    Option "CircScrollTrigger" "0"
    EndSection
    Section "ServerFlags"
    Option "DontZap" "false"
    Option "BlankTime" "0.1"
    Option "StandbyTime" "0.5"
    Option "SuspendTime" "1"
    Option "OffTime" "5"
    EndSection
    Contents of ~/.xprofile
    xset dpms 30 60 300
    I even added this to crontab
    0 * * * * ~/Wallpapers/change-background-folder.py
    0 * * * * /usr/bin/xset s 30
    0 * * * * /usr/bin/xset dpms 60 120 300
    @reboot ID=screensaver AFTER=2m /usr/bin/xset s 30
    @reboot ID=monitor AFTER=2m /usr/bin/xset dpms 60 120 300
    @reboot ID=vu AFTER=1m vuze
    Still after doing all this, when I give xset q after a reboot, I get
    [theta@boolean-pc ~]$ xset q
    Keyboard Control:
    auto repeat: on key click percent: 0 LED mask: 00000000
    XKB indicators:
    00: Caps Lock: off 01: Num Lock: off 02: Scroll Lock: off
    03: Compose: off 04: Kana: off 05: Sleep: off
    06: Suspend: off 07: Mute: off 08: Misc: off
    09: Mail: off 10: Charging: off 11: Shift Lock: off
    12: Group 2: off 13: Mouse Keys: off
    auto repeat delay: 500 repeat rate: 30
    auto repeating keys: 00ffffffdffffbbf
    fadfffefffedffff
    9fffffffffffffff
    fff7ffffffffffff
    bell percent: 50 bell pitch: 400 bell duration: 100
    Pointer Control:
    acceleration: 3/1 threshold: 4
    Screen Saver:
    prefer blanking: yes allow exposures: yes
    timeout: 600 cycle: 600
    Colors:
    default colormap: 0x20 BlackPixel: 0 WhitePixel: 16777215
    Font Path:
    /usr/share/fonts/misc/,/usr/share/fonts/TTF/,/usr/share/fonts/Type1/,/usr/share/fonts/100dpi/,/usr/share/fonts/75dpi/,built-ins
    DPMS (Energy Star):
    Standby: 0 Suspend: 0 Off: 0
    DPMS is Enabled
    Monitor is On
    Font cache:
    Server does not have the FontCache Extension
    The parameters are still all 0.
    Please suggest a solution.
    Apoorv
    Last edited by theta (2011-08-02 15:56:06)

    jasonwryan wrote:
    If you have set up your .xinitrc the way karol suggests and it still doesn't work, you could delay it kicking in until X has finished loading
    (sleep 15s && xset dpms 30 60 300) &
    exec yourwm
    That may get around the problem bernarcher describes...
    Thank you! This works very well for me.
    It's the only way I can get it to work.
    For the records, so the smart people can find the problem, here is my xorg.conf:
    Section "ServerLayout"
    Identifier "ServerLayout0"
    Screen 0 "BenQ" 0 0
    #Option "BlankTime" "0"
    Option "StandbyTime" "10"
    Option "SuspendTime" "20"
    Option "OffTime" "30"
    EndSection
    Section "Screen"
    Identifier "BenQ"
    Device "Intel4000"
    Monitor "HDMI2"
    DefaultDepth 24
    SubSection "Display"
    #Depth "24"
    EndSubSection
    EndSection
    Section "Monitor"
    Identifier "HDMI2"
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "Intel4000"
    Driver "intel"
    BusID "PCI:0:2:0"
    Option "AccelMethod" "sna"
    Option "TearFree" "true"
    EndSection
    # Read and parsed by systemd-localed. It's probably wise not to edit this manually too freely.
    Section "InputClass"
    Identifier "system-keyboard"
    MatchIsKeyboard "on"
    Option "XkbLayout" "se"
    EndSection
    # Catch-all evdev loader for udev-based systems
    # We don't simply match on any device since that also adds accelerometers
    # and other devices that we don't really want to use. The list below
    # matches everything but joysticks.
    Section "InputClass"
    Identifier "evdev pointer catchall"
    MatchIsPointer "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    EndSection
    Section "InputClass"
    Identifier "evdev keyboard catchall"
    MatchIsKeyboard "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    EndSection
    Section "InputClass"
    Identifier "evdev touchpad catchall"
    MatchIsTouchpad "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    EndSection
    Section "InputClass"
    Identifier "evdev tablet catchall"
    MatchIsTablet "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    EndSection
    Section "InputClass"
    Identifier "evdev touchscreen catchall"
    MatchIsTouchscreen "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    EndSection
    Xorg seems to not care about my settings in xorg.conf and sets DPMS values to "0":
    $ xset -q
    Keyboard Control:
    auto repeat: on key click percent: 0 LED mask: 00000002
    XKB indicators:
    00: Caps Lock: off 01: Num Lock: on 02: Scroll Lock: off
    03: Compose: off 04: Kana: off 05: Sleep: off
    06: Suspend: off 07: Mute: off 08: Misc: off
    09: Mail: off 10: Charging: off 11: Shift Lock: off
    12: Group 2: off 13: Mouse Keys: off
    auto repeat delay: 500 repeat rate: 33
    auto repeating keys: 00ffffffdffffbbf
    fadfffefffedffff
    9fffffffffffffff
    fff7ffffffffffff
    bell percent: 50 bell pitch: 400 bell duration: 100
    Pointer Control:
    acceleration: 2/1 threshold: 4
    Screen Saver:
    prefer blanking: yes allow exposures: yes
    timeout: 0 cycle: 0
    Colors:
    default colormap: 0x22 BlackPixel: 0x0 WhitePixel: 0xffffff
    Font Path:
    /usr/share/fonts/misc/,/usr/share/fonts/TTF/,/usr/share/fonts/Type1/,built-ins
    DPMS (Energy Star):
    Standby: 0 Suspend: 0 Off: 0
    DPMS is Enabled
    Monitor is On
    And the xorg log:
    [ 17738.153]
    X.Org X Server 1.15.1
    Release Date: 2014-04-13
    [ 17738.194] X Protocol Version 11, Revision 0
    [ 17738.208] Build Operating System: Linux 3.14.0-4-ARCH x86_64
    [ 17738.223] Current Operating System: Linux arch6 3.14.1-1-ARCH #1 SMP PREEMPT Mon Apr 14 20:40:47 CEST 2014 x86_64
    [ 17738.223] Kernel command line: console=tty0 xen-pciback.hide=(01:00.0)(01:00.1)(03:00.0)(02:00.0)(00:14.0)(00:1d.0) root=/dev/VG/Aroot rw
    [ 17738.254] Build Date: 14 April 2014 08:39:09AM
    [ 17738.269]
    [ 17738.285] Current version of pixman: 0.32.4
    [ 17738.314] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 17738.314] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 17738.375] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Apr 29 22:10:19 2014
    [ 17738.390] (==) Using config file: "/etc/X11/xorg.conf"
    [ 17738.406] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 17738.406] (==) ServerLayout "ServerLayout0"
    [ 17738.406] (**) |-->Screen "BenQ" (0)
    [ 17738.406] (**) | |-->Monitor "HDMI2"
    [ 17738.406] (**) | |-->Device "Intel4000"
    [ 17738.406] (**) Option "StandbyTime" "10"
    [ 17738.406] (**) Option "SuspendTime" "20"
    [ 17738.406] (**) Option "OffTime" "30"
    [ 17738.406] (==) Automatically adding devices
    [ 17738.406] (==) Automatically enabling devices
    [ 17738.406] (==) Automatically adding GPU devices
    [ 17738.406] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 17738.406] Entry deleted from font path.
    [ 17738.406] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 17738.406] Entry deleted from font path.
    [ 17738.406] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 17738.406] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 17738.406] Entry deleted from font path.
    [ 17738.406] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 17738.406] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 17738.406] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 17738.406] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 17738.406] (II) Loader magic: 0x804c80
    [ 17738.406] (II) Module ABI versions:
    [ 17738.406] X.Org ANSI C Emulation: 0.4
    [ 17738.406] X.Org Video Driver: 15.0
    [ 17738.406] X.Org XInput driver : 20.0
    [ 17738.406] X.Org Server Extension : 8.0
    [ 17738.406] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 17738.408] (--) PCI:*(0:0:2:0) 8086:0162:1458:d000 rev 9, Mem @ 0xf4400000/4194304, 0xc0000000/268435456, I/O @ 0x0000f000/64
    [ 17738.408] (--) PCI: (0:1:0:0) 1002:67b1:1002:0b00 rev 0, Mem @ 0xd0000000/268435456, 0xe0000000/8388608, 0xf4b00000/262144, I/O @ 0x0000e000/256, BIOS @ 0x????????/131072
    [ 17738.408] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 17738.424] Initializing built-in extension Generic Event Extension
    [ 17738.439] Initializing built-in extension SHAPE
    [ 17738.454] Initializing built-in extension MIT-SHM
    [ 17738.468] Initializing built-in extension XInputExtension
    [ 17738.482] Initializing built-in extension XTEST
    [ 17738.495] Initializing built-in extension BIG-REQUESTS
    [ 17738.509] Initializing built-in extension SYNC
    [ 17738.523] Initializing built-in extension XKEYBOARD
    [ 17738.536] Initializing built-in extension XC-MISC
    [ 17738.548] Initializing built-in extension SECURITY
    [ 17738.561] Initializing built-in extension XINERAMA
    [ 17738.573] Initializing built-in extension XFIXES
    [ 17738.585] Initializing built-in extension RENDER
    [ 17738.597] Initializing built-in extension RANDR
    [ 17738.608] Initializing built-in extension COMPOSITE
    [ 17738.620] Initializing built-in extension DAMAGE
    [ 17738.631] Initializing built-in extension MIT-SCREEN-SAVER
    [ 17738.643] Initializing built-in extension DOUBLE-BUFFER
    [ 17738.654] Initializing built-in extension RECORD
    [ 17738.665] Initializing built-in extension DPMS
    [ 17738.677] Initializing built-in extension Present
    [ 17738.688] Initializing built-in extension DRI3
    [ 17738.700] Initializing built-in extension X-Resource
    [ 17738.711] Initializing built-in extension XVideo
    [ 17738.722] Initializing built-in extension XVideo-MotionCompensation
    [ 17738.734] Initializing built-in extension XFree86-VidModeExtension
    [ 17738.746] Initializing built-in extension XFree86-DGA
    [ 17738.757] Initializing built-in extension XFree86-DRI
    [ 17738.769] Initializing built-in extension DRI2
    [ 17738.769] (II) "glx" will be loaded by default.
    [ 17738.769] (II) LoadModule: "dri2"
    [ 17738.769] (II) Module "dri2" already built-in
    [ 17738.769] (II) LoadModule: "glamoregl"
    [ 17738.769] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 17738.770] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 17738.770] compiled for 1.15.0, module version = 0.6.0
    [ 17738.770] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 17738.770] (II) LoadModule: "glx"
    [ 17738.770] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 17738.770] (II) Module glx: vendor="X.Org Foundation"
    [ 17738.770] compiled for 1.15.1, module version = 1.0.0
    [ 17738.771] ABI class: X.Org Server Extension, version 8.0
    [ 17738.771] (==) AIGLX enabled
    [ 17738.782] Loading extension GLX
    [ 17738.782] (II) LoadModule: "intel"
    [ 17738.782] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 17738.782] (II) Module intel: vendor="X.Org Foundation"
    [ 17738.783] compiled for 1.15.0, module version = 2.99.911
    [ 17738.783] Module class: X.Org Video Driver
    [ 17738.783] ABI class: X.Org Video Driver, version 15.0
    [ 17738.783] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
    i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
    915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
    Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
    [ 17738.783] (II) intel: Driver for Intel(R) HD Graphics: 2000-5000
    [ 17738.783] (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100
    [ 17738.783] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200
    [ 17738.783] (++) using VT number 1
    [ 17738.783] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 4000
    [ 17738.783] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx
    [ 17738.783] (**) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 17738.783] (==) intel(0): RGB weight 888
    [ 17738.783] (==) intel(0): Default visual is TrueColor
    [ 17738.783] (**) intel(0): Option "AccelMethod" "sna"
    [ 17738.783] (**) intel(0): Option "TearFree" "true"
    [ 17738.783] (**) intel(0): Framebuffer tiled
    [ 17738.784] (**) intel(0): Pixmaps tiled
    [ 17738.784] (**) intel(0): "Tear free" enabled
    [ 17738.784] (**) intel(0): Forcing per-crtc-pixmaps? no
    [ 17738.784] (II) intel(0): Output VGA1 using monitor section HDMI2
    [ 17738.784] (II) intel(0): Output HDMI1 has no monitor section
    [ 17738.784] (II) intel(0): Output DP1 has no monitor section
    [ 17738.784] (II) intel(0): Output HDMI2 using monitor section HDMI2
    [ 17738.784] (II) intel(0): Output DP2 has no monitor section
    [ 17738.784] (II) intel(0): Output VIRTUAL1 has no monitor section
    [ 17738.784] (--) intel(0): Output HDMI2 using initial mode 1920x1080 on pipe 0
    [ 17738.784] (==) intel(0): DPI set to (96, 96)
    [ 17738.784] (II) Loading sub module "dri2"
    [ 17738.784] (II) LoadModule: "dri2"
    [ 17738.784] (II) Module "dri2" already built-in
    [ 17738.784] (==) Depth 24 pixmap format is 32 bpp
    [ 17738.784] (II) intel(0): SNA initialized with Ivybridge (gen7, gt2) backend
    [ 17738.784] (==) intel(0): Backing store enabled
    [ 17738.784] (==) intel(0): Silken mouse enabled
    [ 17738.784] (II) intel(0): HW Cursor enabled
    [ 17738.784] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 17738.784] (**) intel(0): DPMS enabled
    [ 17738.784] (II) intel(0): [DRI2] Setup complete
    [ 17738.784] (II) intel(0): [DRI2] DRI driver: i965
    [ 17738.784] (II) intel(0): [DRI2] VDPAU driver: i965
    [ 17738.784] (II) intel(0): direct rendering: DRI2 Enabled
    [ 17738.784] (==) intel(0): hotplug detection: "enabled"
    [ 17738.784] (--) RandR disabled
    [ 17738.789] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 17738.789] (II) AIGLX: enabled GLX_ARB_create_context
    [ 17738.789] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 17738.789] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 17738.789] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 17738.789] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 17738.789] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 17738.789] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 17738.789] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 17738.789] (II) AIGLX: enabled GLX_ARB_create_context_robustness
    [ 17738.789] (II) AIGLX: Loaded and initialized i965
    [ 17738.789] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 17738.791] (II) intel(0): switch to mode [email protected] on HDMI2 using pipe 0, position (0, 0), rotation normal, reflection none
    [ 17738.801] (II) intel(0): Setting screen physical size to 508 x 285
    [ 17738.839] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 17738.839] (**) Power Button: Applying InputClass "system-keyboard"
    [ 17738.839] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 17738.839] (II) LoadModule: "evdev"
    [ 17738.839] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 17738.840] (II) Module evdev: vendor="X.Org Foundation"
    [ 17738.840] compiled for 1.15.0, module version = 2.8.2
    [ 17738.840] Module class: X.Org XInput Driver
    [ 17738.840] ABI class: X.Org XInput driver, version 20.0
    [ 17738.840] (II) Using input driver 'evdev' for 'Power Button'
    [ 17738.840] (**) Power Button: always reports core events
    [ 17738.840] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 17738.840] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 17738.840] (--) evdev: Power Button: Found keys
    [ 17738.840] (II) evdev: Power Button: Configuring as keyboard
    [ 17738.840] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
    [ 17738.840] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 17738.840] (**) Option "xkb_rules" "evdev"
    [ 17738.840] (**) Option "xkb_model" "pc104"
    [ 17738.840] (**) Option "xkb_layout" "se"
    [ 17738.870] (II) config/udev: Adding input device Video Bus (/dev/input/event2)
    [ 17738.870] (**) Video Bus: Applying InputClass "system-keyboard"
    [ 17738.870] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 17738.870] (II) Using input driver 'evdev' for 'Video Bus'
    [ 17738.870] (**) Video Bus: always reports core events
    [ 17738.870] (**) evdev: Video Bus: Device: "/dev/input/event2"
    [ 17738.871] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 17738.871] (--) evdev: Video Bus: Found keys
    [ 17738.871] (II) evdev: Video Bus: Configuring as keyboard
    [ 17738.871] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input2/event2"
    [ 17738.871] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 17738.871] (**) Option "xkb_rules" "evdev"
    [ 17738.871] (**) Option "xkb_model" "pc104"
    [ 17738.871] (**) Option "xkb_layout" "se"
    [ 17738.871] (II) config/udev: Adding input device Power Button (/dev/input/event0)
    [ 17738.871] (**) Power Button: Applying InputClass "system-keyboard"
    [ 17738.871] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 17738.871] (II) Using input driver 'evdev' for 'Power Button'
    [ 17738.871] (**) Power Button: always reports core events
    [ 17738.871] (**) evdev: Power Button: Device: "/dev/input/event0"
    [ 17738.871] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 17738.871] (--) evdev: Power Button: Found keys
    [ 17738.871] (II) evdev: Power Button: Configuring as keyboard
    [ 17738.871] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0/event0"
    [ 17738.871] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
    [ 17738.871] (**) Option "xkb_rules" "evdev"
    [ 17738.871] (**) Option "xkb_model" "pc104"
    [ 17738.871] (**) Option "xkb_layout" "se"
    [ 17738.871] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 17738.872] (II) config/udev: Adding input device Microsoft Wired Keyboard 600 (/dev/input/event3)
    [ 17738.872] (**) Microsoft Wired Keyboard 600: Applying InputClass "system-keyboard"
    [ 17738.872] (**) Microsoft Wired Keyboard 600: Applying InputClass "evdev keyboard catchall"
    [ 17738.872] (II) Using input driver 'evdev' for 'Microsoft Wired Keyboard 600'
    [ 17738.872] (**) Microsoft Wired Keyboard 600: always reports core events
    [ 17738.872] (**) evdev: Microsoft Wired Keyboard 600: Device: "/dev/input/event3"
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Vendor 0x45e Product 0x750
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found keys
    [ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Configuring as keyboard
    [ 17738.872] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/0003:045E:0750.0001/input/input5/event3"
    [ 17738.872] (II) XINPUT: Adding extended input device "Microsoft Wired Keyboard 600" (type: KEYBOARD, id 9)
    [ 17738.872] (**) Option "xkb_rules" "evdev"
    [ 17738.872] (**) Option "xkb_model" "pc104"
    [ 17738.872] (**) Option "xkb_layout" "se"
    [ 17738.872] (II) config/udev: Adding input device Microsoft Wired Keyboard 600 (/dev/input/event4)
    [ 17738.872] (**) Microsoft Wired Keyboard 600: Applying InputClass "system-keyboard"
    [ 17738.872] (**) Microsoft Wired Keyboard 600: Applying InputClass "evdev keyboard catchall"
    [ 17738.872] (II) Using input driver 'evdev' for 'Microsoft Wired Keyboard 600'
    [ 17738.872] (**) Microsoft Wired Keyboard 600: always reports core events
    [ 17738.872] (**) evdev: Microsoft Wired Keyboard 600: Device: "/dev/input/event4"
    [ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Using mtdev for this device
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Vendor 0x45e Product 0x750
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found 1 mouse buttons
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found scroll wheel(s)
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found relative axes
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found absolute axes
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found absolute multitouch axes
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found x and y absolute axes
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found keys
    [ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Forcing relative x/y axes to exist.
    [ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Configuring as mouse
    [ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Configuring as keyboard
    [ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Adding scrollwheel support
    [ 17738.872] (**) evdev: Microsoft Wired Keyboard 600: YAxisMapping: buttons 4 and 5
    [ 17738.872] (**) evdev: Microsoft Wired Keyboard 600: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 17738.872] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.1/0003:045E:0750.0002/input/input6/event4"
    [ 17738.872] (II) XINPUT: Adding extended input device "Microsoft Wired Keyboard 600" (type: KEYBOARD, id 10)
    [ 17738.872] (**) Option "xkb_rules" "evdev"
    [ 17738.872] (**) Option "xkb_model" "pc104"
    [ 17738.872] (**) Option "xkb_layout" "se"
    [ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: initialized for relative axes.
    [ 17738.873] (WW) evdev: Microsoft Wired Keyboard 600: ignoring absolute axes.
    [ 17738.873] (**) Microsoft Wired Keyboard 600: (accel) keeping acceleration scheme 1
    [ 17738.873] (**) Microsoft Wired Keyboard 600: (accel) acceleration profile 0
    [ 17738.873] (**) Microsoft Wired Keyboard 600: (accel) acceleration factor: 2.000
    [ 17738.873] (**) Microsoft Wired Keyboard 600: (accel) acceleration threshold: 4
    [ 17738.873] (II) config/udev: Adding input device Microsoft Wired Keyboard 600 (/dev/input/js0)
    [ 17738.873] (**) Microsoft Wired Keyboard 600: Applying InputClass "system-keyboard"
    [ 17738.873] (II) No input driver specified, ignoring this device.
    [ 17738.873] (II) This device may have been added with another device file.
    [ 17738.873] (II) config/udev: Adding input device A..... G3 (/dev/input/event5)
    [ 17738.873] (**) A..... G3: Applying InputClass "evdev pointer catchall"
    [ 17738.873] (II) Using input driver 'evdev' for 'A..... G3'
    [ 17738.873] (**) A..... G3: always reports core events
    [ 17738.873] (**) evdev: A..... G3: Device: "/dev/input/event5"
    [ 17738.873] (--) evdev: A..... G3: Vendor 0xe0ff Product 0x2
    [ 17738.873] (--) evdev: A..... G3: Found 12 mouse buttons
    [ 17738.873] (--) evdev: A..... G3: Found scroll wheel(s)
    [ 17738.873] (--) evdev: A..... G3: Found relative axes
    [ 17738.873] (--) evdev: A..... G3: Found x and y relative axes
    [ 17738.873] (II) evdev: A..... G3: Configuring as mouse
    [ 17738.873] (II) evdev: A..... G3: Adding scrollwheel support
    [ 17738.873] (**) evdev: A..... G3: YAxisMapping: buttons 4 and 5
    [ 17738.873] (**) evdev: A..... G3: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 17738.873] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0/0003:E0FF:0002.0003/input/input7/event5"
    [ 17738.873] (II) XINPUT: Adding extended input device "A..... G3" (type: MOUSE, id 11)
    [ 17738.873] (II) evdev: A..... G3: initialized for relative axes.
    [ 17738.873] (**) A..... G3: (accel) keeping acceleration scheme 1
    [ 17738.873] (**) A..... G3: (accel) acceleration profile 0
    [ 17738.873] (**) A..... G3: (accel) acceleration factor: 2.000
    [ 17738.873] (**) A..... G3: (accel) acceleration threshold: 4
    [ 17738.874] (II) config/udev: Adding input device A..... G3 (/dev/input/mouse0)
    [ 17738.874] (II) No input driver specified, ignoring this device.
    [ 17738.874] (II) This device may have been added with another device file.
    [ 17738.874] (II) config/udev: Adding input device A..... G3 (/dev/input/event6)
    [ 17738.874] (**) A..... G3: Applying InputClass "system-keyboard"
    [ 17738.874] (**) A..... G3: Applying InputClass "evdev keyboard catchall"
    [ 17738.874] (II) Using input driver 'evdev' for 'A..... G3'
    [ 17738.874] (**) A..... G3: always reports core events
    [ 17738.874] (**) evdev: A..... G3: Device: "/dev/input/event6"
    [ 17738.874] (--) evdev: A..... G3: Vendor 0xe0ff Product 0x2
    [ 17738.874] (--) evdev: A..... G3: Found 1 mouse buttons
    [ 17738.874] (--) evdev: A..... G3: Found scroll wheel(s)
    [ 17738.874] (--) evdev: A..... G3: Found relative axes
    [ 17738.874] (II) evdev: A..... G3: Forcing relative x/y axes to exist.
    [ 17738.874] (--) evdev: A..... G3: Found absolute axes
    [ 17738.874] (II) evdev: A..... G3: Forcing absolute x/y axes to exist.
    [ 17738.874] (--) evdev: A..... G3: Found keys
    [ 17738.874] (II) evdev: A..... G3: Configuring as mouse
    [ 17738.874] (II) evdev: A..... G3: Configuring as keyboard
    [ 17738.874] (II) evdev: A..... G3: Adding scrollwheel support
    [ 17738.874] (**) evdev: A..... G3: YAxisMapping: buttons 4 and 5
    [ 17738.874] (**) evdev: A..... G3: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 17738.874] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.1/0003:E0FF:0002.0004/input/input8/event6"
    [ 17738.874] (II) XINPUT: Adding extended input device "A..... G3" (type: KEYBOARD, id 12)
    [ 17738.874] (**) Option "xkb_rules" "evdev"
    [ 17738.874] (**) Option "xkb_model" "pc104"
    [ 17738.874] (**) Option "xkb_layout" "se"
    [ 17738.874] (II) evdev: A..... G3: initialized for relative axes.
    [ 17738.874] (WW) evdev: A..... G3: ignoring absolute axes.
    [ 17738.874] (**) A..... G3: (accel) keeping acceleration scheme 1
    [ 17738.874] (**) A..... G3: (accel) acceleration profile 0
    [ 17738.874] (**) A..... G3: (accel) acceleration factor: 2.000
    [ 17738.874] (**) A..... G3: (accel) acceleration threshold: 4
    [ 17738.874] (II) config/udev: Adding input device HDA Intel PCH Rear Mic (/dev/input/event13)
    [ 17738.874] (II) No input driver specified, ignoring this device.
    [ 17738.874] (II) This device may have been added with another device file.
    [ 17738.875] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event12)
    [ 17738.875] (II) No input driver specified, ignoring this device.
    [ 17738.875] (II) This device may have been added with another device file.
    [ 17738.875] (II) config/udev: Adding input device HDA Intel PCH Line Out Front (/dev/input/event11)
    [ 17738.875] (II) No input driver specified, ignoring this device.
    [ 17738.875] (II) This device may have been added with another device file.
    [ 17738.875] (II) config/udev: Adding input device HDA Intel PCH Line Out Surround (/dev/input/event10)
    [ 17738.875] (II) No input driver specified, ignoring this device.
    [ 17738.875] (II) This device may have been added with another device file.
    [ 17738.875] (II) config/udev: Adding input device HDA Intel PCH Line Out CLFE (/dev/input/event9)
    [ 17738.875] (II) No input driver specified, ignoring this device.
    [ 17738.875] (II) This device may have been added with another device file.
    [ 17738.875] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event8)
    [ 17738.875] (II) No input driver specified, ignoring this device.
    [ 17738.875] (II) This device may have been added with another device file.
    [ 17738.875] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event7)
    [ 17738.876] (II) No input driver specified, ignoring this device.
    [ 17738.876] (II) This device may have been added with another device file.
    [ 17738.876] (II) config/udev: Adding input device HDA Intel PCH Front Mic (/dev/input/event14)
    [ 17738.876] (II) No input driver specified, ignoring this device.
    [ 17738.876] (II) This device may have been added with another device file.
    [ 17738.876] (II) config/udev: Adding input device PC Speaker (/dev/input/event15)
    [ 17738.876] (II) No input driver specified, ignoring this device.
    [ 17738.876] (II) This device may have been added with another device file.
    [ 17739.315] (II) intel(0): EDID vendor "BNQ", prod id 32517
    [ 17739.315] (II) intel(0): Using EDID range info for horizontal sync
    [ 17739.315] (II) intel(0): Using EDID range info for vertical refresh
    [ 17739.315] (II) intel(0): Printing DDC gathered Modelines:
    [ 17739.315] (II) intel(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
    [ 17739.315] (II) intel(0): Modeline "1920x1080i"x0.0 74.25 1920 2008 2052 2200 1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
    [ 17739.315] (II) intel(0): Modeline "1280x720"x0.0 74.25 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz e)
    [ 17739.315] (II) intel(0): Modeline "720x480"x0.0 27.00 720 736 798 858 480 489 495 525 -hsync -vsync (31.5 kHz e)
    [ 17739.315] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 17739.315] (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 17739.315] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 17739.315] (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 17739.315] (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 17739.315] (II) intel(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 17739.315] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 17739.315] (II) intel(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 17739.316] (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 17739.316] (II) intel(0): Modeline "640x480"x100.0 43.16 640 680 744 848 480 481 484 509 -hsync +vsync (50.9 kHz e)
    [ 17739.316] (II) intel(0): Modeline "640x480"x120.0 52.41 640 680 744 848 480 481 484 515 -hsync +vsync (61.8 kHz e)
    [ 17739.316] (II) intel(0): Modeline "800x600"x100.0 68.18 800 848 936 1072 600 601 604 636 -hsync +vsync (63.6 kHz e)
    [ 17739.316] (II) intel(0): Modeline "800x600"x0.0 73.25 800 848 880 960 600 603 607 636 +hsync -vsync (76.3 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1024x768"x100.0 113.31 1024 1096 1208 1392 768 769 772 814 -hsync +vsync (81.4 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1024x768"x0.0 115.50 1024 1072 1104 1184 768 771 775 813 +hsync -vsync (97.6 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1440x900"x0.0 182.75 1440 1488 1520 1600 900 903 909 953 +hsync -vsync (114.2 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1920x1080"x60.0 172.80 1920 2040 2248 2576 1080 1081 1084 1118 -hsync +vsync (67.1 kHz e)
    [ 17739.316] (II) intel(0): Modeline "720x576"x0.0 27.00 720 732 796 864 576 581 586 625 -hsync -vsync (31.2 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1440x480i"x0.0 27.00 1440 1478 1602 1716 480 488 494 525 interlace -hsync -vsync (15.7 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1280x720"x0.0 74.25 1280 1720 1760 1980 720 725 730 750 +hsync +vsync (37.5 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1920x1080i"x0.0 74.25 1920 2448 2492 2640 1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1440x576i"x0.0 27.00 1440 1464 1590 1728 576 580 586 625 interlace -hsync -vsync (15.6 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1440x240"x0.0 27.00 1440 1478 1602 1716 240 244 247 262 -hsync -vsync (15.7 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1440x288"x0.0 27.00 1440 1464 1590 1728 288 290 293 312 -hsync -vsync (15.6 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1920x1080"x0.0 74.25 1920 2558 2602 2750 1080 1084 1089 1125 +hsync +vsync (27.0 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1920x1080"x0.0 74.25 1920 2448 2492 2640 1080 1084 1089 1125 +hsync +vsync (28.1 kHz e)
    It would be nice to find out why the settings was being set to "0".
    Last edited by Sne (2014-04-29 20:40:50)

  • [Solved] ASUS F3Ka bluetooth doesn't work

    Hi everybody!
    Can anybody help me with getting bluetooth to work on ASUS F3Ka please?
    Here is the dmesg output:
    [n0ne@darkstar ~]$ dmesg | grep Blue
    Bluetooth: Core ver 2.11
    Bluetooth: HCI device and connection manager initialized
    Bluetooth: HCI socket layer initialized
    Bluetooth: L2CAP ver 2.9
    Bluetooth: L2CAP socket layer initialized
    Bluetooth: HIDP (Human Interface Emulation) ver 1.2
    I've got bluetooth daemon in my DAEMONS array in /etc/rc.conf
    BUT it still doesn't work:
    [n0ne@darkstar ~]$ sudo -s
    [root@darkstar ~]# hcitool inq
    Inquiring ...
    Inquiry failed.: No such device
    Any ideas, please?
    Last edited by alcazoid (2008-03-29 22:48:00)

    some stuff ive noticed with laptops and bluetooth...
    - bluetooth/wireless works in a lenovo i recently installed ubuntu in only after I suspend to ram. This is due to some weird Radio kill switch bug
    - sometimes leaving bluetooth and wireless turned  on on wiindows has its effects in linux, because windows drivers sometimes do not release control of the hardware. So try a cold boot, and if that doesn't work, a reboot from windows...'
    - try variants of leaving the bluetooth switch on/off during the boot process
    none of these actually seem like logical solutions, but thats how bluetooth/wireless and linux sometimes is..good luck!

  • USB2 doesn't work. Only USB3 work.

    Hello,
    I've a new DELL vostro 3350 with 2 usb2 and one usb3/e-sata connector but only the last seem working, the other 2 port doesn't work like they doesn't exist.
    i post my dmesg and lsmod output
    dmesg:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 2.6.39-ARCH (tobias@T-POWA-LX) (gcc version 4.6.0 20110603 (prerelease) (GCC) ) #1 SMP PREEMPT Mon Jun 6 22:37:55 CEST 2011
    [ 0.000000] Command line: root=/dev/sda3 ro i915.modeset=1
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009d400 (usable)
    [ 0.000000] BIOS-e820: 000000000009d400 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 0000000020000000 (usable)
    [ 0.000000] BIOS-e820: 0000000020000000 - 0000000020200000 (reserved)
    [ 0.000000] BIOS-e820: 0000000020200000 - 0000000040000000 (usable)
    [ 0.000000] BIOS-e820: 0000000040000000 - 0000000040200000 (reserved)
    [ 0.000000] BIOS-e820: 0000000040200000 - 00000000ca4e4000 (usable)
    [ 0.000000] BIOS-e820: 00000000ca4e4000 - 00000000ca527000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000ca527000 - 00000000ca793000 (usable)
    [ 0.000000] BIOS-e820: 00000000ca793000 - 00000000ca967000 (reserved)
    [ 0.000000] BIOS-e820: 00000000ca967000 - 00000000caba7000 (usable)
    [ 0.000000] BIOS-e820: 00000000caba7000 - 00000000cad68000 (reserved)
    [ 0.000000] BIOS-e820: 00000000cad68000 - 00000000cafad000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000cafad000 - 00000000cafbb000 (ACPI data)
    [ 0.000000] BIOS-e820: 00000000cafbb000 - 00000000cafe8000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000cafe8000 - 00000000cb000000 (ACPI data)
    [ 0.000000] BIOS-e820: 00000000cb800000 - 00000000cfa00000 (reserved)
    [ 0.000000] BIOS-e820: 00000000f8000000 - 00000000fc000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed00000 - 00000000fed04000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed20000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    [ 0.000000] BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved)
    [ 0.000000] BIOS-e820: 0000000100000000 - 000000012fe00000 (usable)
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI 2.6 present.
    [ 0.000000] DMI: Dell Inc. Vostro 3350/0M516T, BIOS A03 03/31/2011
    [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [ 0.000000] No AGP bridge found
    [ 0.000000] last_pfn = 0x12fe00 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-CFFFF write-protect
    [ 0.000000] D0000-E7FFF uncachable
    [ 0.000000] E8000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F00000000 write-back
    [ 0.000000] 1 base 100000000 mask FC0000000 write-back
    [ 0.000000] 2 base 0CB800000 mask FFF800000 uncachable
    [ 0.000000] 3 base 0CC000000 mask FFC000000 uncachable
    [ 0.000000] 4 base 0D0000000 mask FF0000000 uncachable
    [ 0.000000] 5 base 0E0000000 mask FE0000000 uncachable
    [ 0.000000] 6 base 12FE00000 mask FFFE00000 uncachable
    [ 0.000000] 7 base 130000000 mask FF0000000 uncachable
    [ 0.000000] 8 disabled
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820 update range: 00000000cb800000 - 0000000100000000 (usable) ==> (reserved)
    [ 0.000000] last_pfn = 0xcaba7 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [ffff8800000fd220] fd220
    [ 0.000000] initial memory mapped : 0 - 20000000
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 20480
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000caba7000
    [ 0.000000] 0000000000 - 00caa00000 page 2M
    [ 0.000000] 00caa00000 - 00caba7000 page 4k
    [ 0.000000] kernel direct mapping tables up to caba7000 @ caba1000-caba7000
    [ 0.000000] init_memory_mapping: 0000000100000000-000000012fe00000
    [ 0.000000] 0100000000 - 012fe00000 page 2M
    [ 0.000000] kernel direct mapping tables up to 12fe00000 @ 12fdfa000-12fe00000
    [ 0.000000] RAMDISK: 1fdd9000 - 1fff0000
    [ 0.000000] ACPI: RSDP 00000000000f0410 00024 (v02 DELL)
    [ 0.000000] ACPI: XSDT 00000000cafad080 0007C (v01 DELL WN09 01072009 AMI 00010013)
    [ 0.000000] ACPI: FACP 00000000cafb6cb8 000F4 (v04 DELL WN09 01072009 AMI 00010013)
    [ 0.000000] ACPI: DSDT 00000000cafad188 09B2D (v02 DELL WN09 00000000 INTL 20051117)
    [ 0.000000] ACPI: FACS 00000000cafe3f80 00040
    [ 0.000000] ACPI: APIC 00000000cafb6db0 00072 (v03 DELL WN09 01072009 AMI 00010013)
    [ 0.000000] ACPI: MCFG 00000000cafb6e28 0003C (v01 DELL WN09 01072009 MSFT 00000097)
    [ 0.000000] ACPI: SSDT 00000000cafb6e68 004B0 (v01 TrmRef PtidDevc 00001000 INTL 20091112)
    [ 0.000000] ACPI: SLIC 00000000cafb7318 00176 (v01 DELL WN09 01072009 AMI 00010013)
    [ 0.000000] ACPI: HPET 00000000cafb7490 00038 (v01 DELL WN09 01072009 AMI. 00000004)
    [ 0.000000] ACPI: SSDT 00000000cafb74c8 00780 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    [ 0.000000] ACPI: SSDT 00000000cafb7c48 00996 (v01 PmRef CpuPm 00003000 INTL 20051117)
    [ 0.000000] ACPI: SSDT 00000000cafb85e0 00D80 (v01 SgRef SgTabl 00001000 INTL 20091112)
    [ 0.000000] ACPI: SSDT 00000000cafb9360 00DEC (v01 AmdRef AmdTabl 00001000 INTL 20091112)
    [ 0.000000] ACPI: OSFR 00000000cafba150 00086 (v01 DELL M08 07DB031F ASL 00000061)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at 0000000000000000-000000012fe00000
    [ 0.000000] NUMA: Using 63 for the hash shift.
    [ 0.000000] Initmem setup node 0 0000000000000000-000000012fe00000
    [ 0.000000] NODE_DATA [000000012fdfb000 - 000000012fdfffff]
    [ 0.000000] [ffffea0000000000-ffffea00043fffff] PMD -> [ffff88012b400000-ffff88012edfffff] on node 0
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] DMA32 0x00001000 -> 0x00100000
    [ 0.000000] Normal 0x00100000 -> 0x0012fe00
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] early_node_map[7] active PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009d
    [ 0.000000] 0: 0x00000100 -> 0x00020000
    [ 0.000000] 0: 0x00020200 -> 0x00040000
    [ 0.000000] 0: 0x00040200 -> 0x000ca4e4
    [ 0.000000] 0: 0x000ca527 -> 0x000ca793
    [ 0.000000] 0: 0x000ca967 -> 0x000caba7
    [ 0.000000] 0: 0x00100000 -> 0x0012fe00
    [ 0.000000] On node 0 totalpages: 1024797
    [ 0.000000] DMA zone: 56 pages used for memmap
    [ 0.000000] DMA zone: 5 pages reserved
    [ 0.000000] DMA zone: 3920 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 14280 pages used for memmap
    [ 0.000000] DMA32 zone: 810440 pages, LIFO batch:31
    [ 0.000000] Normal zone: 2681 pages used for memmap
    [ 0.000000] Normal zone: 193415 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
    [ 0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
    [ 0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000
    [ 0.000000] PM: Registered nosave memory: 0000000040000000 - 0000000040200000
    [ 0.000000] PM: Registered nosave memory: 00000000ca4e4000 - 00000000ca527000
    [ 0.000000] PM: Registered nosave memory: 00000000ca793000 - 00000000ca967000
    [ 0.000000] PM: Registered nosave memory: 00000000caba7000 - 00000000cad68000
    [ 0.000000] PM: Registered nosave memory: 00000000cad68000 - 00000000cafad000
    [ 0.000000] PM: Registered nosave memory: 00000000cafad000 - 00000000cafbb000
    [ 0.000000] PM: Registered nosave memory: 00000000cafbb000 - 00000000cafe8000
    [ 0.000000] PM: Registered nosave memory: 00000000cafe8000 - 00000000cb000000
    [ 0.000000] PM: Registered nosave memory: 00000000cb000000 - 00000000cb800000
    [ 0.000000] PM: Registered nosave memory: 00000000cb800000 - 00000000cfa00000
    [ 0.000000] PM: Registered nosave memory: 00000000cfa00000 - 00000000f8000000
    [ 0.000000] PM: Registered nosave memory: 00000000f8000000 - 00000000fc000000
    [ 0.000000] PM: Registered nosave memory: 00000000fc000000 - 00000000fec00000
    [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
    [ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed00000
    [ 0.000000] PM: Registered nosave memory: 00000000fed00000 - 00000000fed04000
    [ 0.000000] PM: Registered nosave memory: 00000000fed04000 - 00000000fed1c000
    [ 0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000
    [ 0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000
    [ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
    [ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ff000000
    [ 0.000000] PM: Registered nosave memory: 00000000ff000000 - 0000000100000000
    [ 0.000000] Allocating PCI resources starting at cfa00000 (gap: cfa00000:28600000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88012fa00000 s83136 r8192 d23360 u524288
    [ 0.000000] pcpu-alloc: s83136 r8192 d23360 u524288 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1007775
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: root=/dev/sda3 ro i915.modeset=1
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave/xrstor: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 3961444k/4978688k available (4022k kernel code, 879500k absent, 137744k reserved, 3332k data, 724k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Preemptable hierarchical RCU implementation.
    [ 0.000000] RCU-based detection of stalled CPUs is disabled.
    [ 0.000000] Verbose stalled-CPUs detection is disabled.
    [ 0.000000] NR_IRQS:2304
    [ 0.000000] Extended CMOS year: 2000
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 33554432 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] Fast TSC calibration using PIT
    [ 0.003333] Detected 2294.660 MHz processor.
    [ 0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 4591.54 BogoMIPS (lpj=7648866)
    [ 0.000127] pid_max: default: 32768 minimum: 301
    [ 0.000293] Security Framework initialized
    [ 0.000355] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000789] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.001939] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.002450] Mount-cache hash table entries: 256
    [ 0.002819] Initializing cgroup subsys ns
    [ 0.002880] ns_cgroup deprecated: consider using the 'clone_children' flag without the ns_cgroup.
    [ 0.002961] Initializing cgroup subsys cpuacct
    [ 0.003045] Initializing cgroup subsys memory
    [ 0.003117] Initializing cgroup subsys devices
    [ 0.003176] Initializing cgroup subsys freezer
    [ 0.003236] Initializing cgroup subsys net_cls
    [ 0.003296] Initializing cgroup subsys blkio
    [ 0.003400] CPU: Physical Processor ID: 0
    [ 0.003459] CPU: Processor Core ID: 0
    [ 0.003519] mce: CPU supports 7 MCE banks
    [ 0.003589] CPU0: Thermal monitoring enabled (TM1)
    [ 0.003657] using mwait in idle threads.
    [ 0.004857] ACPI: Core revision 20110316
    [ 0.024638] ftrace: allocating 15966 entries in 63 pages
    [ 0.031279] Setting APIC routing to flat
    [ 0.031683] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.064728] CPU0: Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz stepping 07
    [ 0.171080] Performance Events: PEBS fmt1+, SandyBridge events, Intel PMU driver.
    [ 0.171280] ... version: 3
    [ 0.171338] ... bit width: 48
    [ 0.171396] ... generic registers: 4
    [ 0.171455] ... value mask: 0000ffffffffffff
    [ 0.172009] ... max period: 000000007fffffff
    [ 0.172070] ... fixed-purpose events: 3
    [ 0.172129] ... event mask: 000000070000000f
    [ 0.191201] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.217746] Booting Node 0, Processors #1
    [ 0.217864] smpboot cpu 1: start_ip = 98000
    [ 0.331068] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.351025] #2
    [ 0.351082] smpboot cpu 2: start_ip = 98000
    [ 0.464414] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.484280] #3 Ok.
    [ 0.484367] smpboot cpu 3: start_ip = 98000
    [ 0.597618] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.604180] Brought up 4 CPUs
    [ 0.604263] Total of 4 processors activated (18364.30 BogoMIPS).
    [ 0.606823] devtmpfs: initialized
    [ 0.607640] PM: Registering ACPI NVS region at ca4e4000 (274432 bytes)
    [ 0.607709] PM: Registering ACPI NVS region at cad68000 (2379776 bytes)
    [ 0.607806] PM: Registering ACPI NVS region at cafbb000 (184320 bytes)
    [ 0.608599] print_constraints: dummy:
    [ 0.608720] NET: Registered protocol family 16
    [ 0.608864] ACPI: bus type pci registered
    [ 0.609044] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.609125] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    [ 0.625218] PCI: Using configuration type 1 for base access
    [ 0.625687] bio: create slab <bio-0> at 0
    [ 0.627372] ACPI: EC: Look up EC in DSDT
    [ 0.628909] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.633287] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.648342] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.648773] ACPI: SSDT 00000000cad51698 0064F (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.649322] ACPI: Dynamic OEM Table Load:
    [ 0.649460] ACPI: SSDT (null) 0064F (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.664427] ACPI: SSDT 00000000cad52a98 00303 (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.665002] ACPI: Dynamic OEM Table Load:
    [ 0.665142] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.674299] ACPI: SSDT 00000000cad50d98 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.674841] ACPI: Dynamic OEM Table Load:
    [ 0.674979] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.684679] ACPI: Interpreter enabled
    [ 0.684739] ACPI: (supports S0 S1 S3 S4 S5)
    [ 0.685017] ACPI: Using IOAPIC for interrupt routing
    [ 0.724350] ACPI: No dock devices found.
    [ 0.724410] HEST: Table not found.
    [ 0.724469] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.724811] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    [ 0.725249] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
    [ 0.725314] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
    [ 0.725377] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    [ 0.725455] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff]
    [ 0.725531] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
    [ 0.725607] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
    [ 0.725684] pci_root PNP0A08:00: host bridge window [mem 0x000dc000-0x000dffff]
    [ 0.725761] pci_root PNP0A08:00: host bridge window [mem 0x000e0000-0x000e3fff]
    [ 0.725838] pci_root PNP0A08:00: host bridge window [mem 0x000e4000-0x000e7fff]
    [ 0.725915] pci_root PNP0A08:00: host bridge window [mem 0xcfa00000-0xfeafffff]
    [ 0.725991] pci_root PNP0A08:00: host bridge window [mem 0xfed40000-0xfed44fff]
    [ 0.726076] pci 0000:00:00.0: [8086:0104] type 0 class 0x000600
    [ 0.726109] pci 0000:00:01.0: [8086:0101] type 1 class 0x000604
    [ 0.726133] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.726135] pci 0000:00:01.0: PME# disabled
    [ 0.726153] pci 0000:00:02.0: [8086:0116] type 0 class 0x000300
    [ 0.726163] pci 0000:00:02.0: reg 10: [mem 0xf6400000-0xf67fffff 64bit]
    [ 0.726169] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.726174] pci 0000:00:02.0: reg 20: [io 0xf000-0xf03f]
    [ 0.726223] pci 0000:00:16.0: [8086:1c3a] type 0 class 0x000780
    [ 0.726248] pci 0000:00:16.0: reg 10: [mem 0xf7c0a000-0xf7c0a00f 64bit]
    [ 0.726310] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.726314] pci 0000:00:16.0: PME# disabled
    [ 0.726348] pci 0000:00:1a.0: [8086:1c2d] type 0 class 0x000c03
    [ 0.726369] pci 0000:00:1a.0: reg 10: [mem 0xf7c08000-0xf7c083ff]
    [ 0.726443] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.726447] pci 0000:00:1a.0: PME# disabled
    [ 0.726472] pci 0000:00:1b.0: [8086:1c20] type 0 class 0x000403
    [ 0.726487] pci 0000:00:1b.0: reg 10: [mem 0xf7c00000-0xf7c03fff 64bit]
    [ 0.726542] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.726546] pci 0000:00:1b.0: PME# disabled
    [ 0.726567] pci 0000:00:1c.0: [8086:1c10] type 1 class 0x000604
    [ 0.726630] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.726634] pci 0000:00:1c.0: PME# disabled
    [ 0.726657] pci 0000:00:1c.1: [8086:1c12] type 1 class 0x000604
    [ 0.726720] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.726724] pci 0000:00:1c.1: PME# disabled
    [ 0.726748] pci 0000:00:1c.3: [8086:1c16] type 1 class 0x000604
    [ 0.726810] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 0.726814] pci 0000:00:1c.3: PME# disabled
    [ 0.726837] pci 0000:00:1c.4: [8086:1c18] type 1 class 0x000604
    [ 0.726899] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 0.726904] pci 0000:00:1c.4: PME# disabled
    [ 0.726928] pci 0000:00:1c.7: [8086:1c1e] type 1 class 0x000604
    [ 0.726990] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
    [ 0.726994] pci 0000:00:1c.7: PME# disabled
    [ 0.727021] pci 0000:00:1d.0: [8086:1c26] type 0 class 0x000c03
    [ 0.727043] pci 0000:00:1d.0: reg 10: [mem 0xf7c07000-0xf7c073ff]
    [ 0.727116] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.727120] pci 0000:00:1d.0: PME# disabled
    [ 0.727146] pci 0000:00:1f.0: [8086:1c4b] type 0 class 0x000601
    [ 0.727261] pci 0000:00:1f.2: [8086:1c03] type 0 class 0x000106
    [ 0.727280] pci 0000:00:1f.2: reg 10: [io 0xf0b0-0xf0b7]
    [ 0.727288] pci 0000:00:1f.2: reg 14: [io 0xf0a0-0xf0a3]
    [ 0.727297] pci 0000:00:1f.2: reg 18: [io 0xf090-0xf097]
    [ 0.727305] pci 0000:00:1f.2: reg 1c: [io 0xf080-0xf083]
    [ 0.727313] pci 0000:00:1f.2: reg 20: [io 0xf060-0xf07f]
    [ 0.727322] pci 0000:00:1f.2: reg 24: [mem 0xf7c06000-0xf7c067ff]
    [ 0.727355] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.727359] pci 0000:00:1f.2: PME# disabled
    [ 0.727377] pci 0000:00:1f.3: [8086:1c22] type 0 class 0x000c05
    [ 0.727394] pci 0000:00:1f.3: reg 10: [mem 0xf7c05000-0xf7c050ff 64bit]
    [ 0.727416] pci 0000:00:1f.3: reg 20: [io 0xf040-0xf05f]
    [ 0.727477] pci 0000:01:00.0: [1002:6760] type 0 class 0x000300
    [ 0.727489] pci 0000:01:00.0: reg 10: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.727499] pci 0000:01:00.0: reg 18: [mem 0xf7b20000-0xf7b3ffff 64bit]
    [ 0.727506] pci 0000:01:00.0: reg 20: [io 0xe000-0xe0ff]
    [ 0.727518] pci 0000:01:00.0: reg 30: [mem 0xf7b00000-0xf7b1ffff pref]
    [ 0.727534] pci 0000:01:00.0: supports D1 D2
    [ 0.734119] pci 0000:00:01.0: PCI bridge to [bus 01-01]
    [ 0.734209] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    [ 0.734225] pci 0000:00:01.0: bridge window [mem 0xf7b00000-0xf7bfffff]
    [ 0.734228] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.734275] pci 0000:00:1c.0: PCI bridge to [bus 03-04]
    [ 0.734338] pci 0000:00:1c.0: bridge window [io 0xf000-0x0000] (disabled)
    [ 0.734343] pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    [ 0.734350] pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 0.734416] pci 0000:05:00.0: [10ec:8168] type 0 class 0x000200
    [ 0.734436] pci 0000:05:00.0: reg 10: [io 0xd000-0xd0ff]
    [ 0.734471] pci 0000:05:00.0: reg 18: [mem 0xf1104000-0xf1104fff 64bit pref]
    [ 0.734493] pci 0000:05:00.0: reg 20: [mem 0xf1100000-0xf1103fff 64bit pref]
    [ 0.734554] pci 0000:05:00.0: supports D1 D2
    [ 0.734556] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.734562] pci 0000:05:00.0: PME# disabled
    [ 0.740790] pci 0000:00:1c.1: PCI bridge to [bus 05-06]
    [ 0.740889] pci 0000:00:1c.1: bridge window [io 0xd000-0xdfff]
    [ 0.740894] pci 0000:00:1c.1: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    [ 0.740900] pci 0000:00:1c.1: bridge window [mem 0xf1100000-0xf11fffff 64bit pref]
    [ 0.740969] pci 0000:09:00.0: [168c:002b] type 0 class 0x000280
    [ 0.740996] pci 0000:09:00.0: reg 10: [mem 0xf7a00000-0xf7a0ffff 64bit]
    [ 0.741100] pci 0000:09:00.0: supports D1
    [ 0.741102] pci 0000:09:00.0: PME# supported from D0 D1 D3hot
    [ 0.741107] pci 0000:09:00.0: PME# disabled
    [ 0.747449] pci 0000:00:1c.3: PCI bridge to [bus 09-0a]
    [ 0.747550] pci 0000:00:1c.3: bridge window [io 0xf000-0x0000] (disabled)
    [ 0.747555] pci 0000:00:1c.3: bridge window [mem 0xf7a00000-0xf7afffff]
    [ 0.747561] pci 0000:00:1c.3: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 0.747631] pci 0000:0b:00.0: [1033:0194] type 0 class 0x000c03
    [ 0.747658] pci 0000:0b:00.0: reg 10: [mem 0xf7900000-0xf7901fff 64bit]
    [ 0.747765] pci 0000:0b:00.0: PME# supported from D0 D3hot D3cold
    [ 0.747771] pci 0000:0b:00.0: PME# disabled
    [ 0.754114] pci 0000:00:1c.4: PCI bridge to [bus 0b-0c]
    [ 0.754215] pci 0000:00:1c.4: bridge window [io 0xf000-0x0000] (disabled)
    [ 0.754219] pci 0000:00:1c.4: bridge window [mem 0xf7900000-0xf79fffff]
    [ 0.754226] pci 0000:00:1c.4: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 0.754273] pci 0000:00:1c.7: PCI bridge to [bus 11-1f]
    [ 0.754334] pci 0000:00:1c.7: bridge window [io 0xb000-0xcfff]
    [ 0.754338] pci 0000:00:1c.7: bridge window [mem 0xf6800000-0xf78fffff]
    [ 0.754345] pci 0000:00:1c.7: bridge window [mem 0xf0000000-0xf10fffff 64bit pref]
    [ 0.754373] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.754485] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
    [ 0.754515] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
    [ 0.754544] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT]
    [ 0.754572] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP05._PRT]
    [ 0.754603] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP08._PRT]
    [ 0.754630] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEG0._PRT]
    [ 0.754745] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.754970] pci0000:00: ACPI _OSC control (0x19) granted
    [ 0.758671] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
    [ 0.759208] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 *5 6 10 11 12 14 15)
    [ 0.759739] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 10 11 12 14 15)
    [ 0.760272] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *10 11 12 14 15)
    [ 0.760810] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.761438] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.762065] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 10 11 12 14 15)
    [ 0.762595] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 *5 6 10 11 12 14 15)
    [ 0.763156] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.763241] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
    [ 0.763320] vgaarb: loaded
    [ 0.763439] PCI: Using ACPI for IRQ routing
    [ 0.763498] PCI: pci_cache_line_size set to 64 bytes
    [ 0.763581] reserve RAM buffer: 000000000009d400 - 000000000009ffff
    [ 0.763583] reserve RAM buffer: 00000000ca4e4000 - 00000000cbffffff
    [ 0.763586] reserve RAM buffer: 00000000ca793000 - 00000000cbffffff
    [ 0.763588] reserve RAM buffer: 00000000caba7000 - 00000000cbffffff
    [ 0.763591] reserve RAM buffer: 000000012fe00000 - 000000012fffffff
    [ 0.763684] NetLabel: Initializing
    [ 0.763742] NetLabel: domain hash size = 128
    [ 0.763801] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.763872] NetLabel: unlabeled traffic allowed by default
    [ 0.763950] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.764373] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.766445] Switching to clocksource hpet
    [ 0.767420] Switched to NOHz mode on CPU #0
    [ 0.767480] Switched to NOHz mode on CPU #1
    [ 0.767515] Switched to NOHz mode on CPU #3
    [ 0.767570] Switched to NOHz mode on CPU #2
    [ 0.771493] pnp: PnP ACPI init
    [ 0.771565] ACPI: bus type pnp registered
    [ 0.771848] pnp 00:00: [bus 00-3e]
    [ 0.771850] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.771852] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.771854] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.771856] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.771857] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
    [ 0.771859] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
    [ 0.771861] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
    [ 0.771862] pnp 00:00: [mem 0x000cc000-0x000cffff window]
    [ 0.771864] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
    [ 0.771866] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
    [ 0.771867] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
    [ 0.771869] pnp 00:00: [mem 0x000dc000-0x000dffff window]
    [ 0.771871] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
    [ 0.771872] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
    [ 0.771874] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
    [ 0.771876] pnp 00:00: [mem 0x000ec000-0x000effff window]
    [ 0.771877] pnp 00:00: [mem 0x000f0000-0x000fffff window]
    [ 0.771879] pnp 00:00: [mem 0xcfa00000-0xfeafffff window]
    [ 0.771881] pnp 00:00: [mem 0xfed40000-0xfed44fff window]
    [ 0.771949] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    [ 0.771960] pnp 00:01: [io 0x0000-0x001f]
    [ 0.771964] pnp 00:01: [io 0x0081-0x0091]
    [ 0.771965] pnp 00:01: [io 0x0093-0x009f]
    [ 0.771966] pnp 00:01: [io 0x00c0-0x00df]
    [ 0.771968] pnp 00:01: [dma 4]
    [ 0.771988] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.771995] pnp 00:02: [mem 0xff000000-0xffffffff]
    [ 0.772013] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.772081] pnp 00:03: [mem 0xfed00000-0xfed003ff]
    [ 0.772101] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.772112] pnp 00:04: [io 0x002e-0x002f]
    [ 0.772113] pnp 00:04: [io 0x004e-0x004f]
    [ 0.772114] pnp 00:04: [io 0x0061]
    [ 0.772116] pnp 00:04: [io 0x0063]
    [ 0.772117] pnp 00:04: [io 0x0065]
    [ 0.772118] pnp 00:04: [io 0x0067]
    [ 0.772120] pnp 00:04: [io 0x0070]
    [ 0.772121] pnp 00:04: [io 0x0080]
    [ 0.772122] pnp 00:04: [io 0x0092]
    [ 0.772124] pnp 00:04: [io 0x00b2-0x00b3]
    [ 0.772125] pnp 00:04: [io 0x0680-0x069f]
    [ 0.772126] pnp 00:04: [io 0x1000-0x100f]
    [ 0.772128] pnp 00:04: [io 0xffff]
    [ 0.772129] pnp 00:04: [io 0xffff]
    [ 0.772130] pnp 00:04: [io 0x0400-0x0453]
    [ 0.772132] pnp 00:04: [io 0x0458-0x047f]
    [ 0.772133] pnp 00:04: [io 0x0500-0x057f]
    [ 0.772135] pnp 00:04: [io 0x164e-0x164f]
    [ 0.772177] system 00:04: [io 0x0680-0x069f] has been reserved
    [ 0.772240] system 00:04: [io 0x1000-0x100f] has been reserved
    [ 0.772302] system 00:04: [io 0xffff] has been reserved
    [ 0.772363] system 00:04: [io 0xffff] has been reserved
    [ 0.772425] system 00:04: [io 0x0400-0x0453] has been reserved
    [ 0.772487] system 00:04: [io 0x0458-0x047f] has been reserved
    [ 0.772550] system 00:04: [io 0x0500-0x057f] has been reserved
    [ 0.772613] system 00:04: [io 0x164e-0x164f] has been reserved
    [ 0.772676] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.772685] pnp 00:05: [io 0x0070-0x0077]
    [ 0.772694] pnp 00:05: [irq 8]
    [ 0.772711] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.772733] pnp 00:06: [io 0x0454-0x0457]
    [ 0.772764] system 00:06: [io 0x0454-0x0457] has been reserved
    [ 0.772827] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.772834] pnp 00:07: [io 0x00f0-0x00ff]
    [ 0.772839] pnp 00:07: [irq 13]
    [ 0.772857] pnp 00:07: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.772870] pnp 00:08: [io 0x0010-0x001f]
    [ 0.772871] pnp 00:08: [io 0x0022-0x003f]
    [ 0.772873] pnp 00:08: [io 0x0044-0x005f]
    [ 0.772874] pnp 00:08: [io 0x0068-0x006f]
    [ 0.772875] pnp 00:08: [io 0x0072-0x007f]
    [ 0.772877] pnp 00:08: [io 0x0080]
    [ 0.772878] pnp 00:08: [io 0x0084-0x0086]
    [ 0.772880] pnp 00:08: [io 0x0088]
    [ 0.772881] pnp 00:08: [io 0x008c-0x008e]
    [ 0.772882] pnp 00:08: [io 0x0090-0x009f]
    [ 0.772884] pnp 00:08: [io 0x00a2-0x00bf]
    [ 0.772885] pnp 00:08: [io 0x00e0-0x00ef]
    [ 0.772886] pnp 00:08: [io 0x04d0-0x04d1]
    [ 0.772888] pnp 00:08: [mem 0xfe800000-0xfe802fff]
    [ 0.772924] system 00:08: [io 0x04d0-0x04d1] has been reserved
    [ 0.772988] system 00:08: [mem 0xfe800000-0xfe802fff] has been reserved
    [ 0.773052] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.773068] pnp 00:09: [irq 12]
    [ 0.773089] pnp 00:09: Plug and Play ACPI device, IDs DLL04b2 SYN0600 SYN0002 PNP0f13 (active)
    [ 0.773101] pnp 00:0a: [io 0x0060]
    [ 0.773102] pnp 00:0a: [io 0x0064]
    [ 0.773103] pnp 00:0a: [io 0x0062]
    [ 0.773105] pnp 00:0a: [io 0x0066]
    [ 0.773109] pnp 00:0a: [irq 1]
    [ 0.773128] pnp 00:0a: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.773371] pnp 00:0b: [mem 0xfed1c000-0xfed1ffff]
    [ 0.773373] pnp 00:0b: [mem 0xfed10000-0xfed17fff]
    [ 0.773374] pnp 00:0b: [mem 0xfed18000-0xfed18fff]
    [ 0.773376] pnp 00:0b: [mem 0xfed19000-0xfed19fff]
    [ 0.773377] pnp 00:0b: [mem 0xf8000000-0xfbffffff]
    [ 0.773379] pnp 00:0b: [mem 0xfed20000-0xfed3ffff]
    [ 0.773380] pnp 00:0b: [mem 0xfed90000-0xfed93fff]
    [ 0.773382] pnp 00:0b: [mem 0xfed45000-0xfed8ffff]
    [ 0.773383] pnp 00:0b: [mem 0xff000000-0xffffffff]
    [ 0.773385] pnp 00:0b: [mem 0xfee00000-0xfeefffff]
    [ 0.773386] pnp 00:0b: [mem 0xcfa00000-0xcfa00fff]
    [ 0.773435] system 00:0b: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.773500] system 00:0b: [mem 0xfed10000-0xfed17fff] has been reserved
    [ 0.773564] system 00:0b: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.773628] system 00:0b: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.773692] system 00:0b: [mem 0xf8000000-0xfbffffff] has been reserved
    [ 0.773756] system 00:0b: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.773820] system 00:0b: [mem 0xfed90000-0xfed93fff] has been reserved
    [ 0.773884] system 00:0b: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.773947] system 00:0b: [mem 0xff000000-0xffffffff] has been reserved
    [ 0.774011] system 00:0b: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 0.774076] system 00:0b: [mem 0xcfa00000-0xcfa00fff] has been reserved
    [ 0.774140] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.774195] pnp 00:0c: [irq 20]
    [ 0.774232] pnp 00:0c: Plug and Play ACPI device, IDs SMO8800 (active)
    [ 0.774325] pnp 00:0d: [mem 0x20000000-0x201fffff]
    [ 0.774327] pnp 00:0d: [mem 0x40000000-0x401fffff]
    [ 0.774375] system 00:0d: [mem 0x20000000-0x201fffff] has been reserved
    [ 0.774440] system 00:0d: [mem 0x40000000-0x401fffff] has been reserved
    [ 0.774504] system 00:0d: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.774546] pnp: PnP ACPI: found 14 devices
    [ 0.774604] ACPI: ACPI bus type pnp unregistered
    [ 0.780392] pci 0000:00:01.0: PCI bridge to [bus 01-01]
    [ 0.780455] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    [ 0.780519] pci 0000:00:01.0: bridge window [mem 0xf7b00000-0xf7bfffff]
    [ 0.780584] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.780663] pci 0000:00:1c.0: PCI bridge to [bus 03-04]
    [ 0.780724] pci 0000:00:1c.0: bridge window [io disabled]
    [ 0.780790] pci 0000:00:1c.0: bridge window [mem disabled]
    [ 0.780854] pci 0000:00:1c.0: bridge window [mem pref disabled]
    [ 0.780921] pci 0000:00:1c.1: PCI bridge to [bus 05-06]
    [ 0.780983] pci 0000:00:1c.1: bridge window [io 0xd000-0xdfff]
    [ 0.781049] pci 0000:00:1c.1: bridge window [mem disabled]
    [ 0.781112] pci 0000:00:1c.1: bridge window [mem 0xf1100000-0xf11fffff 64bit pref]
    [ 0.781193] pci 0000:00:1c.3: PCI bridge to [bus 09-0a]
    [ 0.781254] pci 0000:00:1c.3: bridge window [io disabled]
    [ 0.781318] pci 0000:00:1c.3: bridge window [mem 0xf7a00000-0xf7afffff]
    [ 0.781383] pci 0000:00:1c.3: bridge window [mem pref disabled]
    [ 0.781450] pci 0000:00:1c.4: PCI bridge to [bus 0b-0c]
    [ 0.781511] pci 0000:00:1c.4: bridge window [io disabled]
    [ 0.781575] pci 0000:00:1c.4: bridge window [mem 0xf7900000-0xf79fffff]
    [ 0.781641] pci 0000:00:1c.4: bridge window [mem pref disabled]
    [ 0.781707] pci 0000:00:1c.7: PCI bridge to [bus 11-1f]
    [ 0.781770] pci 0000:00:1c.7: bridge window [io 0xb000-0xcfff]
    [ 0.781836] pci 0000:00:1c.7: bridge window [mem 0xf6800000-0xf78fffff]
    [ 0.781902] pci 0000:00:1c.7: bridge window [mem 0xf0000000-0xf10fffff 64bit pref]
    [ 0.781990] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.782056] pci 0000:00:01.0: setting latency timer to 64
    [ 0.782062] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.782129] pci 0000:00:1c.0: setting latency timer to 64
    [ 0.782138] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 0.782205] pci 0000:00:1c.1: setting latency timer to 64
    [ 0.782213] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
    [ 0.782280] pci 0000:00:1c.3: setting latency timer to 64
    [ 0.782287] pci 0000:00:1c.4: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.782353] pci 0000:00:1c.4: setting latency timer to 64
    [ 0.782360] pci 0000:00:1c.7: PCI INT D -> GSI 19 (level, low) -> IRQ 19
    [ 0.782427] pci 0000:00:1c.7: setting latency timer to 64
    [ 0.782431] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.782433] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.782435] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.782437] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
    [ 0.782438] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
    [ 0.782440] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
    [ 0.782442] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
    [ 0.782444] pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff]
    [ 0.782446] pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff]
    [ 0.782447] pci_bus 0000:00: resource 13 [mem 0xcfa00000-0xfeafffff]
    [ 0.782449] pci_bus 0000:00: resource 14 [mem 0xfed40000-0xfed44fff]
    [ 0.782451] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
    [ 0.782453] pci_bus 0000:01: resource 1 [mem 0xf7b00000-0xf7bfffff]
    [ 0.782455] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.782457] pci_bus 0000:05: resource 0 [io 0xd000-0xdfff]
    [ 0.782459] pci_bus 0000:05: resource 2 [mem 0xf1100000-0xf11fffff 64bit pref]
    [ 0.782461] pci_bus 0000:09: resource 1 [mem 0xf7a00000-0xf7afffff]
    [ 0.782463] pci_bus 0000:0b: resource 1 [mem 0xf7900000-0xf79fffff]
    [ 0.782464] pci_bus 0000:11: resource 0 [io 0xb000-0xcfff]
    [ 0.782466] pci_bus 0000:11: resource 1 [mem 0xf6800000-0xf78fffff]
    [ 0.782468] pci_bus 0000:11: resource 2 [mem 0xf0000000-0xf10fffff 64bit pref]
    [ 0.782519] NET: Registered protocol family 2
    [ 0.782742] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.783721] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 0.785537] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.785819] TCP: Hash tables configured (established 524288 bind 65536)
    [ 0.785882] TCP reno registered
    [ 0.785948] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.786030] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.786293] NET: Registered protocol family 1
    [ 0.786364] pci 0000:00:02.0: Boot video device
    [ 1.026530] PCI: CLS 64 bytes, default 64
    [ 1.026583] Unpacking initramfs...
    [ 1.052516] Freeing initrd memory: 2140k freed
    [ 1.052823] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 1.053405] Placing 64MB software IO TLB between ffff8800c64e4000 - ffff8800ca4e4000
    [ 1.053483] software IO TLB at phys 0xc64e4000 - 0xca4e4000
    [ 1.053931] audit: initializing netlink socket (disabled)
    [ 1.054000] type=2000 audit(1308651601.879:1): initialized
    [ 1.054346] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 1.056030] VFS: Disk quotas dquot_6.5.2
    [ 1.056196] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 1.056389] msgmni has been set to 7741
    [ 1.056635] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 1.056739] io scheduler noop registered
    [ 1.056797] io scheduler deadline registered
    [ 1.056892] io scheduler cfq registered (default)
    [ 1.057032] pcieport 0000:00:01.0: setting latency timer to 64
    [ 1.057054] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 1.057268] pcieport 0000:00:1c.7: setting latency timer to 64
    [ 1.057307] pcieport 0000:00:1c.7: irq 41 for MSI/MSI-X
    [ 1.057431] intel_idle: MWAIT substates: 0x21120
    [ 1.057433] intel_idle: v0.4 model 0x2A
    [ 1.057434] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 1.057461] ERST: Table is not found!
    [ 1.057557] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 1.266719] Linux agpgart interface v0.103
    [ 1.266862] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:PS2] at 0x60,0x64 irq 1,12
    [ 1.269212] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 1.269296] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 1.269419] mousedev: PS/2 mouse device common for all mice
    [ 1.269528] rtc_cmos 00:05: RTC can wake from S4
    [ 1.284791] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.293093] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [ 1.293182] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 1.293354] cpuidle: using governor ladder
    [ 1.293571] cpuidle: using governor menu
    [ 1.293785] TCP cubic registered
    [ 1.293844] NET: Registered protocol family 17
    [ 1.293908] Registering the dns_resolver key type
    [ 1.294036] PM: Hibernation image not present or could not be loaded.
    [ 1.294040] registered taskstats version 1
    [ 1.294561] rtc_cmos 00:05: setting system clock to 2011-06-21 10:20:02 UTC (1308651602)
    [ 1.294687] Initializing network drop monitor service
    [ 1.295830] Freeing unused kernel memory: 724k freed
    [ 1.295985] Write protecting the kernel read-only data: 6144k
    [ 1.296375] Freeing unused kernel memory: 56k freed
    [ 1.298607] Freeing unused kernel memory: 784k freed
    [ 1.309289] udevd[64]: starting version 171
    [ 1.317907] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input1
    [ 1.319573] ACPI: Lid Switch [LID0]
    [ 1.319713] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
    [ 1.319808] ACPI: Power Button [PWRB]
    [ 1.319943] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3
    [ 1.320032] ACPI: Sleep Button [SBTN]
    [ 1.320141] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 1.320228] ACPI: Power Button [PWRF]
    [ 1.322302] agpgart-intel 0000:00:00.0: Intel Sandybridge Chipset
    [ 1.322543] agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
    [ 1.323981] agpgart-intel 0000:00:00.0: detected 65536K stolen memory
    [ 1.324161] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
    [ 1.338537] [drm] Initialized drm 1.1.0 20060810
    [ 1.360660] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 1.360730] i915 0000:00:02.0: setting latency timer to 64
    [ 1.436179] mtrr: type mismatch for d0000000,10000000 old: write-back new: write-combining
    [ 1.436265] [drm] MTRR allocation failed. Graphics performance may suffer.
    [ 1.436500] i915 0000:00:02.0: irq 42 for MSI/MSI-X
    [ 1.436506] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 1.436582] [drm] Driver supports precise vblank timestamp query.
    [ 1.599840] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=io+mem
    [ 1.599928] vgaarb: transferring owner from PCI:0000:00:02.0 to PCI:0000:01:00.0
    [ 1.663397] fbcon: inteldrmfb (fb0) is primary device
    [ 1.827767] Console: switching to colour frame buffer device 170x48
    [ 1.830045] fb0: inteldrmfb frame buffer device
    [ 1.830065] drm: registered panic notifier
    [ 1.830272] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
    [ 1.847065] acpi device:1c: registered as cooling_device0
    [ 1.847361] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:1a/LNXVIDEO:00/input/input5
    [ 1.847421] ACPI: Video Device [PEGP] (multi-head: yes rom: no post: no)
    [ 1.848207] acpi device:3b: registered as cooling_device1
    [ 1.848467] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input6
    [ 1.848506] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 1.848632] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 1.910964] SCSI subsystem initialized
    [ 1.926419] libata version 3.00 loaded.
    [ 1.932261] ahci 0000:00:1f.2: version 3.0
    [ 1.932273] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    [ 1.932370] ahci 0000:00:1f.2: irq 43 for MSI/MSI-X
    [ 1.932400] ahci: SSS flag set, parallel bus scan disabled
    [ 1.942750] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x31 impl SATA mode
    [ 1.942802] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ems sxs apst
    [ 1.942841] ahci 0000:00:1f.2: setting latency timer to 64
    [ 1.956534] scsi0 : ahci
    [ 1.956646] scsi1 : ahci
    [ 1.956733] scsi2 : ahci
    [ 1.956821] scsi3 : ahci
    [ 1.956915] scsi4 : ahci
    [ 1.957050] scsi5 : ahci
    [ 1.957355] ata1: SATA max UDMA/133 abar m2048@0xf7c06000 port 0xf7c06100 irq 43
    [ 1.958295] ata2: DUMMY
    [ 1.959215] ata3: DUMMY
    [ 1.960138] ata4: DUMMY
    [ 1.961034] ata5: SATA max UDMA/133 abar m2048@0xf7c06000 port 0xf7c06300 irq 43
    [ 1.961953] ata6: SATA max UDMA/133 abar m2048@0xf7c06000 port 0xf7c06380 irq 43
    [ 2.055997] Refined TSC clocksource calibration: 2294.783 MHz.
    [ 2.056953] Switching to clocksource tsc
    [ 2.282559] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 2.287654] ata1.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
    [ 2.326394] ata1.00: ATA-8: ST9500420AS, D005SDM1, max UDMA/133
    [ 2.327371] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
    [ 2.333430] ata1.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
    [ 2.334802] ata1.00: configured for UDMA/133
    [ 2.342689] scsi 0:0:0:0: Direct-Access ATA ST9500420AS D005 PQ: 0 ANSI: 5
    [ 2.662362] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 2.676672] ata5.00: ATAPI: TSSTcorp DVD+/-RW TS-U633J, D400, max UDMA/100
    [ 2.691837] ata5.00: configured for UDMA/100
    [ 2.705245] scsi 4:0:0:0: CD-ROM TSSTcorp DVD+-RW TS-U633J D400 PQ: 0 ANSI: 5
    [ 3.025502] ata6: SATA link down (SStatus 0 SControl 300)
    [ 3.034151] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 3.035218] sd 0:0:0:0: [sda] Write Protect is off
    [ 3.036216] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 3.036243] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 3.041650] sda: sda1 sda2 sda3 sda4
    [ 3.042959] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 3.050652] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 3.051681] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 3.052815] sr 4:0:0:0: Attached scsi CD-ROM sr0
    [ 3.616479] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    [ 5.358231] udevd[268]: starting version 171
    [ 5.694585] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 5.694704] ACPI: AC Adapter [AC] (off-line)
    [ 5.715255] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
    [ 5.758731] ACPI: acpi_idle yielding to intel_idle
    [ 5.767735] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 5.767742] ACPI: Battery Slot [BAT0] (battery present)
    [ 5.780221] wmi: Mapper loaded
    [ 5.794769] thermal LNXTHERM:00: registered as thermal_zone0
    [ 5.794772] ACPI: Thermal Zone [THM] (45 C)
    [ 5.858154] iTCO_vendor_support: vendor-support=0
    [ 5.859958] i801_smbus 0000:00:1f.3: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 5.872739] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 5.872767] r8169 0000:05:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    [ 5.872824] r8169 0000:05:00.0: setting latency timer to 64
    [ 5.872831] r8169 0000:05:00.0: (unregistered net_device): unknown MAC, using family default
    [ 5.872895] r8169 0000:05:00.0: irq 44 for MSI/MSI-X
    [ 5.873083] r8169 0000:05:00.0: eth0: RTL8168b/8111b at 0xffffc900051fc000, 18:03:73:57:1d:5f, XID 0c200000 IRQ 44
    [ 5.925164] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.06
    [ 5.925290] iTCO_wdt: Found a Cougar Point TCO device (Version=2, TCOBASE=0x0460)
    [ 5.925394] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 5.998203] cfg80211: Calling CRDA to update world regulatory domain
    [ 6.069340] input: Dell WMI hotkeys as /devices/virtual/input/input7
    [ 6.069943] input: PC Speaker as /devices/platform/pcspkr/input/input8
    [ 6.071237] [drm] radeon defaulting to kernel modesetting.
    [ 6.071240] [drm] radeon kernel modesetting enabled.
    [ 6.071253] VGA switcheroo: detected switching method \_SB_.PCI0.GFX0.ATPX handle
    [ 6.071290] radeon 0000:01:00.0: enabling device (0000 -> 0003)
    [ 6.071297] radeon 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 6.071302] radeon 0000:01:00.0: setting latency timer to 64
    [ 6.071448] [drm] initializing kernel modesetting (CAICOS 0x1002:0x6760).
    [ 6.071526] [drm] register mmio base: 0xF7B20000
    [ 6.071528] [drm] register mmio size: 131072
    [ 6.071529] vga_switcheroo: enabled
    [ 6.071599] radeon atpx: version is 1
    [ 6.081723] fuse init (API version 7.16)
    [ 6.135312] usbcore: registered new interface driver usbfs
    [ 6.135338] usbcore: registered new interface driver hub
    [ 6.135406] usbcore: registered new device driver usb
    [ 6.373847] sd 0:0:0:0: Attached scsi generic sg0 type 0
    [ 6.374025] sr 4:0:0:0: Attached scsi generic sg1 type 5
    [ 6.378917] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    [ 6.378972] HDA Intel 0000:00:1b.0: irq 45 for MSI/MSI-X
    [ 6.378996] HDA Intel 0000:00:1b.0: setting latency timer to 64
    [ 6.402772] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 6.429808] xhci_hcd 0000:0b:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 6.429840] xhci_hcd 0000:0b:00.0: setting latency timer to 64
    [ 6.429844] xhci_hcd 0000:0b:00.0: xHCI Host Controller
    [ 6.429862] xhci_hcd 0000:0b:00.0: new USB bus registered, assigned bus number 1
    [ 6.443854] xhci_hcd 0000:0b:00.0: irq 16, io mem 0xf7900000
    [ 6.443923] xhci_hcd 0000:0b:00.0: irq 46 for MSI/MSI-X
    [ 6.443925] xhci_hcd 0000:0b:00.0: irq 47 for MSI/MSI-X
    [ 6.443928] xhci_hcd 0000:0b:00.0: irq 48 for MSI/MSI-X
    [ 6.443930] xhci_hcd 0000:0b:00.0: irq 49 for MSI/MSI-X
    [ 6.443933] xhci_hcd 0000:0b:00.0: irq 50 for MSI/MSI-X
    [ 6.444107] xHCI xhci_add_endpoint called for root hub
    [ 6.444109] xHCI xhci_check_bandwidth called for root hub
    [ 6.444133] hub 1-0:1.0: USB hub found
    [ 6.444140] hub 1-0:1.0: 2 ports detected
    [ 6.444194] xhci_hcd 0000:0b:00.0: xHCI Host Controller
    [ 6.444199] xhci_hcd 0000:0b:00.0: new USB bus registered, assigned bus number 2
    [ 6.457136] xHCI xhci_add_endpoint called for root hub
    [ 6.457137] xHCI xhci_check_bandwidth called for root hub
    [ 6.457162] hub 2-0:1.0: USB hub found
    [ 6.457169] hub 2-0:1.0: 2 ports detected
    [ 6.550569] ath9k 0000:09:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
    [ 6.550582] ath9k 0000:09:00.0: setting latency timer to 64
    [ 6.600926] ath: EEPROM regdomain: 0x60
    [ 6.600928] ath: EEPROM indicates we should expect a direct regpair map
    [ 6.600930] ath: Country alpha2 being used: 00
    [ 6.600931] ath: Regpair used: 0x60
    [ 6.662088] acpi_call: Module loaded successfully
    [ 6.755786] ieee80211 phy0: Selected rate control algorithm 'ath9k_rate_control'
    [ 6.755983] Registered led device: ath9k-phy0
    [ 6.755988] ieee80211 phy0: Atheros AR9285 Rev:2 mem=0xffffc90005480000, irq=19
    [ 6.966392] vboxdrv: Found 4 processor cores.
    [ 6.966438] VBoxDrv: dbg - g_abExecMemory=ffffffffa0552360
    [ 6.966472] vboxdrv: fAsync=0 offMin=0x14d offMax=0xc0f
    [ 6.966518] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
    [ 6.966521] vboxdrv: Successfully loaded version 4.0.8_OSE (interface 0x00180000).
    [ 6.969318] Synaptics Touchpad, model: 1, fw: 7.5, id: 0x1c0b1, caps: 0xd00033/0x240000/0x8a0400
    [ 7.000652] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input9
    [ 7.002421] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input10
    [ 7.060620] input: HDA Intel PCH Mic at Ext Right Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
    [ 7.060675] input: HDA Intel PCH HP Out at Ext Right Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
    [ 7.060852] ehci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 7.060881] ehci_hcd 0000:00:1a.0: setting latency timer to 64
    [ 7.060886] ehci_hcd 0000:00:1a.0: EHCI Host Controller
    [ 7.060896] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    [ 7.096845] ehci_hcd 0000:00:1a.0: debug port 2
    [ 7.100718] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
    [ 7.100729] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xf7c08000
    [ 7.113384] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 7.113584] hub 3-0:1.0: USB hub found
    [ 7.113588] hub 3-0:1.0: 2 ports detected
    [ 7.113864] ehci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    [ 7.113895] ehci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 7.113898] ehci_hcd 0000:00:1d.0: EHCI Host Controller
    [ 7.113907] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
    [ 7.146801] ehci_hcd 0000:00:1d.0: debug port 2
    [ 7.150681] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
    [ 7.150698] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xf7c07000
    [ 7.163324] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 7.163522] hub 4-0:1.0: USB hub found
    [ 7.163527] hub 4-0:1.0: 2 ports detected
    [ 7.419834] usb 3-1: new high speed USB device number 2 using ehci_hcd
    [ 7.543870] hub 3-1:1.0: USB hub found
    [ 7.543925] hub 3-1:1.0: 6 ports detected
    [ 7.649782] usb 4-1: new high speed USB device number 2 using ehci_hcd
    [ 7.773731] hub 4-1:1.0: USB hub found
    [ 7.773839] hub 4-1:1.0: 8 ports detected
    [ 7.839852] usb 3-1.4: new full speed USB device number 3 using ehci_hcd
    [ 7.989777] usb 3-1.5: new high speed USB device number 4 using ehci_hcd
    [ 7.996778] Bluetooth: Atheros AR30xx firmware driver ver 1.0
    [ 8.030855] Bluetooth: Core ver 2.16
    [ 8.030872] NET: Registered protocol family 31
    [ 8.030874] Bluetooth: HCI device and connection manager initialized
    [ 8.030876] Bluetooth: HCI socket layer initialized
    [ 8.030877] Bluetooth: L2CAP socket layer initialized
    [ 8.030911] Bluetooth: SCO socket layer initialized
    [ 8.045164] Bluetooth: Generic Bluetooth USB driver ver 0.6
    [ 8.184216] Linux media interface: v0.10
    [ 8.198960] Linux video capture interface: v2.00
    [ 8.199665] usb 4-1.3: new full speed USB device number 3 using ehci_hcd
    [ 8.203381] uvcvideo: Found UVC 1.00 device Laptop_Integrated_Webcam_HD (0c45:6484)
    [ 8.301968] usbcore: registered new interface driver ath3k
    [ 8.302079] usbcore: registered new interface driver btusb
    [ 8.362829] usb 4-1.6: new high speed USB device number 4 using ehci_hcd
    [ 8.465460] usb 3-1.4: USB disconnect, device number 3
    [ 8.467817] input: Laptop_Integrated_Webcam_HD as /devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.5/3-1.5:1.0/input/input13
    [ 8.467893] usbcore: registered new interface driver uvcvideo
    [ 8.467902] USB Video Class driver (v1.0.0)
    [ 8.864314] Initializing USB Mass Storage driver...
    [ 8.864367] usbcore: registered new interface driver usb-storage
    [ 8.864368] USB Mass Storage support registered.
    [ 8.879836] scsi6 : usb-storage 4-1.6:1.0
    [ 8.879934] usbcore: registered new interface driver ums-realtek
    [ 8.881878] usbcore: registered new interface driver uas
    [ 9.082584] usb 3-1.4: new full speed USB device number 5 using ehci_hcd
    [ 9.632321] ATOM BIOS: Dell
    [ 9.632686] radeon 0000:01:00.0: VRAM: 512M 0x0000000000000000 - 0x000000001FFFFFFF (512M used)
    [ 9.632688] radeon 0000:01:00.0: GTT: 512M 0x0000000020000000 - 0x000000003FFFFFFF
    [ 9.632694] mtrr: type mismatch for e0000000,10000000 old: write-back new: write-combining
    [ 9.632696] [drm] Detected VRAM RAM=512M, BAR=256M
    [ 9.632697] [drm] RAM width 64bits DDR
    [ 9.632801] [TTM] Zone kernel: Available graphics memory: 1982574 kiB.
    [ 9.632810] [TTM] Initializing pool allocator.
    [ 9.632829] [drm] radeon: 512M of VRAM memory ready
    [ 9.632830] [drm] radeon: 512M of GTT memory ready.
    [ 9.632840] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 9.632842] [drm] Driver supports precise vblank timestamp query.
    [ 9.632878] radeon 0000:01:00.0: irq 51 for MSI/MSI-X
    [ 9.632882] radeon 0000:01:00.0: radeon: using MSI.
    [ 9.632935] [drm] radeon: irq initialized.
    [ 9.632938] [drm] GART: num cpu pages 131072, num gpu pages 131072
    [ 9.633270] [drm] Loading CAICOS Microcode
    [ 9.655891] radeon 0000:01:00.0: WB enabled
    [ 9.672282] [drm] ring test succeeded in 3 usecs
    [ 9.672360] [drm] radeon: ib pool ready.
    [ 9.672437] [drm] ib test succeeded in 0 usecs
    [ 9.672919] [drm] Radeon Display Connectors
    [ 9.672934] [drm] Internal thermal controller with fan control
    [ 9.674100] [drm] radeon: power management initialized
    [ 9.674811] No connectors reported connected with modes
    [ 9.674813] [drm] Cannot find any crtc or sizes - going 1024x768
    [ 9.676106] [drm] fb mappable at 0xE0141000
    [ 9.676107] [drm] vram apper at 0xE0000000
    [ 9.676108] [drm] size 3145728
    [ 9.676109] [drm] fb depth is 24
    [ 9.676110] [drm] pitch is 4096
    [ 9.676155] fb1: radeondrmfb frame buffer device
    [ 9.676166] [drm] Initialized radeon 2.9.0 20080528 for 0000:01:00.0 on minor 1
    [ 9.881672] scsi 6:0:0:0: Direct-Access Generic- Multi-Card 1.00 PQ: 0 ANSI: 0 CCS
    [ 9.881872] sd 6:0:0:0: Attached scsi generic sg2 type 0
    [ 10.085648] EXT4-fs (sda3): re-mounted. Opts: (null)
    [ 10.150019] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: user_xattr
    [ 12.409237] acpi_call: Calling \_SB.PCI0.PEG0.PEGP._OFF
    [ 12.409491] acpi_call: Call successful: 0x0
    [ 12.786799] coretemp coretemp.0: TjMax is 100 C.
    [ 12.786833] coretemp coretemp.1: TjMax is 100 C.
    [ 17.058520] sd 6:0:0:0: [sdb] Attached SCSI removable disk
    [ 17.059313] ------------[ cut here ]------------
    [ 17.059321] WARNING: at block/genhd.c:1556 disk_clear_events+0x111/0x120()
    [ 17.059323] Hardware name: Vostro 3350
    [ 17.059325] Modules linked in: coretemp uas ums_realtek usb_storage uvcvideo videodev media v4l2_compat_ioctl32 btusb bluetooth ath3k joydev snd_hda_codec_hdmi snd_hda_codec_idt vboxdrv arc4 acpi_call cpufreq_powersave cpufreq_conservative cpufreq_ondemand ecb ath9k mac80211 xhci_hcd ehci_hcd acpi_cpufreq snd_hda_intel sg snd_hda_codec serio_raw dell_laptop psmouse ath9k_common snd_hwdep freq_table snd_pcm usbcore snd_timer mperf fuse radeon pcspkr dell_wmi ath9k_hw ath cfg80211 snd soundcore snd_page_alloc iTCO_wdt ttm r8169 i2c_i801 iTCO_vendor_support sparse_keymap thermal wmi processor battery mii evdev rfkill dcdbas ac ext4 mbcache jbd2 crc16 sr_mod cdrom sd_mod ahci libahci libata scsi_mod i915 drm_kms_helper drm intel_agp i2c_algo_bit button intel_gtt i2c_core video
    [ 17.059387] Pid: 1414, comm: hdparm Not tainted 2.6.39-ARCH #1
    [ 17.059389] Call Trace:
    [ 17.059395] [<ffffffff8105b8ef>] warn_slowpath_common+0x7f/0xc0
    [ 17.059398] [<ffffffff8105b94a>] warn_slowpath_null+0x1a/0x20
    [ 17.059402] [<ffffffff81206f71>] disk_clear_events+0x111/0x120
    [ 17.059408] [<ffffffff81185d27>] check_disk_change+0x37/0x80
    [ 17.059414] [<ffffffffa0066178>] sd_open+0x98/0x180 [sd_mod]
    [ 17.059418] [<ffffffff81187044>] __blkdev_get+0xb4/0x410
    [ 17.059422] [<ffffffff811873f3>] blkdev_get+0x53/0x300
    [ 17.059425] [<ffffffff81187700>] blkdev_open+0x60/0x90
    [ 17.059430] [<ffffffff8114fcab>] __dentry_open+0x16b/0x390
    [ 17.059434] [<ffffffff811876a0>] ? blkdev_get+0x300/0x300
    [ 17.059438] [<ffffffff81151181>] nameidata_to_filp+0x71/0x80
    [ 17.059442] [<ffffffff8115ffec>] do_last+0x3cc/0xa80
    [ 17.059446] [<ffffffff811614ab>] path_openat+0xcb/0x3c0
    [ 17.059450] [<ffffffff81119ea6>] ? handle_mm_fault+0x1a6/0x360
    [ 17.059454] [<ffffffff811617e2>] do_filp_open+0x42/0xa0
    [ 17.059458] [<ffffffff8116dfec>] ? alloc_fd+0xec/0x140
    [ 17.059462] [<ffffffff81151287>] do_sys_open+0xf7/0x1d0
    [ 17.059466] [<ffffffff81151380>] sys_open+0x20/0x30
    [ 17.059470] [<ffffffff813e9b42>] system_call_fastpath+0x16/0x1b
    [ 17.059473] ---[ end trace 21b491eea571dbe0 ]---
    [ 18.238070] EXT4-fs (sda3): re-mounted. Opts: user_xattr,acl,barrier=1,data=ordered,commit=600
    [ 18.280052] EXT4-fs (sda4): re-mounted. Opts: user_xattr,commit=600
    [ 18.390902] r8169 0000:05:00.0: PME# enabled
    [ 18.405906] xhci_hcd 0000:0b:00.0: PME# enabled
    [ 20.059492] NET: Registered protocol family 10
    [ 20.060138] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 21.206254] r8169 0000:05:00.0: PME# disabled
    [ 21.220343] r8169 0000:05:00.0: eth0: link down
    [ 21.221108] ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 22.735267] ehci_hcd 0000:00:1a.0: PCI INT A disabled
    [ 22.735314] ehci_hcd 0000:00:1a.0: PME# enabled
    [ 23.653141] EXT4-fs (sda3): re-mounted. Opts: commit=600
    [ 23.655261] EXT4-fs (sda4): re-mounted. Opts: user_xattr,commit=600
    [ 24.783437] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 24.859463] r8169 0000:05:00.0: PME# enabled
    [ 24.891097] r8169 0000:05:00.0: PME# disabled
    [ 24.898500] r8169 0000:05:00.0: eth0: link down
    [ 24.899264] ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 25.024260] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 28.437415] wlan0: authenticate with 00:1a:30:67:88:f1 (try 1)
    [ 28.439488] wlan0: authenticated
    [ 28.439548] wlan0: associate with 00:1a:30:67:88:f1 (try 1)
    [ 28.446589] wlan0: RX AssocResp from 00:1a:30:67:88:f1 (capab=0x431 status=0 aid=57)
    [ 28.446598] wlan0: associated
    [ 28.447530] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    [ 38.703759] wlan0: no IPv6 routers present
    [ 61.981783] [drm:i915_hangcheck_ring_idle] *ERROR* Hangcheck timer elapsed... blt ring idle [waiting on 1411, at 1411], missed IRQ?
    [ 63.527634] [drm:i915_hangcheck_ring_idle] *ERROR* Hangcheck timer elapsed... blt ring idle [waiting on 1464, at 1464], missed IRQ?
    [ 66.642672] [drm:i915_hangcheck_ring_idle] *ERROR* Hangcheck timer elapsed... blt ring idle [waiting on 1534, at 1534], missed IRQ?
    [ 71.430221] [drm:i915_hangcheck_ring_idle] *ERROR* Hangcheck timer elapsed... blt ring idle [waiting on 1633, at 1633], missed IRQ?
    [ 76.816622] chromium-sandbo (2310): /proc/2308/oom_adj is deprecated, please use /proc/2308/oom_score_adj instead.
    [ 1265.088913] [drm:i915_hangcheck_ring_idle] *ERROR* Hangcheck timer elapsed... blt ring idle [waiting on 125929, at 125929], missed IRQ?
    [ 1300.743906] [drm:i915_hangcheck_ring_idle] *ERROR* Hangcheck timer elapsed... blt ring idle [waiting on 129934, at 129934], missed IRQ?
    [ 1426.928921] ehci_hcd 0000:00:1a.0: BAR 0: set to [mem 0xf7c08000-0xf7c083ff] (PCI address [0xf7c08000-0xf7c083ff])
    [ 1426.928952] ehci_hcd 0000:00:1a.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
    [ 1426.928973] ehci_hcd 0000:00:1a.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
    [ 1426.932062] ehci_hcd 0000:00:1a.0: PME# disabled
    [ 1426.932074] ehci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 1426.932081] ehci_hcd 0000:00:1a.0: setting latency timer to 64
    [ 1433.822085] ehci_hcd 0000:00:1a.0: PCI INT A disabled
    [ 1433.822161] ehci_hcd 0000:00:1a.0: PME# enabled
    [ 1441.736293] process `skype' is using obsolete setsockopt SO_BSDCOMPAT
    [ 1451.399651] [drm:i915_hangcheck_ring_idle] *ERROR* Hangcheck timer elapsed... blt ring idle [waiting on 139439, at 139439], missed IRQ?
    [ 1490.366250] [drm:i915_hangcheck_ring_idle] *ERROR* Hangcheck timer elapsed... blt ring idle [waiting on 142671, at 142671], missed IRQ?
    [ 1491.892157] [drm:i915_hangcheck_ring_idle] *ERROR* Hangcheck timer elapsed... blt ring idle [waiting on 142691, at 142691], missed IRQ?
    [ 1504.535621] [drm:i915_hangcheck_ring_idle] *ERROR* Hangcheck timer elapsed... blt ring idle [waiting on 143528, at 143528], missed IRQ?
    [ 1555.955548] cfg80211: Calling CRDA for country: IT
    [ 1557.163221] wlan0: authenticate with 00:1a:30:67:88:f1 (try 1)
    [ 1557.165287] wlan0: authenticated
    [ 1557.165332] wlan0: associate with 00:1a:30:67:88:f1 (try 1)
    [ 1557.170691] wlan0: RX AssocResp from 00:1a:30:67:88:f1 (capab=0x31 status=0 aid=57)
    [ 1557.170699] wlan0: associated
    [ 1560.523624] wlan0: deauthenticating from 00:1a:30:67:88:f1 by local choice (reason=3)
    [ 1560.617243] cfg80211: Calling CRDA to update world regulatory domain
    [ 1560.738829] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 1560.875326] r8169 0000:05:00.0: PME# enabled
    [ 1560.906883] r8169 0000:05:00.0: PME# disabled
    [ 1560.914250] r8169 0000:05:00.0: eth0: link down
    [ 1560.915053] ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 1565.451894] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 1566.954570] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 1567.038998] r8169 0000:05:00.0: PME#

    sure...
    Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
    Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
    Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
    Bus 001 Device 005: ID 0cf3:3005 Atheros Communications, Inc.
    Bus 001 Device 004: ID 0c45:6484 Microdia
    Bus 002 Device 003: ID 138a:0011 Validity Sensors, Inc.
    Bus 002 Device 004: ID 0bda:0138 Realtek Semiconductor Corp.
    Bus 002 Device 005: ID 0fce:2149 Sony Ericsson Mobile Communications AB Xperia X8 (debug)

  • Location assignment doesn't work

    Hi all,
    I have a procedure which creates a customer but i found that it doesn't work properly. After execution it seems OK in Customers JSP but when i started to create an invoice for the new customer it doesn't recognized it's location.
    Here is my procedure:
      procedure set_customers (p_cust_row in cust_type)
    is
    p_organization_rec HZ_PARTY_V2PUB.ORGANIZATION_REC_TYPE;
    x_return_status VARCHAR2(2000);
    x_msg_count NUMBER;
    x_msg_data VARCHAR2(2000);
    x_party_id NUMBER;
    X_PARTY_NUMBER varchar2(2000);
    x_profile_id NUMBER;
    p_location_rec hz_location_v2pub.location_rec_type;
    x_location_id number;
    p_party_site_rec HZ_PARTY_SITE_V2PUB.PARTY_SITE_REC_TYPE;
    x_party_site_id number;
    x_party_site_number varchar2(2000);
    p_party_site_use_rec hz_party_site_v2pub.party_site_use_rec_type;
    x_party_site_use_id NUMBER;
    p_cust_account_rec     HZ_CUST_ACCOUNT_V2PUB.CUST_ACCOUNT_REC_TYPE;
    -- p_organization_rec     HZ_PARTY_V2PUB.ORGANIZATION_REC_TYPE;
    p_customer_profile_rec HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE;
    x_cust_account_id      NUMBER;
    x_account_number       VARCHAR2(2000);
    -- x_party_id             NUMBER;
    -- x_party_number         varchar2(2000);
    -- x_profile_id           NUMBER;
    p_location_id number;
    p_created_by_module varchar2(500);
    p_application_id number;
    x_loc_id NUMBER;
    begin
    -- create organization
    p_organization_rec.organization_name := p_cust_row.customer_name;
    p_organization_rec.created_by_module := 'HZ_CPUI';
    p_organization_rec.tax_reference := p_cust_row.vat_id;
    p_organization_rec.jgzz_fiscal_code := p_cust_row.taxpayer_id;
    p_organization_rec.application_id := 222;
    hz_party_v2pub.create_organization (
    'T',
    p_organization_rec,
    x_return_status,
    x_msg_count,
    x_msg_data,
    x_party_id,
    x_party_number,
    x_profile_id);
        dbms_output.put_line('return_status='|| SUBSTR (x_return_status,1,255));
        dbms_output.put_line('count='||TO_CHAR(x_msg_count));
        dbms_output.put_line('Msg_data = '|| SUBSTR (x_msg_data,1,255));
        dbms_output.put_line('Party Id='|| SUBSTR (x_party_id,1,255));
        dbms_output.put_line('Party_Number='|| SUBSTR (x_party_number,1,255));
        dbms_output.put_line('Organization_Name='||SUBSTR(p_organization_rec.organization_name,1,255));
        dbms_output.put_line('CreatedBy='||SUBSTR (p_organization_rec.created_by_module,1,255));
        dbms_output.put_line('Profile Id='|| SUBSTR (x_profile_id,1,255));
          IF x_msg_count > 1 THEN
            FOR I IN 1..x_msg_count LOOP
            dbms_output.put_line('I.'|| SUBSTR (FND_MSG_PUB.Get(p_encoded =>
            FND_API.G_FALSE ), 1, 255));
          end loop;
          end if;
    --create location
    p_location_rec.country := 'BG';
    p_location_rec.address1 := p_cust_row.customer_address;
    p_location_rec.city := p_cust_row.customer_city;
    p_location_rec.created_by_module := 'HZ_CPUI';
    p_location_rec.application_id := 222;
    p_location_rec.address_style := 'POSTAL_ADDR_DEF';
    hz_location_v2pub.create_location(
    'T',
    p_location_rec,
    x_location_id,
    x_return_status,
    x_msg_count,
    x_msg_data);
      dbms_output.put_line('x_return_status = '||SUBSTR(x_return_status,1,255));
      dbms_output.put_line('x_msg_count = '||TO_CHAR(x_msg_count));
      dbms_output.put_line('Location Id = '||TO_CHAR(x_location_id));
      dbms_output.put_line('Country = '|| SUBSTR(p_location_rec.country,1,255));
      dbms_output.put_line('Address1 = '|| SUBSTR(p_location_rec.Address1,1,255));
      dbms_output.put_line('State = '|| SUBSTR(p_location_rec.state,1,255));
      dbms_output.put_line('Created By = '|| SUBSTR(p_location_rec.created_by_module,1,255));
      dbms_output.put_line('x_msg_data = '|| SUBSTR(x_msg_data,1,255));
        IF x_msg_count > 1 THEN
          FOR I IN 1..x_msg_count LOOP
          dbms_output.put_line(I||'.'||SUBSTR(FND_MSG_PUB.Get(p_encoded=>
          FND_API.G_FALSE ),1, 255));
          end loop;
        end if;
    -- create party site
    p_party_site_rec.party_id := x_party_id;--p_organization_rec.party_rec.party_id; --26743
    p_party_site_rec.location_id := x_location_id;--p_location_rec.Location_Id; --2057
    p_party_site_rec.identifying_address_flag := 'Y';
    p_party_site_rec.created_by_module := 'HZ_CPUI';
    p_party_site_rec.application_id := 222;
    hz_party_site_v2pub.create_party_site(
    'T',
    p_party_site_rec,
    x_party_site_id,
    x_party_site_number,
    x_return_status,
    x_msg_count,
    x_msg_data);
      dbms_output.put_line('x_return_status = '||SUBSTR(x_return_status,1,255));
      dbms_output.put_line('x_msg_count = '||TO_CHAR(x_msg_count));
      dbms_output.put_line('Party Site Id = '||TO_CHAR(x_party_site_id));
      dbms_output.put_line('Party Site Number = '||SUBSTR(x_party_site_number,1,255));
      dbms_output.put_line('x_msg_data = '||SUBSTR(x_msg_data,1,255));
        IF x_msg_count >1 THEN
          FOR I IN 1..x_msg_count LOOP
          dbms_output.put_line(I||'.'||SUBSTR(FND_MSG_PUB.Get(p_encoded=>
          FND_API.G_FALSE), 1, 255));
          end loop;
        end if;
    -- create party site use
    p_party_site_use_rec.party_site_id := x_party_site_id;--p_party_site_rec.Party_Site_Id;
    p_party_site_use_rec.created_by_module := 'HZ_CPUI';
    p_party_site_use_rec.site_use_type := 'BILL_TO';
    p_party_site_use_rec.application_id := 222;
    hz_party_site_v2pub.create_party_site_use(
    'T',
    p_party_site_use_rec,
    x_party_site_use_id,
    x_return_status,
    x_msg_count,
    x_msg_data);
      dbms_output.put_line('x_return_status = '||substr(x_return_status,1,255));
      dbms_output.put_line('x_msg_count = '||TO_CHAR(x_msg_count));
      dbms_output.put_line('Site Use Id = '||TO_CHAR(x_party_site_use_id));
      dbms_output.put_line(SubStr('x_msg_data = '||x_msg_data,1,255));
        IF x_msg_count >1 THEN
          FOR I IN 1..x_msg_count LOOP
          dbms_output.put_line(I||'.'||SUBSTR(FND_MSG_PUB.Get(p_encoded=>
          FND_API.G_FALSE ), 1, 255));
          end loop;
        end if;
    --create customer account
    p_cust_account_rec.created_by_module   := 'HZ_CPUI';
    p_organization_rec.party_rec.party_id  := x_party_id;--p_organization_rec.party_rec.party_id;
    p_cust_account_rec.application_id := '222';
    p_cust_account_rec.customer_type := 'R';
    p_customer_profile_rec.grouping_rule_id := '-1';
    HZ_CUST_ACCOUNT_V2PUB.CREATE_CUST_ACCOUNT
                  p_init_msg_list       => FND_API.G_TRUE,
                  p_cust_account_rec    =>p_cust_account_rec,
                  p_organization_rec    =>p_organization_rec,
                  p_customer_profile_rec=>p_customer_profile_rec,
                  p_create_profile_amt  =>'F',
                  x_cust_account_id     =>x_cust_account_id,
                  x_account_number      =>x_account_number,
                  x_party_id            =>x_party_id,
                  x_party_number        =>x_party_number,
                  x_profile_id          =>x_profile_id,
                  x_return_status       =>x_return_status,
                  x_msg_count           => x_msg_count,
                  x_msg_data            =>x_msg_data
    IF x_return_status = fnd_api.g_ret_sts_success THEN
        COMMIT;
        DBMS_OUTPUT.PUT_LINE('Creation of Cust account is Successful ');
        DBMS_OUTPUT.PUT_LINE('Output information ....');
        DBMS_OUTPUT.PUT_LINE('x_cust_account_id  : '||x_cust_account_id);
        DBMS_OUTPUT.PUT_LINE('x_account_number   : '||x_account_number);
        DBMS_OUTPUT.PUT_LINE('x_party_id         : '||x_party_id);
        DBMS_OUTPUT.PUT_LINE('x_party_number     : '||x_party_number);
    ELSE
        DBMS_OUTPUT.PUT_LINE ('Creation of Cust account got failed:'||x_msg_data);
        ROLLBACK;
        FOR i IN 1 .. x_msg_count
        LOOP
          x_msg_data := oe_msg_pub.get( p_msg_index => i, p_encoded => 'F');
          dbms_output.put_line( i|| ') '|| x_msg_data);
        END LOOP;
    end if;
    DBMS_OUTPUT.PUT_LINE('Completion of API');
    -- location
    insert into hz_cust_acct_sites_all
      CUST_ACCT_SITE_ID,
      cust_account_id,
      party_site_id,
      last_update_date,
      last_updated_by,
      creation_date,
      created_by,
      last_update_login,
      orig_system_reference,
      status,
      org_id,
      bill_to_flag,
      object_version_number,
      created_by_module,
      application_id
    ) values
      hz_cust_acct_sites_s.nextval,
      x_cust_account_id,--p_cust_account_rec.cust_account_id,
      x_party_site_id,--p_party_site_rec.party_site_id,
      sysdate,
      '-1',
      sysdate,
      '-1',
      '102804',
      hz_cust_acct_sites_s.nextval,
      'A',
      '81',
      'P',
      1,
      'HZ_CPUI',
      222 
    fnd_client_info.set_org_context('81');
    p_location_id := x_location_id;
    p_created_by_module := 'HZ_CPUI';
    hz_tax_assignment_v2pub.create_loc_assignment(
    'T',
    p_location_id,
    'T',
    p_created_by_module,
    p_application_id,
    x_return_status,
    x_msg_count,
    x_msg_data,
    x_loc_id);
      dbms_output.put_line('x_return_status = '||SUBSTR(x_return_status,1,255));
      dbms_output.put_line('Location Id = '||TO_CHAR(p_location_id));
      dbms_output.put_line('Created By Moudle = '|| SUBSTR (p_created_by_module,1,30));
      dbms_output.put_line('x_msg_count = '||TO_CHAR(x_msg_count));
      dbms_output.put_line('x_msg_data = '|| SUBSTR (x_msg_data,1,255));
        IF x_msg_count >1 THEN
          FOR I IN 1..x_msg_count LOOP
            dbms_output.put_line(I||'.'||SUBSTR(FND_MSG_PUB.Get(p_encoded=>
            FND_API.G_FALSE ), 1, 255));
          END LOOP;
        end if;
    dbms_output.put_line(x_party_site_id || '--' || p_party_site_rec.party_site_id);
    end set_customers;EBS Version: 12.1.3
    I call this procedure with another and pass a param for just one customer(in test environment).
    I made a test and create one via EBS Receivables -> Customers - > Customers . After this i created a manual invoice for that customer and when i specify the name of the Bill To(the new one) the Number, Location and Address are filled automatically. But with the customer created via this procedure it didn't filled automatically(when customer's name was specified...).
    procedure create_customers(p_choice in number) is
    cursor c is select taxpayer_id
                      ,customer_name
                      ,customer_city
                      ,customer_address
                      ,vat_id 
                from xx_customers_temp
                 where taxpayer_id = '131199238';
    v_cust cust_type;                         
    begin
        open c;
        loop
          fetch c into  v_cust;
          exit when c%notfound;
        dbms_output.put_line(v_cust.taxpayer_id || '--' || v_cust.customer_name || '--' || v_cust.customer_city
                            || '--' || v_cust.customer_address|| '--' || v_cust.vat_id);
        if p_choice = 1 then
          set_customers(v_cust);
        end if;
      end loop;
      close c;
    end create_customers;Any ideas?
    Thanks in advance,
    Bahchevanov.

    For location the iPod uses the location of nearby wifi routers that are in Apple's database. You do not have to be connected to the network/router to use that router's location. Thus, it appears that the iPod can't see a nearby router that is in Apple's database. Apple continuously updated their database based on info they obtain from iPhones. No one has been able to find a way to inform Apple of a router or correct is location.
    You can confirm that by going to place with a know located router like Starbucks or McDonalds

Maybe you are looking for

  • Cannot find hard drive

    I was going to install leopard - failed - now computer cannot find hard drive - I tried to reinstall tiger cannot find hard drive so put disk warrior - finds hard drive says is it an extended adjusts everything - finds hard drive and says it is okay

  • Where is located or where to find the list of printer drivers included in Windows 7

    Hello, Like the http://support.microsoft.com/kb/293360 for XP I wish to have the list of 'built-in' print drivers on Windows 7 Didn't find any from technet, KB, Forum, ... Maybe wrong search critera or else. May someone know where is located the list

  • I would like to change my primary email to my security email.

    My primary email address no longer exists. I only use my security email address now, but it won't let me make it the primary address. Any ways around this?

  • Another how to fit to page question

    I have an A4 sized document (CS4) that I want to print on a Canon MP830. It's a magazine format, so it has full page spreads and I want to print without margins. Right now, I'm just trying to print one page, portrait, to see if I can eliminate the wh

  • Proximity sensor doesn't switch off - Lumia 920

    Hi, I hope someone can help me here.  I've got a huge problem with my brand new Lumia 920.  When I make a phone call, or accept a phone call, it seems my phone locks the screen completely, as if I had it next to my ear (i.e. the proximity sensor), ev