JTextArea seems to be invisible

Hi,
Java programming is not my strength. However, I've been required to develop a design package of late. I've been updating the GUI to combine several programs into a tabbed pane layout. However, the JTextArea I want ot use to display the results of my claculations wont appear. Is any one able to help?
I've attached the two sets of code involved in this problem.
package frontend;
import javax.swing.*; //imported for buttons, labels, and images
import java.awt.*;
import java.awt.event.*;
import javax.swing.text.*;
import java.beans.PropertyChangeListener;
import java.beans.PropertyChangeEvent;
import java.text.*;
public class Distill extends JPanel
    // Create Layout
    GridBagLayout layout;
    GridBagConstraints constraints;
    // Create Initial Variables
    double Finitial = 267583.3482;
    double dFinitial = 0.0;
    double Dinitial = 36703.45493;
    double dDinitial = 0.0;
    double dtinitial = 0.0;
    double Rinitial = 0.369514598;
    double Mwfinitial = 175.6623;
    double Ninitial = 12;
    double Pdinitial = 306;
    double Pbinitial = 321.3;
    double Fvinitial = 52355.3606;
    double Flinitial = 15357.0823;
    double RHOvinitial = 7.6287;
    double RHOlinitial = 632.4401;
    double PSinitial = 0.55;
    double PFinitial = 80;
    double DAinitial = 12;
    double Hainitial = 10;
    double Hwinitial = 0.05;
    double Dhinitial = 0.005;
    double Ptinitial = 0.005;
    double tdinitial = 70;
    double Wuinitial = 0.05;
    double Wcinitial = 0.05;
    // Buttons
    private JButton CalculateButton;
    // Create Text Fields
    private JFormattedTextField FField;
    private JFormattedTextField dFField;
    private JFormattedTextField DField;
    private JFormattedTextField dDField;
    private JFormattedTextField dtField;
    private JFormattedTextField RField;
    private JFormattedTextField MwfField;
    private JFormattedTextField NField;
    private JFormattedTextField PdField;
    private JFormattedTextField PbField;
    private JFormattedTextField FvField;
    private JFormattedTextField FlField;
    private JFormattedTextField RHOvField;
    private JFormattedTextField RHOlField;
    private JFormattedTextField PSField;
    private JFormattedTextField PFField;
    private JFormattedTextField DAField;
    private JFormattedTextField HaField;
    private JFormattedTextField HwField;
    private JFormattedTextField DhField;
    private JFormattedTextField PtField;
    private JFormattedTextField tdField;
    private JFormattedTextField WuField;
    private JFormattedTextField WcField;
    // Number Formats
    private NumberFormat amountFormat;
    public Distill()                                                            // Constructor Information
        // Layout Setup      
        layout = new GridBagLayout();
        setLayout( layout );
        setBackground(Color.white);
        constraints = new GridBagConstraints();
        // Initialize Buttons       
        CalculateButton = new JButton("Calculate");
        addComponent(CalculateButton, 12, 2, 1, 1);
        // Create Button Handler       
        ButtonHandler calculate = new ButtonHandler();
        CalculateButton.addActionListener( calculate );
        // Create Labels
        // Input Labels
        JLabel InputLabel = new JLabel(" << Required Input Variables>> ");
        JLabel FLabel = new JLabel("Feed Flow (kg/h)");
        JLabel DLabel = new JLabel("Distillate Flowrate (kg/h)");
        JLabel dtLabel = new JLabel("time over which change occurs (s)");
        JLabel MwfLabel = new JLabel ("Molecular Weight of Feed (kg/kmol)"); 
        JLabel NLabel = new JLabel ("Number of Real Stages");
        JLabel PdLabel = new JLabel ("Top Pressure (kPa)");
        JLabel PbLabel = new JLabel ("Bottom Pressure (kPa)");
        JLabel FvLabel = new JLabel ("Vapor Flowrate (kg/h)");
        JLabel FlLabel = new JLabel ("Liquid Flowrate (kg/h)");
        JLabel RHOvLabel = new JLabel ("Vapor Density (kg/m3)");
        JLabel RHOlLabel = new JLabel ("Liquid Density (kg/m3)");
        JLabel PSLabel = new JLabel ("Plate Spacing (m)");
        JLabel PFLabel = new JLabel ("Percent Flooding");
        JLabel DALabel = new JLabel ("Downcomer Area as a percentage of plate area ");
        JLabel HALabel = new JLabel ("Hole Active Area Percentage 6, 8 or 10 %" );
        JLabel HwLabel = new JLabel (" Weir Height (m)");
        JLabel DhLabel = new JLabel (" Hole Diameter (m)");
        JLabel PtLabel = new JLabel (" Plate Thickness (m)");
        JLabel tdLabel = new JLabel (" Percent Turndown");
        JLabel WuLabel = new JLabel (" Unperforated Strip Width (m)");
        JLabel WcLabel = new JLabel (" Calming Zone Width (m)");
        JLabel DyLabel = new JLabel (" <<< Dynamic Operation Variables >>>");
        JLabel dFLabel = new JLabel("Change in Feed Flow (kg/h)");
        JLabel dDLabel = new JLabel("Change in Distillate Flowrate (kg/h)");
        JLabel RLabel = new JLabel("Reflux Ratio");
        // Add Labels
        addComponent(InputLabel,1,0,1,1);
        addComponent(FLabel ,2,0,1,1);
        addComponent(DLabel,3,0,1,1);
        addComponent(RLabel ,4,0,1,1);
        addComponent(MwfLabel ,5,0,1,1); 
        addComponent(NLabel ,6,0,1,1);
        addComponent(PdLabel ,7,0,1,1);
        addComponent(PbLabel ,8,0,1,1);
        addComponent(FvLabel ,9,0,1,1);
        addComponent(FlLabel ,10,0,1,1);
        addComponent(RHOvLabel ,11,0,1,1);
        addComponent(RHOlLabel ,12,0,1,1);
        addComponent(PSLabel ,13,0,1,1);
        addComponent(PFLabel ,14,0,1,1);
        addComponent(DALabel ,15,0,1,1);
        addComponent(HALabel ,16,0,1,1);
        addComponent(HwLabel ,17,0,1,1);
        addComponent(DhLabel ,18,0,1,1);
        addComponent(PtLabel ,19,0,1,1);
        addComponent(tdLabel ,20,0,1,1);
        addComponent(WuLabel ,21,0,1,1);
        addComponent(WcLabel ,22,0,1,1);
        addComponent(DyLabel ,23,0,1,1);
        addComponent(dFLabel,24,0,1,1);
        addComponent(dDLabel ,25,0,1,1);
        addComponent(dtLabel ,26,0,1,1);
        // Create Text Fields
        FField = new JFormattedTextField(amountFormat);
        FField = new JFormattedTextField(amountFormat);
        dFField = new JFormattedTextField(amountFormat);
        DField = new JFormattedTextField(amountFormat);
        dDField = new JFormattedTextField(amountFormat);
        dtField = new JFormattedTextField(amountFormat);
        RField = new JFormattedTextField(amountFormat);
        MwfField = new JFormattedTextField(amountFormat);
        NField = new JFormattedTextField(amountFormat);
        PdField = new JFormattedTextField(amountFormat);
        PbField = new JFormattedTextField(amountFormat);
        FvField = new JFormattedTextField(amountFormat);
        FlField = new JFormattedTextField(amountFormat);
        RHOvField = new JFormattedTextField(amountFormat);
        RHOlField = new JFormattedTextField(amountFormat);
        PSField = new JFormattedTextField(amountFormat);
        PFField = new JFormattedTextField(amountFormat);
        DAField = new JFormattedTextField(amountFormat);
        HaField = new JFormattedTextField(amountFormat);
        HwField = new JFormattedTextField(amountFormat);
        DhField = new JFormattedTextField(amountFormat);
        PtField = new JFormattedTextField(amountFormat);
        tdField = new JFormattedTextField(amountFormat);
        WuField = new JFormattedTextField(amountFormat);
        WcField = new JFormattedTextField(amountFormat);
        // Set Initial values to Fields
        FField.setValue(Finitial);
        dFField.setValue( dFinitial);
        DField.setValue( Dinitial);
        dDField.setValue( dDinitial);
        dtField.setValue( dtinitial);
        RField.setValue( Rinitial);
        MwfField.setValue( Mwfinitial);
        NField.setValue( Ninitial);
        PdField.setValue( Pdinitial);
        PbField.setValue( Pbinitial);
        FvField.setValue( Fvinitial);
        FlField.setValue( Flinitial);
        RHOvField.setValue( RHOvinitial);
        RHOlField.setValue( RHOlinitial);
        PSField.setValue( PSinitial);
        PFField.setValue( PFinitial);
        DAField.setValue( DAinitial);
        HaField.setValue( Hainitial);
        HwField.setValue( Hwinitial);
        DhField.setValue( Dhinitial);
        PtField.setValue( Ptinitial);
        tdField.setValue( tdinitial);
        WuField.setValue( Wuinitial);
        WcField.setValue( Wcinitial);
        // Set Number of Columns
        FField.setColumns(12);
        dFField.setColumns(12);
        DField.setColumns(12);
        dDField.setColumns(12);
        dtField.setColumns(12);
        RField.setColumns(12);
        MwfField.setColumns(12);
        NField.setColumns(12);
        PdField.setColumns(12);
        PbField.setColumns(12);
        FvField.setColumns(12);
        FlField.setColumns(12);
        RHOvField.setColumns(12);
        RHOlField.setColumns(12);
        PSField.setColumns(12);
        PFField.setColumns(12);
        DAField.setColumns(12);
        HaField.setColumns(12);
        HwField.setColumns(12);
        DhField.setColumns(12);
        PtField.setColumns(12);
        tdField.setColumns(12);
        WuField.setColumns(12);
        WcField.setColumns(12);
        // Add Required Number Fields
        addComponent(FField ,2,1,1,1);
        addComponent(DField  ,3,1,1,1);
        addComponent(RField ,4,1,1,1);
        addComponent(MwfField ,5,1,1,1);
        addComponent(NField ,6,1,1,1);
        addComponent(PdField ,7,1,1,1);
        addComponent(PbField ,8,1,1,1);
        addComponent(FvField ,9,1,1,1);
        addComponent(FlField ,10,1,1,1);
        addComponent(RHOvField ,11,1,1,1);
        addComponent(RHOlField ,12,1,1,1);
        addComponent(PSField ,13,1,1,1);
        addComponent(PFField ,14,1,1,1);
        addComponent(DAField ,15,1,1,1);
        addComponent(HaField , 16,1,1,1);
        addComponent(HwField ,17,1,1,1);
        addComponent(DhField ,18,1,1,1);
        addComponent(PtField ,19,1,1,1);
        addComponent(tdField ,20,1,1,1);
        addComponent(WuField ,21,1,1,1);
        addComponent(WcField ,22,1,1,1);
        addComponent(dFField ,24,1,1,1);
        addComponent(dDField ,25,1,1,1);
        addComponent(dtField ,26,1,1,1);
        // Create Ouput Field
        //create text area
     String header = "Results appear here";
     JTextArea textArea = new JTextArea(header);
     textArea.setEditable(false);
     textArea.setMargin(new Insets(1, 4, 26, 4));
        textArea.setBackground(Color.RED);
//     //create panel to contain text area
//     JPanel textAreaPane = new JPanel();
//     textAreaPane.add(textArea);
//        textAreaPane.setBorder(BorderFactory.createCompoundBorder(
//                BorderFactory.createTitledBorder("Output Results"),
//                BorderFactory.createEmptyBorder(0, 5, 5, 5)));
    private void setUpFormats()
        amountFormat = NumberFormat.getNumberInstance();
    private void addComponent( Component component,
            int row, int column, int width, int height )
        constraints.gridx = column;
        constraints.gridy = row;
        layout.setConstraints( component, constraints);
        add ( component );
    private class ButtonHandler implements ActionListener
        public void actionPerformed( ActionEvent event )
            double F = ((Number)FField.getValue()).doubleValue();
            double D = ((Number)DField.getValue()).doubleValue();
            double R = ((Number)RField.getValue()).doubleValue();
            double Mw = ((Number)MwfField.getValue()).doubleValue();
            double N = ((Number)NField.getValue()).doubleValue();
            double Pd = ((Number)PdField.getValue()).doubleValue();
            double Pb = ((Number)PbField.getValue()).doubleValue();
            double Fv = ((Number)FvField.getValue()).doubleValue();
            double Fl = ((Number)FlField.getValue()).doubleValue();
            double RHOv = ((Number)RHOvField.getValue()).doubleValue();
            double RHOl = ((Number)RHOlField.getValue()).doubleValue();
            double PS = ((Number)PSField.getValue()).doubleValue();
            double PF = ((Number)PFField.getValue()).doubleValue();
            double DA = ((Number)DAField.getValue()).doubleValue();
            double Ha = ((Number)HaField.getValue()).doubleValue();
            double Hw = ((Number)HwField.getValue()).doubleValue();
            double Dh = ((Number)DhField.getValue()).doubleValue();
            double Pt = ((Number)PtField.getValue()).doubleValue();
            double td = ((Number)tdField.getValue()).doubleValue();
            double Wu = ((Number)WuField.getValue()).doubleValue();
            double Wc = ((Number)WcField.getValue()).doubleValue();
            double dF = ((Number)dFField.getValue()).doubleValue();;
            double dD = ((Number)dDField.getValue()).doubleValue();
            double dt = ((Number)dtField.getValue()).doubleValue();
            JOptionPane.showMessageDialog(null, "Import Successful " + F);
}and the part that this plugs into so to speak
package frontend;
import java.awt.*;                                                              // Import Relevant Libraries
import java.awt.event.*;
import java.applet.*;
import javax.swing.*;
import javax.swing.border.*;
public class Front extends JFrame{                                              // Setup Main Frame
    private JTabbedPane tabbedPane;
    public Front()                                                             
        super("Chemical Design Workshop");                                      // Set Conditions On Main Window
        setExtendedState(javax.swing.JFrame.MAXIMIZED_BOTH);
        addWindowListener(new WindowAdapter()
            public void WindowClosing(WindowEvent e)
                System.exit(0);
        tabbedPane = new JTabbedPane(SwingConstants.LEFT);
        tabbedPane.setBackground(Color.blue);
        tabbedPane.setForeground(Color.white);
        populateTabbedPane();
        buildMenu();
        getContentPane().add(tabbedPane);
    private void populateTabbedPane()
        tabbedPane.addTab("Distillation",null,new Distill(), "Distillation");
        tabbedPane.addTab("Decanter",null,new Decant(), "Decanter");
    private void buildMenu()
        JMenuBar mb = new JMenuBar();
        JMenu menu = new JMenu("File");
        JMenuItem item = new JMenuItem("Exit");                                 //Closes the application from the Exit
        item.addActionListener(new ActionListener()
            public void actionPerformed(ActionEvent e)
            System.exit(0);
    menu.add(item);
    mb.add(menu);
    setJMenuBar(mb);
    public static void main(String args[]){
    Front frame = new Front();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setVisible(true);
}

I just had one more question. Now that the field is added (thank you by the way) I was wondering why it is only the size of the text string inside it?

Similar Messages

  • ConnectSessionContainer seems to be invisible

    ok, maybe i'm missing something obvious here, but my ConnectSessionContainer seems to be invisible. i have a real simple mxml component based upon VBox that looks like this:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:VBox
        xmlns:mx="http://www.adobe.com/2006/mxml"
        xmlns:afcs="com.steamshift.clients.sequoya.view.afcs.*"
        >
        <afcs:TextChat id="textChat"
            width="400" height="200"
            autoLogin="false"
            borderColor="#ff0000"
            borderStyle="solid"
            borderThickness="2"
            />
    </mx:VBox>
    TextChat is then just an empty ConnectSessionContainer:
    <?xml version="1.0" encoding="utf-8"?>
    <session:ConnectSessionContainer
        xmlns:session="com.adobe.rtc.session.*"
        >
    </session:ConnectSessionContainer>
    tracing shows it has a parent (the VBox), visibility set to true, x and y at 0, width/height at 400/200... but i just can't see it! i set the red border around it to see where it is..... and i don't see any red border, or any of its contents! like its just not there !!!!!
    what am i doing wrong?
    my GUESS is that the session needs to be authed and logged in before it displays. is that right?..............

    Thanks for the kind words - we feed on this kinda stuff.
      That said, any concrete advice as to where the docs are lacking would be much appreciated. The next SDK drop will be especially focused on documentation and SDK packaging, and we need your specific advice on what's not as good as it could be. The problem with being the guys making this stuff is that we have a lot of pre-conceived knowledge of how things work, and have a hard time reading the docs from the point of view of someone just starting. Anything you can point out on this thread is super-appreciated; we have the same goal for the docs that you do.
      http://forums.adobe.com/thread/419173?tstart=0
    (yeah, I know you've already posted here, but I'll keep pleading =).
      nigel

  • Hiding current page only seems to make invisible or shows view of master page?

    I have a button that is as follows:-
    runs a few validation checks blah blah then ......
    else
    this.resolveNode("Page3").presence = "visible";
    xfa.host.currentPage = 3;
    this.resolveNode("Page1").presence = "hidden";
    So on click it goes to page 3 - that's fine, but it only seems to set the current page to invisible, as it leaves behind a blank page/master page to view?
    I have tried to include
    xfa.layout.relayout();
    but this has no effect.
    If i place a similiar button hiding Page1 outside Page1 then there is no problem, it hides and is taken right out of the form as i am hoping with the button sitting inside page1.

    Rick, thanks for thinking of that setting; however, we've already left "Fade Out on the Last Slide" de-selected, so that's not the issue.
    It seems that on the last slide, the "rest of project" objects endure only for the number of seconds of that slide; for example, if a slide's duration is set to 3 seconds, the "rest of project" objects fade away after 3 seconds; however, nothing else on the page fades away; that is, the images and captions set to "rest of slide" continue to display.
    Jan

  • Safari launches, but seems to be invisible...

    I use Firefox and Safari, and all of a sudden Safari crashed once, and when I tried to reopen after a force quit, it seems to launch but I can't actually see a window. The menu bar shows Safari, and I can quit, but nothing else will work to switch to Safari and make it show up. I deleted it, AppZappered it, and redownloaded and installed, but same issue. The system thinks it's running, but there's no actual window. Any ideas?
    Thanks
    Brian

    Hi Brian
    have you tested in a new account to see if safari works there ?
    a common reason for such a problem is 3rd party add-ons, toolbars, extensions etc.
    Check to see if you have any of these
    HD/Library/Application Support/Conduit
    HD/Library/InputManagers/CTLoader/
    HD/Library/ScriptingAdditions/ct_scripting.osax
    and trash them if you do
    some versions - you may see these too
    HD/Library/Receipts/ctloader.pkg
    HD/Library/Receipts/<Toolbar name>.pkg
    HD/Library/Application Support/SIMBL/Plugins/CT2285220.bundle
    Message was edited by: andyBall_uk

  • My home folder (not my home library folder) seems to be invisible to the Finder

    I can see it by listing the /Users directory in the Terminal, but in the Finder, when I drill down from the Masintosh HD level, I can see all the other users home directories, but not my own ... which still appears in the sidebar.  Checking volume structure via Disk Utility and DiskWarrior uncover no problems. 
    Additional tidbits …
    When I use the hierarchical pulldown in the Finder toolbar, my home directory is greyed out … this does not occur when performing this action from any of the other home directories.
    Also, when I do  "ls -fla" from the Users directory in Terminal, my directory has an @ suffix, which is supposed to indicate a symbolic link, but this is not the case … at least I have not attempted to relocate my home directory elsewhere.
    When I select the home folder icon in the sidebar, and do a Get Info (command-i), the directory name is similarly greyed out.  Nothing else looks anomalous, and everything "appears" to be working OK.
    What's wrong here?

    Dave Lentz wrote:
    I can see it by listing the /Users directory in the Terminal, but in the Finder, when I drill down from the Masintosh HD level, I can see all the other users home directories, but not my own ... which still appears in the sidebar.  Checking volume structure via Disk Utility and DiskWarrior uncover no problems. 
    Additional tidbits …
    When I use the hierarchical pulldown in the Finder toolbar, my home directory is greyed out … this does not occur when performing this action from any of the other home directories.
    Also, when I do  "ls -fla" from the Users directory in Terminal, my directory has an @ suffix, which is supposed to indicate a symbolic link, but this is not the case … at least I have not attempted to relocate my home directory elsewhere.
    When I select the home folder icon in the sidebar, and do a Get Info (command-i), the directory name is similarly greyed out.  Nothing else looks anomalous, and everything "appears" to be working OK.
    What's wrong here?
    Thanks!

  • Floating Height of JTextArea (as Renderer/Editor) in a JTable Cell

    Hey Folks,
    I'm kinda struggling with JTextAreas...
    There is this JTable, which consists of three colums (practically there are two - the other one's an ID-Field...) and only one
    of them ist editable für users.
    Left column is a commentary column which has a max of 150 characters - Right column fills automaticly with a user/date stamp.                                                                                                                                                                                    
    The main function is that on showing the table, old comments will be retrieved from database and new ones can be entered.
    This works all fine and is no matter of subject...
    The core of my problem is that there seems to be no straigh-forward way of determine a proper linecount from (a wordwrapped!) JTextArea.
    After a long search in the net, i found this approach:
        private static ArrayList<String> getWrappedLines(JTextArea myTextArea) {
            ArrayList<String> linesList = new ArrayList<String>();
            int length = myTextArea.getDocument().getLength();
            int offset = 0;
            try {
                while (offset < length) {
                    int end = Utilities.getRowEnd(myTextArea, offset);
                    if (end < 0) {
                        break;
                    // Include the last character on the line
                    end = Math.min(end + 1, length);
                    String line =
                        myTextArea.getDocument().getText(offset, end - offset);
                    // Remove the line break character
                    if (line.endsWith("\n")) {
                        line = line.substring(0, line.length() - 1);
                    linesList.add(line);
                    offset = end;
            } catch (BadLocationException e) {
                System.err.println("Bad Location at TextArea");
            return linesList;
        }    This code reads the content of a JTextArea an separates wrapped lines in an array.
    With manual line breaks ("\n") I get Exceptions (Bad Location) which isn't too bad, because
    I was trying to ban manual line breaks anyway...
    The above given method retrieves the lines, while the next sets the new Height (line count multiplied by Font Height) to the row.
        public static void setOptimalRowHeight(JTable table, JTextArea textArea, int row, int column) {
            if (
                row >= 0 &&
                column == VerwaltungsnotizController.IND_VNO_NOTIZ   
                int fontHeight =
                    textArea.getFontMetrics(textArea.getFont()).getHeight();
                ArrayList<String> wrappedLines = getWrappedLines(textArea);
                int nrOfLines = wrappedLines.size();
                int oldSize = table.getRowHeight(row);
                int newSize = (fontHeight * nrOfLines) + 5;
                if (newSize != oldSize) {
                    table.setRowHeight(row, newSize);
         public static void setOptimalRowHeight(JTable table, JTextArea textArea) {
         int row = table.getSelectedRow();
         int column = table.getSelectedColumn();
         if (
              row >= 0 &&
              column == VerwaltungsnotizController.IND_VNO_NOTIZ   
              setOptimalRowHeight(table, textArea, row, column);
         }The above combined Sources are used by two classes, which are "tied" to the table.
    One is the CellEditor (which works almost fine); the other one is the CellRenderer (which fails miserably!)
    CellEditor (with Listener):
    public class VnoCellEditor extends AbstractCellEditor implements TableCellEditor {
        private VnoTextArea textArea;
        private JTable table;
        public VnoCellEditor (JTable table) {
            this.table = table;
            textArea = new VnoTextArea(table);
            textArea.setMaximumInputLength(VerwaltungsnotizController.MAX_INPUT_VNO);
            textArea.addKeyListener(new TextAreaEnterAdapter());
            textArea.setLineWrap(true);
            textArea.setWrapStyleWord(true);
            Document document = textArea.getDocument();
            document.addDocumentListener(new VnoTextAreaDocListener(table, textArea));
        public Component getTableCellEditorComponent(JTable table, Object value,
                                                     boolean isSelected, int row,
                                                     int column) {
            if (value instanceof String) {
                textArea.setText((String)value);
            } else if (value instanceof Integer) {
                Integer intValue = (Integer)value;
                textArea.setText(intValue.toString());
            } else {
                Object objValue = value;
                textArea.setText(objValue.toString());
            System.err.println("Editor - get Component");
            return textArea;
        public Object getCellEditorValue() {
            return textArea.getText();
    public class VnoTextAreaDocListener implements DocumentListener {
        private JTable table;
        private JTextArea textArea;
        public VnoTextAreaDocListener(JTable table, JTextArea textArea) {
            this.table = table;
            this.textArea = textArea;
        public void insertUpdate(DocumentEvent e) {
            VnoTableRowHeightHelper.setOptimalRowHeight(table, textArea);
        public void removeUpdate(DocumentEvent e) {
            VnoTableRowHeightHelper.setOptimalRowHeight(table, textArea);
        public void changedUpdate(DocumentEvent e) {
            //Plain text components don't fire these events
    }As said the editor works almost as planned. On every Keystroke made in Edit-Mode of the table, insertUpdate() or removeUpdate()
    is being called, corresponding to the type of Keystroke ... (duh!)
    The Helpers method is called and the row-height is set real nicely.
    !But!
    when i navigate into an other row, a removeUpdate()-event is beeing thrown and due to the mechanism the cell selection
    gets somehow mixed around and row-heights get switched.
    Maybe this could get improved, but i don't se my error - which wouldn't be nescessary if this event wasn't thrown.
    (for what I don't see a reason anyway ... !)
    CellRenderer:
    public class VnoCellRenderer implements TableCellRenderer {
        private VnoTextArea textArea;
        private int Row = -1;
        private int Column = -1;
        private VnoTableModel jtmVno;
        public VnoCellRenderer(JTable table) {
            this.jtmVno = (VnoTableModel)table.getModel();
            textArea = new VnoTextArea(table);
            textArea.setLayout(new BorderLayout());
            textArea.setLineWrap(true);
            textArea.setWrapStyleWord(true);
        public VnoTextArea getTextArea() {
            return textArea;
        public Component getTableCellRendererComponent(JTable table, Object value,
                                                       boolean isSelected,
                                                       boolean hasFocus, int row,
                                                       int column) {
            Row = row;
            Column = column;
            String tmpValue = null;
            if (value instanceof String) {
                tmpValue = (String)value;
            } else if (value instanceof Integer) {
                tmpValue = ((Integer)value).toString();
            } else {
                tmpValue = value.toString();
            // FARBEN:
            // Normalmodus
            if (jtmVno == null) {
                System.err.println("Table Model noch nicht initialisiert!");
                textArea.setBackground(Color.LIGHT_GRAY);
            } else {
                if (jtmVno.isCellEditable(Row, Column)) {
                    textArea.setBackground(Color.WHITE);
                } else {
                    textArea.setBackground(Color.LIGHT_GRAY);
            textArea.setForeground(Color.BLACK);
            // Für ausgewählte Zeile
            if (isSelected && !hasFocus) {
                textArea.setBackground(CommonConstants.SELECTION_COLOR_BLUE);
                textArea.setForeground(Color.WHITE);
            textArea.setText(tmpValue);
            textArea.setEditable(true);
            if (Column == VerwaltungsnotizController.IND_VNO_NOTIZ) {
                VnoTableRowHeightHelper.setOptimalRowHeight(table, textArea, row, column);
            return textArea;
    }Okay, this is where the shit hits the fan!
    Since with renderers there is no manual content mutation, row-height-settings are not done with listeners.
    I put this at the very end of the getTableCellRendererComponent(), which is called every time a cell gets rendered.
    The main problem here is that at this point my methods can't determine any linewraps at all!
    getWrappedLines() always returns an empty Array (since Utilities.getRowEnd() returns "-1" beforehand...).
    I'm afraid that my methods are called way too early - at a point were the rendering is not completed or has not even started.
    And to accomplish my desired tasks the fully rendered JTextArea would be needed ... ?!
    I have very limited swing experience, so I can only guess about this core features ...
    But i this is the case - my methods should be called later on the rendered cell. But how? from which component?
    Btw: I have written my own JTextArea to limit the input size
    public class VnoTextArea extends JTextArea {
        private JTable table;
        private int _maximumInputLength = 0;
        public VnoTextArea(JTable table) {
            this.table = table;
        public void setMaximumInputLength(int maximumInputLength) {
          if (maximumInputLength != 0) {
            _maximumInputLength = maximumInputLength;
            super.setDocument(new PlainDocument() {
                public void insertString(int offset, String string, AttributeSet attributeSet) throws BadLocationException {
                  StringBuffer buffer = new StringBuffer(string);
                  int size = VnoTextArea.this.getText().length();
                  int bufferSize = buffer.length();
                  if ((size + bufferSize) > _maximumInputLength) {
                    buffer.delete((_maximumInputLength - size), bufferSize);
                  if (size < _maximumInputLength) {
                    super.insertString(offset, buffer.toString(), attributeSet);
                  } else {
                    Toolkit.getDefaultToolkit().beep();
    }I'm sorry for not providing a running example, but it's a pretty huge project...
    Providing all dependencies would go far beyond the scope.
    (and there are many sources which I'm not allowed to post)
    But I hope my examples get down to the core of my problem!
    I also tried different approaches:
    - using getPreferredSize() of the JTextArea (seemed to do nothing useful at all?!)
    - using getLineCount/() of the TextArea (only counts "\n" ...)
    - guessing that every row consist of an average of 20 characters cumpute by myself (low-tech, buggy but fast - unsatisfying)
    With my above mentioned approach I got by far the best results (partially) - but I'm at my wits' end.
    I don't know it any better... And i have tried for days without improvement.
    What would you do?
    vielen Dank im Voraus schon mal für eventuelle Mühen,
    Haye

    no solution - just a couple of comments:
    - never ever change the calling table in a renderer, I mean really NEVER
    - instead, listen to table events and resize the row height as appropriate
    - JTextArea has a somehow weird prefSize calculation (forgot the details, so don't nail me :), so you have to manually set one dimension and then ask the area to calculate the other. In your renderer, you can do something like:
    Component getTableCellRendererComponent(....) {
        int columnWidth = table.getColumnModel().getColumn(column).getWidth();
        textArea.setSize(columnWidth, Short.MAX_VALUE);
        ... here do the normal config
    // then somewhere else, triggered by appropriate change events
    void updateRowHeight(JTable table, int row) {
       int height = table.getRowHeight();
       foreach column {
             TableCellRenderer r = table.getCellRenderer(row, column);
             Component c = table.prepareCellRenderer(r, row, column);
             height = Math.max(height, c.getPreferredSize().height);
       table.setRowHeight(row, height);
    } HTH - ein bißchen wenigstens :-)
    Jeanette

  • Invisible class files inside jar archives

    Hi!
    After developing an application with J2SE 1.4.1_05, under Windows 98, using some packages archived in jar files, I cannot launch the application with the J2RE 1.4.2_02 or J2SE 1.4.2_02 (in the same Windows 98) because the class files in the jars are not 'visible', even if the CLASSPATH is set up correctly. The only classes that work right are the unpacked ones. But it still does work in Windows 2000.
    What might be wrong?

    Thank you for your answer, and excuse me if my question was kind of confusing.
    The issue here is that the files ARE in the jar files (without './' on the front), but in the environment (Windows 98 + J2RE 1.4.2_02) the application does not work, unless I unpack the jars and use the packages in the same manner I did during the development stage (for example, all classes of package 'myutils' in the folder 'myutils').
    The weird thing is that this DOES NOT happen in the environment (Windows 2000 + J2RE 1.4.2_02)!!! Just after installing the J2RE 1.4.2_02 under Win2K, the app does work OK! That is why it seems that ONLY in the first case (Windows 98 + J2RE 1.4.2_02) the class files inside the jars seem to be 'invisible' to the environment.
    As I have mentioned in my question, the app was developed in the environment (Windows 98 + J2RE 1.4.1_05), and it did still work with the jar files, so I wonder if there might be some compatibility between Windows 98 and the J2RE 1.4.2_02.
    Except my own jars, the same thing does happen with the jai_core.jar file coming with JAI 1.1.2. But this does not happen when it comes about rt.jar, in ..\jre\bin!!!
    All in all, the question still is: what might be wrong?

  • Invisible watermark - to be built INSIDE the images, how?

    Lightroom friends and all others,
    I use Adobe Lightroom 2.3, Adobe Design Premium CS4 operating with latest Macintosh system architecture version, OSX 10.5.6, using MBP 17" laptop and MacPro.
    I tried to Google on the topic, but most seems to show invisible watermark softwares for Windows-based platform. I have also went into three or four links, but came out for Windows even Google failed to reflect the search query result I asked for MAC. (sighs)
    I would appreciate some heads up, techniques and if any standalone application or plug-in I can purchase, let me know with link etc.
    Thanks. Brian

    Just slightly off topic...just curious as I don't intend to use Digimarc but...Is the Digimarc filter supposed to be in the 64bit version of PS CS4? I don't see it there but I do see it in the 32 bit version. That's on both my desktop and laptop with Design Premium installed.

  • JTextArea to look like JLabel

    I did do some searching....go easy on me (first posting of a question)
    I have a textarea on my frame I use like a status bar.....giving the user hints on what they can/should do based on the applications state. I'd like using the JTextArea because I don't have to concern myself with how long of a string I put in it.....in the worst case the user sees some scrollbars.
    I would like to remove the etched look from the text area though. Is that possible? Basically I want a JTextArea that looks visually just like a JLabel. I've tried using JLabel, but when the text to be displayed is dynamic, it makes sizing the label next to impossible. The functionality of the JTextArea seems to work the best, if I can get that etched/raised look supressed.
    thanks to all and many thanks to the plethra of info I've found in the forumns already!!!!
    JJ

    kirillg -
    that's not what I'm looking for. All EmptyBorder
    does is create space between the text in the area and
    the etched border of the area. If you call
    setBorder() and provide any border available from
    BorderFactory, it applies that border around the text
    in the area, but inside of the etched "outline" (I
    hesitate to call it a border). I need the etched
    outline to go away....Hmm, i beg to differ.
    import java.awt.FlowLayout;
    import javax.swing.*;
    import javax.swing.border.EmptyBorder;
    public class RoTextField extends JFrame {
         public RoTextField() {
              this.setLayout(new FlowLayout());
              JTextArea textArea = new JTextArea("some text");
              textArea.setBorder(new EmptyBorder(0, 0, 0, 0));
              textArea.setColumns(20);
              textArea.append("\nSome string");
              this.add(textArea);
              this.setSize(300, 100);
              this.setLocationRelativeTo(null);
              this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         public static void main(String[] args) throws Exception {
              // UIManager.setLookAndFeel(new SubstanceLookAndFeel());
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        new RoTextField().setVisible(true);
    }This produces text area without border.

  • Files are Invisible in itunes 9.01

    I have itunes 9.01. I have noticed that several albums (all imported by myself) are no longer available. When I track down the file folder, they "appear" empty.
    When I take the song from my backup file (so yes, at one time they all did work with itunes before) and try and copy, it says that the file already exists (even though the folder appears empty, and the finder says it's empty with the info button). If I say yes, go ahead and overwrite the file, you see it appear, then disappear almost immediately.
    So, I've had these songs before, and they worked.
    With itunes 9.01 they are no longer available.
    The seem to be invisible, and the finder won't let me copy them over from my backup files.
    Any help as to what is going on??? I am ready to upgrade to Snow Leopard, but I am nervous with this thing acting up.
    Thanks

    If they are there, EasyFind should show them.
    http://www.devon-technologies.com/products/freeware/
    Toggle the settings to scan all files and check "invisible files and folders."

  • All of my ports are invisible

    Hi, I'm using a Linksys WRT300N v1.1 router and all of my ports seem to be invisible. I've tried port forwarding, but my results ended in failure. Is there anything that I can do to make these ports visible? I'm hosting a web server, but I can't seem to get the ports open. Help would be much appreciated.

    Try upgrading the firmware on router...also make sure for the N-router Radio Band should be 20-MHZ frequency & Standard Channel as 11 & also do the wireless settings as per requirement & advanved wireless settings as BI=50,FRAG THRES=2306,RTS THRES=2307 & also BLOCK ANONYMOUS INTERNET REQUESTS.

  • Resizing ListCellRenderers using JTextArea and word wrap

    Hi,
    I'm trying to create a ListCellRenderer to draw nice cells for a JList. Each cell has a one line title and a description of variable length. So, I create a custom ListCellRenderer, which consists of a JPanel containing a JLabel for the title and a JTextArea for the description. I set the JTextArea to do wrapping on word boundried and it all almost works.
    But, the list cells don't resize to accomodate the variable height of the cells. They show only 1 line for the title and 1 line for the description.
    I have seen a few threads relating to this including the article, "Multi-line cells in JTable in JDK 1.4+" in the Java Specialists' Newsletter, which seems to do a similar trick for JTables. But so far nothing I've tried works.
    Curiously, using println debugging, my getListCellRenderer method seems to get called for each cell twice while my GUI is being drawn. It looks to me like the TextUI view that draws the JTextArea seems to do the word wrapping after the first set of getListCellRenderer calls. But, it's the first set of calls that seems to establish the layout of the list.
    Any help would be appreciated. I've pulled out quite enough hair over this one.
    -chris
    package bogus;
    import java.awt.BorderLayout;
    import java.awt.Component;
    import java.awt.Font;
    import java.util.ArrayList;
    import java.util.List;
    import javax.swing.*;
    public class CellRendererTest {
         public static void main(String[] args) {
              final CellRendererTest test = new CellRendererTest();
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        test.createGui();
         public void createGui() {
              JFrame frame = new JFrame("Testing Bogus ListCellRenderer");
              JList list = new JList(createBogusListItems());
              list.setCellRenderer(new MyListCellRenderer());
              frame.add(list);
              frame.setSize(200, 400);
              frame.setVisible(true);
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         private MyListItem[] createBogusListItems() {
              List<MyListItem> items = new ArrayList<MyListItem>();
              items.add(new MyListItem("First item", "This is a nice short description."));
              items.add(new MyListItem("Another one", "This is a longer description which might take up a couple of lines."));
              items.add(new MyListItem("Next one", "This is a ridiculously long description which is total gibberish." +
                        "Blah blah blabber jabber goo. Blither blather bonk. Oink boggle gaggle ker-plunk."));
              items.add(new MyListItem("No Desc", null));
              items.add(new MyListItem("Last one", "Boink!"));
              return items.toArray(new MyListItem[items.size()]);
         static class MyListCellRenderer extends JPanel implements ListCellRenderer {
              private JLabel title;
              private JTextArea desc;
              // hack to see if this is even possible
              private static int[] rows = {1, 2, 3, 0, 1};
              public MyListCellRenderer() {
                   setLayout(new BorderLayout());
                   setBorder(BorderFactory.createEmptyBorder(6, 4, 6, 4));
                   setOpaque(true);
                   title = new JLabel();
                   title.setFont(new Font("Arial", Font.ITALIC | Font.BOLD, 11));
                   add(title, BorderLayout.NORTH);
                   desc = new JTextArea();
                   desc.setFont(new Font("Arial", Font.PLAIN, 9));
                   desc.setOpaque(false);
                   desc.setWrapStyleWord(true);
                   desc.setLineWrap(true);
                   add(desc, BorderLayout.CENTER);
              public Component getListCellRendererComponent(JList list, Object value,
                        int index, boolean isSelected, boolean cellHasFocus) {
                   MyListItem item = (MyListItem)value;
                   title.setText(item.title);
                   if (item.description != null && item.description.length() > 0) {
                        desc.setText(item.description);
                        desc.setVisible(true);
                   else {
                        desc.setVisible(false);
                   // uncomment next line to to somewhat simulate the effect I want (hacked using the rows array)
                   // desc.setRows(rows[index]);
                   if (isSelected) {
                        setBackground(list.getSelectionBackground());
                        setForeground(list.getSelectionForeground());
                   else {
                        setBackground(list.getBackground());
                        setForeground(list.getForeground());
                   return this;
         static class MyListItem {
              String title;
              String description;
              public MyListItem(String title, String description) {
                   this.title = title;
                   this.description = description;
    }

    This seems to work
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Component;
    import java.awt.Dimension;
    import java.awt.Font;
    import java.awt.Insets;
    import java.util.ArrayList;
    import java.util.List;
    import javax.swing.*;
    import javax.swing.text.View;
    public class CellRendererTest {
         int WIDTH = 220;
         public static void main(String[] args) {
              final CellRendererTest test = new CellRendererTest();
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        test.createGui();
         public void createGui() {
              JFrame frame = new JFrame("Testing Bogus ListCellRenderer");
              JList list = new JList(createBogusListItems());
              final MyListCellRenderer renderer = new MyListCellRenderer();
              list.setCellRenderer( renderer );
              JScrollPane listScrollPane = new JScrollPane(list);
              frame.add(listScrollPane);
              frame.setSize(WIDTH, 400);
              frame.setVisible(true);
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         private MyListItem[] createBogusListItems() {
              List<MyListItem> items = new ArrayList<MyListItem>();
              items.add(new MyListItem("First item", "This is a nice short description."));
              items.add(new MyListItem("Another one", "This is a longer description which might take up a couple of lines."));
              items.add(new MyListItem("Next one", "This is a ridiculously long description which is total gibberish." +
                        "Blah blah blabber jabber goo. Blither blather bonk. Oink boggle gaggle ker-plunk."));
              items.add(new MyListItem("No Desc", null));
              items.add(new MyListItem("Last one", "Boink!"));
              items.add(new MyListItem("Ooops this one breaks things by being longer than my fixed width", "Blabber babble gibber flipper flop."));
              return items.toArray(new MyListItem[items.size()]);
         static class MyListCellRenderer extends JPanel implements ListCellRenderer {
              public JLabel title;
              public JTextArea desc;
              Color altColor = new Color(0xeeeeee);
              public MyListCellRenderer() {
                   setLayout(new BorderLayout());
                   setBorder(BorderFactory.createEmptyBorder(6, 4, 6, 4));
                   setOpaque(true);
                   title = new JLabel();
                   title.setFont(new Font("Arial", Font.ITALIC | Font.BOLD, 11));
                   add(title, BorderLayout.NORTH);
                   desc = new JTextArea();
                   desc.setFont(new Font("Arial", Font.PLAIN, 9));
                   desc.setOpaque(false);
                   desc.setWrapStyleWord(true);
                   desc.setLineWrap(true);
                   add(desc, BorderLayout.CENTER);
              public Component getListCellRendererComponent(JList list, Object value,
                        int index, boolean isSelected, boolean cellHasFocus) {
                   Insets insets = desc.getInsets();
                int rendererLeftRightInsets = insets.left + insets.right + 8;  // 8 from panel border
                int topDownInsets = insets.top + insets.bottom;
                int listWidth = list.getWidth();
                int viewWidth = listWidth;
                   int scrollPaneLeftRightInsets = 0;
                   JScrollPane scroll = (JScrollPane) SwingUtilities.getAncestorOfClass( JScrollPane.class, list );
                   if ( scroll != null && scroll.getViewport().getView() == list ) {
                        Insets scrollPaneInsets = scroll.getBorder().getBorderInsets(scroll);
                     scrollPaneLeftRightInsets = scrollPaneInsets.left + scrollPaneInsets.right;
                     listWidth = scroll.getWidth() - scrollPaneLeftRightInsets;
                     JScrollBar verticalScrollBar = scroll.getVerticalScrollBar();
                     if (verticalScrollBar.isShowing()) {
                         listWidth -= verticalScrollBar.getWidth();
                     viewWidth = listWidth - rendererLeftRightInsets;
                   MyListItem item = (MyListItem)value;
                   title.setText(item.title);
                   if (item.description != null && item.description.length() > 0) {
                        desc.setText(item.description);
                        desc.setVisible(true);
                        View rootView = desc.getUI().getRootView(desc);
                     rootView.setSize( viewWidth, Float.MAX_VALUE );
                    float yAxisSpan = rootView.getPreferredSpan(View.Y_AXIS);
                        Dimension preferredSize = new Dimension( viewWidth, (int)yAxisSpan + topDownInsets );
                        desc.setPreferredSize( preferredSize );
                   } else {
                        desc.setVisible(false);
                   title.setPreferredSize( new Dimension( viewWidth, title.getPreferredSize().height ) );
                   // uncomment next line to to somewhat simulate the effect I want (hacked using the rows array)
                   //desc.setRows(rows[index]);
                   if (isSelected) {
                        setBackground(list.getSelectionBackground());
                        setForeground(list.getSelectionForeground());
                   else {
                        if (index % 2 == 0)
                             setBackground(altColor);
                        else
                             setBackground(list.getBackground());
                        setForeground(list.getForeground());
                   return this;
         static class MyListItem {
              String title;
              String description;
              public MyListItem(String title, String description) {
                   this.title = title;
                   this.description = description;
    }

  • [Solved] Lenovo u460 Ambient Light Sensor/Backlight/Keyboard Weirdness

    Hi all,
    I have tried to figure this problem out ever since I first installed Arch a few months ago (coming from Fedora/Ubuntu where this never occured). This is going to be a little hard to describe, so please bear with me. Here are the symptoms:
    1) The brightness controls (Fn+Up/Fn+Down) don't affect the screen brightness. Also, if acpi_backlight=legacy, then the message "ACPI: Failed to switch the brightness" pops up in dmesg. If acpi_backlight=vendor, then nothing gets printed, though the tty console cursor does "blip" as if a normal key were pressed.
    2) If acpi_backlight=legacy, the message "ACPI: Failed to switch the brightness" pops up in dmesg repeatedly until I do what I think "resets" the ALS, which is to press Fn+Down several times followed by Fn+Up several times. If ambient light conditions change, these messages start again.
    3) The characters ^@ appear in the console occasionally (thought it only seems to happen before the login prompt or after a shutdown signal).
    4) Occasionally I will get a system beep during boot (which may or may not be related).
    5) This problem seems to insert invisible characters into stdin, so I cannot login in a tty (unless I do the aforementioned "reset"). This does not happen in an X session.
    6) I can set the screen brightness through /sys/class/backlight/acpi_video0/brightness (0-10) and /sys/class/backlight/intel_backlight/brightness (0-4882). I believe I can also use setpci. If acpi_backlight=vendor, then acpi_video0 gets renamed to ideapad, and brightness can no longer be changed through there. intel_backlight still works.
    7) Keys do not repeat (unless I do the "reset" above).
    What I've tried:
    1) Setting acpi_backlight and acpi_osi
    2) Extract and recompile the DSDT, fixing errors and warnings, compile custom kernel with new DSDT included.
    3) Reinstall from scratch
    4) Looked to see if there was a BIOS update. I seem to have the latest (v1.04)
    So, any ideas on how to fix this? Let me know if I forgot to post something.
    Some system information:
    # uname -a
    Linux gbpits 3.6.11-1-ARCH #1 SMP PREEMPT Tue Dec 18 08:57:15 CET 2012 x86_64 GNU/Linux
    # lspci -v
    00:00.0 Host bridge: Intel Corporation Core Processor DRAM Controller (rev 02)
    Subsystem: Lenovo Device 391e
    Flags: bus master, fast devsel, latency 0
    Capabilities: [e0] Vendor Specific Information: Len=0c <?>
    Kernel driver in use: agpgart-intel
    00:02.0 VGA compatible controller: Intel Corporation Core Processor Integrated Graphics Controller (rev 02) (prog-if 00 [VGA controller])
    Subsystem: Lenovo Device 3920
    Flags: bus master, fast devsel, latency 0, IRQ 40
    Memory at d0000000 (64-bit, non-prefetchable) [size=4M]
    Memory at c0000000 (64-bit, prefetchable) [size=256M]
    I/O ports at 4050 [size=8]
    Expansion ROM at <unassigned> [disabled]
    Capabilities: [90] MSI: Enable+ Count=1/1 Maskable- 64bit-
    Capabilities: [d0] Power Management version 2
    Capabilities: [a4] PCI Advanced Features
    Kernel driver in use: i915
    00:16.0 Communication controller: Intel Corporation 5 Series/3400 Series Chipset HECI Controller (rev 06)
    Subsystem: Lenovo Device 38a5
    Flags: bus master, fast devsel, latency 0, IRQ 42
    Memory at d6406100 (64-bit, non-prefetchable) [size=16]
    Capabilities: [50] Power Management version 3
    Capabilities: [8c] MSI: Enable+ Count=1/1 Maskable- 64bit+
    Kernel driver in use: mei
    00:1a.0 USB controller: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller (rev 05) (prog-if 20 [EHCI])
    Subsystem: Lenovo Device 38aa
    Flags: bus master, medium devsel, latency 0, IRQ 16
    Memory at d6405c00 (32-bit, non-prefetchable) [size=1K]
    Capabilities: [50] Power Management version 2
    Capabilities: [58] Debug port: BAR=1 offset=00a0
    Capabilities: [98] PCI Advanced Features
    Kernel driver in use: ehci_hcd
    00:1b.0 Audio device: Intel Corporation 5 Series/3400 Series Chipset High Definition Audio (rev 05)
    Subsystem: Lenovo Device 38af
    Flags: bus master, fast devsel, latency 0, IRQ 43
    Memory at d6400000 (64-bit, non-prefetchable) [size=16K]
    Capabilities: [50] Power Management version 2
    Capabilities: [60] MSI: Enable+ Count=1/1 Maskable- 64bit+
    Capabilities: [70] Express Root Complex Integrated Endpoint, MSI 00
    Capabilities: [100] Virtual Channel
    Capabilities: [130] Root Complex Link
    Kernel driver in use: snd_hda_intel
    00:1c.0 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 1 (rev 05) (prog-if 00 [Normal decode])
    Flags: bus master, fast devsel, latency 0
    Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
    I/O behind bridge: 00003000-00003fff
    Memory behind bridge: d5400000-d63fffff
    Prefetchable memory behind bridge: 00000000d0400000-00000000d13fffff
    Capabilities: [40] Express Root Port (Slot+), MSI 00
    Capabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit-
    Capabilities: [90] Subsystem: Lenovo Device 38b0
    Capabilities: [a0] Power Management version 2
    Kernel driver in use: pcieport
    00:1c.1 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 2 (rev 05) (prog-if 00 [Normal decode])
    Flags: bus master, fast devsel, latency 0
    Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
    I/O behind bridge: 00002000-00002fff
    Memory behind bridge: d4400000-d53fffff
    Prefetchable memory behind bridge: 00000000d1400000-00000000d23fffff
    Capabilities: [40] Express Root Port (Slot+), MSI 00
    Capabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit-
    Capabilities: [90] Subsystem: Lenovo Device 38b1
    Capabilities: [a0] Power Management version 2
    Kernel driver in use: pcieport
    00:1c.2 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 3 (rev 05) (prog-if 00 [Normal decode])
    Flags: bus master, fast devsel, latency 0
    Bus: primary=00, secondary=03, subordinate=03, sec-latency=0
    I/O behind bridge: 00001000-00001fff
    Memory behind bridge: d3400000-d43fffff
    Prefetchable memory behind bridge: 00000000d2400000-00000000d33fffff
    Capabilities: [40] Express Root Port (Slot+), MSI 00
    Capabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit-
    Capabilities: [90] Subsystem: Lenovo Device 38b2
    Capabilities: [a0] Power Management version 2
    Kernel driver in use: pcieport
    00:1d.0 USB controller: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller (rev 05) (prog-if 20 [EHCI])
    Subsystem: Lenovo Device 38b8
    Flags: bus master, medium devsel, latency 0, IRQ 23
    Memory at d6405800 (32-bit, non-prefetchable) [size=1K]
    Capabilities: [50] Power Management version 2
    Capabilities: [58] Debug port: BAR=1 offset=00a0
    Capabilities: [98] PCI Advanced Features
    Kernel driver in use: ehci_hcd
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev a5) (prog-if 01 [Subtractive decode])
    Flags: bus master, fast devsel, latency 0
    Bus: primary=00, secondary=04, subordinate=04, sec-latency=32
    Capabilities: [50] Subsystem: Lenovo Device 383f
    00:1f.0 ISA bridge: Intel Corporation Mobile 5 Series Chipset LPC Interface Controller (rev 05)
    Subsystem: Lenovo Device 38be
    Flags: bus master, medium devsel, latency 0
    Capabilities: [e0] Vendor Specific Information: Len=10 <?>
    Kernel driver in use: lpc_ich
    00:1f.2 SATA controller: Intel Corporation 5 Series/3400 Series Chipset 4 port SATA AHCI Controller (rev 05) (prog-if 01 [AHCI 1.0])
    Subsystem: Lenovo Device 38c1
    Flags: bus master, 66MHz, medium devsel, latency 0, IRQ 41
    I/O ports at 4048 [size=8]
    I/O ports at 405c [size=4]
    I/O ports at 4040 [size=8]
    I/O ports at 4058 [size=4]
    I/O ports at 4020 [size=32]
    Memory at d6405000 (32-bit, non-prefetchable) [size=2K]
    Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
    Capabilities: [70] Power Management version 3
    Capabilities: [a8] SATA HBA v1.0
    Capabilities: [b0] PCI Advanced Features
    Kernel driver in use: ahci
    00:1f.3 SMBus: Intel Corporation 5 Series/3400 Series Chipset SMBus Controller (rev 05)
    Subsystem: Lenovo Device 38bf
    Flags: medium devsel, IRQ 19
    Memory at d6406000 (64-bit, non-prefetchable) [size=256]
    I/O ports at 4000 [size=32]
    00:1f.6 Signal processing controller: Intel Corporation 5 Series/3400 Series Chipset Thermal Subsystem (rev 05)
    Subsystem: Lenovo Device 38c0
    Flags: bus master, fast devsel, latency 0, IRQ 21
    Memory at d6404000 (64-bit, non-prefetchable) [size=4K]
    Capabilities: [50] Power Management version 3
    Capabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit-
    Kernel driver in use: intel ips
    02:00.0 Network controller: Intel Corporation Centrino Wireless-N 1000 [Condor Peak]
    Subsystem: Intel Corporation Centrino Wireless-N 1000 BGN
    Flags: bus master, fast devsel, latency 0, IRQ 44
    Memory at d4400000 (64-bit, non-prefetchable) [size=8K]
    Capabilities: [c8] Power Management version 3
    Capabilities: [d0] MSI: Enable+ Count=1/1 Maskable- 64bit+
    Capabilities: [e0] Express Endpoint, MSI 00
    Capabilities: [100] Advanced Error Reporting
    Capabilities: [140] Device Serial Number 00-26-c7-ff-ff-50-da-20
    Kernel driver in use: iwlwifi
    03:00.0 Ethernet controller: Atheros Communications Inc. AR8131 Gigabit Ethernet (rev c0)
    Subsystem: Lenovo Device 3958
    Flags: fast devsel, IRQ 45
    Memory at d3400000 (64-bit, non-prefetchable) [disabled] [size=256K]
    I/O ports at 1000 [disabled] [size=128]
    Capabilities: [40] Power Management version 3
    Capabilities: [48] MSI: Enable+ Count=1/1 Maskable- 64bit+
    Capabilities: [58] Express Endpoint, MSI 00
    Capabilities: [6c] Vital Product Data
    Capabilities: [100] Advanced Error Reporting
    Capabilities: [180] Device Serial Number ff-30-2b-91-88-ae-1d-ff
    Kernel driver in use: atl1c
    7f:00.0 Host bridge: Intel Corporation Core Processor QuickPath Architecture Generic Non-core Registers (rev 02)
    Subsystem: Lenovo Device 392b
    Flags: bus master, fast devsel, latency 0
    7f:00.1 Host bridge: Intel Corporation Core Processor QuickPath Architecture System Address Decoder (rev 02)
    Subsystem: Lenovo Device 392b
    Flags: bus master, fast devsel, latency 0
    7f:02.0 Host bridge: Intel Corporation Core Processor QPI Link 0 (rev 02)
    Subsystem: Lenovo Device 392b
    Flags: bus master, fast devsel, latency 0
    7f:02.1 Host bridge: Intel Corporation Core Processor QPI Physical 0 (rev 02)
    Subsystem: Lenovo Device 392b
    Flags: bus master, fast devsel, latency 0
    7f:02.2 Host bridge: Intel Corporation Core Processor Reserved (rev 02)
    Subsystem: Lenovo Device 392b
    Flags: bus master, fast devsel, latency 0
    7f:02.3 Host bridge: Intel Corporation Core Processor Reserved (rev 02)
    Subsystem: Lenovo Device 392b
    Flags: bus master, fast devsel, latency 0
    # journalctl
    -- Logs begin at Wed 2013-01-16 00:09:32 EST, end at Wed 2013-01-16 00:35:58 EST. --
    Jan 16 00:09:32 gbpits systemd-journal[148]: Allowing runtime journal files to grow to 187.9M.
    Jan 16 00:09:32 gbpits kernel: Initializing cgroup subsys cpuset
    Jan 16 00:09:32 gbpits kernel: Initializing cgroup subsys cpu
    Jan 16 00:09:32 gbpits kernel: Linux version 3.6.11-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.2 (GCC) ) #1 SMP PREEMPT Tue Dec 18 08:57:15 CET 2012
    Jan 16 00:09:32 gbpits kernel: Command line: BOOT_IMAGE=/__active/boot/vmlinuz-linux root=UUID=b568f59c-f490-4404-afdf-cd0b7dd1fbc4 ro rootflags=subvol=__active quiet acpi_osi=Linux
    Jan 16 00:09:32 gbpits kernel: e820: BIOS-provided physical RAM map:
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009cfff] usable
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x000000000009d000-0x000000000009ffff] reserved
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000bb63efff] usable
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x00000000bb63f000-0x00000000bb6befff] reserved
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x00000000bb6bf000-0x00000000bb7befff] ACPI NVS
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x00000000bb7bf000-0x00000000bb7fefff] ACPI data
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x00000000bb7ff000-0x00000000bb7fffff] usable
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x00000000bb800000-0x00000000bfffffff] reserved
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x00000000fed1b000-0x00000000fed1ffff] reserved
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x00000000ffe00000-0x00000000ffffffff] reserved
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x0000000100000000-0x0000000137ffffff] usable
    Jan 16 00:09:32 gbpits kernel: NX (Execute Disable) protection: active
    Jan 16 00:09:32 gbpits kernel: DMI 2.6 present.
    Jan 16 00:09:32 gbpits kernel: DMI: LENOVO 0877 /Base Board Product Name, BIOS 31CN23WW(V1.04) 05/31/2010
    Jan 16 00:09:32 gbpits kernel: e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    Jan 16 00:09:32 gbpits kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Jan 16 00:09:32 gbpits kernel: No AGP bridge found
    Jan 16 00:09:32 gbpits kernel: e820: last_pfn = 0x138000 max_arch_pfn = 0x400000000
    Jan 16 00:09:32 gbpits kernel: MTRR default type: uncachable
    Jan 16 00:09:32 gbpits kernel: MTRR fixed ranges enabled:
    Jan 16 00:09:32 gbpits kernel: 00000-9FFFF write-back
    Jan 16 00:09:32 gbpits kernel: A0000-BFFFF uncachable
    Jan 16 00:09:32 gbpits kernel: C0000-EFFFF write-through
    Jan 16 00:09:32 gbpits kernel: F0000-FFFFF write-combining
    Jan 16 00:09:32 gbpits kernel: MTRR variable ranges enabled:
    Jan 16 00:09:32 gbpits kernel: 0 base 000000000 mask F80000000 write-back
    Jan 16 00:09:32 gbpits kernel: 1 base 0FFE00000 mask FFFE00000 write-protect
    Jan 16 00:09:32 gbpits kernel: 2 base 080000000 mask FC0000000 write-back
    Jan 16 00:09:32 gbpits kernel: 3 base 0BC000000 mask FFC000000 uncachable
    Jan 16 00:09:32 gbpits kernel: 4 base 0BB800000 mask FFF800000 uncachable
    Jan 16 00:09:32 gbpits kernel: 5 base 100000000 mask FC0000000 write-back
    Jan 16 00:09:32 gbpits kernel: 6 base 138000000 mask FF8000000 uncachable
    Jan 16 00:09:32 gbpits kernel: 7 disabled
    Jan 16 00:09:32 gbpits kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Jan 16 00:09:32 gbpits kernel: e820: last_pfn = 0xbb800 max_arch_pfn = 0x400000000
    Jan 16 00:09:32 gbpits kernel: initial memory mapped: [mem 0x00000000-0x1fffffff]
    Jan 16 00:09:32 gbpits kernel: Base memory trampoline at [ffff880000097000] 97000 size 24576
    Jan 16 00:09:32 gbpits kernel: init_memory_mapping: [mem 0x00000000-0xbb7fffff]
    Jan 16 00:09:32 gbpits kernel: [mem 0x00000000-0xbb7fffff] page 2M
    Jan 16 00:09:32 gbpits kernel: kernel direct mapping tables up to 0xbb7fffff @ [mem 0x1fffc000-0x1fffffff]
    Jan 16 00:09:32 gbpits kernel: init_memory_mapping: [mem 0x100000000-0x137ffffff]
    Jan 16 00:09:32 gbpits kernel: [mem 0x100000000-0x137ffffff] page 2M
    Jan 16 00:09:32 gbpits kernel: kernel direct mapping tables up to 0x137ffffff @ [mem 0xbb63d000-0xbb63efff]
    Jan 16 00:09:32 gbpits kernel: RAMDISK: [mem 0x37962000-0x37ca8fff]
    Jan 16 00:09:32 gbpits kernel: ACPI: RSDP 00000000000fe020 00024 (v02 LENOVO)
    Jan 16 00:09:32 gbpits kernel: ACPI: XSDT 00000000bb7fe120 00084 (v01 LENOVO CB-01 00000001 01000013)
    Jan 16 00:09:32 gbpits kernel: ACPI: FACP 00000000bb7fc000 000F4 (v04 LENOVO CB-01 00000001 MSFT 01000013)
    Jan 16 00:09:32 gbpits kernel: ACPI: DSDT 00000000bb7ed000 0B1E8 (v02 LENOVO CB-01 00000001 MSFT 01000013)
    Jan 16 00:09:32 gbpits kernel: ACPI: FACS 00000000bb75a000 00040
    Jan 16 00:09:32 gbpits kernel: ACPI: ASF! 00000000bb7fd000 000A5 (v32 INTEL Calpella 00000001 MSFT 01000013)
    Jan 16 00:09:32 gbpits kernel: ACPI: HPET 00000000bb7fb000 00038 (v01 LENOVO CB-01 00000001 MSFT 01000013)
    Jan 16 00:09:32 gbpits kernel: ACPI: APIC 00000000bb7fa000 0008C (v02 INTEL Calpella 00000001 MSFT 01000013)
    Jan 16 00:09:32 gbpits kernel: ACPI: MCFG 00000000bb7f9000 0003C (v01 LENOVO CB-01 00000001 MSFT 01000013)
    Jan 16 00:09:32 gbpits kernel: ACPI: SLIC 00000000bb7ec000 00176 (v01 LENOVO CB-01 00000001 MSFT 01000013)
    Jan 16 00:09:32 gbpits kernel: ACPI: BOOT 00000000bb7e9000 00028 (v01 INTEL Calpella 00000001 MSFT 01000013)
    Jan 16 00:09:32 gbpits kernel: ACPI: ASPT 00000000bb7e6000 00034 (v04 INTEL Calpella 00000001 MSFT 01000013)
    Jan 16 00:09:32 gbpits kernel: ACPI: WDAT 00000000bb7e5000 00224 (v01 INTEL Calpella 00000001 MSFT 01000013)
    Jan 16 00:09:32 gbpits kernel: ACPI: SSDT 00000000bb7e4000 009F1 (v01 PmRef CpuPm 00003000 INTL 20051117)
    Jan 16 00:09:32 gbpits kernel: ACPI: SSDT 00000000bb7e3000 00259 (v01 PmRef Cpu0Tst 00003000 INTL 20051117)
    Jan 16 00:09:32 gbpits kernel: ACPI: SSDT 00000000bb7e2000 0049F (v01 PmRef ApTst 00003000 INTL 20051117)
    Jan 16 00:09:32 gbpits kernel: ACPI: Local APIC address 0xfee00000
    Jan 16 00:09:32 gbpits kernel: No NUMA configuration found
    Jan 16 00:09:32 gbpits kernel: Faking a node at [mem 0x0000000000000000-0x0000000137ffffff]
    Jan 16 00:09:32 gbpits kernel: Initmem setup node 0 [mem 0x00000000-0x137ffffff]
    Jan 16 00:09:32 gbpits kernel: NODE_DATA [mem 0x137ffc000-0x137ffffff]
    Jan 16 00:09:32 gbpits kernel: [ffffea0000000000-ffffea0004dfffff] PMD -> [ffff880133800000-ffff8801375fffff] on node 0
    Jan 16 00:09:32 gbpits kernel: Zone ranges:
    Jan 16 00:09:32 gbpits kernel: DMA [mem 0x00010000-0x00ffffff]
    Jan 16 00:09:32 gbpits kernel: DMA32 [mem 0x01000000-0xffffffff]
    Jan 16 00:09:32 gbpits kernel: Normal [mem 0x100000000-0x137ffffff]
    Jan 16 00:09:32 gbpits kernel: Movable zone start for each node
    Jan 16 00:09:32 gbpits kernel: Early memory node ranges
    Jan 16 00:09:32 gbpits kernel: node 0: [mem 0x00010000-0x0009cfff]
    Jan 16 00:09:32 gbpits kernel: node 0: [mem 0x00100000-0xbb63efff]
    Jan 16 00:09:32 gbpits kernel: node 0: [mem 0xbb7ff000-0xbb7fffff]
    Jan 16 00:09:32 gbpits kernel: node 0: [mem 0x100000000-0x137ffffff]
    Jan 16 00:09:32 gbpits kernel: On node 0 totalpages: 996813
    Jan 16 00:09:32 gbpits kernel: DMA zone: 64 pages used for memmap
    Jan 16 00:09:32 gbpits kernel: DMA zone: 6 pages reserved
    Jan 16 00:09:32 gbpits kernel: DMA zone: 3911 pages, LIFO batch:0
    Jan 16 00:09:32 gbpits kernel: DMA32 zone: 16320 pages used for memmap
    Jan 16 00:09:32 gbpits kernel: DMA32 zone: 747136 pages, LIFO batch:31
    Jan 16 00:09:32 gbpits kernel: Normal zone: 3584 pages used for memmap
    Jan 16 00:09:32 gbpits kernel: Normal zone: 225792 pages, LIFO batch:31
    Jan 16 00:09:32 gbpits kernel: ACPI: PM-Timer IO Port: 0x408
    Jan 16 00:09:32 gbpits kernel: ACPI: Local APIC address 0xfee00000
    Jan 16 00:09:32 gbpits kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Jan 16 00:09:32 gbpits kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    Jan 16 00:09:32 gbpits kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
    Jan 16 00:09:32 gbpits kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x05] enabled)
    Jan 16 00:09:32 gbpits kernel: ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
    Jan 16 00:09:32 gbpits kernel: ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
    Jan 16 00:09:32 gbpits kernel: ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
    Jan 16 00:09:32 gbpits kernel: ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled)
    Jan 16 00:09:32 gbpits kernel: ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    Jan 16 00:09:32 gbpits kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    Jan 16 00:09:32 gbpits kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Jan 16 00:09:32 gbpits kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Jan 16 00:09:32 gbpits kernel: ACPI: IRQ0 used by override.
    Jan 16 00:09:32 gbpits kernel: ACPI: IRQ2 used by override.
    Jan 16 00:09:32 gbpits kernel: ACPI: IRQ9 used by override.
    Jan 16 00:09:32 gbpits kernel: Using ACPI (MADT) for SMP configuration information
    Jan 16 00:09:32 gbpits kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
    Jan 16 00:09:32 gbpits kernel: smpboot: Allowing 8 CPUs, 4 hotplug CPUs
    Jan 16 00:09:32 gbpits kernel: nr_irqs_gsi: 40
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 000000000009d000 - 00000000000a0000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000bb63f000 - 00000000bb6bf000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000bb6bf000 - 00000000bb7bf000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000bb7bf000 - 00000000bb7ff000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000bb800000 - 00000000c0000000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000c0000000 - 00000000f0000000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000f0000000 - 00000000f8000000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000f8000000 - 00000000feb00000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000feb00000 - 00000000feb04000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000feb04000 - 00000000fec00000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000fec01000 - 00000000fed10000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000fed10000 - 00000000fed14000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000fed14000 - 00000000fed18000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000fed18000 - 00000000fed1a000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1b000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000fed1b000 - 00000000fed20000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000fee01000 - 00000000ffe00000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000ffe00000 - 0000000100000000
    Jan 16 00:09:32 gbpits kernel: e820: [mem 0xc0000000-0xefffffff] available for PCI devices
    Jan 16 00:09:32 gbpits kernel: Booting paravirtualized kernel on bare hardware
    Jan 16 00:09:32 gbpits kernel: setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:8 nr_node_ids:1
    Jan 16 00:09:32 gbpits kernel: PERCPU: Embedded 28 pages/cpu @ffff880137c00000 s84608 r8192 d21888 u262144
    Jan 16 00:09:32 gbpits kernel: pcpu-alloc: s84608 r8192 d21888 u262144 alloc=1*2097152
    Jan 16 00:09:32 gbpits kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    Jan 16 00:09:32 gbpits kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 976839
    Jan 16 00:09:32 gbpits kernel: Policy zone: Normal
    Jan 16 00:09:32 gbpits kernel: Kernel command line: BOOT_IMAGE=/__active/boot/vmlinuz-linux root=UUID=b568f59c-f490-4404-afdf-cd0b7dd1fbc4 ro rootflags=subvol=__active quiet acpi_osi=Linux
    Jan 16 00:09:32 gbpits kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Jan 16 00:09:32 gbpits kernel: __ex_table already sorted, skipping sort
    Jan 16 00:09:32 gbpits kernel: Checking aperture...
    Jan 16 00:09:32 gbpits kernel: No AGP bridge found
    Jan 16 00:09:32 gbpits kernel: Calgary: detecting Calgary via BIOS EBDA area
    Jan 16 00:09:32 gbpits kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    Jan 16 00:09:32 gbpits kernel: Memory: 3842208k/5111808k available (4728k kernel code, 1124556k absent, 145044k reserved, 4142k data, 772k init)
    Jan 16 00:09:32 gbpits kernel: SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    Jan 16 00:09:32 gbpits kernel: Preemptible hierarchical RCU implementation.
    Jan 16 00:09:32 gbpits kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Jan 16 00:09:32 gbpits kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Jan 16 00:09:32 gbpits kernel: RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=8.
    Jan 16 00:09:32 gbpits kernel: NR_IRQS:4352 nr_irqs:744 16
    Jan 16 00:09:32 gbpits kernel: Extended CMOS year: 2000
    Jan 16 00:09:32 gbpits kernel: Console: colour dummy device 80x25
    Jan 16 00:09:32 gbpits kernel: console [tty0] enabled
    Jan 16 00:09:32 gbpits kernel: allocated 16252928 bytes of page_cgroup
    Jan 16 00:09:32 gbpits kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Jan 16 00:09:32 gbpits kernel: hpet clockevent registered
    Jan 16 00:09:32 gbpits kernel: tsc: Fast TSC calibration using PIT
    Jan 16 00:09:32 gbpits kernel: tsc: Detected 2260.853 MHz processor
    Jan 16 00:09:32 gbpits kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4523.11 BogoMIPS (lpj=7536176)
    Jan 16 00:09:32 gbpits kernel: pid_max: default: 32768 minimum: 301
    Jan 16 00:09:32 gbpits kernel: Security Framework initialized
    Jan 16 00:09:32 gbpits kernel: AppArmor: AppArmor disabled by boot time parameter
    Jan 16 00:09:32 gbpits kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Jan 16 00:09:32 gbpits kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Jan 16 00:09:32 gbpits kernel: Mount-cache hash table entries: 256
    Jan 16 00:09:32 gbpits kernel: Initializing cgroup subsys cpuacct
    Jan 16 00:09:32 gbpits kernel: Initializing cgroup subsys memory
    Jan 16 00:09:32 gbpits kernel: Initializing cgroup subsys devices
    Jan 16 00:09:32 gbpits kernel: Initializing cgroup subsys freezer
    Jan 16 00:09:32 gbpits kernel: Initializing cgroup subsys net_cls
    Jan 16 00:09:32 gbpits kernel: Initializing cgroup subsys blkio
    Jan 16 00:09:32 gbpits kernel: CPU: Physical Processor ID: 0
    Jan 16 00:09:32 gbpits kernel: CPU: Processor Core ID: 0
    Jan 16 00:09:32 gbpits kernel: mce: CPU supports 9 MCE banks
    Jan 16 00:09:32 gbpits kernel: CPU0: Thermal monitoring enabled (TM1)
    Jan 16 00:09:32 gbpits kernel: process: using mwait in idle threads
    Jan 16 00:09:32 gbpits kernel: [121B blob data]
    Jan 16 00:09:32 gbpits kernel: ACPI: Core revision 20120711
    Jan 16 00:09:32 gbpits kernel: ftrace: allocating 18351 entries in 72 pages
    Jan 16 00:09:32 gbpits kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Jan 16 00:09:32 gbpits kernel: smpboot: CPU0: Intel(R) Core(TM) i3 CPU M 350 @ 2.27GHz stepping 02
    Jan 16 00:09:32 gbpits kernel: Performance Events: PEBS fmt1+, 16-deep LBR, Westmere events, Intel PMU driver.
    Jan 16 00:09:32 gbpits kernel: perf_event_intel: CPUID marked event: 'bus cycles' unavailable
    Jan 16 00:09:32 gbpits kernel: ... version: 3
    Jan 16 00:09:32 gbpits kernel: ... bit width: 48
    Jan 16 00:09:32 gbpits kernel: ... generic registers: 4
    Jan 16 00:09:32 gbpits kernel: ... value mask: 0000ffffffffffff
    Jan 16 00:09:32 gbpits kernel: ... max period: 000000007fffffff
    Jan 16 00:09:32 gbpits kernel: ... fixed-purpose events: 3
    Jan 16 00:09:32 gbpits kernel: ... event mask: 000000070000000f
    Jan 16 00:09:32 gbpits kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    Jan 16 00:09:32 gbpits kernel: smpboot: Booting Node 0, Processors #1 #2 #3
    Jan 16 00:09:32 gbpits kernel: Brought up 4 CPUs
    Jan 16 00:09:32 gbpits kernel: smpboot: Total of 4 processors activated (18094.44 BogoMIPS)
    Jan 16 00:09:32 gbpits kernel: devtmpfs: initialized
    Jan 16 00:09:32 gbpits kernel: PM: Registering ACPI NVS region [mem 0xbb6bf000-0xbb7befff] (1048576 bytes)
    Jan 16 00:09:32 gbpits kernel: NET: Registered protocol family 16
    Jan 16 00:09:32 gbpits kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    Jan 16 00:09:32 gbpits kernel: ACPI: bus type pci registered
    Jan 16 00:09:32 gbpits kernel: PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
    Jan 16 00:09:32 gbpits kernel: PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in E820
    Jan 16 00:09:32 gbpits kernel: PCI: Using configuration type 1 for base access
    Jan 16 00:09:32 gbpits kernel: mtrr: your CPUs had inconsistent variable MTRR settings
    Jan 16 00:09:32 gbpits kernel: mtrr: probably your BIOS does not setup all CPUs.
    Jan 16 00:09:32 gbpits kernel: mtrr: corrected configuration.
    Jan 16 00:09:32 gbpits kernel: bio: create slab <bio-0> at 0
    Jan 16 00:09:32 gbpits kernel: ACPI: Added _OSI(Module Device)
    Jan 16 00:09:32 gbpits kernel: ACPI: Added _OSI(Processor Device)
    Jan 16 00:09:32 gbpits kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Jan 16 00:09:32 gbpits kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Jan 16 00:09:32 gbpits kernel: ACPI: Added _OSI(Linux)
    Jan 16 00:09:32 gbpits kernel: ACPI: EC: Look up EC in DSDT
    Jan 16 00:09:32 gbpits kernel: ACPI: Executed 1 blocks of module-level executable AML code
    Jan 16 00:09:32 gbpits kernel: [Firmware Bug]: ACPI: BIOS _OSI(Linux) query honored via cmdline
    Jan 16 00:09:32 gbpits kernel: ACPI: SSDT 00000000bb691918 00408 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    Jan 16 00:09:32 gbpits kernel: ACPI: Dynamic OEM Table Load:
    Jan 16 00:09:32 gbpits kernel: ACPI: SSDT (null) 00408 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    Jan 16 00:09:32 gbpits kernel: ACPI: SSDT 00000000bb68f018 00891 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    Jan 16 00:09:32 gbpits kernel: ACPI: Dynamic OEM Table Load:
    Jan 16 00:09:32 gbpits kernel: ACPI: SSDT (null) 00891 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    Jan 16 00:09:32 gbpits kernel: ACPI: SSDT 00000000bb690a98 00303 (v01 PmRef ApIst 00003000 INTL 20051117)
    Jan 16 00:09:32 gbpits kernel: ACPI: Dynamic OEM Table Load:
    Jan 16 00:09:32 gbpits kernel: ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20051117)
    Jan 16 00:09:32 gbpits kernel: ACPI: SSDT 00000000bb68ed98 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
    Jan 16 00:09:32 gbpits kernel: ACPI: Dynamic OEM Table Load:
    Jan 16 00:09:32 gbpits kernel: ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
    Jan 16 00:09:32 gbpits kernel: ACPI: Interpreter enabled
    Jan 16 00:09:32 gbpits kernel: ACPI: (supports S0 S3 S4 S5)
    Jan 16 00:09:32 gbpits kernel: ACPI: Using IOAPIC for interrupt routing
    Jan 16 00:09:32 gbpits kernel: ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    Jan 16 00:09:32 gbpits kernel: ACPI: No dock devices found.
    Jan 16 00:09:32 gbpits kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Jan 16 00:09:32 gbpits kernel: \_SB_.PCI0:_OSC invalid UUID
    Jan 16 00:09:32 gbpits kernel: _OSC request data:1 8 1f
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
    Jan 16 00:09:32 gbpits kernel: PCI host bridge to bus 0000:00
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:00: busn_res: [bus 00-7e] is inserted under domain [bus 00-ff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:00: root bus resource [bus 00-7e]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfeafffff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:00.0: [8086:0044] type 00 class 0x060000
    Jan 16 00:09:32 gbpits kernel: DMAR: BIOS has allocated no shadow GTT; disabling IOMMU for graphics
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:02.0: [8086:0046] type 00 class 0x030000
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:02.0: reg 10: [mem 0xd0000000-0xd03fffff 64bit]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:02.0: reg 18: [mem 0xc0000000-0xcfffffff 64bit pref]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:02.0: reg 20: [io 0x4050-0x4057]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:16.0: [8086:3b64] type 00 class 0x078000
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:16.0: reg 10: [mem 0xd6406100-0xd640610f 64bit]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1a.0: [8086:3b3c] type 00 class 0x0c0320
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1a.0: reg 10: [mem 0xd6405c00-0xd6405fff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1b.0: [8086:3b56] type 00 class 0x040300
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1b.0: reg 10: [mem 0xd6400000-0xd6403fff 64bit]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.0: [8086:3b42] type 01 class 0x060400
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.1: [8086:3b44] type 01 class 0x060400
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.2: [8086:3b46] type 01 class 0x060400
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1d.0: [8086:3b34] type 00 class 0x0c0320
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1d.0: reg 10: [mem 0xd6405800-0xd6405bff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1f.0: [8086:3b09] type 00 class 0x060100
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1f.2: [8086:3b29] type 00 class 0x010601
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1f.2: reg 10: [io 0x4048-0x404f]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1f.2: reg 14: [io 0x405c-0x405f]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1f.2: reg 18: [io 0x4040-0x4047]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1f.2: reg 1c: [io 0x4058-0x405b]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1f.2: reg 20: [io 0x4020-0x403f]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1f.2: reg 24: [mem 0xd6405000-0xd64057ff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1f.2: PME# supported from D3hot
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1f.3: [8086:3b30] type 00 class 0x0c0500
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1f.3: reg 10: [mem 0xd6406000-0xd64060ff 64bit]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1f.3: reg 20: [io 0x4000-0x401f]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1f.6: [8086:3b32] type 00 class 0x118000
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1f.6: reg 10: [mem 0xd6404000-0xd6404fff 64bit]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:01: busn_res: [bus 01] is inserted under [bus 00-7e]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.0: bridge window [mem 0xd5400000-0xd63fffff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.0: bridge window [mem 0xd0400000-0xd13fffff 64bit pref]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:02: busn_res: [bus 02] is inserted under [bus 00-7e]
    Jan 16 00:09:32 gbpits kernel: pci 0000:02:00.0: [8086:0084] type 00 class 0x028000
    Jan 16 00:09:32 gbpits kernel: pci 0000:02:00.0: reg 10: [mem 0xd4400000-0xd4401fff 64bit]
    Jan 16 00:09:32 gbpits kernel: pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.1: PCI bridge to [bus 02]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.1: bridge window [io 0x2000-0x2fff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.1: bridge window [mem 0xd4400000-0xd53fffff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.1: bridge window [mem 0xd1400000-0xd23fffff 64bit pref]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:03: busn_res: [bus 03] is inserted under [bus 00-7e]
    Jan 16 00:09:32 gbpits kernel: pci 0000:03:00.0: [1969:1063] type 00 class 0x020000
    Jan 16 00:09:32 gbpits kernel: pci 0000:03:00.0: reg 10: [mem 0xd3400000-0xd343ffff 64bit]
    Jan 16 00:09:32 gbpits kernel: pci 0000:03:00.0: reg 18: [io 0x1000-0x107f]
    Jan 16 00:09:32 gbpits kernel: pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.2: PCI bridge to [bus 03]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.2: bridge window [io 0x1000-0x1fff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.2: bridge window [mem 0xd3400000-0xd43fffff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.2: bridge window [mem 0xd2400000-0xd33fffff 64bit pref]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:04: busn_res: [bus 04] is inserted under [bus 00-7e]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1e.0: PCI bridge to [bus 04] (subtractive decode)
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1e.0: bridge window [mem 0xc0000000-0xfeafffff] (subtractive decode)
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT]
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP03._PRT]
    Jan 16 00:09:32 gbpits kernel: \_SB_.PCI0:_OSC invalid UUID
    Jan 16 00:09:32 gbpits kernel: _OSC request data:1 1f 1f
    Jan 16 00:09:32 gbpits kernel: pci0000:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    Jan 16 00:09:32 gbpits kernel: pci0000:00: Unable to request _OSC control (_OSC support mask: 0x08)
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus 7f])
    Jan 16 00:09:32 gbpits kernel: PCI host bridge to bus 0000:7f
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:7f: busn_res: [bus 7f] is inserted under domain [bus 00-ff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:7f: root bus resource [bus 7f]
    Jan 16 00:09:32 gbpits kernel: pci 0000:7f:00.0: [8086:2c62] type 00 class 0x060000
    Jan 16 00:09:32 gbpits kernel: pci 0000:7f:00.1: [8086:2d01] type 00 class 0x060000
    Jan 16 00:09:32 gbpits kernel: pci 0000:7f:02.0: [8086:2d10] type 00 class 0x060000
    Jan 16 00:09:32 gbpits kernel: pci 0000:7f:02.1: [8086:2d11] type 00 class 0x060000
    Jan 16 00:09:32 gbpits kernel: pci 0000:7f:02.2: [8086:2d12] type 00 class 0x060000
    Jan 16 00:09:32 gbpits kernel: pci 0000:7f:02.3: [8086:2d13] type 00 class 0x060000
    Jan 16 00:09:32 gbpits kernel: pci0000:7f: ACPI _OSC support notification failed, disabling PCIe ASPM
    Jan 16 00:09:32 gbpits kernel: pci0000:7f: Unable to request _OSC control (_OSC support mask: 0x08)
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 *5 6 7 10 12 14 15)
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 *11 12 14 15)
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 *5 6 7 11 12 14 15)
    Jan 16 00:09:32 gbpits kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    Jan 16 00:09:32 gbpits kernel: vgaarb: loaded
    Jan 16 00:09:32 gbpits kernel: vgaarb: bridge control possible 0000:00:02.0
    Jan 16 00:09:32 gbpits kernel: PCI: Using ACPI for IRQ routing
    Jan 16 00:09:32 gbpits kernel: PCI: pci_cache_line_size set to 64 bytes
    Jan 16 00:09:32 gbpits kernel: e820: reserve RAM buffer [mem 0x0009d000-0x0009ffff]
    Jan 16 00:09:32 gbpits kernel: e820: reserve RAM buffer [mem 0xbb63f000-0xbbffffff]
    Jan 16 00:09:32 gbpits kernel: e820: reserve RAM buffer [mem 0xbb800000-0xbbffffff]
    Jan 16 00:09:32 gbpits kernel: NetLabel: Initializing
    Jan 16 00:09:32 gbpits kernel: NetLabel: domain hash size = 128
    Jan 16 00:09:32 gbpits kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Jan 16 00:09:32 gbpits kernel: NetLabel: unlabeled traffic allowed by default
    Jan 16 00:09:32 gbpits kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    Jan 16 00:09:32 gbpits kernel: hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    Jan 16 00:09:32 gbpits kernel: Switching to clocksource hpet
    Jan 16 00:09:32 gbpits kernel: pnp: PnP ACPI init
    Jan 16 00:09:32 gbpits kernel: ACPI: bus type pnp registered
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [bus 00-7e]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [io 0x0000-0x0cf7 window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [io 0x0cf8-0x0cff]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [io 0x0d00-0xffff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0x000a0000-0x000bffff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0x000c0000-0x000c3fff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0x000c4000-0x000c7fff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0x000c8000-0x000cbfff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0x000cc000-0x000cffff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0x000d0000-0x000d3fff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0x000d4000-0x000d7fff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0x000d8000-0x000dbfff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0x000dc000-0x000dffff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0x000e0000-0x000e3fff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0x000e4000-0x000e7fff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0x000e8000-0x000ebfff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0x000ec000-0x000effff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0x000f0000-0x000fffff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0xc0000000-0xfeafffff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0xfed40000-0xfed44fff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [io 0x0068-0x006f]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [io 0x0700-0x0707]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    Jan 16 00:09:32 gbpits kernel: pnp 00:01: [io 0x0000-0x001f]
    Jan 16 00:09:32 gbpits kernel: pnp 00:01: [io 0x0081-0x0091]
    Jan 16 00:09:32 gbpits kernel: pnp 00:01: [io 0x0093-0x009f]
    Jan 16 00:09:32 gbpits kernel: pnp 00:01: [io 0x00c0-0x00df]
    Jan 16 00:09:32 gbpits kernel: pnp 00:01: [dma 4]
    Jan 16 00:09:32 gbpits kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    Jan 16 00:09:32 gbpits kernel: pnp 00:02: [mem 0xff000000-0xffffffff]
    Jan 16 00:09:32 gbpits kernel: pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
    Jan 16 00:09:32 gbpits kernel: pnp 00:03: [mem 0xfed00000-0xfed003ff]
    Jan 16 00:09:32 gbpits kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    Jan 16 00:09:32 gbpits kernel: pnp 00:04: [io 0x00f0]
    Jan 16 00:09:32 gbpits kernel: pnp 00:04: [irq 13]
    Jan 16 00:09:32 gbpits kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x002e-0x002f]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x004e-0x004f]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x0061]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x0063]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x0065]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x0067]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x0068-0x006f]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x0070]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x0080]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x0092]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x00b2-0x00b3]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x0680-0x069f]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x0800-0x080f]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0xffff]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0xffff]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x0400-0x047f]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x0500-0x057f]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x164e-0x164f]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: disabling [io 0x164e-0x164f] because it overlaps 0000:00:1c.2 BAR 13 [io 0x1000-0x1fff]
    Jan 16 00:09:32 gbpits kernel: system 00:05: [io 0x0680-0x069f] has been reserved
    Jan 16 00:09:32 gbpits kernel: system 00:05: [io 0x0800-0x080f] has been reserved
    Jan 16 00:09:32 gbpits kernel: system 00:05: [io 0xffff] has been reserved
    Jan 16 00:09:32 gbpits kernel: system 00:05: [io 0xffff] has been reserved
    Jan 16 00:09:32 gbpits kernel: system 00:05: [io 0x0400-0x047f] has been reserved
    Jan 16 00:09:32 gbpits kernel: system 00:05: [io 0x0500-0x057f] has been reserved
    Jan 16 00:09:32 gbpits kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jan 16 00:09:32 gbpits kernel: pnp 00:06: [io 0x0070-0x0077]
    Jan 16 00:09:32 gbpits kernel: pnp 00:06: [irq 8]
    Jan 16 00:09:32 gbpits kernel: pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
    Jan 16 00:09:32 gbpits kernel: pnp 00:07: [irq 12]
    Jan 16 00:09:32 gbpits kernel: pnp 00:07: Plug and Play ACPI device, IDs SYN0720 SYN0700 SYN0002 PNP0f13 (active)
    Jan 16 00:09:32 gbpits kernel: pnp 00:08: [io 0x0060]
    Jan 16 00:09:32 gbpits kernel: pnp 00:08: [io 0x0064]
    Jan 16 00:09:32 gbpits kernel: pnp 00:08: [irq 1]
    Jan 16 00:09:32 gbpits kernel: pnp 00:08: Plug and Play ACPI device, IDs PNP0303 (active)
    Jan 16 00:09:32 gbpits kernel: pnp 00:09: [mem 0xfed1c000-0xfed1ffff]
    Jan 16 00:09:32 gbpits kernel: pnp 00:09: [mem 0xfed10000-0xfed13fff]
    Jan 16 00:09:32 gbpits kernel: pnp 00:09: [mem 0xfed18000-0xfed18fff]
    Jan 16 00:09:32 gbpits kernel: pnp 00:09: [mem 0xfed19000-0xfed19fff]
    Jan 16 00:09:32 gbpits kernel: pnp 00:09: [mem 0xf0000000-0xf1ffffff]
    Jan 16 00:09:32 gbpits kernel: pnp 00:09: [mem 0xfed20000-0xfed3ffff]
    Jan 16 00:09:32 gbpits kernel: pnp 00:09: [mem 0xfed90000-0xfed8ffff disabled]
    Jan 16 00:09:32 gbpits kernel: pnp 00:09: [mem 0xfed45000-0xfed8ffff]
    Jan 16 00:09:32 gbpits kernel: pnp 00:09: [mem 0xff000000-0xffffffff]
    Jan 16 00:09:32 gbpits kernel: pnp 00:09: [mem 0xfee00000-0xfeefffff]
    Jan 16 00:09:32 gbpits kernel: pnp 00:09: [mem 0xd6500000-0xd6500fff]
    Jan 16 00:09:32 gbpits kernel: system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
    Jan 16 00:09:32 gbpits kernel: system 00:09: [mem 0xfed10000-0xfed13fff] has been reserved
    Jan 16 00:09:32 gbpits kernel: system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
    Jan 16 00:09:32 gbpits kernel: system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
    Jan 16 00:09:32 gbpits kernel: system 00:09: [mem 0xf0000000-0xf1ffffff] has been reserved
    Jan 16 00:09:32 gbpits kernel: system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
    Jan 16 00:09:32 gbpits kernel: system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
    Jan 16 00:09:32 gbpits kernel: system 00:09: [mem 0xff000000-0xffffffff] could not be reserved
    Jan 16 00:09:32 gbpits kernel: system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
    Jan 16 00:09:32 gbpits kernel: system 00:09: [mem 0xd6500000-0xd6500fff] has been reserved
    Jan 16 00:09:32 gbpits kernel: system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jan 16 00:09:32 gbpits kernel: pnp 00:0a: [bus 7f]
    Jan 16 00:09:32 gbpits kernel: pnp 00:0a: Plug and Play ACPI device, IDs PNP0a03 (active)
    Jan 16 00:09:32 gbpits kernel: pnp: PnP ACPI: found 11 devices
    Jan 16 00:09:32 gbpits kernel: ACPI: ACPI bus type pnp unregistered
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.0: bridge window [mem 0xd5400000-0xd63fffff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.0: bridge window [mem 0xd0400000-0xd13fffff 64bit pref]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.1: PCI bridge to [bus 02]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.1: bridge window [io 0x2000-0x2fff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.1: bridge window [mem 0xd4400000-0xd53fffff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.1: bridge window [mem 0xd1400000-0xd23fffff 64bit pref]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.2: PCI bridge to [bus 03]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.2: bridge window [io 0x1000-0x1fff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.2: bridge window [mem 0xd3400000-0xd43fffff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.2: bridge window [mem 0xd2400000-0xd33fffff 64bit pref]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1e.0: PCI bridge to [bus 04]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1e.0: setting latency timer to 64
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfeafffff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:01: resource 1 [mem 0xd5400000-0xd63fffff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:01: resource 2 [mem 0xd0400000-0xd13fffff 64bit pref]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:02: resource 0 [io 0x2000-0x2fff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:02: resource 1 [mem 0xd4400000-0xd53fffff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:02: resource 2 [mem 0xd1400000-0xd23fffff 64bit pref]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:03: resource 0 [io 0x1000-0x1fff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:03: resource 1 [mem 0xd3400000-0xd43fffff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:03: resource 2 [mem 0xd2400000-0xd33fffff 64bit pref]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:04: resource 4 [io 0x0000-0x0cf7]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:04: resource 5 [io 0x0d00-0xffff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:04: resource 7 [mem 0xc0000000-0xfeafffff]
    Jan 16 00:09:32 gbpits kernel: NET: Registered protocol family 2
    Jan 16 00:09:32 gbpits kernel: TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    Jan 16 00:09:32 gbpits kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    Jan 16 00:09:32 gbpits kernel: TCP: Hash tables configured (established 524288 bind 65536)
    Jan 16 00:09:32 gbpits kernel: TCP: reno registered
    Jan 16 00:09:32 gbpits kernel: UDP hash table entries: 2048 (order: 4, 65536 bytes)
    Jan 16 00:09:32 gbpits kernel: UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    Jan 16 00:09:32 gbpits kernel: NET: Registered protocol family 1
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:02.0: Boot video device
    Jan 16 00:09:32 gbpits kernel: PCI: CLS 64 bytes, default 64
    Jan 16 00:09:32 gbpits kernel: Unpacking initramfs...
    Jan 16 00:09:32 gbpits kernel: Freeing initrd memory: 3356k freed
    Jan 16 00:09:32 gbpits kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    Jan 16 00:09:32 gbpits kernel: software IO TLB [mem 0xb763d000-0xbb63cfff] (64MB) mapped at [ffff8800b763d000-ffff8800bb63cfff]
    Jan 16 00:09:32 gbpits kernel: Simple Boot Flag at 0x44 set to 0x1
    Jan 16 00:09:32 gbpits kernel: audit: initializing netlink socket (disabled)
    Jan 16 00:09:32 gbpits kernel: type=2000 audit(1358312969.413:1): initialized
    Jan 16 00:09:32 gbpits kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
    Jan 16 00:09:32 gbpits kernel: VFS: Disk quotas dquot_6.5.2
    Jan 16 00:09:32 gbpits kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Jan 16 00:09:32 gbpits kernel: msgmni has been set to 7510
    Jan 16 00:09:32 gbpits kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Jan 16 00:09:32 gbpits kernel: io scheduler noop registered
    Jan 16 00:09:32 gbpits kernel: io scheduler deadline registered
    Jan 16 00:09:32 gbpits kernel: io scheduler cfq registered (default)
    Jan 16 00:09:32 gbpits kernel: vesafb: mode is 1024x768x32, linelength=4096, pages=0
    Jan 16 00:09:32 gbpits kernel: vesafb: scrolling: redraw
    Jan 16 00:09:32 gbpits kernel: vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    Jan 16 00:09:32 gbpits kernel: vesafb: framebuffer at 0xc0000000, mapped to 0xffffc90009000000, using 3072k, total 3072k
    Jan 16 00:09:32 gbpits kernel: Console: switching to colour frame buffer device 128x48
    Jan 16 00:09:32 gbpits kernel: fb0: VESA VGA frame buffer device
    Jan 16 00:09:32 gbpits kernel: intel_idle: MWAIT substates: 0x1120
    Jan 16 00:09:32 gbpits kernel: intel_idle: v0.4 model 0x25
    Jan 16 00:09:32 gbpits kernel: intel_idle: lapic_timer_reliable_states 0xffffffff
    Jan 16 00:09:32 gbpits kernel: GHES: HEST is not enabled!
    Jan 16 00:09:32 gbpits kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Jan 16 00:09:32 gbpits kernel: Linux agpgart interface v0.103
    Jan 16 00:09:32 gbpits kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:MSS0] at 0x60,0x64 irq 1,12
    Jan 16 00:09:32 gbpits kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Jan 16 00:09:32 gbpits kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    Jan 16 00:09:32 gbpits kernel: mousedev: PS/2 mouse device common for all mice
    Jan 16 00:09:32 gbpits kernel: rtc_cmos 00:06: RTC can wake from S4
    Jan 16 00:09:32 gbpits kernel: rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
    Jan 16 00:09:32 gbpits kernel: rtc0: alarms up to one year, y3k, 242 bytes nvram, hpet irqs
    Jan 16 00:09:32 gbpits kernel: cpuidle: using governor ladder
    Jan 16 00:09:32 gbpits kernel: cpuidle: using governor menu
    Jan 16 00:09:32 gbpits kernel: drop_monitor: Initializing network drop monitor service
    Jan 16 00:09:32 gbpits kernel: TCP: cubic registered
    Jan 16 00:09:32 gbpits kernel: NET: Registered protocol family 10
    Jan 16 00:09:32 gbpits kernel: NET: Registered protocol family 17
    Jan 16 00:09:32 gbpits kernel: Key type dns_resolver registered
    Jan 16 00:09:32 gbpits kernel: PM: Hibernation image not present or could not be loaded.
    Jan 16 00:09:32 gbpits kernel: registered taskstats version 1
    Jan 16 00:09:32 gbpits kernel: rtc_cmos 00:06: setting system clock to 2013-01-16 05:09:30 UTC (1358312970)
    Jan 16 00:09:32 gbpits kernel: Freeing unused kernel memory: 772k freed
    Jan 16 00:09:32 gbpits kernel: Write protecting the kernel read-only data: 8192k
    Jan 16 00:09:32 gbpits kernel: Freeing unused kernel memory: 1404k freed
    Jan 16 00:09:32 gbpits kernel: Freeing unused kernel memory: 568k freed
    Jan 16 00:09:32 gbpits kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Jan 16 00:09:32 gbpits systemd-udevd[53]: starting version 196
    Jan 16 00:09:32 gbpits kernel: [drm] Initialized drm 1.1.0 20060810
    Jan 16 00:09:32 gbpits kernel: agpgart-intel 0000:00:00.0: Intel HD Graphics Chipset
    Jan 16 00:09:32 gbpits kernel: agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
    Jan 16 00:09:32 gbpits kernel: agpgart-intel 0000:00:00.0: detected 32768K stolen memory
    Jan 16 00:09:32 gbpits kernel: agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xc0000000
    Jan 16 00:09:32 gbpits kernel: input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:10/PNP0C0C:00/input/input1
    Jan 16 00:09:32 gbpits kernel: ACPI: Power Button [PWRB]
    Jan 16 00:09:32 gbpits kernel: input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:10/PNP0C0E:00/input/input2
    Jan 16 00:09:32 gbpits kernel: ACPI: Sleep Button [SLPB]
    Jan 16 00:09:32 gbpits kernel: input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:10/PNP0C0D:00/input/input3
    Jan 16 00:09:32 gbpits kernel: ACPI: Lid Switch [LID0]
    Jan 16 00:09:32 gbpits kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    Jan 16 00:09:32 gbpits kernel: ACPI: Power Button [PWRF]
    Jan 16 00:09:32 gbpits kernel: checking generic (c0000000 300000) vs hw (c0000000 10000000)
    Jan 16 00:09:32 gbpits kernel: fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
    Jan 16 00:09:32 gbpits kernel: Console: switching to colour dummy device 80x25
    Jan 16 00:09:32 gbpits kernel: i915 0000:00:02.0: setting latency timer to 64
    Jan 16 00:09:32 gbpits kernel: i915 0000:00:02.0: irq 40 for MSI/MSI-X
    Jan 16 00:09:32 gbpits kernel: [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    Jan 16 00:09:32 gbpits kernel: [drm] Driver supports precise vblank timestamp query.
    Jan 16 00:09:32 gbpits kernel: [drm] applying lvds SSC disable quirk
    Jan 16 00:09:32 gbpits kernel: vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    Jan 16 00:09:32 gbpits kernel: tsc: Refined TSC clocksource calibration: 2260.999 MHz
    Jan 16 00:09:32 gbpits kernel: Switching to clocksource tsc
    Jan 16 00:09:32 gbpits kernel: fbcon: inteldrmfb (fb0) is primary device
    Jan 16 00:09:32 gbpits kernel: Console: switching to colour frame buffer device 170x48
    Jan 16 00:09:32 gbpits kernel: fb0: inteldrmfb frame buffer device
    Jan 16 00:09:32 gbpits kernel: drm: registered panic notifier
    Jan 16 00:09:32 gbpits kernel: acpi device:02: registered as cooling_device0
    Jan 16 00:09:32 gbpits kernel: ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    Jan 16 00:09:32 gbpits kernel: input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input5
    Jan 16 00:09:32 gbpits kernel: [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    Jan 16 00:09:32 gbpits kernel: ACPI: bus type usb registered
    Jan 16 00:09:32 gbpits kernel: usbcore: registered new interface driver usbfs
    Jan 16 00:09:32 gbpits kernel: usbcore: registered new interface driver hub
    Jan 16 00:09:32 gbpits kernel: usbcore: registered new device driver usb
    Jan 16 00:09:32 gbpits kernel: SCSI subsystem initialized
    Jan 16 00:09:32 gbpits kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Jan 16 00:09:32 gbpits kernel: ehci_hcd 0000:00:1a.0: setting latency timer to 64
    Jan 16 00:09:32 gbpits kernel: ehci_hcd 0000:00:1a.0: EHCI Host Controller
    Jan 16 00:09:32 gbpits kernel: ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
    Jan 16 00:09:32 gbpits kernel: ACPI: bus type scsi registered
    Jan 16 00:09:32 gbpits kernel: ehci_hcd 0000:00:1a.0: debug port 2
    Jan 16 00:09:32 gbpits kernel: ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
    Jan 16 00:09:32 gbpits kernel: ehci_hcd 0000:00:1a.0: irq 16, io mem 0xd6405c00
    Jan 16 00:09:32 gbpits kernel: libata version 3.00 loaded.
    Jan 16 00:09:32 gbpits kernel: ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    Jan 16 00:09:32 gbpits kernel: hub 1-0:1.0: USB hub found
    Jan 16 00:09:32 gbpits kernel: hub 1-0:1.0: 3 ports detected
    Jan 16 00:09:32 gbpits kernel: ehci_hcd 0000:00:1d.0: setting latency timer to 64
    Jan 16 00:09:32 gbpits kernel: ehci_hcd 0000:00:1d.0: EHCI Host Controller
    Jan 16 00:09:32 gbpits kernel: ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
    Jan 16 00:09:32 gbpits kernel: ehci_hcd 0000:00:1d.0: debug port 2
    Jan 16 00:09:32 gbpits kernel: ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
    Jan 16 00:09:32 gbpits kernel: ehci_hcd 0000:00:1d.0: irq 23, io mem 0xd6405800
    Jan 16 00:09:32 gbpits kernel: ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    Jan 16 00:09:32 gbpits kernel: hub 2-0:1.0: USB hub found
    Jan 16 00:09:32 gbpits kernel: hub 2-0:1.0: 3 ports detected
    Jan 16 00:09:32 gbpits kernel: ahci 0000:00:1f.2: version 3.0
    Jan 16 00:09:32 gbpits kernel: ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
    Jan 16 00:09:32 gbpits kernel: ahci: SSS flag set, parallel bus scan disabled
    Jan 16 00:09:32 gbpits kernel: ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 3 Gbps 0x11 impl SATA mode
    Jan 16 00:09:32 gbpits kernel: ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck stag pm led clo pio slum part ems sxs apst
    Jan 16 00:09:32 gbpits kernel: ahci 0000:00:1f.2: setting latency timer to 64
    Jan 16 00:09:32 gbpits kernel: scsi0 : ahci
    Jan 16 00:09:32 gbpits kernel: scsi1 : ahci
    Jan 16 00:09:32 gbpits kernel: scsi2 : ahci
    Jan 16 00:09:32 gbpits kernel: scsi3 : ahci
    Jan 16 00:09:32 gbpits kernel: scsi4 : ahci
    Jan 16 00:09:32 gbpits kernel: ata1: SATA max UDMA/133 abar m2048@0xd6405000 port 0xd6405100 irq 41
    Jan 16 00:09:32 gbpits kernel: ata2: DUMMY
    Jan 16 00:09:32 gbpits kernel: ata3: DUMMY
    Jan 16 00:09:32 gbpits kernel: ata4: DUMMY
    Jan 16 00:09:32 gbpits kernel: ata5: SATA max UDMA/133 abar m2048@0xd6405000 port 0xd6405300 irq 41
    Jan 16 00:09:32 gbpits kernel: usb 1-1: new high-speed USB device number 2 using ehci_hcd
    Jan 16 00:09:32 gbpits kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jan 16 00:09:32 gbpits kernel: ata1.00: ATA-8: Mushkin MKNSSDCL120GB-DX, 320A13F0, max UDMA/133
    Jan 16 00:09:32 gbpits kernel: ata1.00: 234441648 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
    Jan 16 00:09:32 gbpits kernel: hub 1-1:1.0: USB hub found
    Jan 16 00:09:32 gbpits kernel: hub 1-1:1.0: 6 ports detected
    Jan 16 00:09:32 gbpits kernel: ata1.00: configured for UDMA/133
    Jan 16 00:09:32 gbpits kernel: scsi 0:0:0:0: Direct-Access ATA Mushkin MKNSSDCL 320A PQ: 0 ANSI: 5
    Jan 16 00:09:32 gbpits kernel: usb 2-1: new high-speed USB device number 2 using ehci_hcd
    Jan 16 00:09:32 gbpits kernel: hub 2-1:1.0: USB hub found
    Jan 16 00:09:32 gbpits kernel: hub 2-1:1.0: 8 ports detected
    Jan 16 00:09:32 gbpits kernel: usb 1-1.3: new full-speed USB device number 3 using ehci_hcd
    Jan 16 00:09:32 gbpits kernel: ata5: SATA link down (SStatus 0 SControl 300)
    Jan 16 00:09:32 gbpits kernel: sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/111 GiB)
    Jan 16 00:09:32 gbpits kernel: sd 0:0:0:0: [sda] Write Protect is off
    Jan 16 00:09:32 gbpits kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Jan 16 00:09:32 gbpits kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Jan 16 00:09:32 gbpits kernel: sda: sda1 sda2
    Jan 16 00:09:32 gbpits kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Jan 16 00:09:32 gbpits kernel: Btrfs loaded
    Jan 16 00:09:32 gbpits kernel: device fsid b568f59c-f490-4404-afdf-cd0b7dd1fbc4 devid 1 transid 8171 /dev/sda2
    Jan 16 00:09:32 gbpits kernel: device fsid b568f59c-f490-4404-afdf-cd0b7dd1fbc4 devid 1 transid 8171 /dev/sda2
    Jan 16 00:09:32 gbpits kernel: btrfs: disk space caching is enabled
    Jan 16 00:09:32 gbpits kernel: Btrfs detected SSD devices, enabling SSD mode
    Jan 16 00:09:32 gbpits kernel: usb 1-1.4: new full-speed USB device number 4 using ehci_hcd
    Jan 16 00:09:32 gbpits systemd[1]: systemd 197 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    Jan 16 00:09:32 gbpits systemd[1]: Set hostname to <gbpits>.
    Jan 16 00:09:32 gbpits systemd[1]: Cannot add dependency job for unit wicd.service, ignoring: Unit wicd.service failed to load: No such file or directory. See system logs and 'systemctl status wicd.service' for details.
    Jan 16 00:09:32 gbpits systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    Jan 16 00:09:32 gbpits systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    Jan 16 00:09:32 gbpits systemd[1]: Starting Remote File Systems.
    Jan 16 00:09:32 gbpits systemd[1]: Reached target Remote File Systems.
    Jan 16 00:09:32 gbpits systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    Jan 16 00:09:32 gbpits systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    Jan 16 00:09:32 gbpits systemd[1]: Starting Delayed Shutdown Socket.
    Jan 16 00:09:32 gbpits systemd[1]: Listening on Delayed Shutdown Socket.
    Jan 16 00:09:32 gbpits systemd[1]: Starting udev Kernel Socket.
    Jan 16 00:09:32 gbpits systemd[1]: Listening on udev Kernel Socket.
    Jan 16 00:09:32 gbpits systemd[1]: Starting udev Control Socket.
    Jan 16 00:09:32 gbpits systemd[1]: Listening on udev Control Socket.
    Jan 16 00:09:32 gbpits systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    Jan 16 00:09:32 gbpits systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    Jan 16 00:09:32 gbpits systemd[1]: Starting E

    I thought I would follow up on this, since I finally found a solution (I don't know if it's the correct solution, but it works for me). The cause of the problems was indeed the ambient light sensor (ALS) sending acpi events that were not having any effect (I saw this using acpi_listen from the acpid package).
    So, with acpid installed and started in systemd, I changed the /etc/acpi/handler.sh to add the following cases:
    video/brightnessup)
    echo $(expr $(cat /sys/class/backlight/acpi_video0/brightness) + 1) > /sys/class/backlight/acpi_video0/brightness
    video/brightnessdown)
    echo $(expr $(cat /sys/class/backlight/acpi_video0/brightness) - 1) > /sys/class/backlight/acpi_video0/brightness
    Now the ALS can change the backlight brightness and all is well. Also, since I don't actually like the ALS, I did put some tin foil and tape in front of it so that it will always register a dark room. (So far I have not found any way to disable the ALS programatically outside of Windows)
    Do note that I don't have acpi_osi or acpi_backlight set to anything in the kernel boot parameters, since using acpi_backlight=vendor doesn't work right as I mentioned in my original post.
    Hope this might help someone in the future.
    Last edited by jflanglois (2013-04-01 21:45:10)

  • I can no longer see particles in Particle Playground

    I have been creating files in particle playground for months now, but suddenly I can no longer see the particles displayed in the viewer. It is as if the particles have no opacity and they are invisible. But the opacity is at 100%. Why can I not see the particles in particle playground anymore?

    Thanks for responding to my post.  I appreciate that.  In terms of method, I'm simply just trying to see particles emit from the red circle in the center. I merely made a red solid, and then Effect>Simulation>Particle Playground.  I moved 8 seconds in the timeline to demonstrate that there are not any red particles emitting. The particles seem to be invisible.

  • Wireless connectivity no longer available after TWC adds digital phone service

    Hi All,
    My problem is that my wireless Internet connectivity is no longer available after Time Warner Cable added digital phone service to my existing TV and broadband Internet service.
    Prior to having the digital phone service added, my set up was a Motorola Surfboard cable modem connected to my Linksys WRT54G wireless router, with three computers (two Win XP desktops and one Win 7 laptop) wired to the Linksys router. I had wired Internet connectivity on all three computers. Importantly, I could also access the Internet wirelessly from the laptop instead of using a wire.
    AFTER having the digital phone service added, my set up is the same except that now an Arris Touchstone Telephony Gateway (TG862G) has replaced the Motorola Surfboard cable modem. I still have wired Internet connectivity on all three computers. However, now I cannot access the Internet wirelessly from the laptop. This is a real problem in that often others in the house need access to the wireless network as well.
    I should also mention that (from a wired connection) I cannot access the Linksys router any longer via 192.168.1.1. Now, the Linksys router seems to be "invisible," almost as though it were a pass-through device. I can access the Arris gateway at 192.168.0.1 (for what it's worth), but not the Linksys router.
    Also, not sure this is important, but some time ago (when my wireless was working) I had configured the Linksys router so that it wouldn't broadcast the SSID. Through the Win 7 "Network and Sharing Center" I have tried to "manually connect" to my (hidden) wireless network. The message indicates that my hidden network already exists, but I still can't connect to it.
    I've seen a few potential remedies involving power cycling the gateway and modem in certain sequences, setting the gateway's NAT mode to Bridged, etc., but nothing has worked so far. Time Warner Cable's only advice is for me to purchase (yet) another service so that the gateway can provide the wireless access, but I since my Linksys router worked before I'd rather stick with that method (and avoid yet another charge).
    I would be very grateful for any help you could provide for this problem.
    Thanks in advance.

    1. Don't hide your SSIDs
    http://www.howtogeek.com/howto/28653/debunking-myths-is-hiding-your-wireless-ssid-really-more-secure...
    2. I assume the Arris is also a wireless router. Use inSSIDer to find the best non-overlapping, non-interfering wireless channels. Change the wireless channels on both the WRT54G and Arris if necessary.
    http://www.metageek.net/products/inssider/

Maybe you are looking for

  • Oracle 9i Installation Error on Red Hat 7.2

    Can anyone help me? Im trying to install Oracle 9i on a RedHat 7.2. I always get an error message after executing runInstaller :( is my installer corrupted or something? ./runInstaller: cannot execute binary file please help, thanks ....

  • Compilation error, why???

    this procedure always generate compilation error listed below, I don't understand, anyone has a clue?? Thanks!!! LINE/COL ERROR 3/18 PLS-00103: Encountered the symbol "(" when expecting one of the following: := . ) , @ % default character The symbol

  • Beginner - Why my images are blurred?

    I've just got started on InDesign CS6 and I'm having a problem with the images I place in the document. All images are not sharp, although the original is. I'm not stretching the images. Even if I let them in the original size, they lose resolution.

  • After downloading Yosemite, I can't open my iPhoto!!! Please help me!!!

    I just downloaded Yosemite a few days ago and noticed that my iPhoto is not working. The message that comes up is "Your photo library will not be readable by previous versions of iPhoto after the upgrade. The upgrade process for very large libraries

  • Auto Stacking by URL on import with script?

    There is a constant other than date/time in my imagery which I would like to Stack by, that is automatically. However the auto-Stacking feature is hard coded for date/time only, where as I may stack any imagery I please, manually, there is no flexibi