Initialization of a stringbuffer

I would like to know if it is possible in the code below to initialize "feedback" to a number of '_' equal to the length of "code". Is there anything in a string api that would allow me to do this?
public class stringTest
     StringBuffer feedback; // replace this example variable with your own
String code="alicja";;
     * Default constructor for objects of class stringTest
     public stringTest()
     {super();
     feedback=new StringBuffer(code);
     }

Lilith26 wrote:
The problem is that I don't want a method Why not?
as this is kind of quiz. So?
I code a password and replace it with "*". Each time you guess a letter star changes into a letter. problem is that if I do a method it would reset my stringbuffer every turn to a number of *s. This is why I wanted to initiazlize it in a constructor and than write a method to replace stars with letters
StringBuffer sb = new StringBuffer(myMethod('*', count));StringBuffer has a c'tor that takes a String, so all you have to do is write a tiny little method that takes in a character and a count and builds up a String from them.
Or, you could create an empty SB, then pass it to a method that calls append as many times as you need. What's the difference if you initialize the SB or fill it up one statement later?
Edited by: jverd on Dec 23, 2008 2:45 PM

Similar Messages

  • String to StringBuffer

    How do i convert String object to StringBuffer object?

    You can initialize a new Stringbuffer to a String
    this way:
    String yourString = "A string";
    StringBuffer sb = new Stringbuffer(yourString);
    Alpha75

  • Using JSplitPane for Comparing two Files/Contents

    Hi Java Gurus,
    I want to develope a Comparison tool which compares 2 jar files and report the difference in a user friendly manner. Everything is fine and i selected the JSplitPane to display the difference report. I face some problems in doing it exactly simillar way of presenting like a Comparison tools which is there in VSS.
    I created 2 panels and added in a splitpane.
    one panel contains the content of first jar file and another panel contains the content of second jar file.
    The content are added in a textarea and the textarea is added to a scrollpane, which is added to the panel.
    If i fix some size to Textarea, when i expand the Splitpane, the size is not getting expanded accordingly.
    if i remove the size for textarea, the content is not displayed.
    Can anyon give some suggestion.
    Have anybody developed a GUI using JSplitPane simmilar to any Difference Tool simillar to VSS.
    expecting your replies.
    Raffi

    Hi,
    Eventhough the left and right pane are not synchronized, It is showing the Differences.
    I have changed the JTextArea to JTextPane to have control on each of the String i am inserting.
    It is fine. but when i am doing the comparison for the second time, i am removing the content of the Document (of the JTextPane) and adding the new Content to the Document (of the JTextPane).
    While i am printing the length and text after removing the Old Content (in console), i am getting 0, "". But in the GUI old content are not removed and new content keeps on appending, eventhough i do updateUI() and validate().
    Is that a BUG of JTextPane?????????????
    Can any One Figure it out.
    My Code is Here:
    import java.io.*;
    import java.util.zip.*;
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.text.*;
    * put your documentation comment here
    public class CheckZipFile extends JFrame {
    private JLabel firstZip = null;
    private JLabel secondZip = null;
    private JTextField firstZipName = null;
    private JTextField secondZipName = null;
    private JButton compare = null;
    private JPanel mainPanel = null;
    private JFileChooser fileChooser = null;
    private JButton chooseButton1 = null;
    private JButton chooseButton2 = null;
    private StringBuffer buffer = null;
    private StringBuffer buffer1 = null;
    private StringBuffer buffer2 = null;
    private ApolloFileFilter zipFilter;
    private JTextPane first = null;
    private JTextPane second = null;
    private Document doc1 = null;
    private Document doc = null;
    * put your documentation comment here
    public CheckZipFile () {
    initialize();
    buildGUI();
    addWindowListener();
    setLookAndFeel();
    this.pack();
    * put your documentation comment here
    private void initialize () {
    buffer = new StringBuffer();
    buffer1 = new StringBuffer();
    buffer2 = new StringBuffer();
    zipFilter = new ApolloFileFilter(new String[] {
    "zip", "jar"
    }, "ZIP and JAR Files");
    fileChooser = new JFileChooser(new File("c:\\"));
    //fileChooser.setAcceptAllFileFilterUsed(false);
    fileChooser.addChoosableFileFilter(zipFilter);
    * put your documentation comment here
    private void setLookAndFeel () {
    try {
    UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
    SwingUtilities.updateComponentTreeUI(this);
    if (fileChooser != null) {
    SwingUtilities.updateComponentTreeUI(fileChooser);
    } catch (UnsupportedLookAndFeelException exc) {
    System.out.println("Unsupported Look And Feel:" +
    exc);
    } catch (IllegalAccessException exc) {
    System.out.println("IllegalAccessException Error:"
    + exc);
    } catch (ClassNotFoundException exc) {
    System.out.println("ClassNotFoundException Error:"
    + exc);
    } catch (InstantiationException exc) {
    System.out.println("InstantiateException Error:"
    + exc);
    * put your documentation comment here
    private void buildGUI () {
    mainPanel = createPanel();
    this.getContentPane().setLayout(new BorderLayout());
    this.getContentPane().add(mainPanel, BorderLayout.CENTER);
    this.getContentPane().add(createDifferencePanel(), BorderLayout.SOUTH);
    this.setSize(700, 450);
    SwingUtilities.updateComponentTreeUI(this);
    * put your documentation comment here
    * @return
    private JPanel createPanel () {
    JPanel main = new JPanel() {
    * put your documentation comment here
    * @return
    public Dimension getPrefferedSize () {
    return new Dimension(300, 90);
    main.setLayout(new GridLayout(3, 3));
    firstZip = new JLabel("First Jar/Zip File:") {
    * put your documentation comment here
    * @return
    public Dimension getPrefferedSize () {
    return new Dimension(100, 30);
    main.add(firstZip);
    firstZipName = new JTextField() {
    * put your documentation comment here
    * @return
    public Dimension getPrefferedSize () {
    return new Dimension(100, 30);
    main.add(firstZipName);
    chooseButton1 = new JButton("Choose File 1") {
    * put your documentation comment here
    * @return
    public Dimension getPrefferedSize () {
    return new Dimension(100, 30);
    main.add(chooseButton1);
    chooseButton1.addActionListener(new ButtonListener());
    secondZip = new JLabel("Second Jar/Zip File:") {
    * put your documentation comment here
    * @return
    public Dimension getPrefferedSize () {
    return new Dimension(100, 30);
    main.add(secondZip);
    secondZipName = new JTextField() {
    * put your documentation comment here
    * @return
    public Dimension getPrefferedSize () {
    return new Dimension(100, 30);
    main.add(secondZipName);
    chooseButton2 = new JButton("Choose File 2") {
    * put your documentation comment here
    * @return
    public Dimension getPrefferedSize () {
    return new Dimension(100, 30);
    main.add(chooseButton2);
    chooseButton2.addActionListener(new ButtonListener());
    JLabel temp1 = new JLabel("") {
    * put your documentation comment here
    * @return
    public Dimension getPrefferedSize () {
    return new Dimension(100, 30);
    main.add(temp1);
    compare = new JButton("Compare") {
    * put your documentation comment here
    * @return
    public Dimension getPrefferedSize () {
    return new Dimension(100, 30);
    compare.addActionListener(new ButtonListener());
    main.add(compare);
    JLabel temp2 = new JLabel("") {
    * put your documentation comment here
    * @return
    public Dimension getPrefferedSize () {
    return new Dimension(100, 30);
    main.add(temp2);
    return main;
    * put your documentation comment here
    * @param fileContent1
    * @param fileContent2
    private void updateGUI (String fileContent1, String fileContent2) {
    System.out.println("Came here UpdateGUI");
    updateDifferencePanel(fileContent1, fileContent2);
    System.out.println("Came here UpdateGUI after call");
    SwingUtilities.updateComponentTreeUI(this);
    * put your documentation comment here
    * @return
    private JSplitPane createDifferencePanel () {
    JPanel firstPanel = new JPanel() {
    * put your documentation comment here
    * @return
    public Dimension getPrefferedSize () {
    return new Dimension(350, 360);
    first = new JTextPane();
    initStylesForTextPane(first);
    doc1 = first.getDocument();
    JScrollPane scroll1 = new JScrollPane(first);
    scroll1.setPreferredSize(new Dimension(325, 360));
    scroll1.setMinimumSize(new Dimension(100, 100));
    firstPanel.add(scroll1);
    first.updateUI();
    first.validate();
    JPanel secondPanel = new JPanel() {
    * put your documentation comment here
    * @return
    public Dimension getPrefferedSize () {
    return new Dimension(350, 360);
    second = new JTextPane();
    initStylesForTextPane(second);
    doc = second.getDocument();
    JScrollPane scroll2 = new JScrollPane(second);
    scroll2.setPreferredSize(new Dimension(325, 360));
    scroll2.setMinimumSize(new Dimension(100, 100));
    secondPanel.add(scroll2);
    second.updateUI();
    second.validate();
    JSplitPane splitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT,
    firstPanel, secondPanel);
    splitPane.setDividerLocation(0.5);
    splitPane.updateUI();
    splitPane.validate();
    splitPane.setPreferredSize(new Dimension(700, 360));
    return splitPane;
    * put your documentation comment here
    * @param fileContent1
    * @param fileContent2
    private void updateDifferencePanel (String fileContent1,
    String fileContent2) {
    System.out.println("Came here");
    try {
    doc1 = first.getDocument();
    System.out.println("Text bef: " + first.getText());
    System.out.println("Length bef: " + doc1.getLength());
    doc1.remove(0, doc1.getLength());
    System.out.println("Length aft: " + doc1.getLength());
    System.out.println("Text aft: " + first.getText());
    doc1.insertString(doc1.getLength(), "test", first.getStyle("regular"));
    first.updateUI();
    first.validate();
    } catch (BadLocationException ble1) {
    ble1.printStackTrace();
    StringTokenizer tokens1 = new StringTokenizer(fileContent1,
    String token1 = "";
    String text1 = "";
    String differs1 = "false";
    int indexOfColon1 = -1;
    int count1 = 0;
    while (tokens1.hasMoreTokens()) {
    token1 = (String)tokens1.nextToken();
    count1++;
    indexOfColon1 = token1.lastIndexOf(":");
    text1 = token1.substring(0, indexOfColon1);
    differs1 = token1.substring(indexOfColon1 + 1);
    try {
    if (count1 == 1)
    System.out.println("Start: " + doc1.getLength());
    if (differs1.equals("true"))
    doc1.insertString(doc1.getLength(), text1
    + ":", first.getStyle("bold"));
    else
    doc1.insertString(doc1.getLength(), text1
    + ":", first.getStyle("regular"));
    if ((count1%3) == 0)
    doc1.insertString(doc1.getLength(), "\n",
    first.getStyle("regular"));
    } catch (BadLocationException ble1) {
    ble1.printStackTrace();
    first.updateUI();
    first.validate();
    try {
    System.out.println("Length bef: " + doc.getLength());
    doc.remove(0, doc.getLength());
    System.out.println("Length aft: " + doc.getLength());
    second.updateUI();
    second.validate();
    } catch (BadLocationException ble1) {
    ble1.printStackTrace();
    StringTokenizer tokens = new StringTokenizer(fileContent2,
    String token = "";
    String text = "";
    String differs = "false";
    int indexOfColon = -1;
    int count = 0;
    while (tokens.hasMoreTokens()) {
    token = (String)tokens.nextToken();
    count++;
    indexOfColon = token.lastIndexOf(":");
    text = token.substring(0, indexOfColon);
    differs = token.substring(indexOfColon + 1);
    try {
    if (differs.equals("true"))
    doc.insertString(doc.getLength(), text +
    ":", second.getStyle("bold"));
    else
    doc.insertString(doc.getLength(), text +
    ":", second.getStyle("regular"));
    if ((count%3) == 0)
    doc.insertString(doc.getLength(), "\n",
    second.getStyle("regular"));
    } catch (BadLocationException ble) {
    ble.printStackTrace();
    second.updateUI();
    second.validate();
    * put your documentation comment here
    * @param textPane
    protected void initStylesForTextPane (JTextPane textPane) {
    //Initialize some styles.
    Style def = StyleContext.getDefaultStyleContext().getStyle(StyleContext.DEFAULT_STYLE);
    Style regular = textPane.addStyle("regular", def);
    StyleConstants.setFontFamily(def, "SansSerif");
    Style s = textPane.addStyle("italic", regular);
    StyleConstants.setItalic(s, true);
    s = textPane.addStyle("bold", regular);
    StyleConstants.setBold(s, true);
    s = textPane.addStyle("small", regular);
    StyleConstants.setFontSize(s, 10);
    s = textPane.addStyle("large", regular);
    StyleConstants.setFontSize(s, 16);
    s = textPane.addStyle("icon", regular);
    StyleConstants.setAlignment(s, StyleConstants.ALIGN_CENTER);
    StyleConstants.setIcon(s, new ImageIcon("images/Pig.gif"));
    s = textPane.addStyle("button", regular);
    StyleConstants.setAlignment(s, StyleConstants.ALIGN_CENTER);
    JButton button = new JButton(new ImageIcon("images/sound.gif"));
    button.setMargin(new Insets(0, 0, 0, 0));
    button.addActionListener(new ActionListener() {
    * put your documentation comment here
    * @param e
    public void actionPerformed (ActionEvent e) {
    Toolkit.getDefaultToolkit().beep();
    StyleConstants.setComponent(s, button);
    * put your documentation comment here
    private void addWindowListener () {
    this.addWindowListener(new WindowAdapter() {
    * put your documentation comment here
    * @param we
    public void windowClosed (WindowEvent we) {
    CheckZipFile.this.dispose();
    System.exit(1);
    * put your documentation comment here
    * @param we
    public void windowClosing (WindowEvent we) {
    CheckZipFile.this.dispose();
    System.exit(1);
    * put your documentation comment here
    * @param argv[]
    * @exception Exception
    public static void main (String argv[]) throws Exception {
    CheckZipFile compareZip = new CheckZipFile();
    compareZip.pack();
    compareZip.setVisible(true);
    * put your documentation comment here
    public class ButtonListener
    implements ActionListener {
    * put your documentation comment here
    * @param ae
    public void actionPerformed (ActionEvent ae) {
    if (ae.getSource() == chooseButton1) {
    int retval = fileChooser.showDialog(CheckZipFile.this,
    "Select");
    if (retval == JFileChooser.APPROVE_OPTION) {
    File theFile = fileChooser.getSelectedFile();
    if (theFile != null) {
    File[] files = fileChooser.getSelectedFiles();
    if (fileChooser.isMultiSelectionEnabled()
    && files != null && files.length > 1) {
    String filenames = "";
    for (int i = 0; i < files.length; i++) {
    filenames = filenames + "\n"
    + files.getPath();
    JOptionPane.showMessageDialog(CheckZipFile.this,
    "You chose these files: \n"
    + filenames + "\n Multiple Selection Should not be done here");
    else if (theFile.isDirectory()) {
    JOptionPane.showMessageDialog(CheckZipFile.this,
    "You chose this directory: "
    + fileChooser.getSelectedFile().getPath()
    + "\n Please select a Zip File or jar File");
    else {
    JOptionPane.showMessageDialog(CheckZipFile.this,
    "You chose this file: " +
    fileChooser.getSelectedFile().getPath());
    firstZipName.setText(fileChooser.getSelectedFile().getPath());
    return;
    else if (retval == JFileChooser.CANCEL_OPTION) {
    JOptionPane.showMessageDialog(CheckZipFile.this,
    "User cancelled operation. No file was chosen.");
    else if (retval == JFileChooser.ERROR_OPTION) {
    JOptionPane.showMessageDialog(CheckZipFile.this,
    "An error occured. No file was chosen.");
    else {
    JOptionPane.showMessageDialog(CheckZipFile.this,
    "Unknown operation occured.");
    if (ae.getSource() == chooseButton2) {
    int retval = fileChooser.showDialog(CheckZipFile.this,
    "Select");
    if (retval == JFileChooser.APPROVE_OPTION) {
    File theFile = fileChooser.getSelectedFile();
    if (theFile != null) {
    File[] files = fileChooser.getSelectedFiles();
    if (fileChooser.isMultiSelectionEnabled()
    && files != null && files.length > 1) {
    String filenames = "";
    for (int i = 0; i < files.length; i++) {
    filenames = filenames + "\n"
    + files[i].getPath();
    JOptionPane.showMessageDialog(CheckZipFile.this,
    "You chose these files: \n"
    + filenames + "\n Multiple Selection Should not be done here");
    else if (theFile.isDirectory()) {
    JOptionPane.showMessageDialog(CheckZipFile.this,
    "You chose this directory: "
    + fileChooser.getSelectedFile().getPath()
    + "\n Please select a Zip File or jar File");
    else {
    JOptionPane.showMessageDialog(CheckZipFile.this,
    "You chose this file: " +
    fileChooser.getSelectedFile().getPath());
    secondZipName.setText(fileChooser.getSelectedFile().getPath());
    return;
    else if (retval == JFileChooser.CANCEL_OPTION) {
    JOptionPane.showMessageDialog(CheckZipFile.this,
    "User cancelled operation. No file was chosen.");
    else if (retval == JFileChooser.ERROR_OPTION) {
    JOptionPane.showMessageDialog(CheckZipFile.this,
    "An error occured. No file was chosen.");
    else {
    JOptionPane.showMessageDialog(CheckZipFile.this,
    "Unknown operation occured.");
    if (ae.getSource() == compare) {
    String file1 = firstZipName.getText();
    String file2 = secondZipName.getText();
    if (file1 == null || file2 == null) {
    JOptionPane.showMessageDialog(CheckZipFile.this,
    "Enter / Select the Files to be compared");
    return;
    if (file1.equals("") || file2.equals("")) {
    JOptionPane.showMessageDialog(CheckZipFile.this,
    "Enter / Select the Files to be compared");
    return;
    try {
    ZipFile zip1 = new ZipFile(file1);
    ZipFile zip2 = new ZipFile(file2);
    int size1 = zip1.size();
    int size2 = zip2.size();
    if (size1 != size2) {
    JOptionPane.showMessageDialog(CheckZipFile.this,
    "Size of both the jars are not same");
    return;
    Enumeration entries1 = zip1.entries();
    Enumeration entries2 = zip2.entries();
    ZipEntry entry1 = null;
    ZipEntry entry2 = null;
    String name1 = "";
    String name2 = "";
    long filesize1 = 0;
    long filesize2 = 0;
    long time1;
    long time2;
    //StringBuffer detail = new StringBuffer();
    boolean nameDiffers = false;
    boolean sizeDiffers = false;
    boolean timeDiffers = false;
    buffer.append(file1 + "\t\t\t" + file2 +
    "\n______________________________________________________________________\n");
    //buffer1.append("\t\t" + file1 + "\n");
    //buffer2.append("\t\t" + file2 + "\n");
    int length = buffer.length();
    for (int x = 0; x < size1; x++) {
    nameDiffers = false;
    sizeDiffers = false;
    timeDiffers = false;
    entry1 = (ZipEntry)entries1.nextElement();
    entry2 = (ZipEntry)entries2.nextElement();
    name1 = entry1.getName();
    name2 = entry2.getName();
    filesize1 = entry1.getSize();
    filesize2 = entry2.getSize();
    time1 = entry1.getTime();
    time2 = entry2.getTime();
    if (!name1.equals(name2)) {
    //System.out.println("Name of the Entries in both the Jars are not same:\n"+ entry1.getName() + " : " + entry2.getName() );
    nameDiffers = true;
    //return;
    //else
    //     System.out.println("Name: " +entry1.getName());
    if (filesize1 != filesize2) {
    //System.out.println("Size of the Entries in both the Jars are not same:\n"+ entry1.getSize() + " : " + entry2.getSize() );
    sizeDiffers = true;
    //return;
    if (time1 != time2) {
    //System.out.println("Time of the Entries in both the Jars are not same:\n"+ entry1.getTime() + " : " + entry2.getTime() );
    timeDiffers = true;
    //return;
    if (nameDiffers || sizeDiffers || timeDiffers) {
    if (filesize1 != 0 && filesize2 !=
    0) {
    buffer.append(name1 + ":" +
    filesize1 + ":" + new java.util.Date(time1)
    + "\t" + name2 + ":"
    + filesize2 + ":" +
    new java.util.Date(time2)
    + "\n");
    buffer1.append(name1 + ":" +
    nameDiffers + ";" +
    filesize1 + ":" + sizeDiffers
    + ";" + new java.util.Date(time1).toString()
    + ":" + timeDiffers +
    buffer2.append(name2 + ":" +
    nameDiffers + ";" +
    filesize2 + ":" + sizeDiffers
    + ";" + new java.util.Date(time2).toString()
    + ":" + timeDiffers +
    if (length == buffer.length())
    JOptionPane.showMessageDialog(CheckZipFile.this,
    "Both the Zip / Jar Files are Identical");
    else {
    getToolkit().beep();
    //System.out.println(buffer.toString());
    updateGUI(buffer1.toString(), buffer2.toString());
    getToolkit().beep();
    } catch (Exception ex) {
    ex.printStackTrace();

  • Initialization of parameter values in JSP Custom Tag Handlers

    Hi - I have a tag handler for a custom tag that has no body, but accepts
              some parameters.
              If the parameters are optional and are passed with the tag in the source jsp
              page, then all is fine.
              However, for subsequent uses of the same tag in the same page if the
              optional parameters are omitted, the previous values remain in the instance
              of the tag handler class, as the attributes for the tag handler are declared
              as instance variables (with corresponding getters and setters) as per the
              tag handler specs.
              eg:
              <abc:sometag attrib1="a" attrib2="b"/>
              if attrib1 and attrib2 are optional, then a subsequent use of this tag, eg:
              <abc:sometag/>
              attrib1 and attrib2 still have their previously assigned values of "a" and
              "b".
              Is there a method I can call to get the actual values of the attributes that
              were passed on a particular call to the tag handler, or is there a way to
              initialize the attributes before the tag handler processing method, eg
              doBeforeBody(), doAfterBody(), is called?
              Thanks,
              Kevin Hooke
              

    Yeah, just call the JSPWriter's print method instead of using the StringBuffer, or write your own subclass of StringBuffer (or StringBuilder if Java 5+) which will do this for you automatically when the size is at a certain point, and clear it out)

  • Unmarshal stringbuffer gives null object

    Hi,
    I'm using jDeveloper 10.1.3. to develop a webservice that calls the Oracle Business Rules engine.
    In order to do this, I take the carrental example from OTN as a starting point.
    The supplied java file uses Unmarshalling to read xml from a file into an object like this:
    ******************************************************************************88
    //* Unmarshall a file
    JAXBContext jc = JAXBContext.newInstance("rent");
    Unmarshaller um = jc.createUnmarshaller();
    String fs = System.getProperty("file.separator");
    String xmlpath = "C:\\Jdev10g\\jdev\\mywork\\Rules\\rent\\data" + fs + "carrental.xml" ;
    Object root = um.unmarshal(new File(xmlpath));
    This works fine.
    I want to do the same but now with the xml in a stringbuffer i.o. a file, like this:
    //Unmarshal a stringbuffer
    JAXBContext jc = JAXBContext.newInstance("rent");
    Unmarshaller um = jc.createUnmarshaller();
    StringBuffer xmlStr = new StringBuffer(buf1);
    Object root = um.unmarshal(new StreamSource (new StringReader(xmlStr.toString())));
    In this case, the resulting Object root is null.
    The String buf1 variable contains the same xmlstring as is found in the carrental.xml file :
    <repository xmlns="http://rules.oracle.com/carrental"
    xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance">
    <driver>
    <driver-license-number>d111</driver-license-number>
    <name>Dave</name>
    <age>50</age>
    <vehicle-type>sports</vehicle-type>
    <license-type>full</license-type>
    <pre-convictions>0</pre-convictions>
    <pre-accidents>1</pre-accidents>
    <able-to-drive>true</able-to-drive>
    </driver>
    <driver>
    <driver-license-number>d222</driver-license-number>
    <name>Martien van den Akker</name>
    <age>18</age>
    <vehicle-type>truck</vehicle-type>
    <license-type>full</license-type>
    <pre-convictions>0</pre-convictions>
    <pre-accidents>0</pre-accidents>
    <able-to-drive>true</able-to-drive>
    </driver>
    <driver>
    <driver-license-number>d222</driver-license-number>
    <name>Rob de Haanr</name>
    <age>39</age>
    <vehicle-type>truck</vehicle-type>
    <license-type>full</license-type>
    <pre-convictions>0</pre-convictions>
    <pre-accidents>1</pre-accidents>
    <able-to-drive>true</able-to-drive>
    </driver>
    </repository>
    I followed the examples from the Sun website:
    http://java.sun.com/webservices/docs/1.6/api/javax/xml/bind/Unmarshaller.html
    The complete java file is:
    package carrental;
    import java.io.File;
    import java.io.StringReader;
    import java.util.ArrayList;
    import java.util.List;
    import javax.xml.bind.JAXBContext;
    import javax.xml.bind.Unmarshaller;
    import javax.xml.transform.stream.StreamSource;
    import oracle.rules.rl.RuleSession;
    import oracle.rules.sdk.dictionary.RuleDictionary;
    import oracle.rules.sdk.exception.RepositoryException;
    import oracle.rules.sdk.repository.RepositoryContext;
    import oracle.rules.sdk.repository.RepositoryManager;
    import oracle.rules.sdk.repository.RepositoryType;
    import oracle.rules.sdk.repository.RuleRepository;
    public class TestXML
    static public void main( String[] args )
    String result;
         try
    TestXML myObject = new TestXML();
    result = myObject.testRule("rob");
    catch( Throwable t )
    t.printStackTrace();
    public String testRule (String buf)
    String buf1 =
    "<?xml version=\"1.0\"?><repository xmlns=\"http://rules.oracle.com/carrental\"\n" +
    " xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n" +
    " <driver>\n" +
    " <driver-license-number>d111</driver-license-number>\n" +
    " <name>Dave</name>\n" +
    " <age>50</age>\n" +
    " <vehicle-type>sports</vehicle-type>\n" +
    " <license-type>full</license-type>\n" +
    " <pre-convictions>0</pre-convictions>\n" +
    " <pre-accidents>1</pre-accidents>\n" +
    " <able-to-drive>true</able-to-drive>\n" +
    " </driver>\n" +
    "</repository>\n" ;
    try
    //Unmarshal a stringbuffer
    JAXBContext jc = JAXBContext.newInstance("rent");
    Unmarshaller um = jc.createUnmarshaller();
    StringBuffer xmlStr = new StringBuffer(buf1);
    System.out.println("buf = " + buf1);
    Object root = um.unmarshal(new StreamSource (new StringReader(xmlStr.toString())));
    //* Unmarshall a file
    JAXBContext jc = JAXBContext.newInstance("rent");
    Unmarshaller um = jc.createUnmarshaller();
    String fs = System.getProperty("file.separator");
    String xmlpath = "C:\\Jdev10g\\jdev\\mywork\\Rules\\rent\\data" + fs + "singlecarrental.xml" ;
    Object root = um.unmarshal(new File(xmlpath));
    //load dictionary
    String repoPath = "C:\\Jdev10g\\jdev\\mywork\\Rules\\rent\\dict" + fs + "CarxmlRepository";
    final String jarstoreKey = "oracle.rules.sdk.store.jar";
    // file based repository
    RepositoryType jarType = RepositoryManager.getRegisteredRepositoryType( jarstoreKey );
    RuleRepository repo = RepositoryManager.createRuleRepositoryInstance( jarType );
    //fill in init property values
    RepositoryContext jarCtx = new RepositoryContext();
    jarCtx.setProperty( oracle.rules.sdk.store.jar.Constants.I_PATH_BASE, repoPath );
    //init the repository instance. If the init is successful,
    //we shall get a useable repository instance
    repo.init( jarCtx );
    RuleDictionary dict = repo.loadDictionary( "RobFileXML", "INITIAL" );
    //init a rule session
    String rsname = "vehicleRent";
    String dmrl = dict.dataModelRL();
    String rsrl = dict.ruleSetRL( rsname );
    RuleSession session = new RuleSession();
    session.executeRuleset( dmrl );
    session.executeRuleset( rsrl );
    List argList = new ArrayList(3);
    argList.add( "rent" );
    argList.add( root );
    argList.add( "//*" );
    session.callFunctionWithArgumentList( "assertXPath", argList );
    return ("Klaar, resultaat = " + session.callFunctionWithArgument( "run", rsname )).toString();
    catch( Throwable t )
    t.printStackTrace();
    return t.getMessage() + " Buf1 = " + buf1;
    public String version() {
    return "1.0";
    As stated above: if I unmarshal the file all goes well.
    Any help would be greatly appreciated
    Regards, Rob

    Yes, you cannot do that work outside of a function. This is
    because of the way mxml is generated into AS and compiled.
    Declare the variable in instance scope as you have it, but do
    the assignment in a function called by the Application initialize
    or creationComplete event,
    Tracy

  • Could not initialize a collection+[Microsoft][ODBC SQL Server Driver]Invali

    Hi All,
    I am getting the following message, when i try to retreive the child object from the parent..
    Session sess = sessionFactory.openSession();
    Team obj = (Team) sess.load(Team.class, new Long(2457600));
    Set s = obj.getPlayers();
    System.out.println("PLayer -- "+obj.getPlayers());
    Error Message :
    org.hibernate.exception.GenericJDBCException: could not initialize a collection: [com.test.Team.players#2457600]
    org.hibernate.exception.GenericJDBCException: could not initialize a collection: [com.test.Team.players#2457600]
    at org.hibernate.exception.SQLStateConverter.handledNonSpecificException(SQLStateConverter.java:82)
    at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:70)
    at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:43)
    at org.hibernate.loader.Loader.loadCollection(Loader.java:1351)
    at org.hibernate.loader.collection.OneToManyLoader.initialize(OneToManyLoader.java:106)
    at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:484)
    at org.hibernate.event.def.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:60)
    at org.hibernate.impl.SessionImpl.initializeCollection(SessionImpl.java:1346)
    at org.hibernate.collection.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:170)
    at org.hibernate.collection.AbstractPersistentCollection.read(AbstractPersistentCollection.java:47)
    at org.hibernate.collection.PersistentSet.toString(PersistentSet.java:221)
    at java.lang.String.valueOf(String.java:2131)
    at java.lang.StringBuffer.append(StringBuffer.java:370)
    at com.test.TeamPlayer.main(TeamPlayer.java:70)
    Caused by: java.sql.SQLException: [Microsoft][ODBC SQL Server Driver]Invalid Descriptor Index
    at sun.jdbc.odbc.JdbcOdbc.createSQLException(JdbcOdbc.java:6958)
    at sun.jdbc.odbc.JdbcOdbc.standardError(JdbcOdbc.java:7115)
    at sun.jdbc.odbc.JdbcOdbc.SQLGetDataDouble(JdbcOdbc.java:3658)
    at sun.jdbc.odbc.JdbcOdbcResultSet.getDataDouble(JdbcOdbcResultSet.java:5579)
    at sun.jdbc.odbc.JdbcOdbcResultSet.getLong(JdbcOdbcResultSet.java:635)
    at sun.jdbc.odbc.JdbcOdbcResultSet.getLong(JdbcOdbcResultSet.java:653)
    at org.hibernate.type.LongType.get(LongType.java:26)
    at org.hibernate.type.NullableType.nullSafeGet(NullableType.java:77)
    at org.hibernate.type.NullableType.nullSafeGet(NullableType.java:68)
    at org.hibernate.persister.collection.AbstractCollectionPersister.readKey(AbstractCollectionPersister.java:612)
    at org.hibernate.loader.Loader.readCollectionElement(Loader.java:545)
    at org.hibernate.loader.Loader.readCollectionElements(Loader.java:344)
    at org.hibernate.loader.Loader.getRowFromResultSet(Loader.java:299)
    at org.hibernate.loader.Loader.doQuery(Loader.java:384)
    at org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:203)
    at org.hibernate.loader.Loader.loadCollection(Loader.java:1344)
    ... 10 more
    Team [Parent] <--> Player [Child]
    Team.hbm.xml
    <hibernate-mapping>
    <class name="com.test.Team" table="dbo.teams">
    <id name="id" column="team_id" >
    <generator class="hilo"/>
    </id>
    <property name="name" column="team_name" />
    <property name="city" column="city" />
    <set name="players" cascade="all" inverse="true" lazy="true">
    <key column="team_id"/>
    <one-to-many class="com.test.Player"/>
    </set>
    </class>
    </hibernate-mapping>
    PLayer.hbm.xml:
    <hibernate-mapping>
    <class name="com.test.Player" table="dbo.players">
    <id name="id" column="player_id">
    <generator class="hilo"/>
    </id>
    <property name="firstName" column="first_name" />
    <property name="lastName" column="last_name" />
    <property name="draftDate" column="draft_date" />
    <property name="annualSalary" column="salary" />
    <property name="jerseyNumber" column="jersey_number" />
    <many-to-one name="team" class="com.test.Team" column="team_id" />
    </class>
    </hibernate-mapping>
    Any help would be highly appreciated..
    Thanks,
    /Shridhar..

    http://forums.hibernate.org/viewtopic.php?t=928277&view=next&sid=e3ed34f2b57526386ba6ac7ac29b6471

  • Truncating Strings(stringbuffer)

    Hello again
    im trying to delete portions of a string that are over a certain length, i know i need to use StringBuffer and public delete(int start, int end) command, but i am having trouble working it in, how do i initialize a Stringbuffer?
    Stringbuffer serverNameBuff=new StringBuffer(serverName); is meant to create a StringBuffercopy of the string serverName, what am i doing wrong?
    THankyou
    dom

    lol damn, sorry, i see now...lowercase b...nevermind, but thanks anyway

  • Time Evaluation Re Run in Mid Month & Mid Mont Initialization !

    Hi There,
    i was trying to run Time evaluation for the period 01.04.2011 to 31/12/2011.
    from April, that is 01.04.4011 to 30.06.2011 Time evaluation was good, now time evaluation has to run from 01.07.2011 but time evaluation has repeated from 12.06.2011 to 11.07.2011 as Initialization period 07/2011, and the same scenario is repeated for the rest of the year..all periods are initiated on 12th of each month from 6th month that is 12.06.2011.
    i was been trying to rectify this issue but was not bale to solve it, could any one please look in to it and let me know how to solve it?
    your help is appreciated.
    Thanks
    Kumar

    Can you please regenerate Period Parameters for 2011 year in T-Code for OG00 for period parameter 01 and then give the hire date in the field Forced Recalculation as of run in PT60 and run  the time evaluation.
    Best Regards,

  • Error while installing exchange2007 : Unable to initialize the Microsoft Exchange Information Store service. Failed to find the

    Hi,
    I am trying fresh install of exchange2007, everything gone well but, finally it thrown a error saying :
    Unable to initialize the Microsoft Exchange Information Store service. Failed to find the working directory parameter from the registry - Error 0x80004005.
    the installation log says
    6/5/2007 3:14:05 PM] [1] Processing component 'Mailbox Service Control (Last)' (Starting mailbox services).
    [6/5/2007 3:14:05 PM] [1] Executing 'start-SetupService -ServiceName MSExchangeIS -MaximumWaitTime "unlimited"', handleError = False
    [6/5/2007 3:14:05 PM] [2] Launching sub-task '$error.Clear(); start-SetupService -ServiceName MSExchangeIS -MaximumWaitTime "unlimited"'.
    [6/5/2007 3:14:05 PM] [2] Beginning processing.
    [6/5/2007 3:14:05 PM] [2] The maximum wait for the operation is set to 'unlimited'.
    [6/5/2007 3:14:05 PM] [2] Service checkpoint has progressed. Previous checkpoint='0' - Current checkpoint='1'.
    [6/5/2007 3:14:05 PM] [2] Will wait '10000' milliseconds for the service 'MSExchangeIS' to reach status 'Running'.
    [6/5/2007 3:14:15 PM] [2] Service 'MSExchangeIS' failed to reach status 'Running' on this server after waiting for '10000' milliseconds.
    [6/5/2007 3:14:15 PM] [2] Service 'MSExchangeIS' failed to start. Check the event log for possible reasons for the service start failure.
    [6/5/2007 3:14:15 PM] [2] [ERROR] Unexpected Error
    [6/5/2007 3:14:15 PM] [2] [ERROR] Service 'MSExchangeIS' failed to start. Check the event log for possible reasons for the service start failure.
    [6/5/2007 3:14:15 PM] [2] Ending processing.
    [6/5/2007 3:14:15 PM] [1] The following 1 error(s) occurred during task execution:
    [6/5/2007 3:14:15 PM] [1] 0.  ErrorRecord: Service 'MSExchangeIS' failed to start. Check the event log for possible reasons for the service start failure.
    [6/5/2007 3:14:15 PM] [1] 0.  ErrorRecord: Microsoft.Exchange.Configuration.Tasks.ServiceFailedToStartException: Service 'MSExchangeIS' failed to start. Check the event log for possible reasons for the service start failure.
    [6/5/2007 3:14:15 PM] [1] [ERROR] Service 'MSExchangeIS' failed to start. Check the event log for possible reasons for the service start failure.
    [6/5/2007 3:14:15 PM] [1] Setup is halting task execution because of one or more errors in a critical task.
    [6/5/2007 3:14:15 PM] [1] Finished executing component tasks.
    [6/5/2007 3:14:15 PM] [1] Ending processing.
    [6/5/2007 3:14:18 PM] [0] End of Setup
    [6/5/2007 3:14:18 PM] [0] **********************************************
    this I am trying on my test system please help me out in resolving the issue
    thanks in advance,

    Gary,
    Open Registry Editor.
    In Registry Editor, navigate to the following registry key:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MSExchangeIS\ParametersSystem
    Create the following value (REG_SZ): Working Directory and give it a value that points to the new database folder.
    Make sure you back up the registry before you do any changes on it.
    Raj

  • Windows 7 Desktop error message "Can't initialize plugins directory" - Blocked from Installing/uninstalling anything

    Blocked from running *.exe
    files. Blocked in Control Panel from Uninstalling anything. 
    Consistently returns: "Can't initialize plugins directory"
    What I tried:
    1. Safe Mode with Network
    2. File cleanup from C Drive Tools
    3. Environmental variable: changed
    to this c:/TEMP
    c:/TMP (Created TEMP folder
    on
    directory tree.)
    4. Googled error-- known
    issue but fixes do not work. (Created New Profile, SFC Scan
    of Windows files, moved TEMP folder,
    etc)
    5. Run as administrator
    6. Started after the support desk for ACT client management software uninstalled SQL to restore access to a CLIENT database that was lost for reasons unknown. So it appears some damage was done.
    Question is, what was damaged and how to fix it, if this caused this problem and it was not malware fiddling with
    registry. 

    Hi,
    You can open Control Panel\System and Security, click
    Event Viewer under Administrator Tools to check if some logs record recent errors.
    Also you can start computer and typing F8, click Repair Your Computer to perform
    System Restore.

  • How to install InDesign CS6 from disk on a Windows 8.1 (64-bit) PC when installation fails after the first initialization of installation program, without error message?

    I have a (legally purchased) disc with InDesign CS6 that I want to install on a PC with Windows 8.1 (64-bit). After I've double-clicked the Set-up.exe file on the disc, a box is displayed showing the progress of the initialization of the installation program. When the coloured bar in the box is full – indicating that this step is completed – the installation stops and nothing more happens. No error messages are displayed.
    I can't find any useful instructions in the Adobe Help pages more than a note that there is support for also Windows 8.1 even though the system requirements printed on the disc box only lists Windows XP and Windows 7. I don't know how to make this work. Does anybody here have any suggestions? I'd be ever so grateful for any tips.

    Thanks, Jeff! The file Adobe Setup Error.log contains the following information:
    02/14/14 07:20:26:474 | [INFO] |  | OOBE | DE |  |  |  | 8860 | DEVersion: 5.0.0.0
    02/14/14 07:20:26:475 | [INFO] |  | OOBE | DE |  |  |  | 8860 | Loading library from C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\DECore\DE5\Setup.dll
    [    8860] Fri Feb 14 07:20:26 2014  INFO
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    CHECK : Another Native OS installer already running
    Create Required Folders
    Assuming uninstall mode
    Lookup for master payload
    [    8860] Fri Feb 14 07:20:26 2014 ERROR
    DW040: The product "{893B3B44-0A1E-404B-8FE8-0A74509102A9}" is not installed. Cannot proceed with the uninstall
    [    8860] Fri Feb 14 07:20:26 2014  INFO
    :: END TIMER :: [Total Timer] took 6.90443 milliseconds (0.00690443 seconds) DTR = 579.338 KBPS (0.56576 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 1 error(s), 0 warning(s)
    ERROR: DW040: The product "{893B3B44-0A1E-404B-8FE8-0A74509102A9}" is not installed. Cannot proceed with the uninstall
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    Exit Code: 33 - The product is not installed, cannot uninstall.
    Please see specific errors and warnings for troubleshooting. For example, ERROR: DW040 ...

  • [GAVE UP] Failure to initialize graphics device [Thinkpad 530W,Nvidia]

    Hello,
    I fail to use `nvidia` as graphics driver for my xorg on a Thinkpad 530W laptop using Nvidia Quadro 2000M and intel graphics card. Using instead `intel` or `vesa` work. This following logs are with optimus enabled, but I tried the same things with only the nvidia graphics card enabled in the bios and I also fail to load the nvidia driver.
    I followed the advice at
    https://wiki.archlinux.org/index.php/NV … IA_Optimus
    for xorg not to be confused by the presense of two graphics cards.
    Do you have any ideas how I get the nvidia card to run? Should I try Bumblebee? But can this even help if already only the nvidia card by itself makes problem? Do you need any more information?
    Thanks, for any advice,
    Holger
    This is a fresh install on a new laptop and I am new to Arch (but with Linux for a long time).
    Here are the logs:
    XOrg.log
    [ 6.236]
    X.Org X Server 1.14.4
    Release Date: 2013-10-31
    [ 6.236] X Protocol Version 11, Revision 0
    [ 6.236] Build Operating System: Linux 3.11.6-1-ARCH x86_64
    [ 6.236] Current Operating System: Linux ho-think 3.12.2-1-ARCH #1 SMP PREEMPT Fri Nov 29 21:14:15 CET 2013 x86_64
    [ 6.236] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=267f069c-11da-4d2a-88fa-00cab4e28149 rw quiet resume=/dev/sda6
    [ 6.236] Build Date: 01 November 2013 05:10:48PM
    [ 6.236]
    [ 6.236] Current version of pixman: 0.32.4
    [ 6.236] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 6.236] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 6.237] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Dec 5 23:50:52 2013
    [ 6.239] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 6.239] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 6.239] (==) No Layout section. Using the first Screen section.
    [ 6.239] (==) No screen section available. Using defaults.
    [ 6.239] (**) |-->Screen "Default Screen Section" (0)
    [ 6.239] (**) | |-->Monitor "<default monitor>"
    [ 6.240] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 6.240] (**) | |-->Device "Nvidia Card"
    [ 6.240] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 6.240] (==) Automatically adding devices
    [ 6.240] (==) Automatically enabling devices
    [ 6.240] (==) Automatically adding GPU devices
    [ 6.242] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 6.242] Entry deleted from font path.
    [ 6.244] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 6.244] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 6.244] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 6.244] (II) Loader magic: 0x7fdc20
    [ 6.244] (II) Module ABI versions:
    [ 6.244] X.Org ANSI C Emulation: 0.4
    [ 6.244] X.Org Video Driver: 14.1
    [ 6.244] X.Org XInput driver : 19.1
    [ 6.244] X.Org Server Extension : 7.0
    [ 6.244] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 6.245] (II) xfree86: Adding drm device (/dev/dri/card1)
    [ 6.246] (--) PCI:*(0:0:2:0) 8086:0166:17aa:21f5 rev 9, Mem @ 0xf1400000/4194304, 0xe0000000/268435456, I/O @ 0x00006000/64
    [ 6.246] (--) PCI: (0:1:0:0) 10de:0ffb:17aa:21f5 rev 161, Mem @ 0xf0000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x00005000/128, BIOS @ 0x????????/524288
    [ 6.246] Initializing built-in extension Generic Event Extension
    [ 6.246] Initializing built-in extension SHAPE
    [ 6.246] Initializing built-in extension MIT-SHM
    [ 6.246] Initializing built-in extension XInputExtension
    [ 6.246] Initializing built-in extension XTEST
    [ 6.246] Initializing built-in extension BIG-REQUESTS
    [ 6.246] Initializing built-in extension SYNC
    [ 6.246] Initializing built-in extension XKEYBOARD
    [ 6.246] Initializing built-in extension XC-MISC
    [ 6.246] Initializing built-in extension SECURITY
    [ 6.247] Initializing built-in extension XINERAMA
    [ 6.247] Initializing built-in extension XFIXES
    [ 6.247] Initializing built-in extension RENDER
    [ 6.247] Initializing built-in extension RANDR
    [ 6.247] Initializing built-in extension COMPOSITE
    [ 6.247] Initializing built-in extension DAMAGE
    [ 6.247] Initializing built-in extension MIT-SCREEN-SAVER
    [ 6.247] Initializing built-in extension DOUBLE-BUFFER
    [ 6.247] Initializing built-in extension RECORD
    [ 6.247] Initializing built-in extension DPMS
    [ 6.247] Initializing built-in extension X-Resource
    [ 6.247] Initializing built-in extension XVideo
    [ 6.247] Initializing built-in extension XVideo-MotionCompensation
    [ 6.247] Initializing built-in extension XFree86-VidModeExtension
    [ 6.247] Initializing built-in extension XFree86-DGA
    [ 6.247] Initializing built-in extension XFree86-DRI
    [ 6.247] Initializing built-in extension DRI2
    [ 6.247] (II) "glx" will be loaded by default.
    [ 6.247] (II) LoadModule: "dri2"
    [ 6.247] (II) Module "dri2" already built-in
    [ 6.247] (II) LoadModule: "glamoregl"
    [ 6.275] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 6.475] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 6.475] compiled for 1.14.2, module version = 0.5.1
    [ 6.475] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 6.475] (II) LoadModule: "glx"
    [ 6.475] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 6.517] (II) Module glx: vendor="NVIDIA Corporation"
    [ 6.517] compiled for 4.0.2, module version = 1.0.0
    [ 6.517] Module class: X.Org Server Extension
    [ 6.517] (II) NVIDIA GLX Module 331.20 Wed Oct 30 17:36:48 PDT 2013
    [ 6.517] Loading extension GLX
    [ 6.517] (II) LoadModule: "nvidia"
    [ 6.517] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 6.549] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 6.549] compiled for 4.0.2, module version = 1.0.0
    [ 6.549] Module class: X.Org Video Driver
    [ 6.549] (II) NVIDIA dlloader X Driver 331.20 Wed Oct 30 17:16:53 PDT 2013
    [ 6.549] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 6.549] (++) using VT number 7
    [ 6.553] (II) Loading sub module "fb"
    [ 6.554] (II) LoadModule: "fb"
    [ 6.554] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 6.557] (II) Module fb: vendor="X.Org Foundation"
    [ 6.557] compiled for 1.14.4, module version = 1.0.0
    [ 6.557] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 6.557] (WW) Unresolved symbol: fbGetGCPrivateKey
    [ 6.557] (II) Loading sub module "wfb"
    [ 6.557] (II) LoadModule: "wfb"
    [ 6.557] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 6.559] (II) Module wfb: vendor="X.Org Foundation"
    [ 6.559] compiled for 1.14.4, module version = 1.0.0
    [ 6.559] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 6.559] (II) Loading sub module "ramdac"
    [ 6.559] (II) LoadModule: "ramdac"
    [ 6.559] (II) Module "ramdac" already built-in
    [ 6.559] (II) NVIDIA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 6.559] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    [ 6.559] (==) NVIDIA(0): RGB weight 888
    [ 6.559] (==) NVIDIA(0): Default visual is TrueColor
    [ 6.559] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 6.559] (**) NVIDIA(0): Enabling 2D acceleration
    [ 11.161] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA GPU at PCI:1:0:0. Please
    [ 11.161] (EE) NVIDIA(GPU-0): check your system's kernel log for additional error
    [ 11.161] (EE) NVIDIA(GPU-0): messages and refer to Chapter 8: Common Problems in the
    [ 11.161] (EE) NVIDIA(GPU-0): README for additional information.
    [ 11.161] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA graphics device!
    [ 11.161] (EE) NVIDIA(0): Failing initialization of X screen 0
    [ 11.161] (II) UnloadModule: "nvidia"
    [ 11.161] (II) UnloadSubModule: "wfb"
    [ 11.161] (II) UnloadSubModule: "fb"
    [ 11.161] (EE) Screen(s) found, but none have a usable configuration.
    [ 11.161] (EE)
    Fatal server error:
    [ 11.161] (EE) no screens found(EE)
    [ 11.161] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 11.161] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 11.162] (EE)
    [ 11.167] (EE) Server terminated with error (1). Closing log file.
    dmesg with the nvidia failure at the end:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.12.2-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.2 (GCC) ) #1 SMP PREEMPT Fri Nov 29 21:14:15 CET 2013
    [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=267f069c-11da-4d2a-88fa-00cab4e28149 rw quiet resume=/dev/sda6
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] 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-0x00000000a6b2ffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000a6b30000-0x00000000bae9efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bae9f000-0x00000000baf9efff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000baf9f000-0x00000000baffefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000bafff000-0x00000000bf9fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000043e5fffff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000043e600000-0x000000043e7fffff] reserved
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: LENOVO 2447DW0/2447DW0, BIOS G5ET93WW (2.53 ) 05/24/2013
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x43e600 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 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 0BC000000 mask FFC000000 uncachable
    [ 0.000000] 4 base 0BB000000 mask FFF000000 uncachable
    [ 0.000000] 5 base 100000000 mask F00000000 write-back
    [ 0.000000] 6 base 200000000 mask E00000000 write-back
    [ 0.000000] 7 base 400000000 mask FC0000000 write-back
    [ 0.000000] 8 base 43F000000 mask FFF000000 uncachable
    [ 0.000000] 9 base 43E800000 mask FFF800000 uncachable
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: last_pfn = 0xa6b30 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000f0100-0x000f010f] mapped at [ffff8800000f0100]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x01b32000, 0x01b32fff] PGTABLE
    [ 0.000000] BRK [0x01b33000, 0x01b33fff] PGTABLE
    [ 0.000000] BRK [0x01b34000, 0x01b34fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x43e400000-0x43e5fffff]
    [ 0.000000] [mem 0x43e400000-0x43e5fffff] page 2M
    [ 0.000000] BRK [0x01b35000, 0x01b35fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x43c000000-0x43e3fffff]
    [ 0.000000] [mem 0x43c000000-0x43e3fffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x400000000-0x43bffffff]
    [ 0.000000] [mem 0x400000000-0x43bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x1fffffff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x1fffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x20200000-0x40003fff]
    [ 0.000000] [mem 0x20200000-0x3fffffff] page 2M
    [ 0.000000] [mem 0x40000000-0x40003fff] page 4k
    [ 0.000000] BRK [0x01b36000, 0x01b36fff] PGTABLE
    [ 0.000000] BRK [0x01b37000, 0x01b37fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x40005000-0xa6b2ffff]
    [ 0.000000] [mem 0x40005000-0x401fffff] page 4k
    [ 0.000000] [mem 0x40200000-0xa69fffff] page 2M
    [ 0.000000] [mem 0xa6a00000-0xa6b2ffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x3ffffffff]
    [ 0.000000] [mem 0x100000000-0x3ffffffff] page 2M
    [ 0.000000] RAMDISK: [mem 0x379be000-0x37cd6fff]
    [ 0.000000] ACPI: RSDP 00000000000f0120 00024 (v02 LENOVO)
    [ 0.000000] ACPI: XSDT 00000000baffe170 000BC (v01 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: FACP 00000000bafe6000 0010C (v05 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: DSDT 00000000bafe8000 10A68 (v01 LENOVO TP-G5 00002530 INTL 20061109)
    [ 0.000000] ACPI: FACS 00000000baf54000 00040
    [ 0.000000] ACPI: SLIC 00000000baffd000 00176 (v01 LENOVO TP-G5 00002530 PTL 00000001)
    [ 0.000000] ACPI: TCPA 00000000baffc000 00032 (v02 PTL LENOVO 06040000 LNVO 00000001)
    [ 0.000000] ACPI: SSDT 00000000baffb000 00408 (v01 LENOVO TP-SSDT2 00000200 INTL 20061109)
    [ 0.000000] ACPI: SSDT 00000000baffa000 00033 (v01 LENOVO TP-SSDT1 00000100 INTL 20061109)
    [ 0.000000] ACPI: SSDT 00000000baff9000 00797 (v01 LENOVO SataAhci 00001000 INTL 20061109)
    [ 0.000000] ACPI: HPET 00000000bafe4000 00038 (v01 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: APIC 00000000bafe3000 00098 (v01 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: MCFG 00000000bafe2000 0003C (v01 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: ECDT 00000000bafe1000 00052 (v01 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: FPDT 00000000bafe0000 00064 (v01 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: ASF! 00000000bafe7000 000A5 (v32 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: UEFI 00000000bafdf000 0003E (v01 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: UEFI 00000000bafde000 00042 (v01 PTL COMBUF 00000001 PTL 00000001)
    [ 0.000000] ACPI: MSDM 00000000bafdd000 00055 (v03 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: SSDT 00000000bafdc000 00D23 (v01 PmRef Cpu0Ist 00003000 INTL 20061109)
    [ 0.000000] ACPI: SSDT 00000000bafdb000 00A83 (v01 PmRef CpuPm 00003000 INTL 20061109)
    [ 0.000000] ACPI: UEFI 00000000bafda000 002A6 (v01 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: DBG2 00000000bafd9000 000E9 (v00 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000043e5fffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x43e5fffff]
    [ 0.000000] NODE_DATA [mem 0x43e5ed000-0x43e5f1fff]
    [ 0.000000] [ffffea0000000000-ffffea0010ffffff] PMD -> [ffff88042e200000-ffff88043dbfffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x43e5fffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0009cfff]
    [ 0.000000] node 0: [mem 0x00100000-0x1fffffff]
    [ 0.000000] node 0: [mem 0x20200000-0x40003fff]
    [ 0.000000] node 0: [mem 0x40005000-0xa6b2ffff]
    [ 0.000000] node 0: [mem 0x100000000-0x43e5fffff]
    [ 0.000000] On node 0 totalpages: 4083403
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 21 pages reserved
    [ 0.000000] DMA zone: 3996 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 10597 pages used for memmap
    [ 0.000000] DMA32 zone: 678191 pages, LIFO batch:31
    [ 0.000000] Normal zone: 53144 pages used for memmap
    [ 0.000000] Normal zone: 3401216 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[0x04] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 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, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x40004000-0x40004fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xa6b30000-0xbae9efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbae9f000-0xbaf9efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbaf9f000-0xbaffefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbafff000-0xbf9fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbfa00000-0xf7ffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed07fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed08000-0xfed08fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed09000-0xfed0ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffbfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffffffff]
    [ 0.000000] e820: [mem 0xbfa00000-0xf7ffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88043e200000 s86464 r8192 d24128 u262144
    [ 0.000000] pcpu-alloc: s86464 r8192 d24128 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: 4019577
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=267f069c-11da-4d2a-88fa-00cab4e28149 rw quiet resume=/dev/sda6
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 15995556K/16333612K available (5121K kernel code, 807K rwdata, 1708K rodata, 1144K init, 1288K bss, 338056K reserved)
    [ 0.000000] SLUB: 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=128 to nr_cpu_ids=8.
    [ 0.000000] NR_IRQS:8448 nr_irqs:744 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 65536000 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.003333] tsc: Detected 2694.031 MHz processor
    [ 0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 5390.56 BogoMIPS (lpj=8980103)
    [ 0.000005] pid_max: default: 32768 minimum: 301
    [ 0.000027] Security Framework initialized
    [ 0.000034] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000035] Yama: becoming mindful.
    [ 0.000923] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
    [ 0.004551] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.006146] Mount-cache hash table entries: 256
    [ 0.006298] Initializing cgroup subsys memory
    [ 0.006306] Initializing cgroup subsys devices
    [ 0.006307] Initializing cgroup subsys freezer
    [ 0.006309] Initializing cgroup subsys net_cls
    [ 0.006310] Initializing cgroup subsys blkio
    [ 0.006329] CPU: Physical Processor ID: 0
    [ 0.006330] CPU: Processor Core ID: 0
    [ 0.006334] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.006663] mce: CPU supports 9 MCE banks
    [ 0.006675] CPU0: Thermal monitoring enabled (TM1)
    [ 0.006685] 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.006786] Freeing SMP alternatives memory: 20K (ffffffff819e9000 - ffffffff819ee000)
    [ 0.007682] ACPI: Core revision 20130725
    [ 0.013359] ACPI: All ACPI Tables successfully acquired
    [ 0.014627] ftrace: allocating 20311 entries in 80 pages
    [ 0.023669] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.056667] smpboot: CPU0: Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz (fam: 06, model: 3a, stepping: 09)
    [ 0.056673] TSC deadline timer enabled
    [ 0.056680] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Intel PMU driver.
    [ 0.056686] ... version: 3
    [ 0.056687] ... bit width: 48
    [ 0.056688] ... generic registers: 4
    [ 0.056689] ... value mask: 0000ffffffffffff
    [ 0.056689] ... max period: 0000ffffffffffff
    [ 0.056690] ... fixed-purpose events: 3
    [ 0.056691] ... event mask: 000000070000000f
    [ 0.093731] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.080104] smpboot: Booting Node 0, Processors # 1 # 2 # 3 # 4 # 5 # 6 # 7 OK
    [ 0.215283] Brought up 8 CPUs
    [ 0.215286] smpboot: Total of 8 processors activated (43121.51 BogoMIPS)
    [ 0.221817] devtmpfs: initialized
    [ 0.225267] PM: Registering ACPI NVS region [mem 0xbae9f000-0xbaf9efff] (1048576 bytes)
    [ 0.225908] RTC time: 22:50:45, date: 12/05/13
    [ 0.225941] NET: Registered protocol family 16
    [ 0.226022] cpuidle: using governor ladder
    [ 0.226024] cpuidle: using governor menu
    [ 0.226046] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.226048] ACPI: bus type PCI registered
    [ 0.226050] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.226221] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.226224] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    [ 0.230705] PCI: Using configuration type 1 for base access
    [ 0.231329] bio: create slab <bio-0> at 0
    [ 0.231442] ACPI: Added _OSI(Module Device)
    [ 0.231443] ACPI: Added _OSI(Processor Device)
    [ 0.231444] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.231445] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.232701] ACPI: EC: EC description table is found, configuring boot EC
    [ 0.236337] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.272341] ACPI: SSDT 00000000bae3a018 00A01 (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
    [ 0.272660] ACPI: Dynamic OEM Table Load:
    [ 0.272661] ACPI: SSDT (null) 00A01 (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
    [ 0.288532] ACPI: SSDT 00000000bae3ba98 00303 (v01 PmRef ApIst 00003000 INTL 20061109)
    [ 0.288874] ACPI: Dynamic OEM Table Load:
    [ 0.288876] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20061109)
    [ 0.301731] ACPI: SSDT 00000000bae39d98 00119 (v01 PmRef ApCst 00003000 INTL 20061109)
    [ 0.302048] ACPI: Dynamic OEM Table Load:
    [ 0.302049] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20061109)
    [ 0.316012] ACPI: Interpreter enabled
    [ 0.316018] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130725/hwxface-571)
    [ 0.316022] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130725/hwxface-571)
    [ 0.316034] ACPI: (supports S0 S3 S4 S5)
    [ 0.316035] ACPI: Using IOAPIC for interrupt routing
    [ 0.316057] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.316633] ACPI: ACPI Dock Station Driver: 2 docks/bays found
    [ 0.328772] ACPI: Power Resource [PUBS] (on)
    [ 0.332509] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11)
    [ 0.332575] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *7 9 10 11)
    [ 0.332638] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 *11)
    [ 0.332701] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 *10 11)
    [ 0.332763] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 *7 9 10 11)
    [ 0.332812] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [ 0.332874] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 *11)
    [ 0.332936] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 *10 11)
    [ 0.332972] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
    [ 0.333055] acpi PNP0A08:00: Requesting ACPI _OSC control (0x1d)
    [ 0.333132] acpi PNP0A08:00: ACPI _OSC request failed (AE_SUPPORT), returned control mask: 0x0d
    [ 0.333133] acpi PNP0A08:00: ACPI _OSC control for PCIe not granted, disabling ASPM
    [ 0.333260] PCI host bridge to bus 0000:00
    [ 0.333262] pci_bus 0000:00: root bus resource [bus 00-3f]
    [ 0.333264] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.333265] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.333267] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.333268] pci_bus 0000:00: root bus resource [mem 0xbfa00000-0xfebfffff]
    [ 0.333270] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed4bfff]
    [ 0.333277] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
    [ 0.333338] pci 0000:00:01.0: [8086:0151] type 01 class 0x060400
    [ 0.333365] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.333416] pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
    [ 0.333426] pci 0000:00:02.0: reg 0x10: [mem 0xf1400000-0xf17fffff 64bit]
    [ 0.333432] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.333436] pci 0000:00:02.0: reg 0x20: [io 0x6000-0x603f]
    [ 0.333514] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
    [ 0.333534] pci 0000:00:14.0: reg 0x10: [mem 0xf3a20000-0xf3a2ffff 64bit]
    [ 0.333603] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.333630] pci 0000:00:14.0: System wakeup disabled by ACPI
    [ 0.333664] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
    [ 0.333686] pci 0000:00:16.0: reg 0x10: [mem 0xf3a35000-0xf3a3500f 64bit]
    [ 0.333761] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.333815] pci 0000:00:16.3: [8086:1e3d] type 00 class 0x070002
    [ 0.333833] pci 0000:00:16.3: reg 0x10: [io 0x60b0-0x60b7]
    [ 0.333842] pci 0000:00:16.3: reg 0x14: [mem 0xf3a3c000-0xf3a3cfff]
    [ 0.333964] pci 0000:00:19.0: [8086:1502] type 00 class 0x020000
    [ 0.333981] pci 0000:00:19.0: reg 0x10: [mem 0xf3a00000-0xf3a1ffff]
    [ 0.333989] pci 0000:00:19.0: reg 0x14: [mem 0xf3a3b000-0xf3a3bfff]
    [ 0.333997] pci 0000:00:19.0: reg 0x18: [io 0x6080-0x609f]
    [ 0.334058] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
    [ 0.334085] pci 0000:00:19.0: System wakeup disabled by ACPI
    [ 0.334117] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
    [ 0.334137] pci 0000:00:1a.0: reg 0x10: [mem 0xf3a3a000-0xf3a3a3ff]
    [ 0.334226] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.334254] pci 0000:00:1a.0: System wakeup disabled by ACPI
    [ 0.334287] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
    [ 0.334302] pci 0000:00:1b.0: reg 0x10: [mem 0xf3a30000-0xf3a33fff 64bit]
    [ 0.334368] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.334400] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 0.334427] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
    [ 0.334502] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.334557] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
    [ 0.334632] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.334687] pci 0000:00:1c.2: [8086:1e14] type 01 class 0x060400
    [ 0.334762] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    [ 0.334792] pci 0000:00:1c.2: System wakeup disabled by ACPI
    [ 0.334829] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
    [ 0.334849] pci 0000:00:1d.0: reg 0x10: [mem 0xf3a39000-0xf3a393ff]
    [ 0.334936] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.334965] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.334997] pci 0000:00:1f.0: [8086:1e55] type 00 class 0x060100
    [ 0.335148] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
    [ 0.335165] pci 0000:00:1f.2: reg 0x10: [io 0x60a8-0x60af]
    [ 0.335173] pci 0000:00:1f.2: reg 0x14: [io 0x60bc-0x60bf]
    [ 0.335181] pci 0000:00:1f.2: reg 0x18: [io 0x60a0-0x60a7]
    [ 0.335188] pci 0000:00:1f.2: reg 0x1c: [io 0x60b8-0x60bb]
    [ 0.335195] pci 0000:00:1f.2: reg 0x20: [io 0x6060-0x607f]
    [ 0.335203] pci 0000:00:1f.2: reg 0x24: [mem 0xf3a38000-0xf3a387ff]
    [ 0.335246] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.335294] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
    [ 0.335309] pci 0000:00:1f.3: reg 0x10: [mem 0xf3a34000-0xf3a340ff 64bit]
    [ 0.335329] pci 0000:00:1f.3: reg 0x20: [io 0xefa0-0xefbf]
    [ 0.335425] pci 0000:01:00.0: [10de:0ffb] type 00 class 0x030000
    [ 0.335432] pci 0000:01:00.0: reg 0x10: [mem 0xf0000000-0xf0ffffff]
    [ 0.335439] pci 0000:01:00.0: reg 0x14: [mem 0xc0000000-0xcfffffff 64bit pref]
    [ 0.335445] pci 0000:01:00.0: reg 0x1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
    [ 0.335450] pci 0000:01:00.0: reg 0x24: [io 0x5000-0x507f]
    [ 0.335454] pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
    [ 0.341690] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.341695] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
    [ 0.341700] pci 0000:00:01.0: bridge window [mem 0xf0000000-0xf10fffff]
    [ 0.341706] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.341865] pci 0000:02:00.0: [1180:e823] type 00 class 0x088001
    [ 0.341884] pci 0000:02:00.0: MMC controller base frequency changed to 50Mhz.
    [ 0.341910] pci 0000:02:00.0: reg 0x10: [mem 0xf3101000-0xf31010ff]
    [ 0.342112] pci 0000:02:00.0: supports D1 D2
    [ 0.342113] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.342242] pci 0000:02:00.3: [1180:e832] type 00 class 0x0c0010
    [ 0.342268] pci 0000:02:00.3: reg 0x10: [mem 0xf3100000-0xf31007ff]
    [ 0.342472] pci 0000:02:00.3: supports D1 D2
    [ 0.342474] pci 0000:02:00.3: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.348460] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.348465] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
    [ 0.348469] pci 0000:00:1c.0: bridge window [mem 0xf3100000-0xf39fffff]
    [ 0.348475] pci 0000:00:1c.0: bridge window [mem 0xf1800000-0xf1ffffff 64bit pref]
    [ 0.348567] pci 0000:03:00.0: [8086:4238] type 00 class 0x028000
    [ 0.348614] pci 0000:03:00.0: reg 0x10: [mem 0xf3000000-0xf3001fff 64bit]
    [ 0.348839] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
    [ 0.355042] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 0.355054] pci 0000:00:1c.1: bridge window [mem 0xf3000000-0xf30fffff]
    [ 0.355151] acpiphp: Slot [1] registered
    [ 0.355157] pci 0000:00:1c.2: PCI bridge to [bus 04-0b]
    [ 0.355162] pci 0000:00:1c.2: bridge window [io 0x3000-0x3fff]
    [ 0.355165] pci 0000:00:1c.2: bridge window [mem 0xf2800000-0xf2ffffff]
    [ 0.355171] pci 0000:00:1c.2: bridge window [mem 0xf2000000-0xf27fffff 64bit pref]
    [ 0.356013] ACPI: Enabled 4 GPEs in block 00 to 3F
    [ 0.356023] ACPI: \_SB_.PCI0: notify handler is installed
    [ 0.356059] Found 1 acpi root devices
    [ 0.356106] ACPI: EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62
    [ 0.356165] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.356169] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
    [ 0.356170] vgaarb: loaded
    [ 0.356171] vgaarb: bridge control possible 0000:01:00.0
    [ 0.356172] vgaarb: no bridge control possible 0000:00:02.0
    [ 0.356199] PCI: Using ACPI for IRQ routing
    [ 0.357682] PCI: pci_cache_line_size set to 64 bytes
    [ 0.357820] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
    [ 0.357822] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
    [ 0.357823] e820: reserve RAM buffer [mem 0xa6b30000-0xa7ffffff]
    [ 0.357824] e820: reserve RAM buffer [mem 0x43e600000-0x43fffffff]
    [ 0.357892] NetLabel: Initializing
    [ 0.357893] NetLabel: domain hash size = 128
    [ 0.357894] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.357904] NetLabel: unlabeled traffic allowed by default
    [ 0.357921] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.357925] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.360952] Switched to clocksource hpet
    [ 0.364213] pnp: PnP ACPI init
    [ 0.364226] ACPI: bus type PNP registered
    [ 0.364530] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
    [ 0.364532] system 00:00: [mem 0x000c0000-0x000c3fff] could not be reserved
    [ 0.364534] system 00:00: [mem 0x000c4000-0x000c7fff] could not be reserved
    [ 0.364535] system 00:00: [mem 0x000c8000-0x000cbfff] has been reserved
    [ 0.364537] system 00:00: [mem 0x000cc000-0x000cffff] has been reserved
    [ 0.364538] system 00:00: [mem 0x000d0000-0x000d3fff] has been reserved
    [ 0.364540] system 00:00: [mem 0x000d4000-0x000d7fff] has been reserved
    [ 0.364541] system 00:00: [mem 0x000d8000-0x000dbfff] has been reserved
    [ 0.364545] system 00:00: [mem 0x000dc000-0x000dffff] has been reserved
    [ 0.364546] system 00:00: [mem 0x000e0000-0x000e3fff] could not be reserved
    [ 0.364548] system 00:00: [mem 0x000e4000-0x000e7fff] could not be reserved
    [ 0.364549] system 00:00: [mem 0x000e8000-0x000ebfff] could not be reserved
    [ 0.364551] system 00:00: [mem 0x000ec000-0x000effff] could not be reserved
    [ 0.364552] system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
    [ 0.364554] system 00:00: [mem 0x00100000-0xbf9fffff] could not be reserved
    [ 0.364555] system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved
    [ 0.364557] system 00:00: [mem 0xfed4c000-0xffffffff] could not be reserved
    [ 0.364560] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.364624] pnp 00:01: disabling [mem 0xfffff000-0xffffffff] because it overlaps 0000:01:00.0 BAR 6 [mem 0xfff80000-0xffffffff pref]
    [ 0.364643] system 00:01: [io 0x0400-0x047f] could not be reserved
    [ 0.364644] system 00:01: [io 0x0500-0x057f] has been reserved
    [ 0.364646] system 00:01: [io 0x0800-0x080f] has been reserved
    [ 0.364647] system 00:01: [io 0x15e0-0x15ef] has been reserved
    [ 0.364649] system 00:01: [io 0x1600-0x167f] has been reserved
    [ 0.364651] system 00:01: [mem 0xf8000000-0xfbffffff] has been reserved
    [ 0.364652] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.364654] system 00:01: [mem 0xfed10000-0xfed13fff] has been reserved
    [ 0.364655] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.364657] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.364658] system 00:01: [mem 0xfed45000-0xfed4bfff] has been reserved
    [ 0.364661] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.364703] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.364710] pnp 00:03: [dma 4]
    [ 0.364723] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.364738] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.364763] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.364782] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.364803] pnp 00:07: Plug and Play ACPI device, IDs LEN0071 PNP0303 (active)
    [ 0.364824] pnp 00:08: Plug and Play ACPI device, IDs LEN0015 PNP0f13 (active)
    [ 0.364860] pnp 00:09: Plug and Play ACPI device, IDs SMO1200 PNP0c31 (active)
    [ 0.365288] pnp: PnP ACPI: found 10 devices
    [ 0.365290] ACPI: bus type PNP unregistered
    [ 0.371588] pci 0000:01:00.0: no compatible bridge window for [mem 0xfff80000-0xffffffff pref]
    [ 0.371620] pci 0000:01:00.0: BAR 6: assigned [mem 0xf1000000-0xf107ffff pref]
    [ 0.371622] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.371624] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
    [ 0.371627] pci 0000:00:01.0: bridge window [mem 0xf0000000-0xf10fffff]
    [ 0.371629] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.371632] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.371635] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
    [ 0.371640] pci 0000:00:1c.0: bridge window [mem 0xf3100000-0xf39fffff]
    [ 0.371644] pci 0000:00:1c.0: bridge window [mem 0xf1800000-0xf1ffffff 64bit pref]
    [ 0.371650] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 0.371655] pci 0000:00:1c.1: bridge window [mem 0xf3000000-0xf30fffff]
    [ 0.371663] pci 0000:00:1c.2: PCI bridge to [bus 04-0b]
    [ 0.371666] pci 0000:00:1c.2: bridge window [io 0x3000-0x3fff]
    [ 0.371671] pci 0000:00:1c.2: bridge window [mem 0xf2800000-0xf2ffffff]
    [ 0.371675] pci 0000:00:1c.2: bridge window [mem 0xf2000000-0xf27fffff 64bit pref]
    [ 0.371681] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.371683] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.371684] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.371686] pci_bus 0000:00: resource 7 [mem 0xbfa00000-0xfebfffff]
    [ 0.371687] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed4bfff]
    [ 0.371688] pci_bus 0000:01: resource 0 [io 0x5000-0x5fff]
    [ 0.371690] pci_bus 0000:01: resource 1 [mem 0xf0000000-0xf10fffff]
    [ 0.371691] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.371693] pci_bus 0000:02: resource 0 [io 0x4000-0x4fff]
    [ 0.371694] pci_bus 0000:02: resource 1 [mem 0xf3100000-0xf39fffff]
    [ 0.371695] pci_bus 0000:02: resource 2 [mem 0xf1800000-0xf1ffffff 64bit pref]
    [ 0.371697] pci_bus 0000:03: resource 1 [mem 0xf3000000-0xf30fffff]
    [ 0.371698] pci_bus 0000:04: resource 0 [io 0x3000-0x3fff]
    [ 0.371700] pci_bus 0000:04: resource 1 [mem 0xf2800000-0xf2ffffff]
    [ 0.371701] pci_bus 0000:04: resource 2 [mem 0xf2000000-0xf27fffff 64bit pref]
    [ 0.371726] NET: Registered protocol family 2
    [ 0.371936] TCP established hash table entries: 131072 (order: 9, 2097152 bytes)
    [ 0.372200] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.372304] TCP: Hash tables configured (established 131072 bind 65536)
    [ 0.372320] TCP: reno registered
    [ 0.372335] UDP hash table entries: 8192 (order: 6, 262144 bytes)
    [ 0.372381] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
    [ 0.372455] NET: Registered protocol family 1
    [ 0.372464] pci 0000:00:02.0: Boot video device
    [ 0.372838] PCI: CLS 64 bytes, default 64
    [ 0.372874] Unpacking initramfs...
    [ 0.419708] Freeing initrd memory: 3172K (ffff8800379be000 - ffff880037cd7000)
    [ 0.419712] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.419714] software IO TLB [mem 0xa2b30000-0xa6b30000] (64MB) mapped at [ffff8800a2b30000-ffff8800a6b2ffff]
    [ 0.419965] Scanning for low memory corruption every 60 seconds
    [ 0.420184] audit: initializing netlink socket (disabled)
    [ 0.420191] type=2000 audit(1386283845.413:1): initialized
    [ 0.430696] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.431915] zbud: loaded
    [ 0.432021] VFS: Disk quotas dquot_6.5.2
    [ 0.432054] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.432181] msgmni has been set to 31247
    [ 0.432413] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.432453] io scheduler noop registered
    [ 0.432454] io scheduler deadline registered
    [ 0.432473] io scheduler cfq registered (default)
    [ 0.432595] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 0.432864] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.432875] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.432907] vesafb: mode is 1920x1080x32, linelength=7680, pages=0
    [ 0.432908] vesafb: scrolling: redraw
    [ 0.432909] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.433568] vesafb: framebuffer at 0xe0000000, mapped to 0xffffc90005c80000, using 8128k, total 8128k
    [ 0.566342] Console: switching to colour frame buffer device 240x67
    [ 0.698577] fb0: VESA VGA frame buffer device
    [ 0.698590] intel_idle: MWAIT substates: 0x21120
    [ 0.698591] intel_idle: v0.4 model 0x3A
    [ 0.698592] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 0.698765] GHES: HEST is not enabled!
    [ 0.698809] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.719500] 0000:00:16.3: ttyS0 at I/O 0x60b0 (irq = 19, base_baud = 115200) is a 16550A
    [ 0.719641] Linux agpgart interface v0.103
    [ 0.719702] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
    [ 0.721201] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.721210] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.721298] mousedev: PS/2 mouse device common for all mice
    [ 0.721324] rtc_cmos 00:06: RTC can wake from S4
    [ 0.721444] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
    [ 0.721474] rtc_cmos 00:06: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 0.721482] Intel P-state driver initializing.
    [ 0.721492] Intel pstate controlling: cpu 0
    [ 0.721502] Intel pstate controlling: cpu 1
    [ 0.721510] Intel pstate controlling: cpu 2
    [ 0.721520] Intel pstate controlling: cpu 3
    [ 0.721532] Intel pstate controlling: cpu 4
    [ 0.721541] Intel pstate controlling: cpu 5
    [ 0.721549] Intel pstate controlling: cpu 6
    [ 0.721558] Intel pstate controlling: cpu 7
    [ 0.721630] drop_monitor: Initializing network drop monitor service
    [ 0.721685] TCP: cubic registered
    [ 0.721757] NET: Registered protocol family 10
    [ 0.721886] NET: Registered protocol family 17
    [ 0.721894] Key type dns_resolver registered
    [ 0.722224] registered taskstats version 1
    [ 0.722596] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.723178] Magic number: 9:534:855
    [ 0.723283] rtc_cmos 00:06: setting system clock to 2013-12-05 22:50:46 UTC (1386283846)
    [ 0.723323] PM: Checking hibernation image partition /dev/sda6
    [ 0.726752] PM: Hibernation image not present or could not be loaded.
    [ 0.727429] Freeing unused kernel memory: 1144K (ffffffff818cb000 - ffffffff819e9000)
    [ 0.727431] Write protecting the kernel read-only data: 8192k
    [ 0.729430] Freeing unused kernel memory: 1012K (ffff880001503000 - ffff880001600000)
    [ 0.730122] Freeing unused kernel memory: 340K (ffff8800017ab000 - ffff880001800000)
    [ 0.737327] systemd-udevd[79]: starting version 208
    [ 0.753625] ACPI: bus type USB registered
    [ 0.753654] usbcore: registered new interface driver usbfs
    [ 0.753672] usbcore: registered new interface driver hub
    [ 0.753762] usbcore: registered new device driver usb
    [ 0.754364] sdhci: Secure Digital Host Controller Interface driver
    [ 0.754367] sdhci: Copyright(c) Pierre Ossman
    [ 0.754471] pcieport 0000:00:1c.0: driver skip pci_set_master, fix it!
    [ 0.754490] SCSI subsystem initialized
    [ 0.754718] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.755262] ehci-pci: EHCI PCI platform driver
    [ 0.755386] ehci-pci 0000:00:1a.0: setting latency timer to 64
    [ 0.755406] ehci-pci 0000:00:1a.0: EHCI Host Controller
    [ 0.755414] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 0.755427] ehci-pci 0000:00:1a.0: debug port 2
    [ 0.756165] libata version 3.00 loaded.
    [ 0.759355] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    [ 0.759370] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf3a3a000
    [ 0.767505] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 0.767646] hub 1-0:1.0: USB hub found
    [ 0.767652] hub 1-0:1.0: 3 ports detected
    [ 0.767804] ehci-pci 0000:00:1d.0: setting latency timer to 64
    [ 0.767809] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 0.767812] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 0.767823] ehci-pci 0000:00:1d.0: debug port 2
    [ 0.771708] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 0.771720] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf3a39000
    [ 0.780896] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 0.780996] hub 2-0:1.0: USB hub found
    [ 0.781000] hub 2-0:1.0: 3 ports detected
    [ 0.781193] xhci_hcd 0000:00:14.0: setting latency timer to 64
    [ 0.781197] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.781202] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
    [ 0.781297] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 0.781317] xhci_hcd 0000:00:14.0: irq 41 for MSI/MSI-X
    [ 0.781456] hub 3-0:1.0: USB hub found
    [ 0.781467] hub 3-0:1.0: 4 ports detected
    [ 0.781705] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.781708] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
    [ 0.781799] hub 4-0:1.0: USB hub found
    [ 0.781807] hub 4-0:1.0: 4 ports detected
    [ 0.791001] ahci 0000:00:1f.2: version 3.0
    [ 0.791067] ahci 0000:00:1f.2: irq 42 for MSI/MSI-X
    [ 0.791088] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
    [ 0.804224] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x17 impl SATA mode
    [ 0.804231] ahci 0000:00:1f.2: flags: 64bit ncq ilck stag pm led clo pio slum part ems sxs apst
    [ 0.804239] ahci 0000:00:1f.2: setting latency timer to 64
    [ 0.820938] firewire_ohci 0000:02:00.3: added OHCI v1.10 device as card 0, 4 IR + 4 IT contexts, quirks 0x11
    [ 0.820989] sdhci-pci 0000:02:00.0: SDHCI controller found [1180:e823] (rev 5)
    [ 0.821107] mmc0: SDHCI controller on PCI [0000:02:00.0] using DMA
    [ 0.824627] scsi0 : ahci
    [ 0.824773] scsi1 : ahci
    [ 0.824907] scsi2 : ahci
    [ 0.825041] scsi3 : ahci
    [ 0.825234] scsi4 : ahci
    [ 0.825350] scsi5 : ahci
    [ 0.825384] ata1: SATA max UDMA/133 abar m2048@0xf3a38000 port 0xf3a38100 irq 42
    [ 0.825387] ata2: SATA max UDMA/133 abar m2048@0xf3a38000 port 0xf3a38180 irq 42
    [ 0.825390] ata3: SATA max UDMA/133 abar m2048@0xf3a38000 port 0xf3a38200 irq 42
    [ 0.825391] ata4: DUMMY
    [ 0.825406] ata5: SATA max UDMA/133 abar m2048@0xf3a38000 port 0xf3a38300 irq 42
    [ 0.825406] ata6: DUMMY
    [ 1.074138] usb 1-1: new high-speed USB device number 2 using ehci-pci
    [ 1.144102] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 1.145449] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.145455] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.146823] ata1.00: ATA-8: HGST HTS725050A7E630, GH2ZB550, max UDMA/133
    [ 1.146827] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.148298] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.148304] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.149813] ata1.00: configured for UDMA/133
    [ 1.150087] scsi 0:0:0:0: Direct-Access ATA HGST HTS725050A7 GH2Z PQ: 0 ANSI: 5
    [ 1.198525] hub 1-1:1.0: USB hub found
    [ 1.198715] hub 1-1:1.0: 6 ports detected
    [ 1.307453] usb 2-1: new high-speed USB device number 2 using ehci-pci
    [ 1.320895] firewire_core 0000:02:00.3: created device fw0: GUID 3c970effbe0ba2ff, S400
    [ 1.420670] tsc: Refined TSC clocksource calibration: 2693.881 MHz
    [ 1.431513] hub 2-1:1.0: USB hub found
    [ 1.431588] hub 2-1:1.0: 8 ports detected
    [ 1.467351] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.471615] ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 (IDLE) succeeded
    [ 1.473091] ata2.00: ACPI cmd e3/00:02:00:00:00:a0 (IDLE) succeeded
    [ 1.476312] ata2.00: ATAPI: HL-DT-ST DVDRAM GT80N, LT20, max UDMA/133
    [ 1.480154] ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 (IDLE) succeeded
    [ 1.481633] ata2.00: ACPI cmd e3/00:02:00:00:00:a0 (IDLE) succeeded
    [ 1.484853] ata2.00: configured for UDMA/133
    [ 1.493873] scsi 1:0:0:0: CD-ROM HL-DT-ST DVDRAM GT80N LT20 PQ: 0 ANSI: 5
    [ 1.590645] usb 3-2: new low-speed USB device number 2 using xhci_hcd
    [ 1.611303] usb 3-2: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
    [ 1.611311] usb 3-2: ep 0x82 - rounding interval to 64 microframes, ep desc says 80 microframes
    [ 1.613287] hidraw: raw HID events driver (C) Jiri Kosina
    [ 1.623187] usbcore: registered new interface driver usbhid
    [ 1.623191] usbhid: USB HID core driver
    [ 1.623948] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb3/3-2/3-2:1.0/input/input2
    [ 1.624086] hid-generic 0003:046D:C505.0001: input,hidraw0: USB HID v1.10 Keyboard [Logitech USB Receiver] on usb-0000:00:14.0-2/input0
    [ 1.624501] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb3/3-2/3-2:1.1/input/input3
    [ 1.624758] hid-generic 0003:046D:C505.0002: input,hidraw1: USB HID v1.10 Mouse [Logitech USB Receiver] on usb-0000:00:14.0-2/input1
    [ 1.677468] usb 1-1.3: new full-speed USB device number 3 using ehci-pci
    [ 1.813904] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.814517] ata3.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.814523] ata3.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.814902] ata3.00: ATA-8: SAMSUNG MZMPC032HBCD-000L1, CXM13L1Q, max UDMA/133
    [ 1.814908] ata3.00: 62533296 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.815417] ata3.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.815424] ata3.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.815843] ata3.00: configured for UDMA/133
    [ 1.815996] scsi 2:0:0:0: Direct-Access ATA SAMSUNG MZMPC032 CXM1 PQ: 0 ANSI: 5
    [ 1.827413] usb 1-1.4: new full-speed USB device number 4 using ehci-pci
    [ 1.980746] usb 1-1.6: new high-speed USB device number 5 using ehci-pci
    [ 2.133788] ata5: SATA link down (SStatus 0 SControl 300)
    [ 2.138079] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 2.138084] sd 0:0:0:0: [sda] 4096-byte physical blocks
    [ 2.138107] sd 2:0:0:0: [sdb] 62533296 512-byte logical blocks: (32.0 GB/29.8 GiB)
    [ 2.138214] sd 0:0:0:0: [sda] Write Protect is off
    [ 2.138218] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 2.138263] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.138291] sd 2:0:0:0: [sdb] Write Protect is off
    [ 2.138294] sd 2:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 2.138365] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.139366] sdb: sdb1
    [ 2.139583] sd 2:0:0:0: [sdb] Attached SCSI disk
    [ 2.140832] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 2.140834] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 2.140984] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 2.150609] usb 2-1.5: new low-speed USB device number 3 using ehci-pci
    [ 2.217042] raid6: sse2x1 6045 MB/s
    [ 2.222964] sda: sda1 sda2 sda3 sda4 < sda5 sda6 >
    [ 2.224086] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 2.242780] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5/2-1.5:1.0/input/input4
    [ 2.242927] hid-generic 0003:046D:C051.0003: input,hidraw2: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:1d.0-1.5/input0
    [ 2.273683] raid6: sse2x2 9288 MB/s
    [ 2.330330] raid6: sse2x4 13180 MB/s
    [ 2.330331] raid6: using algorithm sse2x4 (13180 MB/s)
    [ 2.330332] raid6: using ssse3x2 recovery algorithm
    [ 2.330416] xor: automatically using best checksumming function:
    [ 2.363659] avx : 27280.800 MB/sec
    [ 2.365888] bio: create slab <bio-1> at 1
    [ 2.366416] Btrfs loaded
    [ 2.366872] btrfs: device fsid 267f069c-11da-4d2a-88fa-00cab4e28149 devid 1 transid 2746 /dev/sdb1
    [ 2.420417] Switched to clocksource tsc
    [ 2.749348] btrfs: device fsid f6907d81-f46f-4911-8600-858e8b6bd1a0 devid 1 transid 3707 /dev/sda5
    [ 3.007064] PM: Starting manual resume from disk
    [ 3.007067] PM: Hibernation image partition 8:6 present
    [ 3.007068] PM: Looking for hibernation image.
    [ 3.007178] PM: Image not found (code -22)
    [ 3.007183] PM: Hibernation image not present or could not be loaded.
    [ 3.014955] btrfs: device fsid 267f069c-11da-4d2a-88fa-00cab4e28149 devid 1 transid 2746 /dev/sdb1
    [ 3.015285] btrfs: disk space caching is enabled
    [ 3.028402] Btrfs detected SSD devices, enabling SSD mode
    [ 3.211825] systemd[1]: systemd 208 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 3.212136] systemd[1]: Set hostname to <ho-think>.
    [ 3.252550] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 3.252605] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 3.252618] systemd[1]: Starting Remote File Systems.
    [ 3.252629] systemd[1]: Reached target Remote File Systems.
    [ 3.252638] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 3.252667] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 3.252675] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 3.252701] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 3.252709] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 3.252724] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 3.252731] systemd[1]: Starting Delayed Shutdown Socket.
    [ 3.252748] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 3.252758] systemd[1]: Starting Journal Socket.
    [ 3.252795] systemd[1]: Listening on Journal Socket.
    [ 3.253090] systemd[1]: Starting Apply Kernel Variables...
    [ 3.253532] systemd[1]: Starting Journal Service...
    [ 3.253811] systemd[1]: Started Journal Service.
    [ 3.287546] systemd-journald[182]: Vacuuming done, freed 0 bytes
    [ 3.390618] btrfs: use ssd allocation scheme
    [ 3.390622] btrfs: disk space caching is enabled
    [ 3.400329] systemd-udevd[218]: starting version 208
    [ 3.490322] input: PC Speaker as /devices/platform/pcspkr/input/input5
    [ 3.491089] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 3.491746] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input6
    [ 3.491865] ACPI: Lid Switch [LID]
    [ 3.492466] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \_SB_.PCI0.LPC_.PMIO 1 (20130725/utaddress-251)
    [ 3.492471] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 3.492475] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \_SB_.PCI0.LPC_.LPIO 1 (20130725/utaddress-251)
    [ 3.492490] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 3.492491] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \_SB_.PCI0.LPC_.LPIO 1 (20130725/utaddress-251)
    [ 3.492494] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 3.492495] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 3.493000] pps_core: LinuxPPS API ver. 1 registered
    [ 3.493002] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
    [ 3.493659] ACPI: Requesting acpi_cpufreq
    [ 3.493823] PTP clock support registered
    [ 3.494020] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input7
    [ 3.494025] ACPI: Sleep Button [SLPB]
    [ 3.494069] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input8
    [ 3.494071] ACPI: Power Button [PWRF]
    [ 3.494675] mei_me 0000:00:16.0: setting latency timer to 64
    [ 3.494714] mei_me 0000:00:16.0: irq 43 for MSI/MSI-X
    [ 3.494990] ACPI: AC Adapter [AC] (on-line)
    [ 3.495691] tpm_tis 00:09: 1.2 TPM (device-id 0x0, rev-id 78)
    [ 3.498616] Non-volatile memory driver v1.3
    [ 3.498683] [drm] Initialized drm 1.1.0 20060810
    [ 3.499437] i801_smbus 0000:00:1f.3: SMBus using PCI Interrupt
    [ 3.502565] ACPI: Battery Slot [BAT0] (battery present)
    [ 3.502633] thinkpad_acpi: ThinkPad ACPI Extras v0.24
    [ 3.502635] thinkpad_acpi: http://ibm-acpi.sf.net/
    [ 3.502636] thinkpad_acpi: ThinkPad BIOS G5ET93WW (2.53 ), EC unknown
    [ 3.502637] thinkpad_acpi: Lenovo ThinkPad W530, model 2447DW0
    [ 3.504741] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
    [ 3.504742] e1000e: Copyright(c) 1999 - 2013 Intel Corporation.
    [ 3.504806] e1000e 0000:00:19.0: setting latency timer to 64
    [ 3.504855] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
    [ 3.504869] e1000e 0000:00:19.0: irq 44 for MSI/MSI-X
    [ 3.505719] thinkpad_acpi: detected a 8-level brightness capable ThinkPad
    [ 3.505814] thinkpad_acpi: radio switch found; radios are enabled
    [ 3.507612] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
    [ 3.507614] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
    [ 3.508991] wmi: Mapper loaded
    [ 3.510574] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
    [ 3.512202] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one
    [ 3.512859] thermal LNXTHERM:00: registered as thermal_zone0
    [ 3.512862] ACPI: Thermal Zone [THM0] (51 C)
    [ 3.512964] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
    [ 3.513826] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input9
    [ 3.519211] cfg80211: Calling CRDA to update world regulatory domain
    [ 3.529719] Intel(R) Wireless WiFi driver for Linux, in-tree:
    [ 3.529721] Copyright(c) 2003-2013 Intel Corporation
    [ 3.529746] pcieport 0000:00:1c.1: driver skip pci_set_master, fix it!
    [ 3.529786] iwlwifi 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 3.529839] iwlwifi 0000:03:00.0: irq 45 for MSI/MSI-X
    [ 3.541982] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x17
    [ 3.557020] media: Linux media interface: v0.10
    [ 3.559314] Bluetooth: Core ver 2.16
    [ 3.559324] NET: Registered protocol family 31
    [ 3.559325] Bluetooth: HCI device and connection manager initialized
    [ 3.559331] Bluetooth: HCI socket layer initialized
    [ 3.559332] Bluetooth: L2CAP socket layer initialized
    [ 3.559338] Bluetooth: SCO socket layer initialized
    [ 3.559760] Linux video capture interface: v2.00
    [ 3.561090] btrfs: device fsid 267f069c-11da-4d2a-88fa-00cab4e28149 devid 1 transid 2747 /dev/sdb1
    [ 3.563306] tpm_tis 00:09: TPM is disabled/deactivated (0x6)
    [ 3.565201] usbcore: registered new interface driver btusb
    [ 3.565757] uvcvideo: Found UVC 1.00 device Integrated Camera (04f2:b2ea)
    [ 3.567801] iTCO_vendor_support: vendor-support=0
    [ 3.568229] input: Integrated Camera as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0/input/input11
    [ 3.568341] usbcore: registered new interface driver uvcvideo
    [ 3.568342] USB Video Class driver (1.1.1)
    [ 3.568802] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 3.568825] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
    [ 3.568884] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 3.575973] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x17
    [ 3.579387] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x17
    [ 3.580314] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x17
    [ 3.580610] nvidia: module license 'NVIDIA' taints kernel.
    [ 3.580612] Disabling lock debugging due to kernel taint
    [ 3.580964] microcode: CPU4 sig=0x306a9, pf=0x10, revision=0x17
    [ 3.581262] microcode: CPU5 sig=0x306a9, pf=0x10, revision=0x17
    [ 3.581662] microcode: CPU6 sig=0x306a9, pf=0x10, revision=0x17
    [ 3.581969] microcode: CPU7 sig=0x306a9, pf=0x10, revision=0x17
    [ 3.582235] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 3.585585] nvidia 0000:01:00.0: enabling device (0000 -> 0003)
    [ 3.585626] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=none
    [ 3.585753] [drm] Initialized nvidia-drm 0.0.0 20130102 for 0000:01:00.0 on minor 0
    [ 3.585756] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 331.20 Wed Oct 30 17:43:35 PDT 2013
    [ 3.590299] iwlwifi 0000:03:00.0: loaded firmware version 9.221.4.1 build 25532 op_mode iwldvm
    [ 3.604935] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG disabled
    [ 3.604939] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
    [ 3.604940] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
    [ 3.604942] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Ultimate-N 6300 AGN, REV=0x74
    [ 3.604991] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
    [ 3.611807] kvm: disabled by bios
    [ 3.622449] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
    [ 3.643289] systemd-udevd[222]: renamed network interface wlan0 to wlp3s0
    [ 3.699041] e1000e 0000:00:19.0 eth0: registered PHC clock
    [ 3.699043] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 3c:97:0e:be:0b:a2
    [ 3.699045] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
    [ 3.699088] e1000e 0000:00:19.0 eth0: MAC: 10, PHY: 11, PBA No: 1000FF-0FF
    [ 3.699268]

    I decided to use nouveau instead of nvidia and now I got my external an internal display working.

  • I am receiving an alert message that reads: Could not initialize the application's security component.

    Could not initialize the application's security component. The most likely cause is problems with files in your application's profile directory. Please check that this directory has no read/write restrictions and your hard disk is not full or close to full. It is recommended that you exit the application and fix the problem. If you continue to use this session, you might see incorrect application behaviour when accessing security features.

    See this support article:
    *https://support.mozilla.com/kb/Could+not+initialize+the+browser+security+component

  • When I open Firefox in my laptop, I get an alert message that says that "It could not initialize the applications security component. The most likely cause is problems with files in your application's profile directory, etc"

    This morning it was working fine, but I tried to put 2 addons, "adblock" and "Forcastfox Weather" .
    I have both of this addons in my Desktop as well as in Ubuntu. The problem is in Windows XP

    This link shows things to check - https://support.mozilla.com/kb/Could+not+initialize+the+browser+security+component

  • 5.1.4 update breaks HDV capture? Unable to Initialize Capture Device

    Problem:
    Final Cut Pro cannot capture standard 1080i60 HDV footage from Sony FX1 camcorder. FCP reports "Unable to Initialize Capture Device" when the log and capture window is opened. However, the footage CAN be captured in iMovie (which is interesting, and unacceptable). When HDV>DV downconvert option on camcorder is activated, footage CAN be captured as anamorphic SD, so the camcorder and FW do work.
    The problem is occuring on a rock-solid FCP system that I use on a regular basis (mainly for SD editing). It has been approx 2 weeks since I last attempted a HDV capture, the system has been working great with SD footage (still does).
    Factors that have changed to my knowledge since HDV capture was last functioning properly:
    *Added a new external FW drive into regular usage (a different brand than normally used, no issues with it so far).
    *Updated FCP to 5.1.3, and then 5.1.4 when that fix came out. All SD captures and work have been fine so far.
    Here's what's interesting...I had a copy of the FCP v5.0.4 .app that I had saved an archive of prior to the crossgrade update. Guess what? I can load it up, and it captures HDV without any problems! With that in mind, this looks like an FCP 5.1.4 issue. But I am at a loss on how to proceed further in troubleshooting. Many thanks in advance for any assistance.
    Matt Jeppsen
    FresHDV.com
    ---NOTES---
    What I have tried:
    *Attempted capture with a different Sony FX1 camcorder.
    *Swapped firewire cables and system firewire ports.
    *Attempted capture with camera FW chained to an external HDD.
    *Unplugged all other external firewire devices from the system.
    *Trashed FCP prefs using FCP Rescue 5, created new project using Easy Setup (for HDV).
    *Tried different variations of FCP A/V settings, tried all the HDV FW device control presets and the HDV AIC capture preset.
    *Per instructions at http://docs.info.apple.com/article.html?artnum=301852 I removed the numbered Quicktime pckg Receipts and re-installed the latest version (7.13). Post-install/reboot, I repaired Disk Prefs and Verified the disk using Disk Util.
    *Have also attempted installing QT 7.13 2 and 3 times in a row, also trying disk prefs repair BEFORE the post-install reboot.
    Final Cut Pro Audio/Video Settings:
    Sequence Preset: HDV-1080i60
    Capture Preset: HDV
    Device Control Preset: Sony HDV Firewire
    Sony HDR-FX1 IN/OUT REC settings:
    *VCR HDV/DV: HDV
    *COMPONENT: 1080i/480i
    *i.LINK CONV: OFF
    *TV TYPE: 16:9
    *A/V->DV OUT: OFF
    System/Software Facts:
    *Final Cut Pro 5.1.4
    *Quicktime 7.13
    *PPC Mac G5 2.7 Dual (2.5GB RAM)
    *35GB free on System, 45GB free on internal FCP Scratch disk
    Final Cut Pro 5.1.4, G5 DP 2.7 (PPC) Mac OS X (10.4.8)

    I think I figured out this vexing problem. I too was having the same issue. Check to see that your Quicktime is newer than 7.1.2. If it isn't you'll have to upgrade it. I only upgraded to 7.1.6 here because I was afraid of going to a really new version. http://www.apple.com/support/downloads/quicktime716formac.html. After I upgraded my quicktime, I ran software update and the Final Cut Pro 5.1.4 update appeared. I hoipe this helps.

Maybe you are looking for

  • Sort table columns in a table and context created dinamically

    Hello all, I have implemented the table sorting several times in another developments, but now I'm facing a problem. I have created the table and context node that I need to sort dinamically (before somebody ask me why, I would say that it's the only

  • Pattern Has No End Help

    I am trying to create a pattern swatch for this shape, but it doesn't seem to be possible to find the edge of this pattern. Take a look at the image I inserted, the colored boxes are the shape that will be repeated. The next picture is an example of

  • PL/SQL function returning a SQL Query

    Is this only availabe in HTML db or in 10g in general? Where do I find more about this feature? Thanks in advance, Denes

  • Video freezing in windows vista

    I am using Windows Vista RC2 64x and anytime i try to watch any type of video in itunes or quicktime, my computer freezes and i get a blue screen. It also does the same thing when i try to import the videos into itunes. I have tried it on two differe

  • Regarding class oracle.apps.fnd.framework.server.OANullDBTransactionImpl

    Does any one knows about the class oracle.apps.fnd.framework.server.OANullDBTransactionImpl What is the use of this class and when will we use this class? Thanks