Checking Integer

Hello. I have just recently begun to learn java. I was attempting to create a function which tests if a string is and integer. I incorporated it into a prime number program that I wrote. The idea on how it (isInt function) works is that it goes through each substring of the string and compares it to each substing of the variable "numbers" which is the cantonation of all decimal number system numbers. If the substing of the string does not match any of the 10 (kept track by counter 'c') 'numbers' then it returns a 0 meaning false that it is not a integer. Otherwise it returns a 1 for true. The prime number part is not the problem, just the isInt part. It doesn't seem to work how I thought it would. Here it is:
// Prime.java
// Tests integers if prime
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class Prime extends JApplet
     implements ActionListener {
     JLabel numberLabel, resultLabel;
     JTextField numberField, resultField;
     public void init()
          Container container = getContentPane();
               container.setLayout( new FlowLayout() );
          numberLabel = new JLabel( "Enter Integer:" );
               container.add( numberLabel );
          numberField = new JTextField( 10 );
               container.add( numberField );
               numberField.addActionListener( this );
          resultLabel = new JLabel( "Prime?" );
               container.add( resultLabel );
          resultField = new JTextField( 10 );
               resultField.setEditable( false );
               container.add( resultField );
     public void actionPerformed( ActionEvent e )
          String s = numberField.getText();
          if ( testInt( s ) == 0 )
               showStatus( "Not an Integer." );
          else {
               double n = Double.parseDouble( s );
               showStatus( "Calculating..." );
               if ( isPrime( n ) == 0 )
                    resultField.setText( "False" );
               else
                    resultField.setText( "True" );
               showStatus( "Done." );
     int isPrime( double n ) {
          if ( n == 1 )
               return 0;
          if ( n % 2 == 0 )
               if ( n == 2 )
                    return 1;
               else
                    return 0;
          for ( int i = 2; i <= Math.floor( Math.sqrt( n ) ); i++ )
               if ( n % i == 0 )
                    return 0;
          return 1;
     int testInt( String s ) {
          String numbers = "0123456789";
          int c = 0;
          for ( int i = 0; i < s.length(); i++ ) {
               for ( int n = 0; n < numbers.length(); n++ ) {
                    if ( numbers.substring( n, n+1 ) != s.substring( i, i+1 ) )                                   c++;
               if ( c == 10 )
                    return 0;
               c = 0;
          return 1;
}

Hey-
A quick way to check (if you're not tied to your testInt method) is this:
boolean testInt(String s) {
    boolean retVal = true; // assume we have a number
    try {
        int n = Integer.parseInt(s);
    catch (NumberFormatException nfe) {
        // this was not a number
        retVal = false;
    return retVal;
}Hope that helped
Lee

Similar Messages

  • Problem with checkbox and process

    Hallo,
    I have a checkbox on my page and now I want to create a process that runs when the checkbox is checked.
    What I want to do is: to ckeck wheather the checkbox is check and if this is then to set values.
    I don't know if it is right how I check the status of the checkbox. What I also don't really know how I can decide
    that all field I go through in the loop get the same value from the XYZ-collection. The value should be the last from
    the XYZ-collection.
    Thanks, Jade
    declare
    check integer:=0;
    change integer:=0;
    begin
    check:=:Px_Check;
    if (check <> 0) then change:=1; end if;
    if change = 1 then
    for i in 1..htmldb_application.g_f04.count
    loop
    htmldb_collection.update_member_attribute(p_collection_name=>'XYZ',
    p_seq=>i,
    p_attr_number=>5,
    p_attr_value=>???);
    end loop;
    end if;
    end;

    Hi,
    Taking the two issues separately....
    1 - When dealing with checkboxes, you have to bear in mind that the submit process will only return the values of those checkboxes that have been ticked into the f04 collection (assuming f04 is the column containing your checkboxes). In order to determine which ones they are, you need to get the value (which should be a row number if you've created the checkboxes by using the Row Selector option) and then use that to get to the values on the actual rows. Something like:
    DECLARE
    vITEM NUMBER;
    BEGIN
    FOR i IN 1..HTMLDB_APPLICATION.G_F04.COUNT
    LOOP
      vITEM := HTMLDB_APPLICATION.G_F04(i);
    END LOOP;
    END;Then, within the loop, you can use vITEM as the row number. So, if the user ticked items 1, 4 and 6. G_F04(1) would contain 1, G_F04(2) would contain 4 and G_F04(3) would contain 6. Therefore, for you update statement, you can use vITEM for the sequence number of the item to update.
    2 - When dealing with collections, if you want to get to the last item in the collection, you can get the member count and use that to get to the member:
    DECLARE
    vCOUNT NUMBER;
    vDATA NUMBER;
    BEGIN
    vCOUNT := HTMLDB_COLLECTION.COLLECTION_MEMBER_COUNT ('XYZ');
    SELECT c005 INTO vDATA FROM HTMLDB_COLLECTIONS WHERE COLLECTION_NAME = 'XYZ';
    END;That should get the c005 value for the last item and store it in vDATA. You can then update the ticked items with this value.
    Andy

  • ComboBox hell

    I am trying to write code that will check whether the date entered by the user is valid. The following code works but only with the first month chosen e.g. if the user selects 31 Feburary the correct Dialog box will be displayed. I would like it so that if the user selects another month and an invalid date e.g. 30 April the correct dioalg box will appear to warn the user. The problem is that the month doesn't change it always stays on the month, in the above example Feburary. I have tried to create a new String but it doesn't seem to change any thing. Here are the relevent snipets of the code
    private Integer selectedDay;
    String selectedMonth;
    //Report start day combo box settings
    startDay = new JComboBox(days);
    startDay.setPreferredSize(new Dimension(55, 30));
    startDay.setFont(comboText);
    panel.add(startDay);
    layout.putConstraint(SpringLayout.WEST, startDay,200, SpringLayout.WEST, panel);
    layout.putConstraint(SpringLayout.NORTH, startDay, 95, SpringLayout.NORTH, panel);
    startDay.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent evt) {
    startDayActionEvent(evt);
    //Report start month combo box setttings
    startMonth = new JComboBox(months);
    startMonth.setPreferredSize(new Dimension(100, 30));
    startMonth.setFont(comboText);
    panel.add(startMonth);
    layout.putConstraint(SpringLayout.WEST,startMonth,255, SpringLayout.WEST, panel);
    layout.putConstraint(SpringLayout.NORTH, startMonth,95, SpringLayout.NORTH, panel);
    startMonth.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent evt) {
    startMonthActionEvent(evt);
    private String startDayActionEvent(ActionEvent evt){
    selectedDay = new Integer(dayn);
    JComboBox cb = (JComboBox)evt.getSource();
    selectedDay = (Integer)cb.getSelectedItem();
    if(selectedMonth != null){
    checkDays.check(selectedDay, selectedMonth, cb);
    else if (selectedMonth == null);
    return null;
    private void startMonthActionEvent(ActionEvent evt){
    JComboBox cb = (JComboBox)evt.getSource();
    selectedMonth = (String) cb.getSelectedItem();
    selectedMonth = checkDays.check(selectedDay, selectedMonth, cb);
    selectedMonth = new String(selectedMonth);
    //check mehtod in class Days
    public String check(Integer days, String month, JComboBox cb){int theDay = days.intValue();
             if((theDay > 28) && (month.equals("Feburary"))){
                   JOptionPane.showMessageDialog(null, "Invalid date.\nThere are only 28 days in Feburary");
                   cb.setSelectedIndex(27);
                   return null;
         else if((theDay > 30 ) && (month.equals("April"))){
         JOptionPane.showMessageDialog(null, "Invalid date.\nThere are only 30 days in April");
         cb.setSelectedIndex(29);
         return null;
         else if((theDay > 30 ) && (month.equals("June"))){
         JOptionPane.showMessageDialog(null, "Invalid date.\nThere are only 30 days in June");
         cb.setSelectedIndex(29);
         return null;
         else if((theDay > 30 ) && (month.equals("September"))){
         JOptionPane.showMessageDialog(null, "Invalid date.\nThere are only 30 days in September");
         cb.setSelectedIndex(29);
         return null;
         else if((theDay > 30 ) && (month.equals("November"))){
         JOptionPane.showMessageDialog(null, "Invalid date.\nThere are only 30 days in November");
         cb.setSelectedIndex(29);
         return null;
         else;
         return null;
         }

    I took a break, came back and realised my mistake. Thanks anyway.

  • Displaying Hex

    I want to print each byte of a byte [ ] as hex to the screen. Is there a method to do this without a manual conversion?

    Check Integer.toHexString(). If you want to show 160 as A0 and not as
    -60, be careful to mask the bytes. If you want a 15 to be 0F, not just F, you also need to take care of it.

  • RE:  Set Table Column Class Type

    Hi, there,
    Right now I try to set column class type and in this way my table sort class can check integer column and sort like interger not string (1,3,20 not 1,20,3).
    My problem is there is no setColumnClass method in AbstractTableModel.
    How can I do it??
    Thank you very much!!
    Xin

    There probably is a better solution.
    But I overloaded the getColumnClass(int ColumnIndex) function in the Table Model and return different classes depending on the Column selected...
    javax.swing.table.DefaultTableModel model =
    new javax.swing.table.DefaultTableModel(){
    public Class getColumnClass(int columnIndex)
    if(columnIndex == 6) //or whatever column you Choose
    return Integer.class;
    if(columnIndex == 3)
    return Integer.class;
    else
    return String.class;
    TableSorter sorter = new TableSorter(model);
    javax.swing.JTable table = new javax.swing.JTable(sorter);
    I hope this helps...

  • Any function to check the input value is integer?

    May I know if there's any function to check the input value is integer in Form 4.5?
    Thanks.

    just to add :) - (couldn't resist) :
    create or replace function is_integer ( p_number in varchar2 ) return boolean is
      v_return boolean := true;
      v_number number;
    begin
      v_number := p_number;
      if v_number != trunc(v_number) then
        v_return := false;
      end if;
      return v_return;
    exception
      when others then
        v_return := false;
        return v_return;
    end;
    begin
      if not is_integer(1.1) then
        dbms_output.put_line('is not');
      end if;
      if is_integer(1) then
        dbms_output.put_line('is');
      end if;
      if not is_integer('a') then
        dbms_output.put_line('is not');
      end if;
    end;

  • Checking input as Integer

    HI,
    can any body tell me that how can i check that an input form a jsp(page1) is number or not ?
    page1.jsp
    <form method = "POST" action = "page2.jsp">
    input type = "text" name = "number"
    input type = "submi"t value = "submit"
    </form>
    page2.jsp
    Now here i want to check that the input is integer or not
    How can i do that
    thanks

    Well you have it as a string right?
    String enteredValue = request.getParameter("number");
    // Is the value there?
    if (enteredValue == null){
      // no value entered.  error?
    else {
      // check if it is an actual number
      Integer enteredNumber = null;
      try{
        enteredNumber = Integer.valueOf(enteredValue);
      catch(NumberFormatException e){
        // not a valid integer
    }

  • Check length on a integer variable

    I have a declared
    int IntLength=1234;how can i check the length on this, how many letters there are?
    you can use .length on string variables, but cant find out how do make it work on a integer.
    sincerely h

    as the previous poster said... maybe something like...
    int i = 1234;
    String s = ""+i;
    System.out.println( "length = " + s.length() );or the illegible version
    System.out.println( "length = " + ((""+1234).length()) );

  • How to check the integer value with Date Column

    Hi Friends,
    I have a filter called 'Days'. I need to show the data based on the Days filter (Example : 2 Days).
    Example Query:
    Select * from Tb1
    Where EndDate(Value as '03/05/2013' > Days ( value as 2)
    How to handle the above scenario.
    Thanks in Advance....
    Regards,
    LuckyAbdul

    what meanings does it make. how can you compare a date to day count. Or is the inetger value an offset ie say 2 days from today etc?
    If yes you can use like below illlustration
    DECLARE @DayOffset int
    SET @DayOffset = 2
    SELECT *
    FROM TAble
    WHERE ENdDate >= DATEADD(dd,DATEDIFF(dd,0,GETDATE()),@DayOffset+1)
    refer
    http://visakhm.blogspot.in/2010/01/some-quick-tips-for-date-formating.html
    Please clarify with an example what you're expecting if its different from the above.
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Check for data in table

    So i have a table with one column:
    SUMA_LEI
    LEI
    I have a form made for this table. My purpose is to have just on row for this table, so when the user gets to the form page of this table, it gets an error like: "delete previous value, then insert new one". For this I need to make a pl/sql process that checks if there is a row inserted in the table and if that is the case, then I get an error, if not, im allowed to continue on that page.
    I need some help as soon as possible if you can please help me. I know that I need some "if clause", but beyond that I don't know how to do it

    A possible solution is create a materialized view and then a check constraint on the materialized view: this should work in a multiuser environment.
    Example:
    SQL> drop table t;
    Table supprimee.
    SQL>
    SQL> create table t (
      2  x integer,
      3  y varchar2(10)
      4  );
    Table creee.
    SQL>
    SQL> CREATE MATERIALIZED VIEW LOG on t
      2  WITH ROWID (x, y)
      3  including new values;
    Journal de vue materialisee cree.
    SQL>
    SQL> CREATE MATERIALIZED VIEW t_mv
      2  REFRESH FAST ON COMMIT AS
      3  SELECT count(*) cnt
      4  FROM t;
    Vue materialisee creee.
    SQL>
    SQL> ALTER TABLE t_mv
      2  ADD CONSTRAINT chk check(cnt<=1);
    Table modifiee.
    SQL>
    SQL> insert into t values(1,'Ok');
    1 ligne creee.
    SQL> commit;
    Validation effectuee.
    SQL>
    SQL> insert into t values(2,'KO');
    1 ligne creee.
    SQL> commit;
    commit
    ERREUR a la ligne 1 :
    ORA-12008: erreur dans le chemin de regeneration de la vue materialisee
    ORA-02290: violation de contraintes (TEST.CHK) de verification

  • Update kernel and recieved a "Machine check error"

    I was on Vacation this last weekend but was finally able to update today. Upgrade seemd fine, issued reboot command and instead of my normal reboot I was greeted with "machine check error" flashing in my upper left hand corner. Syslinux never came up. I powered off manually and pulled the battery, subsequent reboot went off without a hitch.
    pacman log
    [2013-09-09 18:12] [PACMAN] Running 'pacman -Syyu'
    [2013-09-09 18:12] [PACMAN] synchronizing package lists
    [2013-09-09 18:12] [PACMAN] starting full system upgrade
    [2013-09-09 18:13] [PACMAN] upgraded curl (7.32.0-1 -> 7.32.0-2)
    [2013-09-09 18:13] [ALPM-SCRIPTLET] >>> Updating module dependencies. Please wait ...
    [2013-09-09 18:13] [ALPM-SCRIPTLET] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux-ck.preset: 'default'
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux-ck -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-ck.img
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Starting build: 3.11.0-1-ck
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [autodetect]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux-ck.img
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Image generation successful
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux-ck.preset: 'fallback'
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux-ck -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-ck-fallback.img -S autodetect
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Starting build: 3.11.0-1-ck
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: bfa
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: aic94xx
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: smsmdtv
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux-ck-fallback.img
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Image generation successful
    [2013-09-09 18:13] [ALPM-SCRIPTLET]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] >>> Thank you for using http://repo-ck.com/ for your linux-ck package needs.
    [2013-09-09 18:13] [ALPM-SCRIPTLET] >>> Note that the following CPU optimized packages are or could be available to you:
    [2013-09-09 18:13] [ALPM-SCRIPTLET] AMD : barcelona, bulldozer, kx, k10, piledriver
    [2013-09-09 18:13] [ALPM-SCRIPTLET] Intel : atom, core2, haswell, ivybridge, nehalem, p4, pentm, sandybridge, haswell
    [2013-09-09 18:13] [ALPM-SCRIPTLET]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] >>> Search via group name: pacman -Sg ck-ivybridge
    [2013-09-09 18:13] [ALPM-SCRIPTLET]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] >>> Post in the repo support thread if package group is unavailable for your architecture:
    [2013-09-09 18:13] [ALPM-SCRIPTLET] >>> https://bbs.archlinux.org/viewtopic.php?id=111715
    [2013-09-09 18:13] [PACMAN] upgraded linux-ck-sandybridge (3.10.10-1 -> 3.11-1)
    [2013-09-09 18:13] [PACMAN] upgraded linux-ck-sandybridge-headers (3.10.10-1 -> 3.11-1)
    [2013-09-09 18:13] [ALPM-SCRIPTLET] rmmod: ERROR: Module nvidia is not currently loaded
    [2013-09-09 18:13] [ALPM-SCRIPTLET] In order to use the new nvidia module, exit Xserver and unload it manually.
    [2013-09-09 18:13] [PACMAN] upgraded nvidia-ck (325.15-5 -> 325.15-6)
    [2013-09-09 18:13] [PACMAN] upgraded parallel (20130722-1 -> 20130822-1)
    [2013-09-09 18:13] [PACMAN] upgraded portaudio (19_20111121-1 -> 19_20111121-2)
    [2013-09-09 18:13] [PACMAN] upgraded weechat (0.4.1-2 -> 0.4.1-4)
    dmesg
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Linux version 3.11.0-1-ck (squishy@ease) (gcc version 4.8.1 20130725 (prerelease) (GCC) ) #1 SMP PREEMPT Mon Sep 9 08:00:27 EDT 2013
    [ 0.000000] Command line: initrd=/initramfs-linux-ck.img root=/dev/disk/by-uuid/0d909b36-6c1e-4652-abc6-5813297f38d5 rootflags=,relatime,data=ordered rootfstype=ext4 rw quiet vga=current elevator=noop BOOT_IMAGE=/vmlinuz-linux-ck
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009e7ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009e800-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000020200000-0x000000003fffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000401fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000040200000-0x00000000bac11fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bac12000-0x00000000bad8dfff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bad8e000-0x00000000bad9bfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bad9c000-0x00000000bad9dfff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bad9e000-0x00000000bad9ffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bada0000-0x00000000bade7fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bade8000-0x00000000baf2bfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000baf2c000-0x00000000baf91fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000baf92000-0x00000000baf97fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000baf98000-0x00000000bafe7fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bafe8000-0x00000000baffcfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000baffd000-0x00000000baffffff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000bb000000-0x00000000bf9fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff980000-0x00000000ffbfffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ffd80000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023fdfffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: SAMSUNG ELECTRONICS CO., LTD. RC512/RC512, BIOS 06VQ.M024.20110212.SSH 02/12/2011
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x23fe00 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-CFFFF write-protect
    [ 0.000000] D0000-E7FFF uncachable
    [ 0.000000] E8000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F80000000 write-back
    [ 0.000000] 1 base 080000000 mask FC0000000 write-back
    [ 0.000000] 2 base 0BC000000 mask FFC000000 uncachable
    [ 0.000000] 3 base 0BB000000 mask FFF000000 uncachable
    [ 0.000000] 4 base 100000000 mask F00000000 write-back
    [ 0.000000] 5 base 200000000 mask FC0000000 write-back
    [ 0.000000] 6 base 23FE00000 mask FFFE00000 uncachable
    [ 0.000000] 7 base 0FFC00000 mask FFFC00000 write-protect
    [ 0.000000] 8 disabled
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: last_pfn = 0xbaffd max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000fccd0-0x000fccdf] mapped at [ffff8800000fccd0]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576
    [ 0.000000] reserving inaccessible SNB gfx pages
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x01b0d000, 0x01b0dfff] PGTABLE
    [ 0.000000] BRK [0x01b0e000, 0x01b0efff] PGTABLE
    [ 0.000000] BRK [0x01b0f000, 0x01b0ffff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x23fc00000-0x23fdfffff]
    [ 0.000000] [mem 0x23fc00000-0x23fdfffff] page 2M
    [ 0.000000] BRK [0x01b10000, 0x01b10fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x23c000000-0x23fbfffff]
    [ 0.000000] [mem 0x23c000000-0x23fbfffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x200000000-0x23bffffff]
    [ 0.000000] [mem 0x200000000-0x23bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x1fffffff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x1fffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x20200000-0x3fffffff]
    [ 0.000000] [mem 0x20200000-0x3fffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x40200000-0xbac11fff]
    [ 0.000000] [mem 0x40200000-0xbabfffff] page 2M
    [ 0.000000] [mem 0xbac00000-0xbac11fff] page 4k
    [ 0.000000] BRK [0x01b11000, 0x01b11fff] PGTABLE
    [ 0.000000] BRK [0x01b12000, 0x01b12fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0xbad8e000-0xbad9bfff]
    [ 0.000000] [mem 0xbad8e000-0xbad9bfff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xbad9e000-0xbad9ffff]
    [ 0.000000] [mem 0xbad9e000-0xbad9ffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xbade8000-0xbaf2bfff]
    [ 0.000000] [mem 0xbade8000-0xbaf2bfff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xbaf92000-0xbaf97fff]
    [ 0.000000] [mem 0xbaf92000-0xbaf97fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xbafe8000-0xbaffcfff]
    [ 0.000000] [mem 0xbafe8000-0xbaffcfff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x1ffffffff]
    [ 0.000000] [mem 0x100000000-0x1ffffffff] page 2M
    [ 0.000000] RAMDISK: [mem 0x1fd18000-0x1fffefff]
    [ 0.000000] ACPI: RSDP 00000000000f0430 00024 (v02 SECCSD)
    [ 0.000000] ACPI: XSDT 00000000baffee18 0006C (v01 SECCSD LH43STAR 06222004 MSFT 00010013)
    [ 0.000000] ACPI: FACP 00000000baf9bd98 000F4 (v04 SECCSD LH43STAR 06222004 MSFT 00010013)
    [ 0.000000] ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! (20130517/tbfadt-395)
    [ 0.000000] ACPI BIOS Warning (bug): 32/64X FACS address mismatch in FADT - 0xBAFE5E40/0x00000000BAFE5D40, using 32 (20130517/tbfadt-522)
    [ 0.000000] ACPI: DSDT 00000000baf84018 0866F (v01 SECCSD LH43STAR 00000000 INTL 20091112)
    [ 0.000000] ACPI: FACS 00000000bafe5e40 00040
    [ 0.000000] ACPI: APIC 00000000baffdf18 000CC (v02 SECCSD LH43STAR 06222004 MSFT 00010013)
    [ 0.000000] ACPI: HPET 00000000bafe6d18 00038 (v01 SECCSD LH43STAR 06222004 AMI. 00000003)
    [ 0.000000] ACPI: SLIC 00000000baf9cc18 00176 (v01 SECCSD LH43STAR 06222004 AMI 00010013)
    [ 0.000000] ACPI: MCFG 00000000bafe6c98 0003C (v01 SECCSD LH43STAR 06222004 MSFT 00000097)
    [ 0.000000] ACPI: SSDT 00000000baf91018 00A1D (v01 PmRef Cpu0Ist 00003000 INTL 20091112)
    [ 0.000000] ACPI: SSDT 00000000baf90018 00996 (v01 PmRef CpuPm 00003000 INTL 20091112)
    [ 0.000000] ACPI: SSDT 00000000baf9a018 00D80 (v01 SgRef SgTabl 00001000 INTL 20091112)
    [ 0.000000] ACPI: SSDT 00000000baf98018 011E8 (v01 OptRef OptTabl 00001000 INTL 20091112)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] [ffffea0000000000-ffffea0008ffffff] PMD -> [ffff880237400000-ffff88023f3fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x23fdfffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0009dfff]
    [ 0.000000] node 0: [mem 0x00100000-0x1fffffff]
    [ 0.000000] node 0: [mem 0x20200000-0x3fffffff]
    [ 0.000000] node 0: [mem 0x40200000-0xbac11fff]
    [ 0.000000] node 0: [mem 0xbad8e000-0xbad9bfff]
    [ 0.000000] node 0: [mem 0xbad9e000-0xbad9ffff]
    [ 0.000000] node 0: [mem 0xbade8000-0xbaf2bfff]
    [ 0.000000] node 0: [mem 0xbaf92000-0xbaf97fff]
    [ 0.000000] node 0: [mem 0xbafe8000-0xbaffcfff]
    [ 0.000000] node 0: [mem 0x100000000-0x23fdfffff]
    [ 0.000000] On node 0 totalpages: 2074398
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 157 pages reserved
    [ 0.000000] DMA zone: 3997 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 11879 pages used for memmap
    [ 0.000000] DMA32 zone: 760193 pages, LIFO batch:31
    [ 0.000000] Normal zone: 20472 pages used for memmap
    [ 0.000000] Normal zone: 1310208 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x05] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x08] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x09] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x0a] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x0b] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x0c] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x0d] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x0e] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x10] lapic_id[0x0f] disabled)
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 16 CPUs, 8 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x40000000-0x401fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbac12000-0xbad8dfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbad9c000-0xbad9dfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbada0000-0xbade7fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbaf2c000-0xbaf91fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbaf98000-0xbafe7fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbaffd000-0xbaffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbb000000-0xbf9fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbfa00000-0xf7ffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed0ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed13fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed14000-0xfed17fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed18000-0xfed19fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xff97ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xff980000-0xffbfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffd7ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xffd80000-0xffffffff]
    [ 0.000000] e820: [mem 0xbfa00000-0xf7ffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:16 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88023fa00000 s84096 r8192 d22400 u131072
    [ 0.000000] pcpu-alloc: s84096 r8192 d22400 u131072 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2041826
    [ 0.000000] Kernel command line: initrd=/initramfs-linux-ck.img root=/dev/disk/by-uuid/0d909b36-6c1e-4652-abc6-5813297f38d5 rootflags=,relatime,data=ordered rootfstype=ext4 rw quiet vga=current elevator=noop BOOT_IMAGE=/vmlinuz-linux-ck
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 8071168K/8297592K available (4912K kernel code, 725K rwdata, 1676K rodata, 1104K init, 1260K bss, 226424K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] NR_IRQS:4352 nr_irqs:1192 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 33554432 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.003333] tsc: Detected 1995.468 MHz processor
    [ 0.000004] Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.22 BogoMIPS (lpj=6651560)
    [ 0.000007] pid_max: default: 32768 minimum: 301
    [ 0.000051] Security Framework initialized
    [ 0.000058] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000069] Mount-cache hash table entries: 256
    [ 0.000253] Initializing cgroup subsys memory
    [ 0.000263] Initializing cgroup subsys devices
    [ 0.000265] Initializing cgroup subsys freezer
    [ 0.000267] Initializing cgroup subsys net_cls
    [ 0.000268] Initializing cgroup subsys blkio
    [ 0.000270] Initializing cgroup subsys bfqio
    [ 0.000294] CPU: Physical Processor ID: 0
    [ 0.000295] CPU: Processor Core ID: 0
    [ 0.000300] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.000303] mce: CPU supports 9 MCE banks
    [ 0.000318] CPU0: Thermal monitoring enabled (TM1)
    [ 0.000330] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
    tlb_flushall_shift: 5
    [ 0.000467] Freeing SMP alternatives memory: 20K (ffffffff819cb000 - ffffffff819d0000)
    [ 0.001938] ACPI: Core revision 20130517
    [ 0.008675] ACPI: All ACPI Tables successfully acquired
    [ 0.016462] ftrace: allocating 19779 entries in 78 pages
    [ 0.027603] Switched APIC routing to physical flat.
    [ 0.028009] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.061003] smpboot: CPU0: Intel(R) Core(TM) i7-2630QM CPU @ 2.00GHz (fam: 06, model: 2a, stepping: 07)
    [ 0.061011] TSC deadline timer enabled
    [ 0.061026] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
    [ 0.061034] perf_event_intel: PEBS disabled due to CPU errata, please upgrade microcode
    [ 0.061036] ... version: 3
    [ 0.061037] ... bit width: 48
    [ 0.061038] ... generic registers: 4
    [ 0.061040] ... value mask: 0000ffffffffffff
    [ 0.061041] ... max period: 0000ffffffffffff
    [ 0.061042] ... fixed-purpose events: 3
    [ 0.061043] ... event mask: 000000070000000f
    [ 0.084503] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.071127] smpboot: Booting Node 0, Processors #1 #2 #3 #4 #5 #6 #7
    [ 0.164288] Brought up 8 CPUs
    [ 0.164293] smpboot: Total of 8 processors activated (31940.80 BogoMIPS)
    [ 0.172724] devtmpfs: initialized
    [ 0.174171] PM: Registering ACPI NVS region [mem 0xbaf2c000-0xbaf91fff] (417792 bytes)
    [ 0.174179] PM: Registering ACPI NVS region [mem 0xbaf98000-0xbafe7fff] (327680 bytes)
    [ 0.175128] RTC time: 1:14:39, date: 09/10/13
    [ 0.175188] NET: Registered protocol family 16
    [ 0.175350] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.175353] ACPI: bus type PCI registered
    [ 0.175355] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.175429] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.175432] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    [ 0.185354] PCI: Using configuration type 1 for base access
    [ 0.186084] bio: create slab <bio-0> at 0
    [ 0.186285] ACPI: Added _OSI(Module Device)
    [ 0.186287] ACPI: Added _OSI(Processor Device)
    [ 0.186289] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.186291] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.187915] ACPI: EC: Look up EC in DSDT
    [ 0.189513] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.239236] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.241431] ACPI: SSDT 00000000badba718 00661 (v01 PmRef Cpu0Cst 00003001 INTL 20091112)
    [ 0.241847] ACPI: Dynamic OEM Table Load:
    [ 0.241850] ACPI: SSDT (null) 00661 (v01 PmRef Cpu0Cst 00003001 INTL 20091112)
    [ 0.252823] ACPI: SSDT 00000000badbba98 00303 (v01 PmRef ApIst 00003000 INTL 20091112)
    [ 0.253271] ACPI: Dynamic OEM Table Load:
    [ 0.253273] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20091112)
    [ 0.266019] ACPI: SSDT 00000000badb9d98 00119 (v01 PmRef ApCst 00003000 INTL 20091112)
    [ 0.266428] ACPI: Dynamic OEM Table Load:
    [ 0.266430] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20091112)
    [ 1.207371] ACPI: Interpreter enabled
    [ 1.207386] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130517/hwxface-571)
    [ 1.207404] ACPI: (supports S0 S1 S3 S4 S5)
    [ 1.207406] ACPI: Using IOAPIC for interrupt routing
    [ 1.207438] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 1.207580] ACPI: No dock devices found.
    [ 1.221274] ACPI: Power Resource [FN00] (off)
    [ 1.221369] ACPI: Power Resource [FN01] (off)
    [ 1.222064] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    [ 1.222103] \_SB_.PCI0:_OSC invalid UUID
    [ 1.222105] _OSC request data:1 8 0
    [ 1.222659] PCI host bridge to bus 0000:00
    [ 1.222663] pci_bus 0000:00: root bus resource [bus 00-3e]
    [ 1.222665] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 1.222668] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 1.222670] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 1.222672] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 1.222674] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 1.222676] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 1.222678] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 1.222680] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    [ 1.222682] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    [ 1.222684] pci_bus 0000:00: root bus resource [mem 0xbfa00000-0xfeafffff]
    [ 1.222686] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
    [ 1.222695] pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
    [ 1.222797] pci 0000:00:01.0: [8086:0101] type 01 class 0x060400
    [ 1.222833] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 1.222921] pci 0000:00:02.0: [8086:0116] type 00 class 0x030000
    [ 1.222933] pci 0000:00:02.0: reg 0x10: [mem 0xf5400000-0xf57fffff 64bit]
    [ 1.222941] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff 64bit pref]
    [ 1.222951] pci 0000:00:02.0: reg 0x20: [io 0xe000-0xe03f]
    [ 1.223070] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
    [ 1.223097] pci 0000:00:16.0: reg 0x10: [mem 0xf760a000-0xf760a00f 64bit]
    [ 1.223179] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 1.223280] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
    [ 1.223304] pci 0000:00:1a.0: reg 0x10: [mem 0xf7608000-0xf76083ff]
    [ 1.223402] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 1.223495] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
    [ 1.223514] pci 0000:00:1b.0: reg 0x10: [mem 0xf7600000-0xf7603fff 64bit]
    [ 1.223588] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 1.223678] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
    [ 1.223764] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 1.223823] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 1.223866] pci 0000:00:1c.3: [8086:1c16] type 01 class 0x060400
    [ 1.223952] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 1.224010] pci 0000:00:1c.3: System wakeup disabled by ACPI
    [ 1.224050] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
    [ 1.224135] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 1.224238] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
    [ 1.224262] pci 0000:00:1d.0: reg 0x10: [mem 0xf7607000-0xf76073ff]
    [ 1.224360] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 1.224451] pci 0000:00:1f.0: [8086:1c49] type 00 class 0x060100
    [ 1.224646] pci 0000:00:1f.2: [8086:1c03] type 00 class 0x010601
    [ 1.224668] pci 0000:00:1f.2: reg 0x10: [io 0xe0b0-0xe0b7]
    [ 1.224677] pci 0000:00:1f.2: reg 0x14: [io 0xe0a0-0xe0a3]
    [ 1.224686] pci 0000:00:1f.2: reg 0x18: [io 0xe090-0xe097]
    [ 1.224695] pci 0000:00:1f.2: reg 0x1c: [io 0xe080-0xe083]
    [ 1.224704] pci 0000:00:1f.2: reg 0x20: [io 0xe060-0xe07f]
    [ 1.224714] pci 0000:00:1f.2: reg 0x24: [mem 0xf7606000-0xf76067ff]
    [ 1.224763] pci 0000:00:1f.2: PME# supported from D3hot
    [ 1.224847] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
    [ 1.224866] pci 0000:00:1f.3: reg 0x10: [mem 0xf7605000-0xf76050ff 64bit]
    [ 1.224889] pci 0000:00:1f.3: reg 0x20: [io 0xe040-0xe05f]
    [ 1.225036] pci 0000:01:00.0: [10de:0dec] type 00 class 0x030200
    [ 1.225046] pci 0000:01:00.0: reg 0x10: [mem 0xf4000000-0xf4ffffff]
    [ 1.225055] pci 0000:01:00.0: reg 0x14: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 1.225065] pci 0000:01:00.0: reg 0x1c: [mem 0xe0000000-0xe1ffffff 64bit pref]
    [ 1.225072] pci 0000:01:00.0: reg 0x24: [io 0xd000-0xd07f]
    [ 1.225079] pci 0000:01:00.0: reg 0x30: [mem 0xf5000000-0xf507ffff pref]
    [ 1.232978] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 1.232986] pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    [ 1.232994] pci 0000:00:01.0: bridge window [mem 0xf4000000-0xf50fffff]
    [ 1.233003] pci 0000:00:01.0: bridge window [mem 0xd0000000-0xe1ffffff 64bit pref]
    [ 1.233136] pci 0000:02:00.0: [8086:0087] type 00 class 0x028000
    [ 1.233183] pci 0000:02:00.0: reg 0x10: [mem 0xf6c00000-0xf6c01fff 64bit]
    [ 1.233407] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
    [ 1.243003] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 1.243013] pci 0000:00:1c.0: bridge window [io 0xc000-0xcfff]
    [ 1.243022] pci 0000:00:1c.0: bridge window [mem 0xf6c00000-0xf75fffff]
    [ 1.243037] pci 0000:00:1c.0: bridge window [mem 0xe3700000-0xe40fffff 64bit pref]
    [ 1.243204] pci 0000:03:00.0: [10ec:8168] type 00 class 0x020000
    [ 1.243274] pci 0000:03:00.0: reg 0x10: [io 0xb000-0xb0ff]
    [ 1.243396] pci 0000:03:00.0: reg 0x18: [mem 0xe2c04000-0xe2c04fff 64bit pref]
    [ 1.243467] pci 0000:03:00.0: reg 0x20: [mem 0xe2c00000-0xe2c03fff 64bit pref]
    [ 1.243797] pci 0000:03:00.0: supports D1 D2
    [ 1.243799] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 1.253026] pci 0000:00:1c.3: PCI bridge to [bus 03]
    [ 1.253036] pci 0000:00:1c.3: bridge window [io 0xb000-0xbfff]
    [ 1.253045] pci 0000:00:1c.3: bridge window [mem 0xf6200000-0xf6bfffff]
    [ 1.253060] pci 0000:00:1c.3: bridge window [mem 0xe2c00000-0xe35fffff 64bit pref]
    [ 1.253163] pci 0000:04:00.0: [1033:0194] type 00 class 0x0c0330
    [ 1.253193] pci 0000:04:00.0: reg 0x10: [mem 0xf5800000-0xf5801fff 64bit]
    [ 1.253333] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
    [ 1.263010] pci 0000:00:1c.4: PCI bridge to [bus 04]
    [ 1.263020] pci 0000:00:1c.4: bridge window [io 0xa000-0xafff]
    [ 1.263029] pci 0000:00:1c.4: bridge window [mem 0xf5800000-0xf61fffff]
    [ 1.263043] pci 0000:00:1c.4: bridge window [mem 0xe2100000-0xe2afffff 64bit pref]
    [ 1.263086] pci_bus 0000:00: on NUMA node 0
    [ 1.263130] \_SB_.PCI0:_OSC invalid UUID
    [ 1.263131] _OSC request data:1 1f 0
    [ 1.263135] acpi PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    [ 1.263137] acpi PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
    [ 1.263659] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
    [ 1.263721] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 *10 11 12 14 15)
    [ 1.263779] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 10 *11 12 14 15)
    [ 1.263838] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 *5 6 10 11 12 14 15)
    [ 1.263896] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 1.263956] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 1.264015] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 *3 4 5 6 10 11 12 14 15)
    [ 1.264073] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 *4 5 6 10 11 12 14 15)
    [ 1.264724] ACPI: Enabled 6 GPEs in block 00 to 3F
    [ 1.264732] ACPI: \_SB_.PCI0: notify handler is installed
    [ 1.264797] Found 1 acpi root devices
    [ 1.264842] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    [ 1.264936] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 1.264940] vgaarb: loaded
    [ 1.264941] vgaarb: bridge control possible 0000:00:02.0
    [ 1.264981] PCI: Using ACPI for IRQ routing
    [ 1.266623] PCI: pci_cache_line_size set to 64 bytes
    [ 1.266695] e820: reserve RAM buffer [mem 0x0009e800-0x0009ffff]
    [ 1.266697] e820: reserve RAM buffer [mem 0xbac12000-0xbbffffff]
    [ 1.266700] e820: reserve RAM buffer [mem 0xbad9c000-0xbbffffff]
    [ 1.266702] e820: reserve RAM buffer [mem 0xbada0000-0xbbffffff]
    [ 1.266705] e820: reserve RAM buffer [mem 0xbaf2c000-0xbbffffff]
    [ 1.266706] e820: reserve RAM buffer [mem 0xbaf98000-0xbbffffff]
    [ 1.266708] e820: reserve RAM buffer [mem 0xbaffd000-0xbbffffff]
    [ 1.266710] e820: reserve RAM buffer [mem 0x23fe00000-0x23fffffff]
    [ 1.266803] NetLabel: Initializing
    [ 1.266805] NetLabel: domain hash size = 128
    [ 1.266806] NetLabel: protocols = UNLABELED CIPSOv4
    [ 1.266821] NetLabel: unlabeled traffic allowed by default
    [ 1.266851] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 1.266857] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 1.268893] Switched to clocksource hpet
    [ 1.273524] pnp: PnP ACPI init
    [ 1.273541] ACPI: bus type PNP registered
    [ 1.273643] system 00:00: [io 0x06a4] has been reserved
    [ 1.273646] system 00:00: [io 0x06a0] has been reserved
    [ 1.273650] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 1.273660] pnp 00:01: [dma 4]
    [ 1.273681] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 1.273705] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
    [ 1.273820] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 1.273850] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 1.273897] system 00:05: [io 0x0680-0x069f] has been reserved
    [ 1.273900] system 00:05: [io 0x1000-0x100f] has been reserved
    [ 1.273902] system 00:05: [io 0xffff] has been reserved
    [ 1.273904] system 00:05: [io 0xffff] has been reserved
    [ 1.273907] system 00:05: [io 0x0400-0x0453] could not be reserved
    [ 1.273909] system 00:05: [io 0x0458-0x047f] has been reserved
    [ 1.273911] system 00:05: [io 0x0500-0x057f] has been reserved
    [ 1.273913] system 00:05: [io 0x0a00-0x0a03] has been reserved
    [ 1.273915] system 00:05: [io 0x164e-0x164f] has been reserved
    [ 1.273918] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 1.273966] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 1.274009] system 00:07: [io 0x0454-0x0457] has been reserved
    [ 1.274013] system 00:07: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 1.274065] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 1.274118] pnp 00:09: Plug and Play ACPI device, IDs ETD0b00 SYN0002 PNP0f13 (active)
    [ 1.274348] system 00:0a: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 1.274351] system 00:0a: [mem 0xfed10000-0xfed17fff] could not be reserved
    [ 1.274353] system 00:0a: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 1.274355] system 00:0a: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 1.274358] system 00:0a: [mem 0xf8000000-0xfbffffff] has been reserved
    [ 1.274360] system 00:0a: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 1.274362] system 00:0a: [mem 0xfed90000-0xfed93fff] has been reserved
    [ 1.274364] system 00:0a: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 1.274367] system 00:0a: [mem 0xff000000-0xffffffff] could not be reserved
    [ 1.274369] system 00:0a: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 1.274372] system 00:0a: [mem 0xbfa00000-0xbfa00fff] has been reserved
    [ 1.274375] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 1.274919] system 00:0b: [mem 0x20000000-0x201fffff] has been reserved
    [ 1.274921] system 00:0b: [mem 0x40000000-0x401fffff] has been reserved
    [ 1.274924] system 00:0b: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 1.274936] pnp: PnP ACPI: found 12 devices
    [ 1.274937] ACPI: bus type PNP unregistered
    [ 1.281089] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 1.281093] pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    [ 1.281097] pci 0000:00:01.0: bridge window [mem 0xf4000000-0xf50fffff]
    [ 1.281100] pci 0000:00:01.0: bridge window [mem 0xd0000000-0xe1ffffff 64bit pref]
    [ 1.281104] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 1.281108] pci 0000:00:1c.0: bridge window [io 0xc000-0xcfff]
    [ 1.281114] pci 0000:00:1c.0: bridge window [mem 0xf6c00000-0xf75fffff]
    [ 1.281118] pci 0000:00:1c.0: bridge window [mem 0xe3700000-0xe40fffff 64bit pref]
    [ 1.281125] pci 0000:00:1c.3: PCI bridge to [bus 03]
    [ 1.281129] pci 0000:00:1c.3: bridge window [io 0xb000-0xbfff]
    [ 1.281135] pci 0000:00:1c.3: bridge window [mem 0xf6200000-0xf6bfffff]
    [ 1.281140] pci 0000:00:1c.3: bridge window [mem 0xe2c00000-0xe35fffff 64bit pref]
    [ 1.281147] pci 0000:00:1c.4: PCI bridge to [bus 04]
    [ 1.281150] pci 0000:00:1c.4: bridge window [io 0xa000-0xafff]
    [ 1.281156] pci 0000:00:1c.4: bridge window [mem 0xf5800000-0xf61fffff]
    [ 1.281161] pci 0000:00:1c.4: bridge window [mem 0xe2100000-0xe2afffff 64bit pref]
    [ 1.281460] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 1.281462] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 1.281464] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 1.281466] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
    [ 1.281468] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
    [ 1.281470] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
    [ 1.281472] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
    [ 1.281474] pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff]
    [ 1.281476] pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff]
    [ 1.281478] pci_bus 0000:00: resource 13 [mem 0xbfa00000-0xfeafffff]
    [ 1.281480] pci_bus 0000:00: resource 14 [mem 0xfed40000-0xfed44fff]
    [ 1.281482] pci_bus 0000:01: resource 0 [io 0xd000-0xdfff]
    [ 1.281484] pci_bus 0000:01: resource 1 [mem 0xf4000000-0xf50fffff]
    [ 1.281486] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xe1ffffff 64bit pref]
    [ 1.281488] pci_bus 0000:02: resource 0 [io 0xc000-0xcfff]
    [ 1.281490] pci_bus 0000:02: resource 1 [mem 0xf6c00000-0xf75fffff]
    [ 1.281492] pci_bus 0000:02: resource 2 [mem 0xe3700000-0xe40fffff 64bit pref]
    [ 1.281494] pci_bus 0000:03: resource 0 [io 0xb000-0xbfff]
    [ 1.281496] pci_bus 0000:03: resource 1 [mem 0xf6200000-0xf6bfffff]
    [ 1.281498] pci_bus 0000:03: resource 2 [mem 0xe2c00000-0xe35fffff 64bit pref]
    [ 1.281500] pci_bus 0000:04: resource 0 [io 0xa000-0xafff]
    [ 1.281502] pci_bus 0000:04: resource 1 [mem 0xf5800000-0xf61fffff]
    [ 1.281504] pci_bus 0000:04: resource 2 [mem 0xe2100000-0xe2afffff 64bit pref]
    [ 1.281541] NET: Registered protocol family 2
    [ 1.281696] TCP established hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 1.281865] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 1.282015] TCP: Hash tables configured (established 65536 bind 65536)
    [ 1.282036] TCP: reno registered
    [ 1.282039] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [ 1.282068] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [ 1.282163] NET: Registered protocol family 1
    [ 1.282176] pci 0000:00:02.0: Boot video device
    [ 1.529060] PCI: CLS 64 bytes, default 64
    [ 1.529098] Unpacking initramfs...
    [ 1.590479] Freeing initrd memory: 2972K (ffff88001fd18000 - ffff88001ffff000)
    [ 1.591336] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 1.591340] software IO TLB [mem 0xb6c12000-0xbac12000] (64MB) mapped at [ffff8800b6c12000-ffff8800bac11fff]
    [ 1.591697] Scanning for low memory corruption every 60 seconds
    [ 1.592068] audit: initializing netlink socket (disabled)
    [ 1.592079] type=2000 audit(1378775680.569:1): initialized
    [ 1.605419] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 1.606685] zbud: loaded
    [ 1.606816] VFS: Disk quotas dquot_6.5.2
    [ 1.606867] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 1.607049] msgmni has been set to 15769
    [ 1.607262] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 1.607320] io scheduler noop registered (default)
    [ 1.607324] io scheduler deadline registered
    [ 1.607360] io scheduler cfq registered
    [ 1.607365] io scheduler bfq registered
    [ 1.607452] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 1.607633] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 1.607648] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 1.607731] intel_idle: MWAIT substates: 0x21120
    [ 1.607733] intel_idle: v0.4 model 0x2A
    [ 1.607734] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 1.607793] GHES: HEST is not enabled!
    [ 1.607848] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 1.608292] Linux agpgart interface v0.103
    [ 1.608376] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PSM1] at 0x60,0x64 irq 1,12
    [ 1.611674] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 1.611689] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 1.611796] mousedev: PS/2 mouse device common for all mice
    [ 1.611968] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
    [ 1.611998] rtc_cmos 00:06: alarms up to one year, y3k, 242 bytes nvram, hpet irqs
    [ 1.612007] Intel P-state driver initializing.
    [ 1.612017] Intel pstate controlling: cpu 0
    [ 1.612032] Intel pstate controlling: cpu 1
    [ 1.612043] Intel pstate controlling: cpu 2
    [ 1.612054] Intel pstate controlling: cpu 3
    [ 1.612065] Intel pstate controlling: cpu 4
    [ 1.612076] Intel pstate controlling: cpu 5
    [ 1.612089] Intel pstate controlling: cpu 6
    [ 1.612100] Intel pstate controlling: cpu 7
    [ 1.612312] cpuidle: using governor ladder
    [ 1.612573] cpuidle: using governor menu
    [ 1.612636] drop_monitor: Initializing network drop monitor service
    [ 1.612712] TCP: cubic registered
    [ 1.612809] NET: Registered protocol family 10
    [ 1.612992] NET: Registered protocol family 17
    [ 1.613001] Key type dns_resolver registered
    [ 1.613275] PM: Hibernation image not present or could not be loaded.
    [ 1.613285] registered taskstats version 1
    [ 1.613900] Magic number: 13:40:205
    [ 1.613944] acpi device:2d: hash matches
    [ 1.613991] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.614015] rtc_cmos 00:06: setting system clock to 2013-09-10 01:14:41 UTC (1378775681)
    [ 1.614893] Freeing unused kernel memory: 1104K (ffffffff818b7000 - ffffffff819cb000)
    [ 1.614895] Write protecting the kernel read-only data: 8192k
    [ 1.619318] Freeing unused kernel memory: 1220K (ffff8800014cf000 - ffff880001600000)
    [ 1.620313] Freeing unused kernel memory: 372K (ffff8800017a3000 - ffff880001800000)
    [ 1.620314] BFS CPU scheduler v0.441 by Con Kolivas.
    [ 1.627488] systemd-udevd[77]: starting version 204
    [ 1.629471] SCSI subsystem initialized
    [ 1.630602] ACPI: bus type ATA registered
    [ 1.630697] libata version 3.00 loaded.
    [ 1.631357] ahci 0000:00:1f.2: version 3.0
    [ 1.631500] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
    [ 1.642171] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0WARNINGx5 impl SATA mode
    [ 1.642175] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst
    [ 1.642181] ahci 0000:00:1f.2: setting latency timer to 64
    [ 1.649744] scsi0 : ahciWARNING
    [ 1.650013] scsi1 : ahci
    [ 1.650141] scsi2 : ahci
    [ 1.650269] scsi3 : ahci
    [ 1.650401] scsi4 : ahci
    [ 1.650493] scsi5 : ahci
    [ 1.650686] ata1: SATA max UDMA/133 abar m2048@0xf7606000 port 0xf7606100 irq 41
    [ 1.650690] ata2: DUMMY
    [ 1.650694] ata3: SATA max UDMA/133 abar m2048@0xf7606000 port 0xf7606200 irq 41
    [ 1.650696] ata4: DUMMY
    [ 1.650698] ata5: DUMMY
    [ 1.650700] ata6: DUMMY
    [ 1.968795] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 1.968841] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.969674] ata1.00: ATA-9: M4-CT256M4SSD2, 010G, max UDMA/100
    [ 1.969683] ata1.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.970728] ata1.00: configured for UDMA/100
    [ 1.970980] scsi 0:0:0:0: Direct-Access ATA M4-CT256M4SSD2 010G PQ: 0 ANSI: 5
    [ 1.971592] ata3.00: ATAPI: TSSTcorp DVDWBD TS-LB23A, SC01, max UDMA/100
    [ 1.972317] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
    [ 1.972530] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.972535] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.972581] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.972980] ata3.00: configured for UDMA/100
    [ 1.974516] sda: sda1 sda2 sda3 sda4 sda5 sda6
    [ 1.975127] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.976456] scsi 2:0:0:0: CD-ROM TSSTcorp DVDWBD TS-LB23A SC01 PQ: 0 ANSI: 5
    [ 1.979211] ACPI: bus type USB registered
    [ 1.979276] usbcore: registered new interface driver usbfs
    [ 1.979339] usbcore: registered new interface driver hub
    [ 1.979451] usbcore: registered new device driver usb
    [ 1.980016] xhci_hcd 0000:04:00.0: xHCI Host Controller
    [ 1.980024] xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 1
    [ 1.980224] xhci_hcd 0000:04:00.0: irq 42 for MSI/MSI-X
    [ 1.980231] xhci_hcd 0000:04:00.0: irq 43 for MSI/MSI-X
    [ 1.980237] xhci_hcd 0000:04:00.0: irq 44 for MSI/MSI-X
    [ 1.980244] xhci_hcd 0000:04:00.0: irq 45 for MSI/MSI-X
    [ 1.980251] xhci_hcd 0000:04:00.0: irq 46 for MSI/MSI-X
    [ 1.980257] xhci_hcd 0000:04:00.0: irq 47 for MSI/MSI-X
    [ 1.980264] xhci_hcd 0000:04:00.0: irq 48 for MSI/MSI-X
    [ 1.980271] xhci_hcd 0000:04:00.0: irq 49 for MSI/MSI-X
    [ 1.980520] xHCI xhci_add_endpoint called for root hub
    [ 1.980523] xHCI xhci_check_bandwidth called for root hub
    [ 1.980554] hub 1-0:1.0: USB hub found
    [ 1.980561] hub 1-0:1.0: 2 ports detected
    [ 1.980645] xhci_hcd 0000:04:00.0: xHCI Host Controller
    [ 1.980666] xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 2
    [ 1.983135] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 1.983140] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.983305] sr 2:0:0:0: Attached scsi CD-ROM sr0
    [ 1.983767] xHCI xhci_add_endpoint called for root hub
    [ 1.983769] xHCI xhci_check_bandwidth called for root hub
    [ 1.983799] hub 2-0:1.0: USB hub found
    [ 1.983808] hub 2-0:1.0: 2 ports detected
    [ 2.042830] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 2.075045] ehci-pci: EHCI PCI platform driver
    [ 2.075169] ehci-pci 0000:00:1a.0: setting latency timer to 64
    [ 2.075177] ehci-pci 0000:00:1a.0: EHCI Host Controller
    [ 2.075185] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 3
    [ 2.075200] ehci-pci 0000:00:1a.0: debug port 2
    [ 2.079109] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    [ 2.079130] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf7608000
    [ 2.088648] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 2.089496] hub 3-0:1.0: USB hub found
    [ 2.089505] hub 3-0:1.0: 2 ports detected
    [ 2.089935] ehci-pci 0000:00:1d.0: setting latency timer to 64
    [ 2.089946] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 2.089954] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 4
    [ 2.089976] ehci-pci 0000:00:1d.0: debug port 2
    [ 2.093871] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 2.093888] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf7607000
    [ 2.101986] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 2.102116] hub 4-0:1.0: USB hub found
    [ 2.102121] hub 4-0:1.0: 2 ports detected
    [ 2.134853] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: data=ordered
    [ 2.199793] systemd[1]: systemd 204 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 2.201658] systemd[1]: Set hostname to <watson>.
    [ 2.268492] systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory. See system logs and 'systemctl status display-manager.service' for details.
    [ 2.268851] systemd[1]: Starting Collect Read-Ahead Data...
    [ 2.269341] systemd[1]: Starting Replay Read-Ahead Data...
    [ 2.269709] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 2.269820] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 2.269852] systemd[1]: Expecting device sys-subsystem-net-devices-wlan0.device...
    [ 2.269873] systemd[1]: Starting Syslog Socket.
    [ 2.269927] systemd[1]: Listening on Syslog Socket.
    [ 2.269946] systemd[1]: Starting Remote File Systems.
    [ 2.269961] systemd[1]: Reached target Remote File Systems.
    [ 2.269975] systemd[1]: Starting Delayed Shutdown Socket.
    [ 2.270017] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 2.270038] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 2.270074] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 2.270088] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 2.270126] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 2.270140] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 2.270168] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 2.270210] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 2.270352] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 2.270370] systemd[1]: Starting Encrypted Volumes.
    [ 2.270384] systemd[1]: Reached target Encrypted Volumes.
    [ 2.270402] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 2.270449] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 2.270464] systemd[1]: Starting Paths.
    [ 2.270478] systemd[1]: Reached target Paths.
    [ 2.270494] systemd[1]: Starting Journal Socket.
    [ 2.270543] systemd[1]: Listening on Journal Socket.
    [ 2.270567] systemd[1]: Mounting POSIX Message Queue File System...
    [ 2.270849] systemd[1]: Mounting Debug File System...
    [ 2.271238] systemd[1]: Starting Create static device nodes in /dev...
    [ 2.271494] systemd-readahead[136]: Bumped block_nr parameter of 8:0 to 20480. This is a temporary hack and should be removed one day.
    [ 2.271888] systemd[1]: Starting Journal Service...
    [ 2.272443] systemd[1]: Started Journal Service.
    [ 2.272532] systemd[1]: Mounting Huge Pages File System...
    [ 2.273048] systemd[1]: Starting udev Kernel Socket.
    [ 2.273080] systemd[1]: Listening on udev Kernel Socket.
    [ 2.273155] systemd[1]: Starting udev Control Socket.
    [ 2.273189] systemd[1]: Listening on udev Control Socket.
    [ 2.273294] systemd[1]: Starting udev Coldplug all Devices...
    [ 2.273733] systemd[1]: Starting Swap.
    [ 2.273754] systemd[1]: Reached target Swap.
    [ 2.273772] systemd[1]: Expecting device dev-disk-by\x2duuid-06ee03bc\x2dca64\x2d406d\x2dbe45\x2db2b645137e08.device...
    [ 2.273786] systemd[1]: Expecting device dev-disk-by\x2duuid-5aedfe61\x2d50f2\x2d47c7\x2d82ac\x2d79930ee37462.device...
    [ 2.294504] systemd-sysctl[154]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    [ 2.298123] EXT4-fs (sda5): re-mounted. Opts: discard
    [ 2.306988] systemd-udevd[161]: starting version 204
    [ 2.330645] FS-Cache: Loaded
    [ 2.344801] ACPI: Requesting acpi_cpufreq
    [ 2.345279] wmi: Mapper loaded
    [ 2.345847] RPC: Registered named UNIX socket transport module.
    [ 2.345849] RPC: Registered udp transport module.
    [ 2.345850] RPC: Registered tcp transport module.
    [ 2.345851] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [ 2.355607] FS-Cache: Netfs 'nfs' registered for caching
    [ 2.358082] ACPI: Battery Slot [BAT1] (battery present)
    [ 2.358579] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input1
    [ 2.358604] ACPI: Lid Switch [LID0]
    [ 2.359113] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
    [ 2.359119] ACPI: Power Button [PWRB]
    [ 2.359456] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3
    [ 2.359461] ACPI: Sleep Button [SLPB]
    [ 2.359772] ACPI: AC Adapter [ADP1] (off-line)
    [ 2.360090] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 2.360096] ACPI: Power Button [PWRF]
    [ 2.374300] ACPI: Fan [FAN0] (off)
    [ 2.374551] ACPI: Fan [FAN1] (off)
    [ 2.375124] ACPI: Invalid active2 threshold
    [ 2.377341] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20130517/utaddress-251)
    [ 2.377349] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.377354] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \GPIO 1 (20130517/utaddress-251)
    [ 2.377358] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20130517/utaddress-251)
    [ 2.377362] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.377364] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20130517/utaddress-251)
    [ 2.377368] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20130517/utaddress-251)
    [ 2.377372] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.377373] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20130517/utaddress-251)
    [ 2.377377] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20130517/utaddress-251)
    [ 2.377381] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.377383] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 2.378357] thermal LNXTHERM:00: registered as thermal_zone0
    [ 2.378361] ACPI: Thermal Zone [TZ00] (52 C)
    [ 2.383745] ACPI Warning: 0x000000000000e040-0x000000000000e05f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20130517/utaddress-251)
    [ 2.383753] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.383911] mei_me 0000:00:16.0: setting latency timer to 64
    [ 2.383955] mei_me 0000:00:16.0: irq 50 for MSI/MSI-X
    [ 2.386775] input: PC Speaker as /devices/platform/pcspkr/input/input5
    [ 2.388164] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 2.388178] r8169 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 2.388494] r8169 0000:03:00.0: irq 51 for MSI/MSI-X
    [ 2.392549] r8169 0000:03:00.0 eth0: RTL8168e/8111e at 0xffffc90004622000, e8:11:32:25:4e:78, XID 0c200000 IRQ 51
    [ 2.392554] r8169 0000:03:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
    [ 2.394650] cfg80211: Calling CRDA to update world regulatory domain
    [ 2.395234] usb 3-1: new high-speed USB device number 2 using ehci-pci
    [ 2.396342] [drm] Initialized drm 1.1.0 20060810
    [ 2.397019] thermal LNXTHERM:01: registered as thermal_zone1
    [ 2.397023] ACPI: Thermal Zone [TZ01] (52 C)
    [ 2.403428] Intel(R) Wireless WiFi driver for Linux, in-tree:
    [ 2.403432] Copyright(c) 2003-2013 Intel Corporation
    [ 2.403550] iwlwifi 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 2.403625] iwlwifi 0000:02:00.0: irq 52 for MSI/MSI-X
    [ 2.413574] iwlwifi 0000:02:00.0: loaded firmware version 41.28.5.1 build 33926 op_mode iwldvm
    [ 2.414850] snd_hda_intel 0000:00:1b.0: irq 53 for MSI/MSI-X
    [ 2.459516] samsung_laptop: detected SABI interface: SwSmi@
    [ 2.459520] samsung_laptop: Backlight controlled by ACPI video driver
    [ 2.475073] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
    [ 2.475258] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
    [ 2.475342] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
    [ 2.479302] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEBUG disabled
    [ 2.479307] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
    [ 2.479310] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
    [ 2.479312] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_P2P disabled
    [ 2.479315] iwlwifi 0000:02:00.0: Detected Intel(R) Centrino(R) Advanced-N + WiMAX 6250 AGN, REV=0x84
    [ 2.479382] iwlwifi 0000:02:00.0: L1 Enabled; Disabling L0S
    [ 2.486443] [drm] Memory usable by graphics device = 2048M
    [ 2.486454] i915 0000:00:02.0: setting latency timer to 64
    [ 2.510361] iTCO_vendor_support: vendor-support=0
    [ 2.510974] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 2.511063] iTCO_wdt: Found a Cougar Point TCO device (Version=2, TCOBASE=0x0460)
    [ 2.511169] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 2.515715] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
    [ 2.522955] hub 3-1:1.0: USB hub found
    [ 2.523029] hub 3-1:1.0: 6 ports detected
    [ 2.552940] i915 0000:00:02.0: irq 54 for MSI/MSI-X
    [ 2.552952] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 2.552953] [drm] Driver supports precise vblank timestamp query.
    [ 2.552974] ACPI Warning: \_SB_.PCI0.GFX0._DSM: Argument #4 type mismatch - Found [Integer], ACPI requires [Package] (20130517/nsarguments-95)
    [ 2.553071] ACPI Warning: \_SB_.PCI0.GFX0._DSM: Argument #4 type mismatch - Found [Integer], ACPI requires [Package] (20130517/nsarguments-95)
    [ 2.554259] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 2.582133] [drm] Wrong MCH_SSKPD value: 0x17050407
    [ 2.582136] [drm] This can cause pipe underruns and display issues.
    [ 2.582137] [drm] Please upgrade your BIOS to fix this.
    [ 2.591839] tsc: Refined TSC clocksource calibration: 1995.467 MHz
    [ 2.597052] fbcon: inteldrmfb (fb0) is primary device
    [ 2.631810] usb 4-1: new high-speed USB device number 2 using ehci-pci
    [ 2.691536] EXT4-fs (sda3): mounting ext2 file system using the ext4 subsystem
    [ 2.697765] EXT4-fs (sda3): mounted filesystem without journal. Opts: (null)
    [ 2.708392] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: discard
    [ 2.726771] ip_tables: (C) 2000-2006 Netfilter Core Team
    [ 2.732165] systemd-logind[678]: Watching system buttons on /dev/input/event4 (Power Button)
    [ 2.732251] systemd-logind[678]: Watching system buttons on /dev/input/event2 (Power Button)
    [ 2.732373] systemd-logind[678]: Watching system buttons on /dev/input/event1 (Lid Switch)
    [ 2.732460] systemd-logind[678]: Watching system buttons on /dev/input/event3 (Sleep Button)
    [ 2.733090] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
    [ 2.755620] hub 4-1:1.0: USB hub found
    [ 2.755733] hub 4-1:1.0: 6 ports detected
    [ 2.821911] usb 3-1.4: new high-speed USB device number 3 using ehci-pci
    [ 3.108586] usb 4-1.3: new high-speed USB device number 3 using ehci-pci
    [ 3.308514] psmouse serio1: elantech: assuming hardware version 3 (with firmware version 0x450f00)
    [ 3.322812] psmouse serio1: elantech: Synaptics capabilities query result 0x08, 0x15, 0x0c.
    [ 3.395720] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input9
    [ 3.568352] Console: switching to colour frame buffer device 170x48
    [ 3.574903] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [ 3.574905] i915 0000:00:02.0: registered panic notifier
    [ 3.575357] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
    [ 3.593033] Switched to clocksource tsc
    [ 3.594635] media: Linux media interface: v0.10
    [ 3.601441] Linux video capture interface: v2.00
    [ 3.607344] uvcvideo: Found UVC 1.00 device WebCam SCB-1110M (1210:0909)
    [ 3.612805] input: WebCam SCB-1110M as /devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.4/3-1.4:1.0/input/input10
    [ 3.612886] usbcore: registered new interface driver uvcvideo
    [ 3.612889] USB Video Class driver (1.1.1)
    [ 3.624759] acpi device:47: registered as cooling_device10
    [ 3.628631] ACPI: Video Device [PEGP] (multi-head: yes rom: yes post: no)
    [ 3.628749] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:45/LNXVIDEO:00/input/input11
    [ 3.631116] acpi device:51: registered as cooling_device11
    [ 3.631300] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 3.631373] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input12
    [ 3.631455] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 3.645951] i2400m_usb 4-1.3:1.0: WiMAX interface wmx0 (64:d4:da:24:b5:c0) ready
    [ 3.653985] iwlwifi 0000:02:00.0: L1 Enabled; Disabling L0S
    [ 3.654187] iwlwifi 0000:02:00.0: Radio type=0x1-0x2-0x0
    [ 3.874277] iwlwifi 0000:02:00.0: L1 Enabled; Disabling L0S
    [ 3.874474] iwlwifi 0000:02:00.0: Radio type=0x1-0x2-0x0
    [ 3.963960] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 4.328298] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
    [ 7.107250] i2400m_usb 4-1.3:1.0: firmware interface version 9.3.2
    [ 7.117012] usbcore: registered new interface driver i2400m_usb
    [ 7.141746] wlan0: authenticate with 00:22:6b:70:c5:e9
    [ 7.151167] wlan0: send auth to 00:22:6b:70:c5:e9 (try 1/3)
    [ 7.197933] wlan0: authenticated
    [ 7.200356] wlan0: associate with 00:22:6b:70:c5:e9 (try 1/3)
    [ 7.201891] wlan0: RX AssocResp from 00:22:6b:70:c5:e9 (capab=0x11 status=0 aid=2)
    [ 7.205520] wlan0: associated
    [ 7.205524] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    [ 16.681425] bbswitch: version 0.7
    [ 16.681440] bbswitch: Found integrated VGA device 0000:00:02.0: \_SB_.PCI0.GFX0
    [ 16.681445] bbswitch: Found discrete VGA device 0000:01:00.0: \_SB_.PCI0.PEG0.PEGP
    [ 16.681454] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [ 16.681520] bbswitch: detected an Optimus _DSM function
    [ 16.681556] bbswitch: disabling discrete graphics
    [ 16.681559] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [ 16.711802] pci 0000:01:00.0: power state changed by ACPI to D3cold
    [ 16.711812] bbswitch: Succesfully loaded. Discrete card 0000:01:00.0 is off
    [ 41.636100] fuse init (API version 7.22)
    [ 440.485588] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
    [ 440.507912] psmouse serio1: Touchpad at isa0060/serio1/input0 - driver resynced.
    [ 453.967678] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
    [ 453.984936] psmouse serio1: Touchpad at isa0060/serio1/input0 - driver resynced.
    I have never seen this error and my googlefu return issues with overclocking which I am not doing. Any info on the subject I'd love to hear.
    Cheers.
    EDIT: Was only happening when issuing 'systemctl reboot' so I switched back to 3.10.10-1-ARCH and reboot command now works.
    Last edited by doug piston (2013-09-10 02:05:56)

    Well, I can tell you that this kind of error is not OS related, but rather a HW thing.  It happens where there is a general detection of something going wrong.  Sometimes it can happen randomly and might not be an indication of a problem.  But sometimes it can be caused by things that are improperly functioning within the system like bad capacitors. 
    Unfortunately I don't really know what to do about such things except give you machine a proper inspection.  But if things are working fine, and continue to do so, I wouldn't worry about it.  If it becomes a regular occurance, then I'd worry.

  • How to sort a object vector by its integer item ?

    hi everybody,
    [there were few topics on this in the forum, but nothing could solve my problem yet. so, please instruct me]
    I have to sort a vector which contains objects, where each object represents, different data types of values,
    ex: {obj1, obj2, obj3, ....}
    obj1---->{String name, int ID, String[] departments}
    i have to sort this vector at three times, once by name, then by ID and then by departments.
    Leaving name and department , first i want to sort the ID of each object and then re-arrange the order of objects in the array according to new order.
    what i did was, copied the vector all objects' ID values to an integer array then i sorted it using selection sort. but now i want to re-arrange the vector, but i still can't. please guide.
    here is the sort i did, and the
    int[] ID = new int[mintomaxID.size()];
              for(int i=0;i<mintomaxID.size();i++)
                   ObjectStore_initialData obj_id = (ObjectStore_initialData)mintomaxID.elementAt(i);
                   ID[i] = obj_id.getID();
              System.out.println("Before sorting array");
              for(int i=0;i<ID.length;i++)
                   System.out.println(ID);     
              System.out.println();
              int i, j, m, mi;
    for (i = 0; i < ID.length - 1; i++) {
    /* find the minimum */
    mi = i;
    for (j = i+1; j < ID.length; j++) {
    if (ID[j] < ID[mi]) {
    mi = j;
    m = ID[mi];
    /* move elements to the right */
    for (j = mi; j > i; j--) {
    ID[j] = ID[j-1];
    ID[i] = m;
    System.out.println("After sorting array");
    for(int y=0;y<ID.length;y++)
                   System.out.println(ID[y]);     
    //*****here is where i need to re-arrange the entire vector by ID.
    I do understand this is some sort of database sort type of a question. but there's no database. it's simply i just want to sort the vector.
    Thank you.

    hi camickr,
    thank you for the detailed reply. but i still don't understand somethings. i tried to read the API and look for the collections.
    i have ObjectStore_initialData class (similar to person class), so do i still have to do a comparable class out of this class ? please simplify that.
    public class ObjectStore_initialData
         String NAME;
         int ID;
         String[] DPART;     
         public ObjectStore_initialData(String name, int id, String[] departments)
              NAME=name;
              ID=id;
              DPART = departments;
    public String getName()//----
              return NAME;
    public String getID()//----
              return ID;
    public String getDpart()//----
              return DPART;
    /*next class is the interface to collect the values from the user and put all of them at once in a vector*/
    //this class is to sort the vector by ID
    public class sorter
       public sorter()
       public static void sortbyID(Vector mintomaxID)
             int[] ID = new int[mintomaxID.size()];
              for(int i=0;i<mintomaxID.size();i++)
                   ObjectStore_initialData obj_id = (ObjectStore_initialData)mintomaxID.elementAt(i);
                   ID[i] = obj_id.getID();
              System.out.println("Before sorting array");
              for(int i=0;i<ID.length;i++)
                   System.out.println(ID);     
              System.out.println();
              int i, j, m, mi;
    for (i = 0; i >< ID.length - 1; i++) {
    /* find the minimum */
    mi = i;
    for (j = i+1; j < ID.length; j++) {
    if (ID[j] < ID[mi]) {
    mi = j;
    m = ID[mi];
    /* move elements to the right */
    for (j = mi; j > i; j--) {
    ID[j] = ID[j-1];
    ID[i] = m;
    System.out.println("After sorting array");
    for(int y=0;y<ID.length;y++)
                   System.out.println(ID[y]);     
    //*****here is where i need to re-arrange the entire vector by ID.
    /*new comparable class */
    public class ObjectStore_initialData implements Comparable
         String NAME;
         int ID;
         String[] DPART;     
         public ObjectStore_initialData(String name, int id, String[] departments)
              NAME=name;
              ID=id;
              DPART = departments;
    public String getName()//----
              return NAME;
    public String getID()//----
              return ID;
    public String getDpart()//----
              return DPART;
    static class IDComparator implements Comparator
              public int compare(Object o1, Object o2)
                   ObjectStore_initialData p1 = (ObjectStore_initialData )o1;
                   ObjectStore_initialData p2 = (ObjectStore_initialData )o2;
                   return p1.getID() - p2.getID();
    /*how can i put the vector here to sort? */
    public sorter()
    public static void sortbyID(Vector mintomaxID)
    int[] ID = new int[mintomaxID.size()];
              for(int i=0;i<mintomaxID.size();i++)
                   ObjectStore_initialData obj_id = (ObjectStore_initialData)mintomaxID.elementAt(i);
                   ID[i] = obj_id.getID();
              System.out.println("Before sorting array");
              for(int i=0;i<ID.length;i++)
                   System.out.println(ID[i]);     
              System.out.println();
              int i, j, m, mi;
    for (i = 0; i >< ID.length - 1; i++) {
    /* find the minimum */
    mi = i;
    for (j = i+1; j < ID.length; j++) {
    if (ID[j] < ID[mi]) {
    mi = j;
    m = ID[mi];
    /* move elements to the right */
    for (j = mi; j > i; j--) {
    ID[j] = ID[j-1];
    ID[i] = m;
    System.out.println("After sorting array");
    for(int y=0;y<ID.length;y++)
                   System.out.println(ID[y]);     
    /* using collections to sort*/
    Collections.sort(mintomaxID, new IDComparator());
    and to check the new order i wanted to print the vector to command line.
    still it doesn't do anything.
    the url you mentioned is good as i see. but how can i implement that in my class ? please instruct and simplify. i know i just repeated the code, i didn't understand to do a comparable class in collections for this class. Please explain where i'm head to and where's my misleading point here.
    Thank you.
    Message was edited by:
    ArchiEnger.711

  • Convert string to integer

    package onjava;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import org.apache.soap.*;
    import org.apache.soap.rpc.*;
    import java.lang.*;
    import java.sql.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class CalcClient extends HttpServlet {
      public void doGet(HttpServletRequest request, HttpServletResponse response)
    throws IOException, ServletException
    response.setContentType("text/html");
    PrintWriter out = response.getWriter();
    out.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"");
    out.println("\"http://www.w3.org/TR/html4/loose.dtd\">");
    out.println("<html>");
    out.println("<head>");
    out.println("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">");
    out.println("<title>Substraction using SOAP</title>");
    out.println("</head>");
        URL url = new URL ("http://localhost/soap/servlet/rpcrouter");
    Integer p1=request.getParameter("param1");
    Integer p2=request.getParameter("param2");
    In the above statement i have to convert the string to integer because that has to be passed in my program as an argument to a function so please let me know how to do that
        // Build the call.
        Call call = new Call();
        call.setTargetObjectURI("urn:onjavaserver");
        call.setMethodName("subtract");
        call.setEncodingStyleURI(Constants.NS_URI_SOAP_ENC);
        Vector params = new Vector();
        params.addElement(new Parameter("p1", Integer.class, p1, null));
        params.addElement(new Parameter("p2", Integer.class, p2, null));
        call.setParams (params);
        // make the call: note that the action URI is empty because the
        // XML-SOAP rpc router does not need this. This may change in the
        // future.
        Response resp = call.invoke(url, "" );
        // Check the response.
        if ( resp.generatedFault() ) {
          Fault fault = resp.getFault ();
         out.println("The call failed: ");
         out.println("Fault Code   = " + fault.getFaultCode());
         out.println("Fault String = " + fault.getFaultString());
        else {
          Parameter result = resp.getReturnValue();
          out.println(result.getValue());
    out.println("</body>");
    out.println("</html>");

    Two possibilities: Try either java.lang.Integer.valueOf() or java.text.NumberFormat and its parse method.
    Either one will do what you want. I think Integer will be the simpler of the two.
    The code you have is obviously not correct, because getParameter returns a String:
    Integer p1=request.getParameter("param1");Do it like this:
    Integer p1=Integer.valueOf(request.getParameter("param1"));%

  • Check for null value for Date Field

    Hello everyone,
    I have a database that consist of date field and also a bean that will able to access the db.
    here are my example:-
    private int setDate(int date) {
    this.date = date;
    private void getDate {
    return date;
    later, I entered a date value and wanna check whether the date is on the database or not. SO, do you all have any idea?

    Perhaps before passing your date off to a primitive int, you could pass it to an [Integer] object. Then check to see if that object is null;
    Integer d = new Integer(int value);
    if (d == null) {
    }

  • Check for NULL value (Recordset field)

    Hi y'all...
    A little question, so just for the weekend...
    I've a query that returns 4 fields, the fisrt three always containing data, and the last one an integer, or NULL. If I get the value with <i>rs.Fields.Item(3).Value.ToString();</i> it always contains an integer. The NULL values are always converted to '0'.
    How can I check if it is a NULL value?

    Okey, found a workaround, using the SQL function ISNULL()...
    SELECT ISNULL(U_MyVar, 'null_value') FROM [@MyTable]
    Now I can check if the value has the value <i>"null_value"</i>. If so, that field was <i>null</i>

Maybe you are looking for

  • How do I delete ringtones on my iPhone 5 that I created from songs in my iTunes music library?

    I created several ringtones for my iPhone 5 from songs in my iTunes music library but they are only 1 second long.  I need to delete them and recreated them so they are 30 seconds long.  How do I remove them from my iPhone and iTunes?

  • Losing wired connection randomly to some sites

    I'm not sure whats going on all of a sudden with my connection. I've never seen this happen before. It seems like everything is fine, then all of a sudden, I won't be able to get to google, but I'll be able to get to other sites. then google will sta

  • Substr function? extracting just the records with 4 digits?

    have a column like this in a table SZSCAPD_SEC_SCHOOL_CEEB 364775 460460 460240 2562 164625 460240 230969I need to be able to retrieve just the values with 4 digits like 2562 and add 00 at the front, so it will ended like 002562 I am thinking in the

  • Environment Variables for EBS 12.1

    Hello, I'm trying to install the Oracle EBS 12 into my machine and i'm wondering if i need to setup environment variables in the bash_profile. If i should configure this, please tell me what are those. Thanks AJ

  • FRM-10102 Cannot Attach PL/SQL Library : Error

    Hi All, We are currently trying to upgrade from Forms6 to Forms10g. When we open a Forms6 form in the Forms10g Developer, we are getting the error "Cannot Attach PL/SQL Library" error. So my question is 1. What changes do I need to make to the "FORMS