Live webcam video becomes choppy after 600 connections per stream

Hi!
Server conf:
2 x Intel(R) Xeon(R) CPU           L5410  @ 2.33GHz
16Gb RAM
2 Gbit ethernet channel
OS - Linux CentOS 5.5 x86_64
FMS4 Interactive
Live stream parameters:
320х240
qua_=87
bw_=200000
kf_=5
fps_=18
So, after approximately 600 connections to one stream video becomes choppy (periodically freeze, slow motions). CPU-usage at this time is 100-120% (maximum is 800%, 100% per each core), network usage is 500 Mbit/sec.
But second live stream(with few connections) at this server looks fine simultaneously with 600 connections at first stream.
Experiments with recommendation in "Configuring performance features" documentation chapter(enabling/disabling  aggregate messages and configure the size of stream chunks) do not help.
Please, help me to find bottleneck!
Thanks for answers.
Apologisw my english.

What Flash Player version are you using at client-side?? have you tried changing the FP to the latest (in case if you are already using latest FP, then try to switch to some previous version)  and see if this issue still remains?
Regards,
Shiraz Anwar

Similar Messages

  • ITunes playback becomes choppy after machine comes out of stand by mode

    Hi All-
    I've recently started having an issue with iTunes where the playback of files on my hard drive (as well as a cd in the cd drive)becomes choppy and garbled after my machine has come out of stand by or hibernation mode. The only way to resolve the issue is to reboot the machine at which point things are fine until the machine goes back into standby mode and the problem reoccurs. Other audio program play back without an issue. I have reinstalled the latest iTunes software (ver 6.0.4.2), as well as updated the iPod software on my device, and the results are the same. The cd driver is ver 2.0.4.3 and the cd driver dll is version 2.0.3.2. Client OS is XP pro ver. 2002 with SP1. The machine has a gig of memory on it.
    Given that it takes about 5-7 minutes to reboot my machine and the frequency that I put the machine into standby mode this has become quite a bummer. Any help is appreciated. Thanks in advance.
    IBM Thinkpad   Windows XP Pro  

    well done Skadel!
    i'm not sure why this is only hits some folks under some circumstances like this. i've seen reports of itunes sound being bad only after minimising the itunes window, sometimes only when an application has closed, sometimes only with certain songs ...
    at any rate, i'm glad you're up and running again.
    love, b

  • Import video becomes choppy

    im using premiere cs4. when i import the video the audio is fine but the video becomes extremely choppy and low quality, can anyone help? thanks

    >im just trying to get some help here im new at this
    That's okay, there is a fair amount to learn, but thngs will make a lot more sense when you have learned the basics.
    Have a look through the following links:
    FAQ: How do I import xyz format files?
    FAQ:How do I convert my files?
    You will also find links to many
    free tutorials in the PremiereProPedia that will quickly show you how things are done in Premiere Pro.
    Cheers
    Eddie
    PremiereProPedia   (
    RSS feed)
    - Over 300 frequently answered questions
    - Over 250 free tutorials
    - Maintained by editors like
    you
    Forum FAQ

  • About live webcam video on webpage

    I made a simple JMF class capture live video from my webcam,and then load to a applet webpage.It works.
    I tried to put it on my web server,but when client visits the webpage over network,the client can not load the applet,client side can not see the live video.
    are there any way to achieve that?
    can anyone give any tips about that?
    Thanks

    Im receiving the live video from the webcam through the IP address. But now i wan to modify it to be able to browsed n the website. How to convert the java standalone program to applet so it can be accessed at the web?
    Below is the program which it receive the live video from the webcam:
    This program is used to read jpeg2000 file xxxx.jp2
    import java.awt.*;
    import java.awt.image.*;
    import java.awt.event.*;
    import java.io.*;
    import java.util.Iterator;
    import com.sun.media.imageio.plugins.jpeg2000.*;
    import javax.imageio.stream.*;
    import javax.imageio.*;
    class jp2reader2 extends Frame
         Image bi;
         public jp2reader2()
              addWindowListener(new WindowAdapter(){
              public void windowClosing(WindowEvent e){
              System.exit(0);}
              try {
                   File f = new File ("Frame1.jp2");
                   ImageInputStream iis = ImageIO.createImageInputStream(f);
                   Iterator iter = ImageIO.getImageReaders(iis);
                   ImageReader reader1=(ImageReader)iter.next();
                   reader1.setInput(iis,false,true);
                   J2KImageReadParam paramJ2K1 = new J2KImageReadParam();
                   paramJ2K1.setDecodingRate(Double.MAX_VALUE*0.9);
                   bi = reader1.read(0, paramJ2K1);
                   reader1.dispose();
              }catch (Exception ex) {System.out.println("Mistake is here when extract J2K or open JPEG200 file");}
         public void paint(Graphics g)
              g.drawImage(bi,0,30,this);
         public static void main(String args[])
              jp2reader2 s = new jp2reader2();
              s.setSize(320,274);
              s.show();
    This program is used to receive datagram and saved as a file
    import java.io.*;
    import java.net.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.BufferedImage;
    public class ReceiverJPEG2000b {
         static final int port = 1975;
         protected static int Counter = 1;
         public static void main(String args[])throws Exception {
              int ImageNumber;
              System.out.println(" VIDEO TRANSMISSION FOR TELEROBOTIC ");
              byte[] buffer=new byte[65507];
              DatagramSocket socket = new DatagramSocket(port);
              while (true)
                   //receive datagram
                   DatagramPacket packet = new DatagramPacket (buffer, buffer.length);
                   socket.receive(packet);
                   System.out.println("Packet received");
                   System.out.println("From " + packet.getSocketAddress());
                   System.out.println("Length " + packet.getLength());
              buffer = packet.getData();
                   //save data in file
                   ImageNumber = Counter++;
                   FileOutputStream out = new FileOutputStream ("Frame" + ImageNumber +".jp2");
                   out.write(buffer);
                   out.close();
    This program is used to display images from file
    import java.io.*;
    import com.sun.media.imageio.plugins.jpeg2000.*;
    import javax.imageio.stream.*;
    import javax.imageio.*;
    import java.util.Iterator;
    import java.awt.*;
    import java.awt.image.BufferedImage;
    import java.io.FileInputStream;
    import javax.swing.JFrame;
    public class FrameViewer extends SimpleSwing {
         // to hold image
         private BufferedImage currentImage;
         // canvas for image in case we want to repaint after a process
         // constructor for buffered image
         public FrameViewer(BufferedImage bimg) {
              setTitle("Video Transmission");
              currentImage = bimg;
              init();
         // constructor for filename
         public FrameViewer(String fileName) throws Exception{
              setTitle("Image Transmission - " + fileName);
              // get file
              FileInputStream fis = new FileInputStream(fileName);
              // convert jp2 to buffered image
              ImageInputStream iis = ImageIO.createImageInputStream(fis);
              Iterator iter = ImageIO.getImageReaders(iis);
              ImageReader reader1=(ImageReader)iter.next();
              reader1.setInput(iis,false,true);
              J2KImageReadParam paramJ2K1 = new J2KImageReadParam();
              paramJ2K1.setDecodingRate(Double.MAX_VALUE*0.9);
              currentImage = reader1.read(0, paramJ2K1);
              reader1.dispose();
              init();
         public void init() {
              int w = currentImage.getWidth();
              int h = currentImage.getHeight();
              ImagePanel imagePanel = new ImagePanel(w,h);
              // set size of the window
              setSize(w + 8, h + 35); // w8 h 35
              // add imagePanel
              getContentPane().add(imagePanel,BorderLayout.CENTER);
              // make visible
              setVisible(true);
              // in case this is overloaded later
              imagePanel.setImage(currentImage);
         public static void main(String[] args) {
              try {
                   for ( int i=1; i < 11; i++)      // set how many frames to display
                        FrameViewer imageViewer = new FrameViewer("Frame"+ i + ".jp2"); //Photo
                        try     {
                             Thread.sleep(20000/10); // 100ms = 10fps
                        catch(InterruptedException e) {
                             System.out.println("Sleep Interrupted");
              } catch (Exception e) {
                   e.printStackTrace();
                   System.exit(1);
    Anyone can help me??

  • HD Steaming video now choppy after upgrading to 10.6

    Back when I was running 10.5 I could stream HD videos from Youtube, Hulu, etc without problems. After upgrading to 10.6 the lower resolution video plays normally, but once you go to 720p+ the processor usage climbs and the video starts to stutter. I run a 2.33 Core2Duo Macbook Pro, 3GB RAM, RadeonX1600. Flash is of course upgraded to 10.x, so it's not an issue there. I've seen plenty of discussions about this issue from my searching, but I can't seem to find any solution. Thanks in advance!

    I have tested with Safari and Firefox. After a TON of digging through Google I found an article that ultimately helped. I did a full uninstall of Adobe Flash player, then reinstalled the latest version. I don't know if it's newer than the one I was trying before this. After installing, I did a verify/repair permissions through Disk Utility. One of the permissions needing to be repaired was a flash player file. After this I ran Netflix at HD quality and it was much better. It wasn't 100% perfect, but I assume that was because of my "older" hardware. I'm going to mark this as solved, so if anyone else has this problem, give it a shot.

  • Why does my video become longer after exporting from Flash?

    I am a relative novice in Flash and working in CS5. When I test my file, it plays perfectly with the audio I embedded in my timeline. I tried a couple different compressions when exporting into a Quicktime file, but my video which is only 32 seconds long at 30 fps becomes 52 seconds long! The animation slows considerably, and yet the audio I embeded plays perfectly. Any advice as to how I can get it to match the "test movie" option so I can get this bad boy on YouTube?
    PLEASE and THANK YOU!

    Without knowing the overall innards of the timeline it's hard to suggest a strategy other than those already mentioned. A clean test worked fine so the audio doesn't seem to be the issue.
    Can you explain what is "buggy" about the output from the converters? Again, those should only be used if there's code involved to facilitate the animation. They essentially run the SWF and attempt to capture each frame as an image while stitching them together into a video. It's a fairly simple thing to do so it's hard to go wrong unless the hardware on the computer isn't keeping up with the SWF frame rate.
    Flash CS6 is not compaible (to my knowledge) with 10.8 so that works to your advantage. Perhaps you can try downloading a trial of Flash CS6 and see if your export issue goes away. It won't solve why CS5 is giving you issues but it does put the power in your hands to export it for now. If it still fails to export that's a pretty convincing argument that a gremlin on the timeline is monkeying around.

  • What's the best way to record live webcam video with Premiere CS6?

    We are producing an online news show and will interview guests from all over the country. We will have them phone in using Skype and or their IPad. We would then do all of the post in Premiere. We would like to capture guest video from either Skype or an iPad using Premiere. Any suggestions for camera/software combinations will be appreciated. Thank you in advance.

    I would not attempt to use Premiere Pro to capture live video. There are better ways.
    Perhaps a screen capture utility that records to a lossless codec that is easily edited in Premiere Pro.
    I use a free program (CamStudio-Recorder) but there are others. Since I have the drive space, I record to the Lagarith Lossless Codec. Premiere Pro cuts through it like a hot knife through butter.
    If quality is not the issue, then there are other codecs you can use that are lossy, but still not too bad.

  • Video becomes squashed after export

    I do not know what I am doig wrong but everytime I export my finished video it seems to get squeezed. It is a simple head shot of a guy talking. Green screened.
    I do not change settings for exporting, I just make it use current settings. It looks fine in the viewer, but when I play back it is elongated.
    Help!!!!

    I am exporting to Quicktime Format, from Final Cut Pro HD.
    I was wondering if it is the way I have captured the video? It is in Pro Cine mode, which I think makes it into 16:9, but I have used a 16:9 setting in my Final Cut Project.
    What would be the best way to export?

  • Choppy video/audio playback after two suspend/resume cycles?

    Hello!
    Today I figured out, that my video and audi playback becomes choppy after two or more suspend-cycles. Can somebody confirm this?
    I'm running a up-to-date Archlinux on my ThinkPad t430s. Several applications are affected: mplayer (virtual terminal), totem (Gnome 3), IOQuake3 (OpenGL is fine, but sound is choppy too).
    I wonder if I'm the only one?

    I tried it like described here: https://bugs.launchpad.net/ubuntu/+sour … omments/22
    Sadly it seems not to work for me.
    // Update:
    Ufff, looks weird to me at all.
    1. Seem not to occure with Kernel 3.6.x, but with Kernel 3.7.x
    2. Suspending/Resuming again maybe fix the issue, i.e. try to manually suspend with pm-suspend (uses a buch of quirks and so on and not only plain "suspend" from system) instead with systemd (systemctl suspend, is also used by GNOME or KDE internals)
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.7.1-CUSTOM (peter@cupcake) (gcc version 4.7.2 (GCC) ) #3 SMP PREEMPT Wed Dec 26 12:46:34 CET 2012
    [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-custom root=UUID=00faa466-81ea-40b0-a38e-093b44978182 ro quiet
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009bfff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009c000-0x000000000009cfff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000000009d000-0x000000000009dfff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009e000-0x00000000000bffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000020200000-0x0000000040003fff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000040004000-0x0000000040004fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000040005000-0x00000000d032cfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000d032d000-0x00000000d052efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000d052f000-0x00000000d694efff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000d694f000-0x00000000dae9efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000dae9f000-0x00000000daf9efff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000daf9f000-0x00000000daffefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000dafff000-0x00000000daffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000db000000-0x00000000df9fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f80f8000-0x00000000f80f8fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000021e5fffff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000021e600000-0x000000021e7fffff] reserved
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] efi: EFI v2.31 by Lenovo
    [ 0.000000] efi: ACPI 2.0=0xdaffe014 ACPI=0xdaffe000 SMBIOS=0xdae9e000
    [ 0.000000] efi: mem00: type=7, attr=0xf, range=[0x0000000000000000-0x0000000000087000) (0MB)
    [ 0.000000] efi: mem01: type=4, attr=0xf, range=[0x0000000000087000-0x0000000000088000) (0MB)
    [ 0.000000] efi: mem02: type=7, attr=0xf, range=[0x0000000000088000-0x000000000009c000) (0MB)
    [ 0.000000] efi: mem03: type=0, attr=0xf, range=[0x000000000009c000-0x000000000009d000) (0MB)
    [ 0.000000] efi: mem04: type=4, attr=0xf, range=[0x000000000009d000-0x000000000009e000) (0MB)
    [ 0.000000] efi: mem05: type=0, attr=0xf, range=[0x000000000009e000-0x00000000000a0000) (0MB)
    [ 0.000000] efi: mem06: type=2, attr=0xf, range=[0x0000000000100000-0x00000000010f0000) (15MB)
    [ 0.000000] efi: mem07: type=7, attr=0xf, range=[0x00000000010f0000-0x0000000002000000) (15MB)
    [ 0.000000] efi: mem08: type=2, attr=0xf, range=[0x0000000002000000-0x0000000002ff0000) (15MB)
    [ 0.000000] efi: mem09: type=7, attr=0xf, range=[0x0000000002ff0000-0x0000000020000000) (464MB)
    [ 0.000000] efi: mem10: type=0, attr=0xf, range=[0x0000000020000000-0x0000000020200000) (2MB)
    [ 0.000000] efi: mem11: type=7, attr=0xf, range=[0x0000000020200000-0x0000000037c16000) (378MB)
    [ 0.000000] efi: mem12: type=2, attr=0xf, range=[0x0000000037c16000-0x0000000037e03000) (1MB)
    [ 0.000000] efi: mem13: type=7, attr=0xf, range=[0x0000000037e03000-0x0000000040004000) (130MB)
    [ 0.000000] efi: mem14: type=0, attr=0xf, range=[0x0000000040004000-0x0000000040005000) (0MB)
    [ 0.000000] efi: mem15: type=7, attr=0xf, range=[0x0000000040005000-0x000000009939a000) (1427MB)
    [ 0.000000] efi: mem16: type=2, attr=0xf, range=[0x000000009939a000-0x00000000cdcfe000) (841MB)
    [ 0.000000] efi: mem17: type=4, attr=0xf, range=[0x00000000cdcfe000-0x00000000cdd1e000) (0MB)
    [ 0.000000] efi: mem18: type=7, attr=0xf, range=[0x00000000cdd1e000-0x00000000d0317000) (37MB)
    [ 0.000000] efi: mem19: type=4, attr=0xf, range=[0x00000000d0317000-0x00000000d032d000) (0MB)
    [ 0.000000] efi: mem20: type=0, attr=0xf, range=[0x00000000d032d000-0x00000000d052f000) (2MB)
    [ 0.000000] efi: mem21: type=4, attr=0xf, range=[0x00000000d052f000-0x00000000d0cee000) (7MB)
    [ 0.000000] efi: mem22: type=7, attr=0xf, range=[0x00000000d0cee000-0x00000000d0eff000) (2MB)
    [ 0.000000] efi: mem23: type=1, attr=0xf, range=[0x00000000d0eff000-0x00000000d0f1d000) (0MB)
    [ 0.000000] efi: mem24: type=7, attr=0xf, range=[0x00000000d0f1d000-0x00000000d2d40000) (30MB)
    [ 0.000000] efi: mem25: type=4, attr=0xf, range=[0x00000000d2d40000-0x00000000d45ef000) (24MB)
    [ 0.000000] efi: mem26: type=7, attr=0xf, range=[0x00000000d45ef000-0x00000000d4601000) (0MB)
    [ 0.000000] efi: mem27: type=4, attr=0xf, range=[0x00000000d4601000-0x00000000d5f4f000) (25MB)
    [ 0.000000] efi: mem28: type=7, attr=0xf, range=[0x00000000d5f4f000-0x00000000d649f000) (5MB)
    [ 0.000000] efi: mem29: type=2, attr=0xf, range=[0x00000000d649f000-0x00000000d64a8000) (0MB)
    [ 0.000000] efi: mem30: type=3, attr=0xf, range=[0x00000000d64a8000-0x00000000d694f000) (4MB)
    [ 0.000000] efi: mem31: type=5, attr=0x800000000000000f, range=[0x00000000d694f000-0x00000000d6a2f000) (0MB)
    [ 0.000000] efi: mem32: type=5, attr=0x800000000000000f, range=[0x00000000d6a2f000-0x00000000d6b4f000) (1MB)
    [ 0.000000] efi: mem33: type=6, attr=0x800000000000000f, range=[0x00000000d6b4f000-0x00000000d76f9000) (11MB)
    [ 0.000000] efi: mem34: type=6, attr=0x800000000000000f, range=[0x00000000d76f9000-0x00000000da59f000) (46MB)
    [ 0.000000] efi: mem35: type=0, attr=0xf, range=[0x00000000da59f000-0x00000000dae35000) (8MB)
    [ 0.000000] efi: mem36: type=0, attr=0xf, range=[0x00000000dae35000-0x00000000dae9b000) (0MB)
    [ 0.000000] efi: mem37: type=0, attr=0xf, range=[0x00000000dae9b000-0x00000000dae9d000) (0MB)
    [ 0.000000] efi: mem38: type=0, attr=0xf, range=[0x00000000dae9d000-0x00000000dae9f000) (0MB)
    [ 0.000000] efi: mem39: type=10, attr=0xf, range=[0x00000000dae9f000-0x00000000daef6000) (0MB)
    [ 0.000000] efi: mem40: type=10, attr=0xf, range=[0x00000000daef6000-0x00000000daf9f000) (0MB)
    [ 0.000000] efi: mem41: type=9, attr=0xf, range=[0x00000000daf9f000-0x00000000dafd8000) (0MB)
    [ 0.000000] efi: mem42: type=9, attr=0xf, range=[0x00000000dafd8000-0x00000000dafff000) (0MB)
    [ 0.000000] efi: mem43: type=4, attr=0xf, range=[0x00000000dafff000-0x00000000db000000) (0MB)
    [ 0.000000] efi: mem44: type=7, attr=0xf, range=[0x0000000100000000-0x000000021e600000) (4582MB)
    [ 0.000000] efi: mem45: type=0, attr=0x0, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
    [ 0.000000] efi: mem46: type=0, attr=0x0, range=[0x00000000db000000-0x00000000dfa00000) (74MB)
    [ 0.000000] efi: mem47: type=11, attr=0x8000000000000001, range=[0x00000000f80f8000-0x00000000f80f9000) (0MB)
    [ 0.000000] efi: mem48: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
    [ 0.000000] efi: mem49: type=0, attr=0x0, range=[0x000000021e600000-0x000000021e800000) (2MB)
    [ 0.000000] DMI 2.7 present.
    [ 0.000000] DMI: LENOVO 2353CTO/2353CTO, BIOS G7ET63WW (2.05 ) 11/12/2012
    [ 0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x21e600 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-FFFFF uncachable
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0FFC00000 mask FFFC00000 write-protect
    [ 0.000000] 1 base 000000000 mask F80000000 write-back
    [ 0.000000] 2 base 080000000 mask FC0000000 write-back
    [ 0.000000] 3 base 0C0000000 mask FE0000000 write-back
    [ 0.000000] 4 base 0DC000000 mask FFC000000 uncachable
    [ 0.000000] 5 base 0DB000000 mask FFF000000 uncachable
    [ 0.000000] 6 base 100000000 mask F00000000 write-back
    [ 0.000000] 7 base 200000000 mask FE0000000 write-back
    [ 0.000000] 8 base 21F000000 mask FFF000000 uncachable
    [ 0.000000] 9 base 21E800000 mask FFF800000 uncachable
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: last_pfn = 0xdb000 max_arch_pfn = 0x400000000
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
    [ 0.000000] Base memory trampoline at [ffff880000096000] 96000 size 24576
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0xdaffffff]
    [ 0.000000] [mem 0x00000000-0xdaffffff] page 2M
    [ 0.000000] kernel direct mapping tables up to 0xdaffffff @ [mem 0x1fffb000-0x1fffffff]
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x21e5fffff]
    [ 0.000000] [mem 0x100000000-0x21e5fffff] page 2M
    [ 0.000000] kernel direct mapping tables up to 0x21e5fffff @ [mem 0xd64a2000-0xd64a7fff]
    [ 0.000000] RAMDISK: [mem 0x37c16000-0x37e02fff]
    [ 0.000000] ACPI: RSDP 00000000daffe014 00024 (v02 LENOVO)
    [ 0.000000] ACPI: XSDT 00000000daffe170 000C4 (v01 LENOVO TP-G7 00002050 PTL 00000002)
    [ 0.000000] ACPI: FACP 00000000dafe6000 0010C (v05 LENOVO TP-G7 00002050 PTL 00000002)
    [ 0.000000] ACPI: DSDT 00000000dafe8000 10B02 (v01 LENOVO TP-G7 00002050 INTL 20061109)
    [ 0.000000] ACPI: FACS 00000000daf5a000 00040
    [ 0.000000] ACPI: SLIC 00000000daffd000 00176 (v01 LENOVO TP-G7 00002050 PTL 00000001)
    [ 0.000000] ACPI: TCPA 00000000daffc000 00032 (v02 PTL LENOVO 06040000 LNVO 00000001)
    [ 0.000000] ACPI: SSDT 00000000daffb000 00408 (v01 LENOVO TP-SSDT2 00000200 INTL 20061109)
    [ 0.000000] ACPI: SSDT 00000000daffa000 00033 (v01 LENOVO TP-SSDT1 00000100 INTL 20061109)
    [ 0.000000] ACPI: SSDT 00000000daff9000 00797 (v01 LENOVO SataAhci 00001000 INTL 20061109)
    [ 0.000000] ACPI: HPET 00000000dafe4000 00038 (v01 LENOVO TP-G7 00002050 PTL 00000002)
    [ 0.000000] ACPI: APIC 00000000dafe3000 00098 (v01 LENOVO TP-G7 00002050 PTL 00000002)
    [ 0.000000] ACPI: MCFG 00000000dafe2000 0003C (v01 LENOVO TP-G7 00002050 PTL 00000002)
    [ 0.000000] ACPI: ECDT 00000000dafe1000 00052 (v01 LENOVO TP-G7 00002050 PTL 00000002)
    [ 0.000000] ACPI: FPDT 00000000dafe0000 00064 (v01 LENOVO TP-G7 00002050 PTL 00000002)
    [ 0.000000] ACPI: ASF! 00000000dafe7000 000A5 (v32 LENOVO TP-G7 00002050 PTL 00000002)
    [ 0.000000] ACPI: UEFI 00000000dafdf000 0003E (v01 LENOVO TP-G7 00002050 PTL 00000002)
    [ 0.000000] ACPI: UEFI 00000000dafde000 00042 (v01 PTL COMBUF 00000001 PTL 00000001)
    [ 0.000000] ACPI: POAT 00000000dafdd000 00055 (v03 LENOVO TP-G7 00002050 PTL 00000002)
    [ 0.000000] ACPI: SSDT 00000000dafdc000 00BF3 (v01 PmRef Cpu0Ist 00003000 INTL 20061109)
    [ 0.000000] ACPI: SSDT 00000000dafdb000 00A83 (v01 PmRef CpuPm 00003000 INTL 20061109)
    [ 0.000000] ACPI: UEFI 00000000dafda000 002A6 (v01 LENOVO TP-G7 00002050 PTL 00000002)
    [ 0.000000] ACPI: DBG2 00000000dafd9000 000E9 (v00 LENOVO TP-G7 00002050 PTL 00000002)
    [ 0.000000] ACPI: BGRT 00000000dafd8000 00038 (v00 LENOVO TP-G7 00002050 PTL 00000002)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000021e5fffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x21e5fffff]
    [ 0.000000] NODE_DATA [mem 0x21e5fc000-0x21e5fffff]
    [ 0.000000] [ffffea0000000000-ffffea00087fffff] PMD -> [ffff880215c00000-ffff88021dbfffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00010000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x21e5fffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00010000-0x0009bfff]
    [ 0.000000] node 0: [mem 0x0009d000-0x0009dfff]
    [ 0.000000] node 0: [mem 0x00100000-0x1fffffff]
    [ 0.000000] node 0: [mem 0x20200000-0x40003fff]
    [ 0.000000] node 0: [mem 0x40005000-0xd032cfff]
    [ 0.000000] node 0: [mem 0xd052f000-0xd694efff]
    [ 0.000000] node 0: [mem 0xdafff000-0xdaffffff]
    [ 0.000000] node 0: [mem 0x100000000-0x21e5fffff]
    [ 0.000000] On node 0 totalpages: 2050778
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 9 pages reserved
    [ 0.000000] DMA zone: 3908 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 16320 pages used for memmap
    [ 0.000000] DMA32 zone: 857485 pages, LIFO batch:31
    [ 0.000000] Normal zone: 18328 pages used for memmap
    [ 0.000000] Normal zone: 1154664 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 8 CPUs, 4 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] e820: [mem 0xdfa00000-0xf80f7fff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:8 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 26 pages/cpu @ffff88021e200000 s74880 r8192 d23424 u262144
    [ 0.000000] pcpu-alloc: s74880 r8192 d23424 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2016057
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-custom root=UUID=00faa466-81ea-40b0-a38e-093b44978182 ro quiet
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] __ex_table already sorted, skipping sort
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Memory: 7925636k/8886272k available (8420k kernel code, 683160k absent, 277476k reserved, 3005k data, 592k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=8.
    [ 0.000000] NR_IRQS:4352 nr_irqs:744 16
    [ 0.000000] Extended CMOS year: 2000
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 33554432 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.001000] tsc: Detected 2593.853 MHz processor
    [ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 5187.70 BogoMIPS (lpj=2593853)
    [ 0.000008] pid_max: default: 32768 minimum: 301
    [ 0.042489] Security Framework initialized
    [ 0.043338] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.047370] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.049184] Mount-cache hash table entries: 256
    [ 0.049441] Initializing cgroup subsys cpuacct
    [ 0.049444] Initializing cgroup subsys memory
    [ 0.049454] Initializing cgroup subsys devices
    [ 0.049456] Initializing cgroup subsys freezer
    [ 0.049458] Initializing cgroup subsys net_cls
    [ 0.049459] Initializing cgroup subsys blkio
    [ 0.049461] Initializing cgroup subsys hugetlb
    [ 0.049500] CPU: Physical Processor ID: 0
    [ 0.049501] CPU: Processor Core ID: 0
    [ 0.049509] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.050268] mce: CPU supports 7 MCE banks
    [ 0.050288] CPU0: Thermal monitoring enabled (TM1)
    [ 0.050297] process: using mwait in idle threads
    [ 0.050303] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
    tlb_flushall_shift: 1
    [ 0.050499] Freeing SMP alternatives: 28k freed
    [ 0.051965] ACPI: Core revision 20120913
    [ 0.066657] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.076643] smpboot: CPU0: Intel(R) Core(TM) i5-3320M CPU @ 2.60GHz (fam: 06, model: 3a, stepping: 09)
    [ 0.177524] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, Intel PMU driver.
    [ 0.177534] ... version: 3
    [ 0.177535] ... bit width: 48
    [ 0.177537] ... generic registers: 4
    [ 0.177539] ... value mask: 0000ffffffffffff
    [ 0.177540] ... max period: 000000007fffffff
    [ 0.177542] ... fixed-purpose events: 3
    [ 0.177544] ... event mask: 000000070000000f
    [ 0.185553] smpboot: Booting Node 0, Processors #1 #2 #3
    [ 0.231513] Brought up 4 CPUs
    [ 0.231519] smpboot: Total of 4 processors activated (20750.82 BogoMIPS)
    [ 0.237223] devtmpfs: initialized
    [ 0.239026] PM: Registering ACPI NVS region [mem 0xdae9f000-0xdaf9efff] (1048576 bytes)
    [ 0.239159] NET: Registered protocol family 16
    [ 0.239343] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.239345] ACPI: bus type pci registered
    [ 0.239583] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.239587] PCI: not using MMCONFIG
    [ 0.239589] PCI: Using configuration type 1 for base access
    [ 0.242024] bio: create slab <bio-0> at 0
    [ 0.242103] ACPI: Added _OSI(Module Device)
    [ 0.242105] ACPI: Added _OSI(Processor Device)
    [ 0.242108] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.242110] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.244830] ACPI: EC: EC description table is found, configuring boot EC
    [ 0.253127] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.257407] ACPI: SSDT 00000000dae3a018 00A01 (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
    [ 0.258158] ACPI: Dynamic OEM Table Load:
    [ 0.258162] ACPI: SSDT (null) 00A01 (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
    [ 0.258610] ACPI: SSDT 00000000dae3ba98 00303 (v01 PmRef ApIst 00003000 INTL 20061109)
    [ 0.259408] ACPI: Dynamic OEM Table Load:
    [ 0.259412] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20061109)
    [ 0.261508] ACPI: SSDT 00000000dae39d98 00119 (v01 PmRef ApCst 00003000 INTL 20061109)
    [ 0.262238] ACPI: Dynamic OEM Table Load:
    [ 0.262241] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20061109)
    [ 0.263215] ACPI: Interpreter enabled
    [ 0.263220] ACPI: (supports S0 S3 S5)
    [ 0.263243] ACPI: Using IOAPIC for interrupt routing
    [ 0.263271] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.263924] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in ACPI motherboard resources
    [ 0.281658] ACPI: Power Resource [PUBS] (on)
    [ 0.285870] ACPI: EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62
    [ 0.287153] ACPI: ACPI Dock Station Driver: 2 docks/bays found
    [ 0.287160] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.287294] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
    [ 0.287376] PCI host bridge to bus 0000:00
    [ 0.287380] pci_bus 0000:00: root bus resource [bus 00-3f]
    [ 0.287384] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.287387] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.287390] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.287393] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
    [ 0.287396] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
    [ 0.287398] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
    [ 0.287401] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff]
    [ 0.287404] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 0.287407] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.287409] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.287412] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.287415] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    [ 0.287418] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    [ 0.287420] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff]
    [ 0.287423] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff]
    [ 0.287426] pci_bus 0000:00: root bus resource [mem 0xdfa00000-0xfebfffff]
    [ 0.287429] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed4bfff]
    [ 0.287442] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
    [ 0.287508] pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
    [ 0.287527] pci 0000:00:02.0: reg 10: [mem 0xf0000000-0xf03fffff 64bit]
    [ 0.287538] pci 0000:00:02.0: reg 18: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.287545] pci 0000:00:02.0: reg 20: [io 0x5000-0x503f]
    [ 0.287650] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
    [ 0.287692] pci 0000:00:14.0: reg 10: [mem 0xf2520000-0xf252ffff 64bit]
    [ 0.287831] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.287873] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
    [ 0.287913] pci 0000:00:16.0: reg 10: [mem 0xf2535000-0xf253500f 64bit]
    [ 0.288052] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.288096] pci 0000:00:16.3: [8086:1e3d] type 00 class 0x070002
    [ 0.288129] pci 0000:00:16.3: reg 10: [io 0x50b0-0x50b7]
    [ 0.288143] pci 0000:00:16.3: reg 14: [mem 0xf253c000-0xf253cfff]
    [ 0.288320] pci 0000:00:19.0: [8086:1502] type 00 class 0x020000
    [ 0.288356] pci 0000:00:19.0: reg 10: [mem 0xf2500000-0xf251ffff]
    [ 0.288371] pci 0000:00:19.0: reg 14: [mem 0xf253b000-0xf253bfff]
    [ 0.288383] pci 0000:00:19.0: reg 18: [io 0x5080-0x509f]
    [ 0.288505] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
    [ 0.288550] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
    [ 0.288585] pci 0000:00:1a.0: reg 10: [mem 0xf253a000-0xf253a3ff]
    [ 0.288744] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.288789] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
    [ 0.288818] pci 0000:00:1b.0: reg 10: [mem 0xf2530000-0xf2533fff 64bit]
    [ 0.288957] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.289003] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
    [ 0.289156] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.289200] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
    [ 0.289352] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.289398] pci 0000:00:1c.2: [8086:1e14] type 01 class 0x060400
    [ 0.289552] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    [ 0.289614] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
    [ 0.289651] pci 0000:00:1d.0: reg 10: [mem 0xf2539000-0xf25393ff]
    [ 0.289817] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.289859] pci 0000:00:1f.0: [8086:1e55] type 00 class 0x060100
    [ 0.290054] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
    [ 0.290093] pci 0000:00:1f.2: reg 10: [io 0x50a8-0x50af]
    [ 0.290109] pci 0000:00:1f.2: reg 14: [io 0x50bc-0x50bf]
    [ 0.290127] pci 0000:00:1f.2: reg 18: [io 0x50a0-0x50a7]
    [ 0.290141] pci 0000:00:1f.2: reg 1c: [io 0x50b8-0x50bb]
    [ 0.290157] pci 0000:00:1f.2: reg 20: [io 0x5060-0x507f]
    [ 0.290171] pci 0000:00:1f.2: reg 24: [mem 0xf2538000-0xf25387ff]
    [ 0.290264] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.290297] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
    [ 0.290332] pci 0000:00:1f.3: reg 10: [mem 0xf2534000-0xf25340ff 64bit]
    [ 0.290375] pci 0000:00:1f.3: reg 20: [io 0xefa0-0xefbf]
    [ 0.290520] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.290526] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
    [ 0.290533] pci 0000:00:1c.0: bridge window [mem 0xf1d00000-0xf24fffff]
    [ 0.290545] pci 0000:00:1c.0: bridge window [mem 0xf0400000-0xf0bfffff 64bit pref]
    [ 0.290937] pci 0000:03:00.0: [8086:4238] type 00 class 0x028000
    [ 0.291262] pci 0000:03:00.0: reg 10: [mem 0xf1c00000-0xf1c01fff 64bit]
    [ 0.292877] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
    [ 0.294726] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 0.294738] pci 0000:00:1c.1: bridge window [mem 0xf1c00000-0xf1cfffff]
    [ 0.294947] pci 0000:04:00.0: [1180:e823] type 00 class 0x088000
    [ 0.294968] pci 0000:04:00.0: MMC controller base frequency changed to 50Mhz.
    [ 0.294999] pci 0000:04:00.0: reg 10: [mem 0xf1400000-0xf14000ff]
    [ 0.295210] pci 0000:04:00.0: supports D1 D2
    [ 0.295213] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.296687] pci 0000:00:1c.2: PCI bridge to [bus 04-0b]
    [ 0.296694] pci 0000:00:1c.2: bridge window [io 0x3000-0x3fff]
    [ 0.296701] pci 0000:00:1c.2: bridge window [mem 0xf1400000-0xf1bfffff]
    [ 0.296712] pci 0000:00:1c.2: bridge window [mem 0xf0c00000-0xf13fffff 64bit pref]
    [ 0.296744] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.296864] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP1._PRT]
    [ 0.296904] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP2._PRT]
    [ 0.296937] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP3._PRT]
    [ 0.297103] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.297260] pci0000:00: ACPI _OSC request failed (AE_SUPPORT), returned control mask: 0x0d
    [ 0.297262] ACPI _OSC control for PCIe not granted, disabling ASPM
    [ 0.300785] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [ 0.300860] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [ 0.300933] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [ 0.301001] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [ 0.301071] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [ 0.301138] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [ 0.301205] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [ 0.301272] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [ 0.301399] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=mem,locks=none
    [ 0.301405] vgaarb: loaded
    [ 0.301406] vgaarb: bridge control possible 0000:00:02.0
    [ 0.301486] SCSI subsystem initialized
    [ 0.301489] ACPI: bus type scsi registered
    [ 0.301501] libata version 3.00 loaded.
    [ 0.301507] ACPI: bus type usb registered
    [ 0.301530] usbcore: registered new interface driver usbfs
    [ 0.301541] usbcore: registered new interface driver hub
    [ 0.301580] usbcore: registered new device driver usb
    [ 0.301607] media: Linux media interface: v0.10
    [ 0.301615] Linux video capture interface: v2.00
    [ 0.301669] Advanced Linux Sound Architecture Driver Initialized.
    [ 0.301671] PCI: Using ACPI for IRQ routing
    [ 0.305654] PCI: pci_cache_line_size set to 64 bytes
    [ 0.306076] e820: reserve RAM buffer [mem 0x0009c000-0x0009ffff]
    [ 0.306079] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
    [ 0.306081] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
    [ 0.306083] e820: reserve RAM buffer [mem 0xd032d000-0xd3ffffff]
    [ 0.306085] e820: reserve RAM buffer [mem 0xd694f000-0xd7ffffff]
    [ 0.306087] e820: reserve RAM buffer [mem 0xdb000000-0xdbffffff]
    [ 0.306090] e820: reserve RAM buffer [mem 0x21e600000-0x21fffffff]
    [ 0.306217] Bluetooth: Core ver 2.16
    [ 0.306225] NET: Registered protocol family 31
    [ 0.306227] Bluetooth: HCI device and connection manager initialized
    [ 0.306230] Bluetooth: HCI socket layer initialized
    [ 0.306233] Bluetooth: L2CAP socket layer initialized
    [ 0.306235] Bluetooth: SCO socket layer initialized
    [ 0.306341] cfg80211: Calling CRDA to update world regulatory domain
    [ 0.306518] NetLabel: Initializing
    [ 0.306520] NetLabel: domain hash size = 128
    [ 0.306522] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.306538] NetLabel: unlabeled traffic allowed by default
    [ 0.306624] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.306634] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.308651] Switching to clocksource hpet
    [ 0.308739] FS-Cache: Loaded
    [ 0.308786] CacheFiles: Loaded
    [ 0.308803] pnp: PnP ACPI init
    [ 0.308813] ACPI: bus type pnp registered
    [ 0.309229] pnp 00:00: [mem 0x00000000-0x0009ffff]
    [ 0.309233] pnp 00:00: [mem 0x000c0000-0x000bffff disabled]
    [ 0.309236] pnp 00:00: [mem 0x000c4000-0x000c3fff disabled]
    [ 0.309239] pnp 00:00: [mem 0x000c8000-0x000c7fff disabled]
    [ 0.309241] pnp 00:00: [mem 0x000cc000-0x000cbfff disabled]
    [ 0.309244] pnp 00:00: [mem 0x000d0000-0x000cffff disabled]
    [ 0.309247] pnp 00:00: [mem 0x000d4000-0x000d3fff disabled]
    [ 0.309249] pnp 00:00: [mem 0x000d8000-0x000d7fff disabled]
    [ 0.309252] pnp 00:00: [mem 0x000dc000-0x000dbfff disabled]
    [ 0.309255] pnp 00:00: [mem 0x000e0000-0x000dffff disabled]
    [ 0.309257] pnp 00:00: [mem 0x000e4000-0x000e3fff disabled]
    [ 0.309260] pnp 00:00: [mem 0x000e8000-0x000e7fff disabled]
    [ 0.309263] pnp 00:00: [mem 0x000ec000-0x000ebfff disabled]
    [ 0.309265] pnp 00:00: [mem 0x000f0000-0x000fffff]
    [ 0.309268] pnp 00:00: [mem 0x00100000-0xdf9fffff]
    [ 0.309270] pnp 00:00: [mem 0xfec00000-0xfed3ffff]
    [ 0.309273] pnp 00:00: [mem 0xfed4c000-0xffffffff]
    [ 0.309325] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
    [ 0.309329] system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
    [ 0.309332] system 00:00: [mem 0x00100000-0xdf9fffff] could not be reserved
    [ 0.309336] system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved
    [ 0.309340] system 00:00: [mem 0xfed4c000-0xffffffff] has been reserved
    [ 0.309347] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.309392] pnp 00:01: [bus 00-3f]
    [ 0.309396] pnp 00:01: [io 0x0cf8-0x0cff]
    [ 0.309399] pnp 00:01: [io 0x0000-0x0cf7 window]
    [ 0.309402] pnp 00:01: [io 0x0d00-0xffff window]
    [ 0.309405] pnp 00:01: [mem 0x000a0000-0x000bffff window]
    [ 0.309408] pnp 00:01: [mem 0x000c0000-0x000c3fff window]
    [ 0.309411] pnp 00:01: [mem 0x000c4000-0x000c7fff window]
    [ 0.309414] pnp 00:01: [mem 0x000c8000-0x000cbfff window]
    [ 0.309416] pnp 00:01: [mem 0x000cc000-0x000cffff window]
    [ 0.309419] pnp 00:01: [mem 0x000d0000-0x000d3fff window]
    [ 0.309422] pnp 00:01: [mem 0x000d4000-0x000d7fff window]
    [ 0.309424] pnp 00:01: [mem 0x000d8000-0x000dbfff window]
    [ 0.309427] pnp 00:01: [mem 0x000dc000-0x000dffff window]
    [ 0.309430] pnp 00:01: [mem 0x000e0000-0x000e3fff window]
    [ 0.309433] pnp 00:01: [mem 0x000e4000-0x000e7fff window]
    [ 0.309435] pnp 00:01: [mem 0x000e8000-0x000ebfff window]
    [ 0.309438] pnp 00:01: [mem 0x000ec000-0x000effff window]
    [ 0.309441] pnp 00:01: [mem 0xdfa00000-0xfebfffff window]
    [ 0.309444] pnp 00:01: [mem 0xfed40000-0xfed4bfff window]
    [ 0.309480] pnp 00:01: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    [ 0.309567] pnp 00:02: [io 0x0010-0x001f]
    [ 0.309570] pnp 00:02: [io 0x0090-0x009f]
    [ 0.309572] pnp 00:02: [io 0x0024-0x0025]
    [ 0.309575] pnp 00:02: [io 0x0028-0x0029]
    [ 0.309577] pnp 00:02: [io 0x002c-0x002d]
    [ 0.309580] pnp 00:02: [io 0x0030-0x0031]
    [ 0.309585] pnp 00:02: [io 0x0034-0x0035]
    [ 0.309587] pnp 00:02: [io 0x0038-0x0039]
    [ 0.309590] pnp 00:02: [io 0x003c-0x003d]
    [ 0.309592] pnp 00:02: [io 0x00a4-0x00a5]
    [ 0.309594] pnp 00:02: [io 0x00a8-0x00a9]
    [ 0.309597] pnp 00:02: [io 0x00ac-0x00ad]
    [ 0.309599] pnp 00:02: [io 0x00b0-0x00b5]
    [ 0.309602] pnp 00:02: [io 0x00b8-0x00b9]
    [ 0.309604] pnp 00:02: [io 0x00bc-0x00bd]
    [ 0.309606] pnp 00:02: [io 0x0050-0x0053]
    [ 0.309609] pnp 00:02: [io 0x0072-0x0077]
    [ 0.309611] pnp 00:02: [io 0x0400-0x047f]
    [ 0.309614] pnp 00:02: [io 0x0500-0x057f]
    [ 0.309616] pnp 00:02: [io 0x0800-0x080f]
    [ 0.309619] pnp 00:02: [io 0x15e0-0x15ef]
    [ 0.309621] pnp 00:02: [io 0x1600-0x167f]
    [ 0.309624] pnp 00:02: [mem 0xf8000000-0xfbffffff]
    [ 0.309627] pnp 00:02: [mem 0xfffff000-0xffffffff]
    [ 0.309629] pnp 00:02: [mem 0xfed1c000-0xfed1ffff]
    [ 0.309632] pnp 00:02: [mem 0xfed10000-0xfed13fff]
    [ 0.309634] pnp 00:02: [mem 0xfed18000-0xfed18fff]
    [ 0.309637] pnp 00:02: [mem 0xfed19000-0xfed19fff]
    [ 0.309639] pnp 00:02: [mem 0xfed45000-0xfed4bfff]
    [ 0.309710] system 00:02: [io 0x0400-0x047f] has been reserved
    [ 0.309713] system 00:02: [io 0x0500-0x057f] has been reserved
    [ 0.309717] system 00:02: [io 0x0800-0x080f] has been reserved
    [ 0.309720] system 00:02: [io 0x15e0-0x15ef] has been reserved
    [ 0.309723] system 00:02: [io 0x1600-0x167f] has been reserved
    [ 0.309727] system 00:02: [mem 0xf8000000-0xfbffffff] could not be reserved
    [ 0.309731] system 00:02: [mem 0xfffff000-0xffffffff] has been reserved
    [ 0.309734] system 00:02: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.309738] system 00:02: [mem 0xfed10000-0xfed13fff] has been reserved
    [ 0.309743] system 00:02: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.309747] system 00:02: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.309750] system 00:02: [mem 0xfed45000-0xfed4bfff] has been reserved
    [ 0.309754] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.309815] pnp 00:03: [mem 0xfed00000-0xfed003ff]
    [ 0.309841] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.309853] pnp 00:04: [io 0x0000-0x000f]
    [ 0.309856] pnp 00:04: [io 0x0080-0x008f]
    [ 0.309858] pnp 00:04: [io 0x00c0-0x00df]
    [ 0.309861] pnp 00:04: [dma 4]
    [ 0.309881] pnp 00:04: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.309891] pnp 00:05: [io 0x0061]
    [ 0.309911] pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.309921] pnp 00:06: [io 0x00f0]
    [ 0.309935] pnp 00:06: [irq 13]
    [ 0.309958] pnp 00:06: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.309969] pnp 00:07: [io 0x0070-0x0071]
    [ 0.309978] pnp 00:07: [irq 8]
    [ 0.309999] pnp 00:07: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.310010] pnp 00:08: [io 0x0060]
    [ 0.310012] pnp 00:08: [io 0x0064]
    [ 0.310021] pnp 00:08: [irq 1]
    [ 0.310045] pnp 00:08: Plug and Play ACPI device, IDs LEN0071 PNP0303 (active)
    [ 0.310062] pnp 00:09: [irq 12]
    [ 0.310083] pnp 00:09: Plug and Play ACPI device, IDs LEN0015 PNP0f13 (active)
    [ 0.310128] pnp 00:0a: [mem 0xfed40000-0xfed44fff]
    [ 0.310151] pnp 00:0a: Plug and Play ACPI device, IDs SMO1200 PNP0c31 (active)
    [ 0.310679] pnp: PnP ACPI: found 11 devices
    [ 0.310681] ACPI: ACPI bus type pnp unregistered
    [ 0.318093] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.318103] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
    [ 0.318112] pci 0000:00:1c.0: bridge window [mem 0xf1d00000-0xf24fffff]
    [ 0.318120] pci 0000:00:1c.0: bridge window [mem 0xf0400000-0xf0bfffff 64bit pref]
    [ 0.318131] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 0.318140] pci 0000:00:1c.1: bridge window [mem 0xf1c00000-0xf1cfffff]
    [ 0.318156] pci 0000:00:1c.2: PCI bridge to [bus 04-0b]
    [ 0.318161] pci 0000:00:1c.2: bridge window [io 0x3000-0x3fff]
    [ 0.318170] pci 0000:00:1c.2: bridge window [mem 0xf1400000-0xf1bfffff]
    [ 0.318177] pci 0000:00:1c.2: bridge window [mem 0xf0c00000-0xf13fffff 64bit pref]
    [ 0.318229] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.318232] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.318235] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.318238] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
    [ 0.318241] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
    [ 0.318244] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
    [ 0.318247] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff]
    [ 0.318250] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff]
    [ 0.318253] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff]
    [ 0.318255] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff]
    [ 0.318258] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff]
    [ 0.318261] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff]
    [ 0.318264] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff]
    [ 0.318267] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff]
    [ 0.318270] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff]
    [ 0.318273] pci_bus 0000:00: resource 19 [mem 0xdfa00000-0xfebfffff]
    [ 0.318276] pci_bus 0000:00: resource 20 [mem 0xfed40000-0xfed4bfff]
    [ 0.318279] pci_bus 0000:02: resource 0 [io 0x4000-0x4fff]
    [ 0.318282] pci_bus 0000:02: resource 1 [mem 0xf1d00000-0xf24fffff]
    [ 0.318285] pci_bus 0000:02: resource 2 [mem 0xf0400000-0xf0bfffff 64bit pref]
    [ 0.318288] pci_bus 0000:03: resource 1 [mem 0xf1c00000-0xf1cfffff]
    [ 0.318291] pci_bus 0000:04: resource 0 [io 0x3000-0x3fff]
    [ 0.318294] pci_bus 0000:04: resource 1 [mem 0xf1400000-0xf1bfffff]
    [ 0.318297] pci_bus 0000:04: resource 2 [mem 0xf0c00000-0xf13fffff 64bit pref]
    [ 0.318341] NET: Registered protocol family 2
    [ 0.319309] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 0.321304] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.321498] TCP: Hash tables configured (established 524288 bind 65536)
    [ 0.321530] TCP: reno registered
    [ 0.321551] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.321597] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.321741] NET: Registered protocol family 1
    [ 0.321875] RPC: Registered named UNIX socket transport module.
    [ 0.321891] RPC: Registered udp transport module.
    [ 0.321893] RPC: Registered tcp transport module.
    [ 0.321894] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [ 0.321909] pci 0000:00:02.0: Boot video device
    [ 0.322257] PCI: CLS 64 bytes, default 64
    [ 0.322318] Unpacking initramfs...
    [ 0.385477] Freeing initrd memory: 1972k freed
    [ 0.385851] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.385855] software IO TLB [mem 0xc9cfe000-0xcdcfdfff] (64MB) mapped at [ffff8800c9cfe000-ffff8800cdcfdfff]
    [ 0.387028] sha1_ssse3: Using AVX optimized SHA-1 implementation
    [ 0.387170] Initialise module verification
    [ 0.387236] audit: initializing netlink socket (disabled)
    [ 0.387249] type=2000 audit(1356879008.237:1): initialized
    [ 0.387874] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.389914] VFS: Disk quotas dquot_6.5.2
    [ 0.389974] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.390274] DLM installed
    [ 0.390747] Installing knfsd (copyright (C) 1996 [email protected]).
    [ 0.391216] Btrfs loaded
    [ 0.391224] msgmni has been set to 15608
    [ 0.392034] Key type asymmetric registered
    [ 0.392037] Asymmetric key parser 'x509' registered
    [ 0.392056] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
    [ 0.392095] io scheduler noop registered
    [ 0.392133] io scheduler cfq registered (default)
    [ 0.392480] intel_idle: MWAIT substates: 0x21120
    [ 0.392483] intel_idle: v0.4 model 0x3A
    [ 0.392484] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 0.392868] ACPI: AC Adapter [AC] (off-line)
    [ 0.392955] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
    [ 0.393107] ACPI: Lid Switch [LID]
    [ 0.393157] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input1
    [ 0.393164] ACPI: Sleep Button [SLPB]
    [ 0.393223] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
    [ 0.393227] ACPI: Power Button [PWRF]
    [ 0.393451] ACPI: Requesting acpi_cpufreq
    [ 0.399876] thermal LNXTHERM:00: registered as thermal_zone0
    [ 0.399880] ACPI: Thermal Zone [THM0] (44 C)
    [ 0.401850] GHES: HEST is not enabled!
    [ 0.401947] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.410323] ACPI: Battery Slot [BAT0] (battery present)
    [ 0.422988] 0000:00:16.3: ttyS0 at I/O 0x50b0 (irq = 19) is a 16550A
    [ 0.423308] Non-volatile memory driver v1.3
    [ 0.423389] Linux agpgart interface v0.103
    [ 0.423560] tpm_tis 00:0a: 1.2 TPM (device-id 0x0, rev-id 78)
    [ 0.489371] tpm_tis 00:0a: TPM is disabled/deactivated (0x6)
    [ 0.489396] [drm] Initialized drm 1.1.0 20060810
    [ 0.489424] i915 0000:00:02.0: enabling device (0006 -> 0007)
    [ 0.489552] pci 0000:00:00.0: Intel Ivybridge Chipset
    [ 0.489696] pci 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
    [ 0.491594] pci 0000:00:00.0: detected 65536K stolen memory
    [ 0.491674] i915 0000:00:02.0: setting latency timer to 64
    [ 0.562550] i915 0000:00:02.0: irq 40 for MSI/MSI-X
    [ 0.562562] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 0.562564] [drm] Driver supports precise vblank timestamp query.
    [ 0.562615] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=mem
    [ 0.682469] [drm] Enabling RC6 states: RC6 on, RC6p on, RC6pp off
    [ 0.787325] fbcon: inteldrmfb (fb0) is primary device
    [ 1.386655] tsc: Refined TSC clocksource calibration: 2594.107 MHz
    [ 1.386659] Switching to clocksource tsc
    [ 1.611601] Console: switching to colour frame buffer device 200x56
    [ 1.617919] fb0: inteldrmfb frame buffer device
    [ 1.617921] drm: registered panic notifier
    [ 1.622969] acpi device:01: registered as cooling_device4
    [ 1.623075] ACPI: Video Device [VID] (multi-head: yes rom: no post: no)
    [ 1.623125] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input3
    [ 1.623172] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 1.623247] usbcore: registered new interface driver udl
    [ 1.623300] mei 0000:00:16.0: setting latency timer to 64
    [ 1.623387] mei 0000:00:16.0: irq 41 for MSI/MSI-X
    [ 1.629777] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \_SB_.PCI0.LPC_.PMIO 1 (20120913/utaddress-251)
    [ 1.629786] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 1.629793] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \_SB_.PCI0.LPC_.LPIO 1 (20120913/utaddress-251)
    [ 1.629798] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 1.629800] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \_SB_.PCI0.LPC_.LPIO 1 (20120913/utaddress-251)
    [ 1.629804] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 1.629806] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 1.629873] ahci 0000:00:1f.2: version 3.0
    [ 1.629956] ahci 0000:00:1f.2: irq 42 for MSI/MSI-X
    [ 1.630000] ahci: SSS flag set, parallel bus scan disabled
    [ 1.640201] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x13 impl SATA mode
    [ 1.640206] ahci 0000:00:1f.2: flags: 64bit ncq ilck stag pm led clo pio slum part ems sxs apst
    [ 1.640216] ahci 0000:00:1f.2: setting latency timer to 64
    [ 1.644597] scsi0 : ahci
    [ 1.644680] scsi1 : ahci
    [ 1.644743] scsi2 : ahci
    [ 1.644802] scsi3 : ahci
    [ 1.644861] scsi4 : ahci
    [ 1.644923] scsi5 : ahci
    [ 1.644971] ata1: SATA max UDMA/133 abar m2048@0xf2538000 port 0xf2538100 irq 42
    [ 1.644975] ata2: SATA max UDMA/133 abar m2048@0xf2538000 port 0xf2538180 irq 42
    [ 1.644977] ata3: DUMMY
    [ 1.644979] ata4: DUMMY
    [ 1.644985] ata5: SATA max UDMA/133 abar m2048@0xf2538000 port 0xf2538300 irq 42
    [ 1.644987] ata6: DUMMY
    [ 1.645084] e1000e: Intel(R) PRO/1000 Network Driver - 2.1.4-k
    [ 1.645086] e1000e: Copyright(c) 1999 - 2012 Intel Corporation.
    [ 1.645123] e1000e 0000:00:19.0: setting latency timer to 64
    [ 1.645244] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
    [ 1.645300] e1000e 0000:00:19.0: irq 43 for MSI/MSI-X
    [ 1.840566] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 3c:97:0e:14:05:c8
    [ 1.840570] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
    [ 1.840631] e1000e 0000:00:19.0 eth0: MAC: 10, PHY: 11, PBA No: 1000FF-0FF
    [ 1.840654] Intel(R) Wireless WiFi driver for Linux, in-tree:
    [ 1.840655] Copyright(c) 2003-2012 Intel Corporation
    [ 1.840785] iwlwifi 0000:03:00.0: pci_resource_len = 0x00002000
    [ 1.840793] iwlwifi 0000:03:00.0: pci_resource_base = ffffc900055d0000
    [ 1.840795] iwlwifi 0000:03:00.0: HW Revision ID = 0x3E
    [ 1.841416] iwlwifi 0000:03:00.0: irq 44 for MSI/MSI-X
    [ 1.841674] iwldvm: Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree:
    [ 1.841676] iwldvm: Copyright(c) 2003-2012 Intel Corporation
    [ 1.841746] VFIO - User Level meta-driver version: 0.3
    [ 1.842023] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 1.842068] ehci_hcd 0000:00:1a.0: setting latency timer to 64
    [ 1.842073] ehci_hcd 0000:00:1a.0: EHCI Host Controller
    [ 1.842114] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 1.846026] ehci_hcd 0000:00:1a.0: debug port 2
    [ 1.846040] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
    [ 1.846064] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xf253a000
    [ 1.851786] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 1.851825] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
    [ 1.851829] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 1.851832] usb usb1: Product: EHCI Host Controller
    [ 1.851835] usb usb1: Manufacturer: Linux 3.7.1-CUSTOM ehci_hcd
    [ 1.851837] usb usb1: SerialNumber: 0000:00:1a.0
    [ 1.852001] hub 1-0:1.0: USB hub found
    [ 1.852007] hub 1-0:1.0: 3 ports detected
    [ 1.852164] ehci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 1.852171] ehci_hcd 0000:00:1d.0: EHCI Host Controller
    [ 1.852211] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 1.856137] ehci_hcd 0000:00:1d.0: debug port 2
    [ 1.856149] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
    [ 1.856170] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xf2539000
    [ 1.861759] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 1.861777] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
    [ 1.861780] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 1.861782] usb usb2: Product: EHCI Host Controller
    [ 1.861785] usb usb2: Manufacturer: Linux 3.7.1-CUSTOM ehci_hcd
    [ 1.861788] usb usb2: SerialNumber: 0000:00:1d.0
    [ 1.861903] hub 2-0:1.0: USB hub found
    [ 1.861908] hub 2-0:1.0: 3 ports detected
    [ 1.862084] xhci_hcd 0000:00:14.0: setting latency timer to 64
    [ 1.862091] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 1.862129] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
    [ 1.862237] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 1.862244] xhci_hcd 0000:00:14.0: irq 16, io mem 0xf2520000
    [ 1.862321] xhci_hcd 0000:00:14.0: irq 45 for MSI/MSI-X
    [ 1.862388] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
    [ 1.862391] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 1.862394] usb usb3: Product: xHCI Host Controller
    [ 1.862396] usb usb3: Manufacturer: Linux 3.7.1-CUSTOM xhci_hcd
    [ 1.862399] usb usb3: SerialNumber: 0000:00:14.0
    [ 1.862483] xHCI xhci_add_endpoint called for root hub
    [ 1.862486] xHCI xhci_check_bandwidth called for root hub
    [ 1.862513] hub 3-0:1.0: USB hub found
    [ 1.862524] hub 3-0:1.0: 4 ports detected
    [ 1.863271] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 1.863304] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
    [ 1.863333] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
    [ 1.863336] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 1.863339] usb usb4: Product: xHCI Host Controller
    [ 1.863341] usb usb4: Manufacturer: Linux 3.7.1-CUSTOM xhci_hcd
    [ 1.863344] usb usb4: SerialNumber: 0000:00:14.0
    [ 1.863425] xHCI xhci_add_endpoint called for root hub
    [ 1.863427] xHCI xhci_check_bandwidth called for root hub
    [ 1.863453] hub 4-0:1.0: USB hub found
    [ 1.863464] hub 4-0:1.0: 4 ports detected
    [ 1.864209] Initializing USB Mass Storage driver...
    [ 1.864247] usbcore: registered new interface driver usb-storage
    [ 1.864248] USB Mass Storage support registered.
    [ 1.864292] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
    [ 1.865820] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 1.865829] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 1.865947] mousedev: PS/2 mouse device common for all mice
    [ 1.866163] usbcore: registered new interface driver synaptics_usb
    [ 1.866222] input: PC Speaker as /devices/platform/pcspkr/input/input4
    [ 1.866297] rtc_cmos 00:07: RTC can wake from S4
    [ 1.866445] rtc_cmos 00:07: rtc core: registered rtc_cmos as rtc0
    [ 1.866482] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 1.866599] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 1.866632] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
    [ 1.866686] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 1.866693] Bluetooth: Virtual HCI driver ver 1.3
    [ 1.866721] Bluetooth: HCI UART driver ver 2.2
    [ 1.866723] Bluetooth: HCI H4 protocol initialized
    [ 1.866725] Bluetooth: HCI BCSP protocol initialized
    [ 1.866727] Bluetooth: HCILL protocol initialized
    [ 1.866728] Bluetooth: HCI Three-wire UART (H5) protocol initialized
    [ 1.866757] usbcore: registered new interface driver btusb
    [ 1.866759] Bluetooth: Generic Bluetooth SDIO driver ver 0.1
    [ 1.866863] cpuidle: using governor ladder
    [ 1.866996] cpuidle: using governor menu
    [ 1.867015] sdhci: Secure Digital Host Controller Interface driver
    [ 1.867016] sdhci: Copyright(c) Pierre Ossman
    [ 1.867031] sdhci-pci 0000:04:00.0: SDHCI controller found [1180:e823] (rev 4)
    [ 1.867198] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input5
    [ 1.867292] Registered led device: mmc0::
    [ 1.895008] mmc0: SDHCI controller on PCI [0000:04:00.0] using DMA
    [ 1.895114] sdhci-pltfm: SDHCI platform and OF driver helper
    [ 1.895117] EFI Variables Facility v0.08 2004-May-17
    [ 1.912616] usbcore: registered new interface driver usbhid
    [ 1.912618] usbhid: USB HID core driver
    [ 1.912895] thinkpad_acpi: ThinkPad ACPI Extras v0.24
    [ 1.912898] thinkpad_acpi: [url]http://ibm-acpi.sf.net/[/url]
    [ 1.912900] thinkpad_acpi: ThinkPad BIOS G7ET63WW (2.05 ), EC unknown
    [ 1.912902] thinkpad_acpi: Lenovo ThinkPad T430s, model 2353CTO
    [ 1.913363] thinkpad_acpi: detected a 8-level brightness capable ThinkPad
    [ 1.913503] thinkpad_acpi: radio switch found; radios are enabled
    [ 1.913523] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
    [ 1.913525] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
    [ 1.915324] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
    [ 1.915662] Registered led device: tpacpi::thinklight
    [ 1.915690] Registered led device: tpacpi::power
    [ 1.915704] Registered led device: tpacpi::standby
    [ 1.915721] Registered led device: tpacpi::thinkvantage
    [ 1.915730] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one
    [ 1.915818] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
    [ 1.916890] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input6
    [ 1.916991] hdaps: supported laptop not found!
    [ 1.916994] hdaps: driver init failed (ret=-19)!
    [ 1.917406] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
    [ 1.930951] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input7
    [ 1.938822] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
    [ 1.938936] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
    [ 1.939007] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
    [ 1.939072] input: HDA Intel PCH Dock Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
    [ 1.939150] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
    [ 1.939228] input: HDA Intel PCH Dock Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
    [ 1.939306] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
    [ 1.939855] TCP: cubic registered
    [ 1.939982] NET: Registered protocol family 10
    [ 1.940260] mip6: Mobile IPv6
    [ 1.940263] sit: IPv6 over IPv4 tunneling driver
    [ 1.940546] ip6_gre: GRE over IPv6 tunneling driver
    [ 1.940692] NET: Registered protocol family 17
    [ 1.940743] Bluetooth: RFCOMM TTY layer initialized
    [ 1.940748] Bluetooth: RFCOMM socket layer initialized
    [ 1.940750] Bluetooth: RFCOMM ver 1.11
    [ 1.940752] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
    [ 1.940754] Bluetooth: BNEP filters: protocol multicast
    [ 1.940757] Bluetooth: BNEP socket layer initialized
    [ 1.940759] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
    [ 1.940761] Bluetooth: HIDP socket layer initialized
    [ 1.941156] sctp: Hash tables configured (established 65536 bind 65536)
    [ 1.941311] Key type dns_resolver registered
    [ 1.941626] Loading module verification certificates
    [ 1.943176] MODSIGN: Loaded cert 'Magrathea: Glacier signing key: b4cd8766b77e5347ce99fb3f1db572712e741ec5'
    [ 1.943183] registered taskstats version 1
    [ 1.945946] Key type trusted registered
    [ 1.948331] Key type encrypted registered
    [ 1.948623] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 1.950938] rtc_cmos 00:07: setting system clock to 2012-12-30 14:50:10 UTC (1356879010)
    [ 1.953592] ALSA device list:
    [ 1.953594] #0: HDA Intel PCH at 0xf2530000 irq 46
    [ 1.953595] #29: ThinkPad Console Audio Control at EC reg 0x30, fw unknown
    [ 1.960188] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.960197] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.960201] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    [ 1.970065] ata1.00: ATA-9: INTEL SSDSC2BW180A3L, LE1i, max UDMA/133
    [ 1.970068] ata1.00: 351651888 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.970617] ata1.00: failed to get Identify Device Data, Emask 0x1
    [ 1.980084] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.980093] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.980097] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    [ 1.990555] ata1.00: failed to get Identify Device Data, Emask 0x1
    [ 1.990564] ata1.00: configured for UDMA/133
    [ 1.992794] scsi 0:0:0:0: Direct-Access ATA INTEL SSDSC2BW18 LE1i PQ: 0 ANSI: 5
    [ 1.993023] sd 0:0:0:0: [sda] 351651888 512-byte logical blocks: (180 GB/167 GiB)
    [ 1.993110] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.993113] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.993126] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.994130] sda: sda1 sda2 sda3 sda4 sda5
    [ 1.994381] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 2.153287] usb 1-1: new high-speed USB device number 2 using ehci_hcd
    [ 2.267482] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
    [ 2.267489] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
    [ 2.267807] hub 1-1:1.0: USB hub found
    [ 2.268001] hub 1-1:1.0: 6 ports detected
    [ 2.297017] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 2.300528] ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 (IDLE) succeeded
    [ 2.301255] ata2.00: ACPI cmd e3/00:02:00:00:00:a0 (IDLE) succeeded
    [ 2.301271] ata2.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    [ 2.303043] ata2.00: ATAPI: MATSHITADVD-RAM UJ8B2, SB01, max UDMA/100
    [ 2.305901] ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 (IDLE) succeeded
    [ 2.306615] ata2.00: ACPI cmd e3/00:02:00:00:00:a0 (IDLE) succeeded
    [ 2.306621] ata2.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    [ 2.308256] ata2.00: configured for UDMA/100
    [ 2.311882] scsi 1:0:0:0: CD-ROM MATSHITA DVD-RAM UJ8B2 SB01 PQ: 0 ANSI: 5
    [ 2.313941] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 2.313955] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 2.314038] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 1.993150] ACPI: Invalid Power Resource to register!
    [ 2.314252] ACPI: Invalid Power Resource to register!
    [ 2.370813] usb 2-1: new high-speed USB device number 2 using ehci_hcd
    [ 2.484945] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
    [ 2.484952] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
    [ 2.485263] hub 2-1:1.0: USB hub found
    [ 2.485452] hub 2-1:1.0: 8 ports detected
    [ 2.559533] usb 1-1.4: new full-speed USB device number 3 using ehci_hcd
    [ 2.618404] ata5: SATA link down (SStatus 0 SControl 300)
    [ 2.618601] Freeing unused kernel memory: 592k freed
    [ 2.623496] systemd-udevd[131]: starting version 196
    [ 2.647721] usb 1-1.4: New USB device found, idVendor=0a5c, idProduct=21e6
    [ 2.647725] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
    [ 2.647727] usb 1-1.4: Product: BCM20702A0
    [ 2.647729] usb 1-1.4: Manufacturer: Broadcom Corp
    [ 2.647730] usb 1-1.4: SerialNumber: C01885DD179D
    [ 2.665415] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd047b3/0xb40000/0xa0000, board id: 71, fw id: 920262
    [ 2.665421] psmouse serio1: synaptics: serio: Synaptics pass-through port at isa0060/serio1/input0
    [ 2.702208] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input15
    [ 2.702957] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    [ 2.721215] usb 1-1.6: new high-speed USB device number 4 using ehci_hcd
    [ 2.746266] systemd[1]: systemd 196 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ; arch)
    [ 2.747964] systemd[1]: Set hostname to <cupcake>.
    [ 2.778092] systemd[1]: Starting Login Prompts.
    [ 2.778103] systemd[1]: Reached target Login Prompts.
    [ 2.778110] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 2.778138] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 2.778143] systemd[1]: Starting Remote File Systems.
    [ 2.778148] systemd[1]: Reached target Remote File Systems.
    [ 2.778153] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 2.778167] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 2.778171] systemd[1]: Starting Delayed Shutdown Socket.
    [ 2.778186] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 2.778191] systemd[1]: Starting Encrypted Volumes.
    [ 2.778196] systemd[1]: Reached target Encrypted Volumes.
    [ 2.778212] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 2.778218] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 2.778237] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 2.778270] systemd[1]: Starting udev Kernel Socket.
    [ 2.778282] systemd[1]: Listening on udev Kernel Socket.
    [ 2.778306] systemd[1]: Starting udev Control Socket.
    [ 2.778319] systemd[1]: Listening on udev Control Socket.
    [ 2.778324] systemd[1]: Starting Swap.
    [ 2.778329] systemd[1]: Reached target Swap.
    [ 2.778334] systemd[1]: Expecting device dev-sda3.device...
    [ 2.778339] systemd[1]: Starting Journal Socket.
    [ 2.778361] systemd[1]: Listening on Journal Socket.
    [ 2.778370] systemd[1]: Started File System Check on Root Device.
    [ 2.778374] systemd[1]: Mounting Temporary Directory...
    [ 2.781263] systemd[1]: Starting Remount Root and Kernel File Systems...
    [ 2.785182] systemd[1]: Starting udev Kernel Device Manager...
    [ 2.789920] systemd[1]: Started Set Up Additional Binary Formats.
    [ 2.789967] systemd[1]: Starting udev Coldplug all Devices...
    [ 2.790775] EXT4-fs (sda2): re-mounted. Opts: data=ordered
    [ 2.794161] systemd[1]: Mounted Debug File System.
    [ 2.794181] systemd-udevd[185]: starting version 196
    [ 2.795789] systemd[1]: Starting Apply Kernel Variables...
    [ 2.800243] systemd[1]: Mounting Huge Pages File System...
    [ 2.803211] systemd[1]: Mounting POSIX Message Queue File System...
    [ 2.805137] systemd[1]: Starting Setup Virtual Console...
    [ 2.813737] systemd[1]: Started Load Kernel Modules.
    [ 2.813754] systemd[1]: Mounting Configuration File System...
    [ 2.814540] usb 1-1.6: New USB device found, idVendor=04f2, idProduct=b2da
    [ 2.814545] usb 1-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
    [ 2.814548] usb 1-1.6: Product: Integrated Camera
    [ 2.814551] usb 1-1.6: Manufacturer: Chicony Electronics Co., Ltd.
    [ 2.822049] systemd[1]: Mounted FUSE Control File System.
    [ 2.822068] systemd[1]: Starting Journal Service...
    [ 2.828072] systemd[1]: Started Journal Service.
    [ 2.828262] systemd[1]: Started udev Kernel Device Manager.
    [ 2.828300] systemd[1]: Mounted Temporary Directory.
    [ 2.829042] systemd[1]: Started Remount Root and Kernel File Systems.
    [ 2.841955] systemd[1]: Started Apply Kernel Variables.
    [ 2.842047] systemd[1]: Mounted Huge Pages File System.
    [ 2.842112] systemd[1]: Mounted POSIX Message Queue File System.
    [ 2.849947] systemd[1]: Started Setup Virtual Console.
    [ 2.850052] systemd[1]: Mounted Configuration File System.
    [ 2.859931] systemd[1]: Started udev Coldplug all Devices.
    [ 2.859960] systemd[1]: Starting Local File Systems (Pre).
    [ 2.859967] systemd[1]: Reached target Local File Systems (Pre).
    [ 2.859997] systemd[1]: Starting Load Random Seed...
    [ 2.889091] iwlwifi 0000:03:00.0: loaded firmware version 9.221.4.1 build 25532
    [ 2.889189] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG disabled
    [ 2.889190] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
    [ 2.889191] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING disabled
    [ 2.889192] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TESTMODE enabled
    [ 2.889193] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_P2P enabled
    [ 2.889195] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Ultimate-N 6300 AGN, REV=0x74
    [ 2.889291] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
    [ 2.905027] iwlwifi 0000:03:00.0: device EEPROM VER=0x43a, CALIB=0x6
    [ 2.905030] iwlwifi 0000:03:00.0: Device SKU: 0x1F0
    [ 2.905031] iwlwifi 0000:03:00.0: Valid Tx ant: 0x7, Valid Rx ant: 0x7
    [ 2.905075] Registered led device: phy0-led
    [ 2.905116] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
    [ 2.930633] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: data=ordered
    [ 2.939041] systemd-journald[228]: Received SIGUSR1
    [ 3.023992] systemd-logind[292]: Watc

  • [OS X] display live isight webcam video

    I'd like to show live video (from the iSight webcam on my macbook) in a view. I'd also like to scan each frame and possibly change some pixels.
    There are a ridiculous amount of APIs that I've come across in researching this: QuickTime, CoreImage, CoreVideo, Quartz, OpenGL, etc.
    I found the sample-code project QTQuartzPlayer which is able to display live webcam video (and move the OpenGL camera). However, I've had some trouble dissecting the code, because of the various barely-documented API calls.
    It seems like this line is the only thing that references the webcam in some way; It opens the default sequence grab component (which happens to be the webcam).
    // SeqGrabComponent _grabber;
    _grabber = OpenDefaultComponent(SeqGrabComponentType, 0);
    It also seems that the stream from the webcam needs to be decompressed (using ICMDecompressionSession).
    Anyways, can anyone give me some tips on how to accomplish this? In particular, look at/change pixels in each frame.

    Apple doesn’t routinely monitor the discussions. These are mostly user to user discussions.
    Send Apple feedback. They won't answer, but at least will know there is a problem. If enough people send feedback, it may get the problem solved sooner.
    Feedback
    Or you can use your Apple ID to register with this site and go the Apple BugReporter. Supposedly you will get an answer if you submit feedback.
    Feedback via Apple Developer

  • VIDEO/LIVE TV Playback stuttery/jumpy after 20min on WMC, Win 7, Touchsmart 600-1070a

    A few weeks ago the playback of either recorded or live TV on my Windows Media Centre in Windows 7 on my HP Touchsmart 600-1070a PC started becoming jumpy after about 20 or so minutes of viewing.  I turn WMC off and back on, but it still lags about 20 frames behind the audio playback, which interestingly is still smooth and even.  I initiated a complete system restore back to factory settings which I thought might fix the problem.  Unfortunately the problem is still occuring.  Just this morning though, I received a message on my desktop saying: "Display Driver Stopped Responding and Has Recovered.  NVIDIA Windows Kernal Mode Driver Ver 186-60 stopped responding and has successfully recovered." Could this be the problem?  I have run HP diagnostics, and there are no errors appearing, although there really should be at least some indication as to why the image begins to lag behind the audio.  Also, my digital TV signal could not finish as it could not receive a channel.  My digital antenna was working fine until a few weeks ago when this stuttering appeared.  Interestingly, watching a movie online also gives me a jumpy, stuttery playback after about 20 minutes.  Can anyone help?  Many thanks, Olga

    Hello Varonte
    Are you running Windows 7 32bit or 64bit? Have you tried updating or downgrading your video card drivers? Based on your first post it sounds like a driver issue. Since your video card driver is reporting that it is crashing is one symptom and the delay in video and not audio also indicates it may be video driver related.
    NVIDIA Unified Graphics (Windows 7 32bit)
    http://goo.gl/jza34
    NVIDIA Unified Graphics (Windows 7 64bit)
    http://goo.gl/8FnE2
    Hello raysananto
    Do you have Windows 7 32bit/64bit? I would suggest updating your video card drivers as well. As I stated above the problem sounds like a driver issue.
    Don't forgot to say thanks by giving "Kudos" to those that help solve your problems.
    When a solution is found please mark the post that solves your issue.

  • I just installed OS X Yosemite and now my WD My Book Live external hard drive won't re-connect.  My Safari keeps kicking out and giving me error message after error message and my computer is really slow.   How do I resolve?   Can I uninstall this ?

    I just installed OS X Yosemite and now my WD My Book Live external hard drive won't re-connect.  My Safari keeps kicking out and giving me error message after error message and my computer is really slow.   How do I resolve?   Can I uninstall this ?   I had to re-connect my iMovie t

    USB2.0 PCI cards that use the NEC chipset seem to give the least amount of problems for Mac users.
    OWC have a few different ones for sale.
    http://eshop.macsales.com/Search/Search.cfm?Ntk=Primary&Ns=P_Popularity%7c1&Ne=5 000&N=7057&Ntt=USB2**0**cards
    Do you also connect the external USB drive to the AC power as well while you use it ?
    Sometimes USB external drive problems are resolved simply by plugging them into the mains power and trying again.
    Stewie
    Message was edited by: stewiesno1

  • Video app becomes corrupted after streaming iTunes purchases

    I wasn't sure what to use for a title here, but chose this because it captures much of what I am seeing.
    Hardware:
    3rd gen iPad, 32GB, iOS 7.0.4
    What I am doing:
    I purchase TV shows and movies from the iTunes store, but as we watch them while on the home Wifi network, there is no need to download the content to a device before viewing. Once a TV show or movie is purchased, it can be viewed in the Videos app as streaming content, much the same way that it does on Apple TV (which doesn't permanently store anything).
    Key observation: I usually make these purchases through the Videos app itself, rather than going explicitly to the iTunes Store app. I am not sure this makes a difference, but it may.
    What happens:
    It all works well for several weeks or months. Then 3 bad things happen:
    1) During this time I observe that the available space on the iPad steadily decreases (viewed through Settings -> General -> Usage). It starts with a value of approximately 12GB free space, and then declines, despite the fact that I am not storing any media files locally. After approximately 2 months, I now have 5GB free, and cannot account for the "missing" 7GB, not even close.
    While it is to be expected that any streaming device must temporarily store content, that content is usually cleared after viewing or after some predetermined time interval, etc. I do not expect this content to simply accumulate endlessly.
    2) Eventually, videos will fail to work properly. I will attempt to watch a purchased item, and it will run painfully slow, and may be missing audio. I check Usage, and my free space continues to decline. Subsequent attempts to view TV show and movies are now unreliable.
    Big clue: shows that do not work properly cannot be deleted or downloaded locally.
    3) The entire iPad becomes notably slower and less responsive running all of my usual apps (Pages, Numbers, Facebook, etc.)
    What I tried that was illuminating:
    I noted that under Settings -> General -> Usage, it shows the Video app as containing "No data". So, I tried downloading a different purchased video in order to guarantee that there is some data. While this video plays within the Video app, I observe that Usage still shows the Video app as having "No data", which is verifiably untrue.
    Conclusion: the database used by the Videos app is failing to purge old streamed content, becoming corrupted, and now failing to report data storage to iOS.
    What works:
    Sadly, the only cure for this problem is a complete erase/restore of the iPad from iCloud backup. When I do this, all of my "missing" storage returns, and videos work normally. The iPad performance returns to its usual snappy self. But the cycle repeats, and I must eventually go through the 3+ hour restore process again.
    This solution is 100% consistent with a corrupt database, and hence I suspect that the Video app is the culprit, consuming space until other systems are affected.
    Has anyone else seen this?

    I'm experiencing this exact issue on two devices:
    iPhone 4S 32GB
    iPad Air 64 GB
    Both while running iOS 7.03 and 7.04 (recently updated both devices to 7.04 hoping it would help. It didn't)
    My iPhone had become nearly unusable until I found your post. It had apparently accumulated >12 GB of "temporary streamed content", as after I did a backup/wipe/restore, I had recovered to around 12 GB free space.
    It's unfortunate that the fix requires a complete reset/restore cycle, as it's very time-consuming, but thanks for providing that fix! It saved my iPhone 4S. Now I can comfortable wait until the 6 comes out to get a new iPhone.
    Really, though, this seems like a critical bug for iOS devices. I'll certainly not stream any iTunes content until/unless this is fixed. I found that if I turn off "Show all Videos" in the Video App settings, it doesn't show the iTunes cloud content for streaming from within the App. This forces me into iTunes to do a full download if I want to watch something. Kind of a pain, but it beats a device that's maxed out on storage and basically bricked.

  • Realtime effects become jerky after being rendered for 24p HD video

    Hello,
    Any one comes across that for 24p HD Video clips, e.g. just adding a "cross-dissolve" as the transition between two clips (I have tried both uncompressed and ProRes 422 HQ). Before rendering, the realtime effects (green in color) plays perfectly across. However, after render realtime or render all, we find that there will be once that the video becomes jerkly about at the "out" point of the "cross-dissolve". The same result to the video recorded when "print-to-video" or "edit-to-tape".
    The only work-around is to either export the whole sequence to a quicktime movie, OR adding a dummy "Quicktime" effect filter into the both video clips and render all effects. Both methods are very time consuming, as it is video footage
    Also, this problem seems happen to 24p only, not 50i or 60i. I wonder there is any error in calculating and making the render file of the effect for 24p.
    Software configuration:
    10.4.10, Final Cut Pro 6.0.1, Quicktime (most updated), KONA3 driver 4.0 (actually this problem happens to BMD MultiBridge/DeckLink Systems too)
    Is it a "known" bug in FCP? or anyone get similar problem but have a solution to it?
    Thanks.
    Regards,
    Golden

    Hmmm....odd. I only saw this with P2 footage that was imported with FCP 5.0.4 and used in projects since upgraded to FCP 5.1. That little jitter at the end. I had that. I had to reimport all my footage under FCP 5.1.1 and it went away.
    But that is NOT what you are dealing with...same issue, different footage, different version of FCP.
    Got me.

  • How do I fix my video that becomes choppy when played in Flash?

    I have a video that I'm integrating into a SWF. Only problem is, it becomes choppy when I play in within the SWF.
    It's a video that I created, and plays perfect in other players, just not when part of a SWF..

    As far as it goes, you are doing everything correctly. If the original video file was compressed, the problem may be in the transcoding from the original compression to Flash's .flv file. If you have the original video and can output from a video editor to the .flv format, then you may get better playback.
    You may also want to look at reducing the image size and/or the frame rate to try and improve the playback.

Maybe you are looking for

  • Time Capsule or Airport Extreme

    I have a 1st generation Time Capsule that I use as the main wireless access point in my house.  All devices connect to it:  laptops, iPads, iPods, iPhones, televisions, playstations, etc.  I also have gigabit switch plugged into the Time Capsule, and

  • ITunes automatically quiting

    Whenever I try to open iTunes I get an error message saying that iTunes has encountered a problem and needs to close. It sent me a link to try and fix it but it didn't work. I've also sent an Error Report countless times. I'm getting kind of mad caus

  • Do I need to add datafile right now

    Hi Friends, I saw a tablespace there are two datafile. one is full. second file information as below File Size 3072MB and online Automatically extend datafile when full (AUTOEXTEND) Increment 1024 KB Maximum File Size value 32767MB I saw size 6144.0

  • Change File Type/Kind of File

    I have a file on my MAC that I use in Windows, which I run on my MAC using Parallels. File 1 Under Get Info, it shows the file Kind as a Unix Executible File (since there is nothing associated with it on the MAC) - in Windows it correctly shows the f

  • How to run two files with same url-  urgent

    hi, i created two servlet page and both are working very fine.but at same time i only able to run one file with same url. Is possible to run two or more file at same time with same url name.. if you r not understanding what i want to ask then, i have