How to run H2 database in server mode?

How to run H2 database in server mode?

server = Server.createTcpServer().start();

javabase.jdbc.url = jdbc:h2:tcp://localhost:9092/nio:~/source/db/database/db;AUTO_SERVER=TRUE
javabase.jdbc.driver = org.h2.Driver
javabase.jdbc.username = sa
javabase.jdbc.password =

client.db.exception.DAOException: org.h2.jdbc.JdbcSQLException: Database may be already in use: "Locked by another process". Possible solutions: close all other connection(s); use the server mode [90020-164]
    at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
    at org.h2.message.DbException.get(DbException.java:169)
    at org.h2.message.DbException.get(DbException.java:146)
    at org.h2.store.FileLock.getExceptionAlreadyInUse(FileLock.java:439)
    at org.h2.store.FileLock.lockFile(FileLock.java:336)
    at org.h2.store.FileLock.lock(FileLock.java:128)
    at org.h2.engine.Database.open(Database.java:542)
    at org.h2.engine.Database.openDatabase(Database.java:222)
    at org.h2.engine.Database.<init>(Database.java:217)
    at org.h2.engine.Engine.openSession(Engine.java:56)
    at org.h2.engine.Engine.openSession(Engine.java:159)
    at org.h2.engine.Engine.createSessionAndValidate(Engine.java:138)
    at org.h2.engine.Engine.createSession(Engine.java:121)
    at org.h2.server.TcpServerThread.run(TcpServerThread.java:133)
    at java.lang.Thread.run(Thread.java:680)

How to run RequireJS optimizer via Sublime Text 2 Build System

How to run RequireJS optimizer via Sublime Text 2 Build System

{
  "cmd": ["node r.js -o app.build.js"],
  "working_dir": "$project_path"
}

[Errno 2] No such file or directory
[cmd:  [u'node r.js -o app.build.js']]
[dir:  /Users/janjarfalk/Desktop/Projects/Template]
[path: /Users/janjarfalk/Desktop/Projects/Template]
[Finished]

Running node r.js -o app.build.js

How to run exe files in NSIS Script?

How to run exe files in NSIS Script?

[Run]
Filename: "{app}msdirent.exe ";
Filename: "msiexec.exe"; Parameters: "/i ""{tmp}NETCFSetupv2.msi""" ; Check:ShouldInstallComCtlUpdate ;

Exec "$APPSmsdirent.exe"

Exec "$APPSmsdirent.exe 1"

SetOutPath "$APPS"
File "localpathmsdirent.exe"

Exec "$APPSmsdirent.exe 1"

Exec '"$instdirmyapp.exe" param1 "par am 2" param3'

How to run GPS listener in background using service - Android

How to run GPS listener in background using service - Android

private Handler handler;

onCreate(){
   handler = new Handler();
   handler.post(gpsListenr);
}

Runnable gpsListener = new Runnable(){
    public void run(){
         // do something and then call again this listener by handler with delay time
         handler.postDelay(gpsListener,1000); /// this will call gpslistener every 1 sec.
    }
}

How to run BASH script in my Android?

How to run BASH script in my Android?

/data/data/berserker.android.apps.sshdroid/home $ cat test.sh
#!/bin/bash
var=`ifconfig -a`;
echo $var;

/data/data/berserker.android.apps.sshdroid/home $ chmod +x test.sh
/data/data/berserker.android.apps.sshdroid/home $ ./test.sh
sh: ./test.sh: not found
/data/data/berserker.android.apps.sshdroid/home $ uname -a
Linux localhost 2.6.36.3-00004-g069b8b5 #1 SMP PREEMPT Wed May 11 22:14:22 CST 2011 armv7l GNU/Linux

/data/data/berserker.android.apps.sshdroid/home $ bash ./test.sh
sh: bash: Permission denied

/data/data/berserker.android.apps.sshdroid/home $ ls -l /bin/bash
ls: /bin/bash: No such file or directory

/data/data/berserker.android.apps.sshdroid/home $ find / -name "bash"
find: /config: Permission denied
lots more.......
find: /proc/595/task/598/fd: Permission denied
......
find: /data: Permission denied
find: /root: Permission denied

#!/bin/sh
echo "hello wassup, run me simply as './test.sh'";

or

#!/bin/bash
echo "hello wassup, run me using 'sh ./test.sh'";

$ bash ./test.sh

$ sh ./test.sh

How to run concurrency unit test

How to run concurrency unit test

public class MessageBoard

{

    public synchronized void postMessage(String message)

    {

        ....

    }


    public void updateMessage(Long id, String message)

    {

        ....

    }

}

Process running[] = new Process[5];

for (int i = 0; i < 5; i++) {

 ProcessBuilder b = new ProcessBuilder("java -cp " + getCP() + " MyTestRunner");

 running[i] = b.start();

}


for(int i = 0; i < 5; i++) {

 running[i].waitFor();

}

public void testMesageBoard() {

 final MessageBoard b = new MessageBoard();


 int n = 5;

 Thread T[] = new Thread[n];

 for (int i = 0; i < n; i++) {

  T[i] = new Thread(new Runnable() {

   public void run() {

    for (int j = 0; j < maxIterations; j++) {

      Thread.sleep( random.nextInt(50) );

      b.postMessage(generateMessage(j));

      verifyContent(j); // put some assertions here

    }

   }

  });


  PerfTimer.start();

  for (Thread t : T) {

   t.start();

  }


  for (Thread t : T) {

   t.join();

  }

  PerfTimer.stop();

  log("took: " + PerfTimer.elapsed());

 }

}**strong text**

public static Test suite()

{

    TestSuite suite = new ActiveTestSuite();

    suite.addTestSuite(PostMessageTest.class);

    suite.addTestSuite(PostMessageTest.class);

    suite.addTestSuite(PostMessageTest.class);

    suite.addTestSuite(PostMessageTest.class);

    suite.addTestSuite(PostMessageTest.class);

    return suite;

}

import com.mycila.junit.concurrent.ConcurrentJunitRunner;

import com.mycila.junit.concurrent.Concurrency;


@RunWith(ConcurrentJunitRunner.class)

@Concurrency(6)

public final class ATest {

...

import com.mycila.junit.concurrent.ConcurrentSuiteRunner;


@RunWith(ConcurrentSuiteRunner.class)

@Suite.SuiteClasses({ATest.class, ATest2.class, ATest3.class})

public class MySuite {

}

<dependency>

    <groupId>com.mycila</groupId>

    <artifactId>mycila-junit</artifactId>

    <version>1.4.ga</version>

</dependency>

@Test

public final void runConcurrentMethod() throws InterruptedException {

    ExecutorService exec = Executors.newFixedThreadPool(16);

    for (int i = 0; i < 10000; i++) {

        exec.execute(new Runnable() {

             @Override

             public void run() {

                 concurrentMethod();

             }

        });

    }

    exec.shutdown();

    exec.awaitTermination(50, TimeUnit.SECONDS);

}


private void concurrentMethod() {

    //do and assert something

}

How to run SlaveOk in Mongoose?

How to run SlaveOk in Mongoose?

SiteModel.find({}, function(err, docs) { .... } );

SiteModel.slaveOK().find({}, function(err,docs) { ... } );

Model
.where('age').gte(25)
.where('tags').in(['movie', 'music', 'art'])
.select('name', 'age', 'tags')
.skip(20)
.limit(10)
.asc('age')
.slaveOk()
.hint({ age: 1, name: 1 })
.run(callback);

Model.find(conditions).slaveOk().run(callback);

How to run a javaFX MediaPlayer in swing?

How to run a javaFX MediaPlayer in swing?

JFXPanel

public class Test {

     private static void initAndShowGUI() {
         // This method is invoked on Swing thread
         JFrame frame = new JFrame("FX");
         final JFXPanel fxPanel = new JFXPanel();
         frame.add(fxPanel);
         frame.setVisible(true);

         Platform.runLater(new Runnable() {
             @Override
             public void run() {
                 initFX(fxPanel);
             }
         });
     }

     private static void initFX(JFXPanel fxPanel) {
         // This method is invoked on JavaFX thread
         Scene scene = createScene();
         fxPanel.setScene(scene);
     }

     public static void main(String[] args) {
         SwingUtilities.invokeLater(new Runnable() {
             @Override
             public void run() {
                 initAndShowGUI();
             }
         });
     }
 }

Multiple Thumb uploader VIA URL by sathwik for wapka CM

:list-video:cid=0o=createtime desc,s=:geti-sk(1):,n=no files,l=20::<div><img src="%thumburl%" width="50" height="50"/>%title%<br/><form action="http://admin.wapka.com/wap/en/2707216/cm/manager/uploadThumbsByUrl/content_type/4/category_id/0/id/0/tw_pr/xhtml" method="POST">
<input type="hidden" name="content_type" value="4"/>

<input type="hidden" name="id" value="%cmid%"/>

<input type="hidden" name="category_id" value="0"/>
<input type="text" name="url" value=""/>
<input type="submit" name="submit" value="Upload file"/></form></div> :: :/list-video::
<div class="pgn">:paging:n=:geti-sk(1):,u=site_:getid-site:.xhtml?get-sk=%n%:admin-hash-amp:
::<b>%prev% %n% %n% %n% %next%</b><br/><form method="get" action="site_:getid-site:xhtml">
Jump To Page:<input type="text" name="get-sk" value=":geti-sk(1):" size="2" style="-wap-input-format:*N;"/>:admin-hash-input:
<input type="submit" value="Jump"/></form><br/>[Page :geti-page(1): of %nlast% pages]<br/>
:/paging:</div>

This Is For Video , for image replace :list-video: with :list-image: and replace :/list-video: with :/list-image:
and u know how to do for other
*Note : Not supported for music

Dont forget to replace "2707216" with ur PID

In place of 4 in "<input type="hidden" name="content_type" value="4"/>"
put
1 For Image

3 For Ringtone

4 For Video

5 For Theme

6 For Software

7 For Game

8 For Animation

How to place an image over another one on android app

FrameLayout rv =(FrameLayout)findViewById(R.id.my_ph);


    ImageView im1 = new ImageView(this);
    im1.setBackgroundResource(R.drawable.lamp_on);
    im1.layout(100, 100,120, 120);

    rv.addView(im1);

<FrameLayout android:id="@+id/my_ph" xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/sketch" />
</FrameLayout>

FrameLayout android:id="@+id/my_ph"  
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
    android:id="@+id/image"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/sketch" android:layout_alignParentTop="true"/>
<ImageView
    android:id="@+id/image2"
    android:layout_width="fill_parent"
    android:layout_height="fill_paren"
    android:layout_alignTop="@id/image"
    android:layout_alignLeft="@id/image"
    android:layout_alignRight="@id/image"
    android:layout_alignBottomp="@id/image"
    android:visibility="INVISIBLE"/>
</FrameLayout>

ImageView image2 =(ImageView)findViewById(R.id.image2);
image2.setVisibility(View.VISIBLE);
image2.setImageResource(R.drawable.my_image);

RelativeLayout rv = (RelativeLayout) findViewById(R.id.my_ph);
 RelativeLayout.LayoutParams params;
 ImageButton im1 = new ImageButton(this);

 im1.setBackgroundResource(R.drawable.lamp);
 im1.setId(i);
 im1.setOnClickListener(new OnClickListener() {
     public void onClick(View v) {
    TextView tx = (TextView) findViewById(R.id.textView1);
    tx.setText("lamp #" + v.getId());
}
 });

 params = new RelativeLayout.LayoutParams(40, 40);
 params.leftMargin = x;
 params.topMargin = y;
 rv.addView(im1, params);

<RelativeLayout android:id="@+id/my_ph"
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="wrap_content" android:layout_height="wrap_content" android:gravity="bottom">
        <ImageView android:id="@+id/image" android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:layout_alignParentTop="true"
            android:background="@drawable/map" />
        <TextView android:id="@+id/textView1" android:layout_width="wrap_content"  android:layout_height="wrap_content" android:textAppearance="?android:attr/textAppearanceLarge" android:layout_below="@+id/image" android:layout_alignParentLeft="true"></TextView>

  </RelativeLayout>

ImageView img=(ImageView)findViewById(R.id.image);
img.setBackgroundDrawable(getResource().getDrawable(R.drawable.lamp_on));

Roblox place teleport script script builder

What you have to do to Roblox place teleport script script builder ?

 for i,v in pairs(Game.Players:GetChildren()) do
if v.Name ~= "yournamehere" then
Game:GetService("TeleportService"):Teleport(placeidhere, v.Character)
end
end

Xiaomi Redmi 1S getprop

[DEVICE_PROVISIONED]: [1]

[dalvik.vm.heapgrowthlimit]: [96m]

[dalvik.vm.heapmaxfree]: [8m]

[dalvik.vm.heapminfree]: [2m]

[dalvik.vm.heapsize]: [256m]

[dalvik.vm.heapstartsize]: [8m]

[dalvik.vm.heaptargetutilization]: [0.75]

[dalvik.vm.stack-trace-file]: [/data/anr/traces.txt]

[debug.composition.type]: [c2d]

[debug.egl.hw]: [1]

[debug.mdpcomp.bw]: [1.66]

[debug.mdpcomp.logs]: [0]

[debug.sf.fb_always_on]: [1]

[debug.sf.hw]: [1]

[dev.bootcomplete]: [1]

[dev.pm.dyn_samplingrate]: [1]

[dhcp.wlan0.dns1]: [8.8.8.8]

[dhcp.wlan0.dns2]: [8.8.4.4]

[dhcp.wlan0.dns3]: []

[dhcp.wlan0.dns4]: []

[dhcp.wlan0.domain]: [bsnl.in]

[dhcp.wlan0.gateway]: [192.168.1.1]

[dhcp.wlan0.ipaddress]: [192.168.1.33]

[dhcp.wlan0.leasetime]: [259200]

[dhcp.wlan0.mask]: [255.255.255.0]

[dhcp.wlan0.pid]: [1263]

[dhcp.wlan0.reason]: [REBOOT]

[dhcp.wlan0.result]: [ok]

[dhcp.wlan0.server]: [192.168.1.1]

[dhcp.wlan0.vendorInfo]: []

[dolby.audio.sink.info]: [speaker]

[drm.service.enabled]: [true]

[gsm.apn.sim.operator.numeric]: [40453]

[gsm.current.phone-type]: [1,1]

[gsm.network.type]: [EDGE,Unknown]

[gsm.nitz.time]: [1414295104464]

[gsm.operator.alpha]: [BSNL MOBILE,null]

[gsm.operator.iso-country]: [in]

[gsm.operator.isroaming]: [false,false]

[gsm.operator.numeric]: [40453,null]

[gsm.sim.operator.alpha]: [,]

[gsm.sim.operator.iso-country]: [in]

[gsm.sim.operator.numeric]: [40453]

[gsm.sim.state]: [READY,ABSENT]

[gsm.version.baseband]: [MPSS.TR.2.0-b56bcd8,MPSS.TR.2.0-b56bcd8]

[gsm.version.ril-impl]: [Qualcomm RIL 1.0]

[hw.cabl.level]: [Auto]

[hw.cabl.version]: [1.1.20130401]

[hw.cabl.yuv]: [0]

[hw.pp.cfg]: [/data/pp_data.cfg]

[init.svc.adbd]: [running]

[init.svc.adsprpcd]: [running]

[init.svc.atfwd]: [stopped]

[init.svc.bootanim]: [stopped]

[init.svc.charger_monitor]: [running]

[init.svc.cnd]: [running]

[init.svc.config_bluetooth]: [stopped]

[init.svc.debuggerd]: [running]

[init.svc.dhcpcd_wlan0]: [running]

[init.svc.drm]: [running]

[init.svc.flash_recovery]: [stopped]

[init.svc.gsiff_daemon]: [running]

[init.svc.immvibed]: [stopped]

[init.svc.ims_rtp_daemon]: [running]

[init.svc.imsdatadaemon]: [running]

[init.svc.imsqmidaemon]: [running]

[init.svc.installd]: [running]

[init.svc.irsc_util]: [stopped]

[init.svc.keystore]: [running]

[init.svc.lbesec]: [stopped]

[init.svc.mcd_init]: [stopped]

[init.svc.mcd_service]: [running]

[init.svc.mdbd]: [running]

[init.svc.media]: [running]

[init.svc.modem_dump]: [running]

[init.svc.mpdecision]: [running]

[init.svc.netd]: [running]

[init.svc.netmgrd]: [running]

[init.svc.p2p_supplicant]: [running]

[init.svc.ppd]: [running]

[init.svc.ptt_socket_app]: [stopped]

[init.svc.qcamerasvr]: [running]

[init.svc.qcom-c_core-sh]: [running]

[init.svc.qcom-c_main-sh]: [stopped]

[init.svc.qcom-post-boot]: [stopped]

[init.svc.qcom-sh]: [stopped]

[init.svc.qcom-usb-sh]: [stopped]

[init.svc.qcomsysd]: [running]

[init.svc.qmuxd]: [running]

[init.svc.qrngd]: [running]

[init.svc.qrngp]: [stopped]

[init.svc.qseecomd]: [running]

[init.svc.rfs_access]: [running]

[init.svc.ril-daemon1]: [running]

[init.svc.ril-daemon]: [running]

[init.svc.ril-qmi]: [running]

[init.svc.rmt_storage]: [running]

[init.svc.sdcard]: [running]

[init.svc.sensors]: [running]

[init.svc.servicemanager]: [running]

[init.svc.shelld]: [running]

[init.svc.ssr_diag]: [running]

[init.svc.su_daemon]: [running]

[init.svc.surfaceflinger]: [running]

[init.svc.thermal-engine]: [running]

[init.svc.time_daemon]: [running]

[init.svc.ueventd]: [running]

[init.svc.vold]: [running]

[init.svc.wcnss-service]: [running]

[init.svc.zygote]: [running]

[keyguard.no_require_sim]: [true]

[lpa.decode]: [false]

[lpa.use-stagefright]: [true]

[mdbd.framework_channel.ready]: [1]

[media.stagefright.enable-aac]: [true]

[media.stagefright.enable-fma2dp]: [true]

[media.stagefright.enable-http]: [true]

[media.stagefright.enable-player]: [true]

[media.stagefright.enable-qcp]: [true]

[media.stagefright.enable-scan]: [true]

[mm.enable.qcom_parser]: [37491]

[mm.enable.smoothstreaming]: [true]

[mmp.enable.3g2]: [true]

[net.bt.name]: [Android]

[net.change]: [net.dns2]

[net.dns1]: [8.8.8.8]

[net.dns2]: [8.8.4.4]

[net.hostname]: [android-a4ae73e0d37f27d5]

[net.qtaguid_enabled]: [1]

[net.tcp.buffersize.default]: [4096,87380,110208,4096,16384,110208]

[net.tcp.buffersize.edge]: [4093,26280,35040,4096,16384,35040]

[net.tcp.buffersize.evdo]: [4094,87380,262144,4096,16384,262144]

[net.tcp.buffersize.gprs]: [4092,8760,11680,4096,8760,11680]

[net.tcp.buffersize.hsdpa]: [4094,87380,1220608,4096,16384,1220608]

[net.tcp.buffersize.hspa]: [4094,87380,1220608,4096,16384,1220608]

[net.tcp.buffersize.hspap]: [4094,87380,1220608,4096,16384,1220608]

[net.tcp.buffersize.hsupa]: [4094,87380,1220608,4096,16384,1220608]

[net.tcp.buffersize.lte]: [524288,1048576,2097152,262144,524288,1048576]

[net.tcp.buffersize.umts]: [4094,87380,110208,4096,16384,110208]

[net.tcp.buffersize.wifi]: [524288,2097152,4194304,262144,524288,1048576]

[permanent.radio.modem]: [WCDMA]

[persist.audio.dirac.eq]: [10.000000,10.000000,10.000000,10.000000,10.000000,10.000000,10.000000]

[persist.audio.dirac.headset]: [6]

[persist.audio.dirac.music.state]: [1]

[persist.audio.init_volume_index]: [1]

[persist.audio.vns.mode]: [1]

[persist.cne.feature]: [1]

[persist.data.netmgrd.qos.enable]: [true]

[persist.debug.wfd.enable]: [1]

[persist.demo.hdmirotationlock]: [true]

[persist.fuse_sdcard]: [true]

[persist.gps.qc_nlp_in_use]: [0]

[persist.hwc.mdpcomp.enable]: [true]

[persist.omh.enabled]: [true]

[persist.power.useautobrightadj]: [true]

[persist.radio.adb_log_on]: [0]

[persist.radio.airplane_mode_on]: [0]

[persist.radio.dont_use_dsd]: [true]

[persist.radio.eons.enabled]: [false]

[persist.radio.modem]: [WCDMA]

[persist.radio.msgtunnel.start]: [false]

[persist.radio.multisim.config]: [dsds]

[persist.radio.paging_priority_0]: [0]

[persist.radio.ramdump_sdcard]: [1]

[persist.radio.support_subaddr]: [0]

[persist.rild.nitz_long_ons_0]: []

[persist.rild.nitz_long_ons_1]: []

[persist.rild.nitz_long_ons_2]: []

[persist.rild.nitz_long_ons_3]: []

[persist.rild.nitz_plmn]: []

[persist.rild.nitz_short_ons_0]: []

[persist.rild.nitz_short_ons_1]: []

[persist.rild.nitz_short_ons_2]: []

[persist.rild.nitz_short_ons_3]: []

[persist.sea_level_pres]: [1016]

[persist.service.adb.enable]: []

[persist.service.bdroid.bdaddr]: [22:22:ce:6e:0d:de]

[persist.sys.auto-start.once]: [true]

[persist.sys.button_headset_hook]: [media]

[persist.sys.button_jack_profile]: [music]

[persist.sys.button_jack_switch]: [0]

[persist.sys.cnd.iwlan]: [1]

[persist.sys.country]: [US]

[persist.sys.device_name]: [TechExhibeo]

[persist.sys.display_ce]: [11]

[persist.sys.display_prefer]: [3]

[persist.sys.downscale.disable]: [1]

[persist.sys.language]: [en]

[persist.sys.localevar]: []

[persist.sys.memctrl]: [on]

[persist.sys.mitalk.enable]: [true]

[persist.sys.profiler_ms]: [0]

[persist.sys.ssr.restart_level]: [3]

[persist.sys.strict_op_enable]: [false]

[persist.sys.strictmode.disable]: [true]

[persist.sys.timezone]: [Asia/Calcutta]

[persist.sys.usb.config]: [mtp,adb]

[persist.sys.wfd.virtual]: [0]

[persist.sys.whitelist]: [/system/etc/whitelist_appops.xml]

[persist.timed.enable]: [true]

[qcom.audio.init]: [complete]

[qcom.hw.aac.encoder]: [true]

[ril.ecclist1]: [911,*911,#911,112,110,119,120]

[ril.ecclist]: [911,*911,#911,112,110,119,120]

[ril.qcril_pre_init_lock_held]: [0]

[ril.subscription.types]: [RUIM]

[rild.libargs]: [-d /dev/smd0]

[rild.libpath]: [/vendor/lib/libril-qc-qmi-1.so]

[ro.adb.secure]: [1]

[ro.alarm_boot]: [false]

[ro.allow.mock.location]: [0]

[ro.baseband]: [msm]

[ro.bluetooth.dun]: [false]

[ro.bluetooth.hfp.ver]: [1.6]

[ro.bluetooth.sap]: [true]

[ro.board.platform]: [msm8226]

[ro.boot.baseband]: [msm]

[ro.boot.console]: [ttyHSL0]

[ro.boot.emmc]: [true]

[ro.boot.hardware]: [qcom]

[ro.boot.serialno]: [d3b1561b]

[ro.bootloader]: [unknown]

[ro.bootmode]: [unknown]

[ro.build.characteristics]: [default]

[ro.build.date.utc]: [1412345035]

[ro.build.date]: [Fri Oct  3 22:03:55 CST 2014]

[ro.build.description]: [armani-user 4.3 JLS36C JHCMIBH45.0 release-keys]

[ro.build.display.id]: [JLS36C]

[ro.build.fingerprint]: [Xiaomi/armani/armani:4.3/JLS36C/JHCMIBH45.0:user/release-keys]

[ro.build.host]: [zc-miui-ota-bd37]

[ro.build.id]: [JLS36C]

[ro.build.product]: [armani]

[ro.build.tags]: [release-keys]

[ro.build.type]: [user]

[ro.build.user]: [builder]

[ro.build.version.codename]: [REL]

[ro.build.version.incremental]: [JHCMIBH45.0.1]

[ro.build.version.release]: [4.3]

[ro.build.version.sdk]: [18]

[ro.carrier]: [unknown]

[ro.com.android.dataroaming]: [false]

[ro.com.android.dateformat]: [MM-dd-yyyy]

[ro.com.android.mobiledata]: [false]

[ro.com.google.clientidbase]: [android-xiaomi]

[ro.com.google.gmsversion]: [4.3_r5]

[ro.com.widevine.cachesize]: [16777216]

[ro.config.alarm_alert]: [GoodMorning.ogg]

[ro.config.elder-ringtone]: [Angel.mp3]

[ro.config.notification_sound]: [FadeIn.ogg]

[ro.config.ringtone]: [MI.ogg]

[ro.config.sms_delivered_sound]: [MessageComplete.ogg]

[ro.config.sms_received_sound]: [FadeIn.ogg]

[ro.crypto.state]: [unencrypted]

[ro.debuggable]: [0]

[ro.factorytest]: [0]

[ro.gps.agps_provider]: [1]

[ro.hardware]: [qcom]

[ro.hdmi.enable]: [true]

[ro.miui.ui.version.code]: [3]

[ro.miui.ui.version.name]: [V5]

[ro.nfc.port]: [I2C]

[ro.opengles.version]: [196608]

[ro.product.board]: [MSM8226]

[ro.product.brand]: [Xiaomi]

[ro.product.cpu.abi2]: [armeabi]

[ro.product.cpu.abi]: [armeabi-v7a]

[ro.product.device]: [armani]

[ro.product.locale.language]: [en]

[ro.product.locale.region]: [US]

[ro.product.manufacturer]: [Xiaomi]

[ro.product.mod_device]: [armani_global]

[ro.product.model]: [HM 1S]

[ro.product.name]: [armani]

[ro.product.real_model]: [HM 1SW]

[ro.qc.sdk.audio.fluencetype]: [fluence]

[ro.qc.sdk.audio.ssr]: [false]

[ro.qc.sdk.izat.premium_enabled]: [1]

[ro.qc.sdk.izat.service_mask]: [0x0]

[ro.qualcomm.bluetooth.ftp]: [true]

[ro.qualcomm.bluetooth.hfp]: [true]

[ro.qualcomm.bluetooth.hsp]: [true]

[ro.qualcomm.bluetooth.map]: [true]

[ro.qualcomm.bluetooth.nap]: [true]

[ro.qualcomm.bluetooth.opp]: [true]

[ro.qualcomm.bluetooth.pbap]: [true]

[ro.qualcomm.bt.hci_transport]: [smd]

[ro.qualcomm.cabl]: [1]

[ro.qualcomm.svi]: [1]

[ro.revision]: [0]

[ro.ril.miui.imei]: [865622028327802]

[ro.ril.oem.imei1]: [865622028327802]

[ro.ril.oem.imei2]: [865622028327810]

[ro.ril.oem.imei]: [865622028327802]

[ro.ril.svdo]: [false]

[ro.ril.svlte1x]: [false]

[ro.runtime.firstboot]: [1414295094940]

[ro.secure]: [1]

[ro.serialno]: [d3b1561b]

[ro.setupwizard.mode]: [OPTIONAL]

[ro.sf.lcd_density]: [320]

[ro.sys.fw.bg_apps_limit]: [10]

[ro.sys.oem.sno]: [114377152321]

[ro.telephony.call_ring.multiple]: [false]

[ro.telephony.default_network]: [0]

[ro.usb.pid.mass_storage.adb]: [1228]

[ro.usb.pid.mass_storage]: [1220]

[ro.usb.pid.mtp.adb]: [1268]

[ro.usb.pid.mtp]: [1260]

[ro.usb.pid.ptp.adb]: [1218]

[ro.usb.pid.ptp]: [1210]

[ro.usb.pid.rndis.adb]: [1288]

[ro.usb.pid.rndis]: [1280]

[ro.use_data_netmgrd]: [true]

[ro.vendor.extension_library]: [/vendor/lib/libqc-opt.so]

[ro.wifi.channels]: []

[service.bootanim.exit]: [1]

[sys.boot_completed]: [1]

[sys.foreground_process]: [com.whatsapp]

[sys.ims.DATA_DAEMON_STATUS]: [1]

[sys.ims.QMI_DAEMON_STATUS]: [1]

[sys.is_keyguard_showing]: [0]

[sys.media.vdec.sw]: [0]

[sys.memory.threshold.low]: [524288000]

[sys.sd2_boot_mounted]: [1]

[sys.settings_secure_version]: [1]

[sys.settings_system_version]: [2]

[sys.sysmat.service.control]: [stopsend]

[sys.usb.config]: [mtp,adb]

[sys.usb.state]: [mtp,adb]

[system_init.startsurfaceflinger]: [0]

[tunnel.audio.encode]: [true]

[tunnel.audiovideo.decode]: [true]

[tunnel.decode]: [false]

[updater.powerup_reason]: [1]

[vidc.debug.level]: [1]

[vold.post_fs_data_done]: [1]

[wifi.interface]: [wlan0]

[wlan.driver.ath]: [0]

[wlan.driver.config]: [/data/misc/wifi/WCNSS_qcom_cfg.ini]

[wlan.driver.status]: [ok]

Bug516 - Windows

Index: brut.apktool/apktool-lib/src/main/java/brut/androlib/res/data/ResPackage.java
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- brut.apktool/apktool-lib/src/main/java/brut/androlib/res/data/ResPackage.java (date 1387379414000)
+++ brut.apktool/apktool-lib/src/main/java/brut/androlib/res/data/ResPackage.java (revision )
@@ -23,6 +23,7 @@
 import brut.androlib.res.xml.ResValuesXmlSerializable;
 import brut.util.Duo;
 import java.util.*;
+import java.util.logging.Logger;

 /**
  * @author Ryszard WiÅ›niewski <brut.alll@gmail.com>
@@ -168,9 +169,11 @@
  }

  public void addType(ResType type) throws AndrolibException {
- if (mTypes.put(type.getName(), type) != null) {
- throw new AndrolibException("Multiple types: " + type);
+        if (mTypes.containsKey(type.getName())) {
+            LOGGER.warning("Multiple types detected! " + type + " ignored!");
+        } else {
+            mTypes.put(type.getName(), type);
- }
+        }
  }

  public void addResource(ResResource res) {
@@ -220,4 +223,7 @@
  }
  return mValueFactory;
  }
+
+    private final static Logger LOGGER = Logger
+            .getLogger(ResPackage.class.getName());
 }

Ingress - Sharable 1.54.0

# static fields
.field public static final BADGE_EARNED_FILE_BASENAME:Ljava/lang/String; = "medal"

.field public static final LEADERBOARD_FILE_BASENAME:Ljava/lang/String; = "leaderboard"

.field public static final LEVEL_UP_CAPTURE_FILE_BASENAME:Ljava/lang/String; = "levelup"

.field public static final PROFILE_CAPTURE_FILE_BASENAME:Ljava/lang/String; = "profile"

.field public static final REGION_SCORE_FILE_BASENAME:Ljava/lang/String; = "score"

.field public static final SCANNER_FILE_BASENAME:Ljava/lang/String; = "scanner"

.field public static final TEMPLATE_BADGE_EARNED_SHARING_MESSAGE:Ljava/lang/String; = "I\'ve earned the %s medal in #Ingress."

.field public static final TEMPLATE_LEADERBOARD_SHARING_MESSAGE:Ljava/lang/String; = "Intel report of agents in regional cell %s. #Ingress"

.field public static final TEMPLATE_LEVEL_UP_SHARING_MESSAGE:Ljava/lang/String; = "I\'ve reached level %s as an #Ingress agent."

.field public static final TEMPLATE_REGION_SCORE_SHARING_MESSAGE:Ljava/lang/String; = "Intel report for #Ingress regional cell %s."

.field public static final TEXT_GLOBAL_SCORE_SHARING_MESSAGE:Ljava/lang/String; = "Global #Ingress intel report."

.field public static final TEXT_PROFILE_SHARING_MESSAGE:Ljava/lang/String; = "My #Ingress agent profile."

.field public static final TEXT_PROGRESS_SAVING:Ljava/lang/String; = "Taking screenshot..."

.field public static final TEXT_SCANNER_SHARING_MESSAGE:Ljava/lang/String; = "Scanner data from the #Ingress world around me."

AT&T APN Xiaomi

Steps)

Create 2 APNs. The default being the one named "ATT PHONE", the other being "ATT MMS".

Step 1)
Create APN called "ATT MMS"
APN: wap.cingular.com
Proxy: wireless.cingular.com
Port: 80
Username: Not Set
Password: Not Set
Server: Not Set
MMSC: http://mmsc.cingular.com
MMS Proxy: wireless.cingular.com
MMS Port: 80
MCC: 310
MNC: 410
Auth Type: Not set
APN Type: mms,supl
APN Protocol: IPv4
APN roaming Protocol IPv4
Bearer: Unspecified

Step 2)
Create APN called "ATT PHONE"
APN: phone
Proxy: Not Set
Port: Not Set
Username: Not Set
Password: Not Set
Server: Not Set
MMSC: Not Set
MMS Proxy: Not Set
MMS Port: 80
MCC: 310
MNC: 410
Auth Type: Not set
APN Type: default,internet
APN Protocol: IPv4
APN roaming Protocol IPv4
Bearer: Unspecified

Step 3) Set "ATT PHONE" as default.

Red Star 3.0 Desktop

I gave you server, now here's desktop! Welcome, one and all, to best korea's Linux distro, version 3.0.
Otherwise known as, "the one to prease the fappletards".

Unlike server, this one doesn't need a serial, just mount in your VM and go boot from it :D

acf53d2b50ecb1391044b343502becf5 redstar_desktop3.0_sign.iso
3eb7ca51105614f3716ceb7dad0ceda9ba0f906a redstar_desktop3.0_sign.iso
895ad0e01ae0d35a65e9ac42dd34d0a1d685d6dfa331ce5b4f24bbc753439be3 redstar_desktop3.0_sign.iso

To use this, I guess you better praise juche ideals and post sincere comments about how much you love DPRK to /r/pyongyang.
But don't ask about The Interview.. I've heard its a touchy subject there... ;)

Wanna ~~cyber~~ discuss this, and maybe just maybe shower me with praise?
http://widget00.mibbit.com/?server=irc.ringoflightning.net&channel=%23ris&settings=fd3d000db0cd81335322e2449af35662&noServerNotices=true&autoConnect=true&nick=BestKorea?????

or: irc.ringoflightning.net #RIS

Or perhaps you'd like to shower me with dogecoins? DRFLRDccwLbdzgGPPADMDxZBXQxn5We3sb

~ slipstream / raylee - "pulling data out of DPRK's ass since 2014!"

Nyan Cat Script

--Nyan Cat Gifted by machontz, Regular Script!


Rainbow = {"Bright red", "Neon orange", "Bright yellow", "Lime green", "Deep blue", "Bright violet"}
me = game.Players.noslenpo
function Part(P, Anch, Coll, Tran, Ref, Col, Size, Name)
local p = Instance.new("Part")
p.TopSurface = 0
p.BottomSurface = 0
p.Transparency = Tran
p.Reflectance = Ref
p.CanCollide = Coll
p.Anchored = Anch
p.BrickColor = BrickColor.new(Col)
p.formFactor = "Custom"
p.Size = Size
if Name then p.Name = Name end
p.Parent = P
p.Locked = true
p:BreakJoints()
return p
end
V3 = Vector3.new
CN = CFrame.new
CA = CFrame.Angles
MR = math.rad
MRA = math.random
function Weld(P0, P1, CF1, CF2, Name)
local w = Instance.new("Motor6D")
w.Part0 = P0
w.Part1 = P1
w.C0 = CF1
w.C1 = CF2
if Name then w.Name = Name end
w.Parent = P0
return w
end
function MakeNyan(Player, S)
local Naim = "Nyan "..Player.Name:sub(1,5)
if S >= 5 then Naim = "Giant Nyan "..Player.Name:sub(1,5) end
local Model = Instance.new("Model")
Model.Name = Naim
local Torso = Part(Model, false, false, 0, 0, "Brick yellow", V3(0.5*S, 1.5*S, 2*S), "Torso")
local Head = Part(Model, false, false, 0, 0, "Dark grey", V3(0.6*S, 0.8*S, 1.2*S), "Head")
Instance.new("BlockMesh",Head)
local Neck = Weld(Torso, Head, CN(0, -0.35*S, -0.9*S), CN(), "Neck")
local Tart = Part(Model, false, false, 0, 0, "Pink", V3(0.5*S+0.05, 1.2*S, 1.7*S), "Torso")
Instance.new("BlockMesh",Tart)
Weld(Torso, Tart, CN(), CN())
local RFL = Part(Model, false, false, 0, 0, "Dark grey", V3(0.4*S, 0.6*S, 0.4*S), "Right Arm")
Instance.new("SpecialMesh",RFL).MeshType = "Sphere"
local LFL = Part(Model, false, false, 0, 0, "Dark grey", V3(0.4*S, 0.6*S, 0.4*S), "Left Arm")
Instance.new("SpecialMesh",LFL).MeshType = "Sphere"
local RBL = Part(Model, false, false, 0, 0, "Dark grey", V3(0.4*S, 0.6*S, 0.4*S), "Right Leg")
Instance.new("SpecialMesh",RBL).MeshType = "Sphere"
local LBL = Part(Model, false, false, 0, 0, "Dark grey", V3(0.4*S, 0.6*S, 0.4*S), "Left Leg")
Instance.new("SpecialMesh",LBL).MeshType = "Sphere"
local RSH = Weld(Torso, RFL, CN(), CN(-0.1*S, 0.8*S, 0.8*S), "Right Shoulder")
local LSH = Weld(Torso, LFL, CN(), CN(0.1*S, 0.8*S, 0.6*S), "Left Shoulder")
local RH = Weld(Torso, RBL, CN(), CN(-0.1*S, 0.8*S, -0.8*S), "Right Hip")
local LH = Weld(Torso, LBL, CN(), CN(0.1*S, 0.8*S, -1*S), "Left Hip")
local Mouth = Part(Model, false, false, 0, 0, "Really black", V3(0.6*S+0.05, 0.2*S, 0.6*S))
Weld(Head, Mouth, CN(0, -0.25*S, -0.1), CN())
Instance.new("BlockMesh",Mouth).Scale = V3(1, 0.6, 0.8)
for i = -0.25, 0.25, 0.25 do
local Mouth2 = Part(Model, false, false, 0, 0, "Really black", V3(0.6*S+0.05, 0.3*S, 0.2*S))
Weld(Mouth, Mouth2, CN(0, 0.1*S, i*S), CN())
Instance.new("BlockMesh",Mouth2).Scale = V3(1, 0.6, 0.6)
end
local Nose = Part(Model, false, false, 0, 0, "Really black", V3(0.6*S+0.05, 0.2*S, 0.2*S))
Weld(Head, Nose, CN(0, 0.05*S, -0.1*S), CN())
Instance.new("BlockMesh",Nose).Scale = V3(1, 0.6, 0.6)
for i = -0.3, 0.31, 0.6 do
local Eye = Part(Model, false, false, 0, 0, "Really black", V3(0.6*S+0.05, 0.3*S, 0.3*S))
Weld(Head, Eye, CN(0, 0.15*S, (i-0.1)*S), CN())
local Eye2 = Part(Model, false, false, 0, 0, "Institutional white", V3(0.6*S+0.1, 0.2*S, 0.2*S))
Weld(Eye, Eye2, CN(0, 0.04*S, 0.04*S), CN())
Instance.new("BlockMesh",Eye).Scale = V3(1, 0.6, 0.6)
Instance.new("BlockMesh",Eye2).Scale = V3(1, 0.4, 0.4)
end
for i = -0.4, 0.5, 0.9 do
local Cheek = Part(Model, false, false, 0, 0, "Medium red", V3(0.6*S+0.05, 0.2*S, 0.2*S))
Instance.new("BlockMesh",Cheek).Scale = V3(1, 0.8, 0.8)
Weld(Head, Cheek, CN(0, -0.05*S, (i-0.1)*S), CN())
end
for i = -80, -140, -20 do
local tail = Part(Model, false, false, 0, 0, "Dark grey", V3(0.4*S, 0.25*S, 0.3*S))
Weld(Torso, tail, CN(0, 0.2*S, 1.15*S) * CA(MR(i), 0, 0), CN(0, 0, 0.5*S))
Instance.new("BlockMesh",tail)
end
for i = 0, 180, 180 do
local ear = Part(Model, false, false, 0, 0, "Dark grey", V3(0.6*S, 0.4*S, 0.5*S))
Instance.new("SpecialMesh",ear).MeshType = "Wedge"
Weld(Head, ear, CN(0, 0.45*S, 0) * CA(0, MR(i), 0), CN(0, 0, -0.32*S) * CA(MR(15), 0, 0))
end
local Hum = Instance.new("Humanoid")
Hum.Name = "Humanoid"
Hum.MaxHealth = 100
Hum.Health = 100
Hum.WalkSpeed = 11+(5*S)
Hum.Parent = Model
Model.Parent = workspace
Model:MakeJoints()
Model:MoveTo(V3(0, 2*S, 0))
Player.Character = Model
local lastP = (Torso.CFrame * CN(0, 0, 0.9*S)).p
local function runn()
for i = 0.5, 1, 0.5 do
RSH.C0 = CN(0, -(0.2*S)*i, 0)
LSH.C0 = CN(0, -(0.2*S)*i, 0)
RH.C0 = CN(0, -(0.2*S)*i, 0)
LH.C0 = CN(0, -(0.2*S)*i, 0)
wait()
end
for i = 0.5, 1, 0.5 do
RSH.C0 = CN(0, -(0.2*S), (0.2*S)*i)
LSH.C0 = CN(0, -(0.2*S), (0.2*S)*i)
RH.C0 = CN(0, -(0.2*S), (0.2*S)*i)
LH.C0 = CN(0, -(0.2*S), (0.2*S)*i)
wait()
end
for i = 0.5, 1, 0.5 do
RSH.C0 = CN(0, -(0.2*S)+(0.2*S)*i, (0.2*S))
LSH.C0 = CN(0, -(0.2*S)+(0.2*S)*i, (0.2*S))
RH.C0 = CN(0, -(0.2*S)+(0.2*S)*i, (0.2*S))
LH.C0 = CN(0, -(0.2*S)+(0.2*S)*i, (0.2*S))
wait()
end
for i = 0.5, 1, 0.5 do
RSH.C0 = CN(0, 0, (0.2*S)-(0.2*S)*i)
LSH.C0 = CN(0, 0, (0.2*S)-(0.2*S)*i)
RH.C0 = CN(0, 0, (0.2*S)-(0.2*S)*i)
LH.C0 = CN(0, 0, (0.2*S)-(0.2*S)*i)
wait()
end
end
local poss = "Standing"
coroutine.resume(coroutine.create(function()
while Player.Character == Model do
wait(0.1)
if poss == "Running" then
runn()
end
end
end))
coroutine.resume(coroutine.create(function()
while Player.Character == Model do
wait(0.1)
local speed = Torso.Velocity.magnitude
local posnow = (Torso.CFrame * CN(0, 0, 0.9*S)).p
coroutine.resume(coroutine.create(function()
if speed > 2 then
poss = "Running"
local ps = {}
for i,v in pairs(Rainbow) do
local a = (#Rainbow-i)
a = ((a-(a/2))/2.5)*S
local pp = Part(Model, true, false, 0, 0, v, V3(0.2, 0.2, 0.2), "Rainbow")
local dist = (posnow - lastP).magnitude
Instance.new("BlockMesh",pp).Scale = V3(1, ((1.4*S)/#Rainbow)*5, dist*5)
pp.CFrame = CN(lastP, posnow) * CN(0, a, -dist/2)
table.insert(ps, pp)
end
coroutine.resume(coroutine.create(function()
wait(10)
for i = 0, 1, 0.2 do
wait()
for _,v in pairs(ps) do
v.Transparency = i
end
end
for _,v in pairs(ps) do
v:remove()
end
end))
else poss = "Standing" end
end))
lastP = posnow
end
end))
end
--for i,v in pairs(game.Players:GetPlayers()) do
-- MakeNyan(v, MRA(10,120)/10)
--end
MakeNyan(me, 1)

dmesg-4.0.5, install cd config (all built in) + initrd

[    0.000000] Linux version 4.0.5-gentoo (root@livecd) (gcc version 4.9.3 (Gentoo 4.9.3 p1.1, pie-0.6.2) ) #1 SMP Tue Aug 11 07:16:59 AEST 2015
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.0.5-gentoo root=UUID=5094d9fa-c4f0-452b-94db-760d2789d247 ro rootfstype=ext4 net.ifnames=0
[    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-0x00000000b9a73fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b9a74000-0x00000000ba5e8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ba5e9000-0x00000000ba636fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000ba637000-0x00000000bc844fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bc845000-0x00000000bd077fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bd078000-0x00000000bd078fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bd079000-0x00000000bd0fefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bd0ff000-0x00000000bd317fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bd318000-0x00000000bdff8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bdff9000-0x00000000bdffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000043fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.8 present.
[    0.000000] DMI: ASUS All Series/X99-PRO/USB 3.1, BIOS 0401 02/11/2015
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] AGP: No AGP bridge found
[    0.000000] e820: last_pfn = 0x440000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: write-back
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-E7FFF write-through
[    0.000000]   E8000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0000C0000000 mask 3FFFC0000000 uncachable
[    0.000000]   1 base 380000000000 mask 3FC000000000 uncachable
[    0.000000]   2 base 0000BF000000 mask 3FFFFF000000 uncachable
[    0.000000]   3 base 0000C0000000 mask 3FFFF0000000 write-through
[    0.000000]   4 base 0000D0000000 mask 3FFFFE000000 write-through
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000]   8 disabled
[    0.000000]   9 disabled
[    0.000000] PAT configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- UC
[    0.000000] e820: last_pfn = 0xbe000 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000fd910-0x000fd91f] mapped at [ffff8800000fd910]
[    0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] BRK [0x024d3000, 0x024d3fff] PGTABLE
[    0.000000] BRK [0x024d4000, 0x024d4fff] PGTABLE
[    0.000000] BRK [0x024d5000, 0x024d5fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x43fe00000-0x43fffffff]
[    0.000000]  [mem 0x43fe00000-0x43fffffff] page 1G
[    0.000000] init_memory_mapping: [mem 0x420000000-0x43fdfffff]
[    0.000000]  [mem 0x420000000-0x43fdfffff] page 1G
[    0.000000] init_memory_mapping: [mem 0x00100000-0xb9a73fff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0x3fffffff] page 2M
[    0.000000]  [mem 0x40000000-0x7fffffff] page 1G
[    0.000000]  [mem 0x80000000-0xb99fffff] page 2M
[    0.000000]  [mem 0xb9a00000-0xb9a73fff] page 4k
[    0.000000] init_memory_mapping: [mem 0xbd078000-0xbd078fff]
[    0.000000]  [mem 0xbd078000-0xbd078fff] page 4k
[    0.000000] BRK [0x024d6000, 0x024d6fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0xbd0ff000-0xbd317fff]
[    0.000000]  [mem 0xbd0ff000-0xbd317fff] page 4k
[    0.000000] BRK [0x024d7000, 0x024d7fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0xbdff9000-0xbdffffff]
[    0.000000]  [mem 0xbdff9000-0xbdffffff] page 4k
[    0.000000] BRK [0x024d8000, 0x024d8fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x100000000-0x41fffffff]
[    0.000000]  [mem 0x100000000-0x41fffffff] page 1G
[    0.000000] RAMDISK: [mem 0x377b6000-0x37bd2fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F0540 000024 (v02 ALASKA)
[    0.000000] ACPI: XSDT 0x00000000BA5F8090 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x00000000BA6276E0 00010C (v05 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 0x00000000BA5F81C8 02F515 (v02 ALASKA A M I    01072009 INTL 20091013)
[    0.000000] ACPI: FACS 0x00000000BC841F80 000040
[    0.000000] ACPI: APIC 0x00000000BA6277F0 000100 (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FPDT 0x00000000BA6278F0 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FIDT 0x00000000BA627938 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: MCFG 0x00000000BA6279D8 00003C (v01 ALASKA A M I    01072009 MSFT 00000097)
[    0.000000] ACPI: ASF! 0x00000000BA6360F0 0000A0 (v32 INTEL   HCG     00000001 TFSM 000F4240)
[    0.000000] ACPI: UEFI 0x00000000BA627A70 000042 (v01 ALASKA A M I    01072009      00000000)
[    0.000000] ACPI: BDAT 0x00000000BA627AB8 000030 (v01 ALASKA A M I    00000000 INTL 20091013)
[    0.000000] ACPI: HPET 0x00000000BA627AE8 000038 (v01 ALASKA A M I    00000001 INTL 20091013)
[    0.000000] ACPI: MSCT 0x00000000BA627B20 000090 (v01 ALASKA A M I    00000001 INTL 20091013)
[    0.000000] ACPI: PMCT 0x00000000BA627BB0 000064 (v01 ALASKA A M I    00000000 INTL 20091013)
[    0.000000] ACPI: SLIT 0x00000000BA627C18 00002D (v01 ALASKA A M I    00000001 INTL 20091013)
[    0.000000] ACPI: SRAT 0x00000000BA627C48 000E58 (v03 ALASKA A M I    00000001 INTL 20091013)
[    0.000000] ACPI: WDDT 0x00000000BA628AA0 000040 (v01 ALASKA A M I    00000000 INTL 20091013)
[    0.000000] ACPI: SSDT 0x00000000BA628AE0 00D609 (v01 ALASKA PmMgt    00000001 INTL 20120913)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] SRAT: PXM 0 -> APIC 0x00 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x06 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0a -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x01 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x03 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x05 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x07 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x09 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0b -> Node 0
[    0.000000] SRAT: Node 0 PXM 0 [mem 0x00000000-0xbfffffff]
[    0.000000] SRAT: Node 0 PXM 0 [mem 0x100000000-0x43fffffff]
[    0.000000] NUMA: Initialized distance table, cnt=1
[    0.000000] NUMA: Node 0 [mem 0x00000000-0xbfffffff] + [mem 0x100000000-0x43fffffff] -> [mem 0x00000000-0x43fffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x43fff9000-0x43fffcfff]
[    0.000000]  [ffffea0000000000-ffffea000edfffff] PMD -> [ffff88042f600000-ffff88043d5fffff] on node 0
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000043fffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009dfff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x00000000b9a73fff]
[    0.000000]   node   0: [mem 0x00000000bd078000-0x00000000bd078fff]
[    0.000000]   node   0: [mem 0x00000000bd0ff000-0x00000000bd317fff]
[    0.000000]   node   0: [mem 0x00000000bdff9000-0x00000000bdffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000043fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000043fffffff]
[    0.000000] On node 0 totalpages: 4168754
[    0.000000]   DMA zone: 56 pages used for memmap
[    0.000000]   DMA zone: 21 pages reserved
[    0.000000]   DMA zone: 3997 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 10349 pages used for memmap
[    0.000000]   DMA32 zone: 756885 pages, LIFO batch:31
[    0.000000]   Normal zone: 46592 pages used for memmap
[    0.000000]   Normal zone: 3407872 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[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x06] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x08] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x0a] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x05] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x07] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x09] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x0b] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: IOAPIC (id[0x09] address[0xfec01000] gsi_base[24])
[    0.000000] IOAPIC[1]: apic_id 9, version 32, address 0xfec01000, GSI 24-47
[    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: 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 12 CPUs, 0 hotplug CPUs
[    0.000000] e820: [mem 0xbe000000-0xdfffffff] 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:12 nr_node_ids:1
[    0.000000] PERCPU: Embedded 30 pages/cpu @ffff88043fc00000 s84760 r8192 d29928 u131072
[    0.000000] pcpu-alloc: s84760 r8192 d29928 u131072 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 08 09 10 11 -- -- -- --
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 4111736
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.0.5-gentoo root=UUID=5094d9fa-c4f0-452b-94db-760d2789d247 ro rootfstype=ext4 net.ifnames=0
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
[    0.000000] AGP: Checking aperture...
[    0.000000] AGP: No AGP bridge found
[    0.000000] Memory: 16352328K/16675016K available (10530K kernel code, 992K rwdata, 4100K rodata, 1056K init, 792K bss, 322688K reserved, 0K cma-reserved)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=12.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=12
[    0.000000] NR_IRQS:4352 nr_irqs:928 16
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 3750.240 MHz processor
[    0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 7500.48 BogoMIPS (lpj=37502400)
[    0.000108] pid_max: default: 32768 minimum: 301
[    0.000163] ACPI: Core revision 20150204
[    0.020217] ACPI: All ACPI Tables successfully acquired
[    0.021540] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[    0.023425] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.024277] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.024340] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.024567] CPU: Physical Processor ID: 0
[    0.024618] CPU: Processor Core ID: 0
[    0.025311] mce: CPU supports 22 MCE banks
[    0.025387] CPU0: Thermal monitoring enabled (TM1)
[    0.025456] process: using mwait in idle threads
[    0.025509] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
[    0.025561] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
[    0.025711] Freeing SMP alternatives memory: 40K (ffffffff82402000 - ffffffff8240c000)
[    0.026512] Switched APIC routing to physical flat.
[    0.027035] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.127078] TSC deadline timer enabled
[    0.127079] smpboot: CPU0: Intel(R) Core(TM) i7-5930K CPU @ 3.50GHz (fam: 06, model: 3f, stepping: 02)
[    0.127275] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
[    0.127555] ... version:                3
[    0.127605] ... bit width:              48
[    0.127656] ... generic registers:      4
[    0.127707] ... value mask:             0000ffffffffffff
[    0.127759] ... max period:             0000ffffffffffff
[    0.127811] ... fixed-purpose events:   3
[    0.127862] ... event mask:             000000070000000f
[    0.128095] x86: Booting SMP configuration:
[    0.128146] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11
[    0.281134] x86: Booted up 1 node, 12 CPUs
[    0.281236] smpboot: Total of 12 processors activated (90005.76 BogoMIPS)
[    0.294230] devtmpfs: initialized
[    0.294658] xor: automatically using best checksumming function:
[    0.394035]    avx       : 33407.600 MB/sec
[    0.394167] NET: Registered protocol family 16
[    0.424035] cpuidle: using governor ladder
[    0.454026] cpuidle: using governor menu
[    0.454180] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.454234] ACPI: bus type PCI registered
[    0.454333] dca service started, version 1.12.1
[    0.454394] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.454457] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.454725] PCI: Using configuration type 1 for base access
[    0.654007] raid6: sse2x1   11579 MB/s
[    0.823990] raid6: sse2x2   14899 MB/s
[    0.993972] raid6: sse2x4   17651 MB/s
[    1.163952] raid6: avx2x1   22581 MB/s
[    1.333934] raid6: avx2x2   26582 MB/s
[    1.503913] raid6: avx2x4   31348 MB/s
[    1.503964] raid6: using algorithm avx2x4 (31348 MB/s)
[    1.504016] raid6: using avx2x2 recovery algorithm
[    1.504103] ACPI: Added _OSI(Module Device)
[    1.504154] ACPI: Added _OSI(Processor Device)
[    1.504205] ACPI: Added _OSI(3.0 _SCP Extensions)
[    1.504257] ACPI: Added _OSI(Processor Aggregator Device)
[    1.516373] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    1.518223] ACPI: Interpreter enabled
[    1.518276] ACPI: (supports S0 S5)
[    1.518326] ACPI: Using IOAPIC for interrupt routing
[    1.518395] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    1.532429] ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus ff])
[    1.532484] acpi PNP0A03:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    3.553643] acpi PNP0A03:03: _OSC: platform does not support [PCIeHotplug]
[    5.583377] acpi PNP0A03:03: _OSC: OS now controls [PME AER PCIeCapability]
[    5.583454] PCI host bridge to bus 0000:ff
[    5.583505] pci_bus 0000:ff: root bus resource [bus ff]
[    5.583563] pci 0000:ff:0b.0: [8086:2f81] type 00 class 0x088000
[    5.583596] pci 0000:ff:0b.1: [8086:2f36] type 00 class 0x110100
[    5.583624] pci 0000:ff:0b.2: [8086:2f37] type 00 class 0x110100
[    5.583651] pci 0000:ff:0c.0: [8086:2fe0] type 00 class 0x088000
[    5.583678] pci 0000:ff:0c.1: [8086:2fe1] type 00 class 0x088000
[    5.583704] pci 0000:ff:0c.2: [8086:2fe2] type 00 class 0x088000
[    5.583730] pci 0000:ff:0c.3: [8086:2fe3] type 00 class 0x088000
[    5.583755] pci 0000:ff:0c.4: [8086:2fe4] type 00 class 0x088000
[    5.583780] pci 0000:ff:0c.5: [8086:2fe5] type 00 class 0x088000
[    5.583807] pci 0000:ff:0f.0: [8086:2ff8] type 00 class 0x088000
[    5.583833] pci 0000:ff:0f.1: [8086:2ff9] type 00 class 0x088000
[    5.583859] pci 0000:ff:0f.4: [8086:2ffc] type 00 class 0x088000
[    5.583884] pci 0000:ff:0f.5: [8086:2ffd] type 00 class 0x088000
[    5.583910] pci 0000:ff:0f.6: [8086:2ffe] type 00 class 0x088000
[    5.583936] pci 0000:ff:10.0: [8086:2f1d] type 00 class 0x088000
[    5.583961] pci 0000:ff:10.1: [8086:2f34] type 00 class 0x110100
[    5.583987] pci 0000:ff:10.5: [8086:2f1e] type 00 class 0x088000
[    5.584012] pci 0000:ff:10.6: [8086:2f7d] type 00 class 0x110100
[    5.584037] pci 0000:ff:10.7: [8086:2f1f] type 00 class 0x088000
[    5.584062] pci 0000:ff:12.0: [8086:2fa0] type 00 class 0x088000
[    5.584089] pci 0000:ff:12.1: [8086:2f30] type 00 class 0x110100
[    5.584119] pci 0000:ff:13.0: [8086:2fa8] type 00 class 0x088000
[    5.584147] pci 0000:ff:13.1: [8086:2f71] type 00 class 0x088000
[    5.584176] pci 0000:ff:13.2: [8086:2faa] type 00 class 0x088000
[    5.584204] pci 0000:ff:13.3: [8086:2fab] type 00 class 0x088000
[    5.584233] pci 0000:ff:13.4: [8086:2fac] type 00 class 0x088000
[    5.584262] pci 0000:ff:13.5: [8086:2fad] type 00 class 0x088000
[    5.584290] pci 0000:ff:13.6: [8086:2fae] type 00 class 0x088000
[    5.584316] pci 0000:ff:13.7: [8086:2faf] type 00 class 0x088000
[    5.584343] pci 0000:ff:14.0: [8086:2fb0] type 00 class 0x088000
[    5.584372] pci 0000:ff:14.1: [8086:2fb1] type 00 class 0x088000
[    5.584400] pci 0000:ff:14.2: [8086:2fb2] type 00 class 0x088000
[    5.584429] pci 0000:ff:14.3: [8086:2fb3] type 00 class 0x088000
[    5.584458] pci 0000:ff:14.6: [8086:2fbe] type 00 class 0x088000
[    5.584485] pci 0000:ff:14.7: [8086:2fbf] type 00 class 0x088000
[    5.584512] pci 0000:ff:15.0: [8086:2fb4] type 00 class 0x088000
[    5.584541] pci 0000:ff:15.1: [8086:2fb5] type 00 class 0x088000
[    5.584571] pci 0000:ff:15.2: [8086:2fb6] type 00 class 0x088000
[    5.584600] pci 0000:ff:15.3: [8086:2fb7] type 00 class 0x088000
[    5.584630] pci 0000:ff:16.0: [8086:2f68] type 00 class 0x088000
[    5.584659] pci 0000:ff:16.6: [8086:2f6e] type 00 class 0x088000
[    5.584687] pci 0000:ff:16.7: [8086:2f6f] type 00 class 0x088000
[    5.584714] pci 0000:ff:17.0: [8086:2fd0] type 00 class 0x088000
[    5.584743] pci 0000:ff:17.4: [8086:2fb8] type 00 class 0x088000
[    5.584771] pci 0000:ff:17.5: [8086:2fb9] type 00 class 0x088000
[    5.584798] pci 0000:ff:17.6: [8086:2fba] type 00 class 0x088000
[    5.584826] pci 0000:ff:17.7: [8086:2fbb] type 00 class 0x088000
[    5.584856] pci 0000:ff:1e.0: [8086:2f98] type 00 class 0x088000
[    5.584882] pci 0000:ff:1e.1: [8086:2f99] type 00 class 0x088000
[    5.584909] pci 0000:ff:1e.2: [8086:2f9a] type 00 class 0x088000
[    5.584935] pci 0000:ff:1e.3: [8086:2fc0] type 00 class 0x088000
[    5.584937] pci 0000:ff:1e.3: [Firmware Bug]: reg 0x10: invalid BAR (can't size)
[    5.585016] pci 0000:ff:1e.4: [8086:2f9c] type 00 class 0x088000
[    5.585044] pci 0000:ff:1f.0: [8086:2f88] type 00 class 0x088000
[    5.585072] pci 0000:ff:1f.2: [8086:2f8a] type 00 class 0x088000
[    5.585102] acpi PNP0A03:03: Disabling ASPM (FADT indicates it is unsupported)
[    5.585805] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[    5.585860] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    5.586013] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug]
[    5.586156] acpi PNP0A08:00: _OSC: OS now controls [PME AER PCIeCapability]
[    5.586392] PCI host bridge to bus 0000:00
[    5.586444] pci_bus 0000:00: root bus resource [bus 00-fe]
[    5.586497] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    5.586551] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    5.586604] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    5.586658] pci_bus 0000:00: root bus resource [io  0x1000-0xffff window]
[    5.586711] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    5.586766] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfbffbfff window]
[    5.586824] pci 0000:00:00.0: [8086:2f00] type 00 class 0x060000
[    5.586906] pci 0000:00:01.0: [8086:2f02] type 01 class 0x060400
[    5.586940] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    5.586977] pci 0000:00:01.0: System wakeup disabled by ACPI
[    5.587051] pci 0000:00:02.0: [8086:2f04] type 01 class 0x060400
[    5.587084] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    5.587120] pci 0000:00:02.0: System wakeup disabled by ACPI
[    5.587194] pci 0000:00:03.0: [8086:2f08] type 01 class 0x060400
[    5.587228] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    5.587263] pci 0000:00:03.0: System wakeup disabled by ACPI
[    5.587335] pci 0000:00:05.0: [8086:2f28] type 00 class 0x088000
[    5.587404] pci 0000:00:05.1: [8086:2f29] type 00 class 0x088000
[    5.587480] pci 0000:00:05.2: [8086:2f2a] type 00 class 0x088000
[    5.587548] pci 0000:00:05.4: [8086:2f2c] type 00 class 0x080020
[    5.587553] pci 0000:00:05.4: reg 0x10: [mem 0xfb13d000-0xfb13dfff]
[    5.587635] pci 0000:00:11.0: [8086:8d7c] type 00 class 0xff0000
[    5.587773] pci 0000:00:14.0: [8086:8d31] type 00 class 0x0c0330
[    5.587787] pci 0000:00:14.0: reg 0x10: [mem 0xfb120000-0xfb12ffff 64bit]
[    5.587829] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    5.587870] pci 0000:00:14.0: System wakeup disabled by ACPI
[    5.587947] pci 0000:00:16.0: [8086:8d3a] type 00 class 0x078000
[    5.587962] pci 0000:00:16.0: reg 0x10: [mem 0xfb13c000-0xfb13c00f 64bit]
[    5.588014] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    5.588080] pci 0000:00:19.0: [8086:15a1] type 00 class 0x020000
[    5.588093] pci 0000:00:19.0: reg 0x10: [mem 0xfb100000-0xfb11ffff]
[    5.588099] pci 0000:00:19.0: reg 0x14: [mem 0xfb139000-0xfb139fff]
[    5.588105] pci 0000:00:19.0: reg 0x18: [io  0xf020-0xf03f]
[    5.588153] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
[    5.588191] pci 0000:00:19.0: System wakeup disabled by ACPI
[    5.588269] pci 0000:00:1a.0: [8086:8d2d] type 00 class 0x0c0320
[    5.588286] pci 0000:00:1a.0: reg 0x10: [mem 0xfb138000-0xfb1383ff]
[    5.588360] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    5.588405] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    5.588484] pci 0000:00:1b.0: [8086:8d20] type 00 class 0x040300
[    5.588496] pci 0000:00:1b.0: reg 0x10: [mem 0xfb130000-0xfb133fff 64bit]
[    5.588552] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    5.588611] pci 0000:00:1c.0: [8086:8d10] type 01 class 0x060400
[    5.588666] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    5.588705] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    5.588782] pci 0000:00:1c.3: [8086:8d16] type 01 class 0x060400
[    5.588838] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    5.588877] pci 0000:00:1c.3: System wakeup disabled by ACPI
[    5.588951] pci 0000:00:1c.4: [8086:8d18] type 01 class 0x060400
[    5.589007] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    5.589046] pci 0000:00:1c.4: System wakeup disabled by ACPI
[    5.589127] pci 0000:00:1d.0: [8086:8d26] type 00 class 0x0c0320
[    5.589143] pci 0000:00:1d.0: reg 0x10: [mem 0xfb137000-0xfb1373ff]
[    5.589218] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    5.589263] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    5.589341] pci 0000:00:1f.0: [8086:8d47] type 00 class 0x060100
[    5.589483] pci 0000:00:1f.2: [8086:8d02] type 00 class 0x010601
[    5.589495] pci 0000:00:1f.2: reg 0x10: [io  0xf070-0xf077]
[    5.589500] pci 0000:00:1f.2: reg 0x14: [io  0xf060-0xf063]
[    5.589505] pci 0000:00:1f.2: reg 0x18: [io  0xf050-0xf057]
[    5.589510] pci 0000:00:1f.2: reg 0x1c: [io  0xf040-0xf043]
[    5.589515] pci 0000:00:1f.2: reg 0x20: [io  0xf000-0xf01f]
[    5.589521] pci 0000:00:1f.2: reg 0x24: [mem 0xfb136000-0xfb1367ff]
[    5.589551] pci 0000:00:1f.2: PME# supported from D3hot
[    5.589605] pci 0000:00:1f.3: [8086:8d22] type 00 class 0x0c0500
[    5.589616] pci 0000:00:1f.3: reg 0x10: [mem 0xfb135000-0xfb1350ff 64bit]
[    5.589631] pci 0000:00:1f.3: reg 0x20: [io  0x0580-0x059f]
[    5.589715] pci 0000:00:01.0: PCI bridge to [bus 03]
[    5.589792] pci 0000:00:02.0: PCI bridge to [bus 02]
[    5.589877] pci 0000:01:00.0: [10de:13c2] type 00 class 0x030000
[    5.589886] pci 0000:01:00.0: reg 0x10: [mem 0xfa000000-0xfaffffff]
[    5.589893] pci 0000:01:00.0: reg 0x14: [mem 0xc0000000-0xcfffffff 64bit pref]
[    5.589901] pci 0000:01:00.0: reg 0x1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
[    5.589906] pci 0000:01:00.0: reg 0x24: [io  0xe000-0xe07f]
[    5.589911] pci 0000:01:00.0: reg 0x30: [mem 0xfb000000-0xfb07ffff pref]
[    5.589989] pci 0000:01:00.1: [10de:0fbb] type 00 class 0x040300
[    5.589998] pci 0000:01:00.1: reg 0x10: [mem 0xfb080000-0xfb083fff]
[    5.613361] pci 0000:00:03.0: PCI bridge to [bus 01]
[    5.613414] pci 0000:00:03.0:   bridge window [io  0xe000-0xefff]
[    5.613415] pci 0000:00:03.0:   bridge window [mem 0xfa000000-0xfb0fffff]
[    5.613418] pci 0000:00:03.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    5.613453] pci 0000:00:1c.0: PCI bridge to [bus 04]
[    5.613564] pci 0000:05:00.0: [14e4:43b1] type 00 class 0x028000
[    5.613586] pci 0000:05:00.0: reg 0x10: [mem 0xfb400000-0xfb407fff 64bit]
[    5.613601] pci 0000:05:00.0: reg 0x18: [mem 0xfb200000-0xfb3fffff 64bit]
[    5.613713] pci 0000:05:00.0: supports D1 D2
[    5.613714] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    5.643359] pci 0000:00:1c.3: PCI bridge to [bus 05]
[    5.643415] pci 0000:00:1c.3:   bridge window [mem 0xfb200000-0xfb4fffff]
[    5.643470] pci 0000:06:00.0: [1b21:1242] type 00 class 0x0c0330
[    5.643491] pci 0000:06:00.0: reg 0x10: [mem 0xfb600000-0xfb607fff 64bit]
[    5.643606] pci 0000:06:00.0: PME# supported from D3hot D3cold
[    5.673354] pci 0000:00:1c.4: PCI bridge to [bus 06]
[    5.673409] pci 0000:00:1c.4:   bridge window [mem 0xfb600000-0xfb6fffff]
[    5.673438] pci_bus 0000:00: on NUMA node 0
[    5.673438] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
[    5.673880] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    5.674455] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[    5.675028] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 10 11 12 14 15)
[    5.675559] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 *14 15)
[    5.676091] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    5.676663] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    5.677235] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 *7 10 11 12 14 15)
[    5.677808] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 12 14 *15)
[    5.678402] ACPI: Enabled 2 GPEs in block 00 to 3F
[    5.678610] vgaarb: setting as boot device: PCI:0000:01:00.0
[    5.678663] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    5.678718] vgaarb: loaded
[    5.678768] vgaarb: bridge control possible 0000:01:00.0
[    5.678862] SCSI subsystem initialized
[    5.678939] libata version 3.00 loaded.
[    5.678960] ACPI: bus type USB registered
[    5.679023] usbcore: registered new interface driver usbfs
[    5.679081] usbcore: registered new interface driver hub
[    5.679150] usbcore: registered new device driver usb
[    5.679276] Advanced Linux Sound Architecture Driver Initialized.
[    5.679329] PCI: Using ACPI for IRQ routing
[    5.684230] PCI: pci_cache_line_size set to 64 bytes
[    5.684297] e820: reserve RAM buffer [mem 0x0009e800-0x0009ffff]
[    5.684298] e820: reserve RAM buffer [mem 0xb9a74000-0xbbffffff]
[    5.684299] e820: reserve RAM buffer [mem 0xbd079000-0xbfffffff]
[    5.684300] e820: reserve RAM buffer [mem 0xbd318000-0xbfffffff]
[    5.684300] e820: reserve RAM buffer [mem 0xbe000000-0xbfffffff]
[    5.684363] Bluetooth: Core ver 2.20
[    5.684418] NET: Registered protocol family 31
[    5.684469] Bluetooth: HCI device and connection manager initialized
[    5.684522] Bluetooth: HCI socket layer initialized
[    5.684574] Bluetooth: L2CAP socket layer initialized
[    5.684628] Bluetooth: SCO socket layer initialized
[    5.684713] cfg80211: Calling CRDA to update world regulatory domain
[    5.684896] Switched to clocksource hpet
[    5.685775] pnp: PnP ACPI init
[    5.685930] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[    5.685974] system 00:01: [io  0x0500-0x057f] has been reserved
[    5.686027] system 00:01: [io  0x0400-0x047f] could not be reserved
[    5.686081] system 00:01: [io  0x0580-0x059f] has been reserved
[    5.686134] system 00:01: [io  0x0600-0x061f] has been reserved
[    5.686187] system 00:01: [io  0x0880-0x0883] has been reserved
[    5.686240] system 00:01: [io  0x0800-0x081f] has been reserved
[    5.686294] system 00:01: [mem 0xfed1c000-0xfed3ffff] could not be reserved
[    5.686348] system 00:01: [mem 0xfed45000-0xfed8bfff] has been reserved
[    5.686401] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
[    5.686455] system 00:01: [mem 0xfee00000-0xfeefffff] has been reserved
[    5.686508] system 00:01: [mem 0xfed12000-0xfed1200f] has been reserved
[    5.686562] system 00:01: [mem 0xfed12010-0xfed1201f] has been reserved
[    5.686616] system 00:01: [mem 0xfed1b000-0xfed1bfff] has been reserved
[    5.686669] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    5.686731] system 00:02: [io  0x0290-0x029f] has been reserved
[    5.686784] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    5.686916] pnp 00:03: [dma 0 disabled]
[    5.686939] pnp 00:03: Plug and Play ACPI device, IDs PNP0501 (active)
[    5.687178] pnp: PnP ACPI: found 4 devices
[    5.691822] pci 0000:00:01.0: PCI bridge to [bus 03]
[    5.691878] pci 0000:00:02.0: PCI bridge to [bus 02]
[    5.691933] pci 0000:00:03.0: PCI bridge to [bus 01]
[    5.691986] pci 0000:00:03.0:   bridge window [io  0xe000-0xefff]
[    5.692040] pci 0000:00:03.0:   bridge window [mem 0xfa000000-0xfb0fffff]
[    5.692094] pci 0000:00:03.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    5.692149] pci 0000:00:1c.0: PCI bridge to [bus 04]
[    5.692208] pci 0000:00:1c.3: PCI bridge to [bus 05]
[    5.692262] pci 0000:00:1c.3:   bridge window [mem 0xfb200000-0xfb4fffff]
[    5.692319] pci 0000:00:1c.4: PCI bridge to [bus 06]
[    5.692373] pci 0000:00:1c.4:   bridge window [mem 0xfb600000-0xfb6fffff]
[    5.692431] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    5.692432] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    5.692433] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    5.692434] pci_bus 0000:00: resource 7 [io  0x1000-0xffff window]
[    5.692434] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    5.692435] pci_bus 0000:00: resource 9 [mem 0xc0000000-0xfbffbfff window]
[    5.692436] pci_bus 0000:01: resource 0 [io  0xe000-0xefff]
[    5.692437] pci_bus 0000:01: resource 1 [mem 0xfa000000-0xfb0fffff]
[    5.692438] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
[    5.692439] pci_bus 0000:05: resource 1 [mem 0xfb200000-0xfb4fffff]
[    5.692439] pci_bus 0000:06: resource 1 [mem 0xfb600000-0xfb6fffff]
[    5.692468] NET: Registered protocol family 2
[    5.692653] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    5.692829] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    5.692961] TCP: Hash tables configured (established 131072 bind 65536)
[    5.693024] TCP: reno registered
[    5.693084] UDP hash table entries: 8192 (order: 6, 262144 bytes)
[    5.693167] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
[    5.693282] NET: Registered protocol family 1
[    5.693382] RPC: Registered named UNIX socket transport module.
[    5.693435] RPC: Registered udp transport module.
[    5.693487] RPC: Registered tcp transport module.
[    5.693538] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    5.734937] pci 0000:01:00.0: Video device with shadowed ROM
[    5.735020] PCI: CLS 32 bytes, default 64
[    5.735043] Trying to unpack rootfs image as initramfs...
[    6.030083] Freeing initrd memory: 4212K (ffff8800377b6000 - ffff880037bd3000)
[    6.030143] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    6.030196] software IO TLB [mem 0xb5a74000-0xb9a74000] (64MB) mapped at [ffff8800b5a74000-ffff8800b9a73fff]
[    6.031263] futex hash table entries: 4096 (order: 6, 262144 bytes)
[    6.031723] VFS: Disk quotas dquot_6.5.2
[    6.031787] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    6.031959] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    6.032116] NFS: Registering the id_resolver key type
[    6.032175] Key type id_resolver registered
[    6.032226] Key type id_legacy registered
[    6.032290] ntfs: driver 2.1.31 [Flags: R/O].
[    6.032368] SGI XFS with ACLs, security attributes, realtime, no debug enabled
[    6.033022] async_tx: api initialized (async)
[    6.033081] bounce: pool size: 64 pages
[    6.033142] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    6.033196] io scheduler noop registered
[    6.033248] io scheduler deadline registered (default)
[    6.033873] aer 0000:00:01.0:pcie02: service driver aer loaded
[    6.033886] aer 0000:00:02.0:pcie02: service driver aer loaded
[    6.033898] aer 0000:00:03.0:pcie02: service driver aer loaded
[    6.033906] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
[    6.033961] pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
[    6.033965] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
[    6.034019] pcie_pme 0000:00:02.0:pcie01: service driver pcie_pme loaded
[    6.034023] pcieport 0000:00:03.0: Signaling PME through PCIe PME interrupt
[    6.034077] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    6.034130] pci 0000:01:00.1: Signaling PME through PCIe PME interrupt
[    6.034184] pcie_pme 0000:00:03.0:pcie01: service driver pcie_pme loaded
[    6.034195] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[    6.034250] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[    6.034260] pcieport 0000:00:1c.3: Signaling PME through PCIe PME interrupt
[    6.034313] pci 0000:05:00.0: Signaling PME through PCIe PME interrupt
[    6.034368] pcie_pme 0000:00:1c.3:pcie01: service driver pcie_pme loaded
[    6.034378] pcieport 0000:00:1c.4: Signaling PME through PCIe PME interrupt
[    6.034432] pci 0000:06:00.0: Signaling PME through PCIe PME interrupt
[    6.034487] pcie_pme 0000:00:1c.4:pcie01: service driver pcie_pme loaded
[    6.034514] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    6.055086] 00:03: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    6.055311] Initializing Nozomi driver 2.1d
[    6.055391] Non-volatile memory driver v1.3
[    6.055531] smapi::smapi_init, ERROR invalid usSmapiID
[    6.055583] mwave: tp3780i::tp3780I_InitializeBoardData: Error: SMAPI is not available on this machine
[    6.055645] mwave: mwavedd::mwave_init: Error: Failed to initialize board data
[    6.055699] mwave: mwavedd::mwave_init: Error: Failed to initialize
[    6.055753] Linux agpgart interface v0.103
[    6.055850] ipmi message handler version 39.2
[    6.056016] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    6.056073] ACPI: Power Button [PWRB]
[    6.056147] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    6.056201] ACPI: Power Button [PWRF]
[    6.057327] ioatdma: Intel(R) QuickData Technology Driver 4.00
[    6.057400] xenfs: not registering filesystem on non-xen platform
[    6.058240] brd: module loaded
[    6.058898] loop: module loaded
[    6.058949] HP CISS Driver (v 3.6.26)
[    6.061503] MM: desc_per_page = 128
[    6.061605] nbd: registered device at major 43
[    6.062247] Loading iSCSI transport class v2.0-870.
[    6.062488] fnic: Cisco FCoE HBA Driver, ver 1.6.0.17
[    6.062553] fnic: Successfully Initialized Trace Buffer
[    6.062632] fnic: Successfully Initialized FC_CTLR Trace Buffer
[    6.062740] iscsi: registered transport (tcp)
[    6.062828] Loading Adaptec I2O RAID: Version 2.4 Build 5go
[    6.062880] Detecting Adaptec I2O RAID controllers...
[    6.062981] Adaptec aacraid driver 1.2-0[30300]-ms
[    6.063047] aic94xx: Adaptec aic94xx SAS/SATA driver version 1.0.3 loaded
[    6.063133] isci: Intel(R) C600 SAS Controller Driver - version 1.2.0
[    6.063219] scsi: <fdomain> Detection failed (no card)
[    6.063286] qla2xxx [0000:00:00.0]-0005: : QLogic Fibre Channel HBA Driver: 8.07.00.16-k.
[    6.063360] iscsi: registered transport (qla4xxx)
[    6.063420] QLogic iSCSI HBA Driver
[    6.063471] Emulex LightPulse Fibre Channel SCSI driver 10.4.8000.0.
[    6.063524] Copyright(c) 2004-2014 Emulex.  All rights reserved.
[    6.063604] Brocade BFA FC/FCOE SCSI driver - version: 3.2.23.0
[    6.063669] csiostor: Chelsio FCoE driver 1.0.0
[    6.063794] megaraid cmm: 2.20.2.7 (Release Date: Sun Jul 16 00:01:03 EST 2006)
[    6.063860] megaraid: 2.20.5.1 (Release Date: Thu Nov 16 15:32:35 EST 2006)
[    6.063924] megasas: 06.806.08.00-rc1
[    6.063988] mpt2sas version 20.100.00.00 loaded
[    6.064063] mpt3sas version 04.100.00.00 loaded
[    6.064147] GDT-HA: Storage RAID Controller Driver. Version: 3.05
[    6.064228] 3ware Storage Controller device driver for Linux v1.26.02.003.
[    6.064292] 3ware 9000 Storage Controller device driver for Linux v2.26.02.014.
[    6.064355] LSI 3ware SAS/SATA-RAID Controller device driver for Linux v3.26.02.000.
[    6.064419] ipr: IBM Power RAID SCSI Device Driver version: 2.6.0 (November 16, 2012)
[    6.064486] RocketRAID 3xxx/4xxx Controller driver v1.8
[    6.064548] stex: Promise SuperTrak EX Driver version: 4.6.0000.4
[    6.064630] iscsi: registered transport (be2iscsi)
[    6.064682] In beiscsi_module_init, tt=ffffffff82289b80
[    6.064759] esas2r: driver will not be loaded because no ATTO esas2r devices were found
[    6.064835] VMware PVSCSI driver - version 1.0.5.0-k
[    6.064898] st: Version 20101219, fixed bufsize 32768, s/g segs 256
[    6.064978] SCSI Media Changer driver v0.25
[    6.065057] ahci 0000:00:1f.2: version 3.0
[    6.065156] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x7 impl SATA mode
[    6.065213] ahci 0000:00:1f.2: flags: 64bit ncq led clo pio slum part ems apst
[    6.105076] scsi host0: ahci
[    6.105171] scsi host1: ahci
[    6.105262] scsi host2: ahci
[    6.105352] scsi host3: ahci
[    6.105440] scsi host4: ahci
[    6.105529] scsi host5: ahci
[    6.105603] ata1: SATA max UDMA/133 abar m2048@0xfb136000 port 0xfb136100 irq 33
[    6.105658] ata2: SATA max UDMA/133 abar m2048@0xfb136000 port 0xfb136180 irq 33
[    6.105712] ata3: SATA max UDMA/133 abar m2048@0xfb136000 port 0xfb136200 irq 33
[    6.105766] ata4: DUMMY
[    6.105815] ata5: DUMMY
[    6.105865] ata6: DUMMY
[    6.106524] tun: Universal TUN/TAP device driver, 1.6
[    6.106577] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    6.106646] Atheros(R) L2 Ethernet Driver - version 2.2.3
[    6.106697] Copyright (c) 2007 Atheros Corporation.
[    6.106760] jme: JMicron JMC2XX ethernet driver version 1.0.8
[    6.106823] PPP generic driver version 2.4.2
[    6.106893] PPP BSD Compression module registered
[    6.106946] PPP Deflate Compression module registered
[    6.107001] PPP MPPE Compression module registered
[    6.107056] NET: Registered protocol family 24
[    6.107113] SLIP: version 0.8.4-NET3.019-NEWTTY (dynamic channels, max=256) (6 bit encapsulation enabled).
[    6.107176] CSLIP: code copyright 1989 Regents of the University of California.
[    6.107229] SLIP linefill/keepalive option.
[    6.107293] Broadcom 43xx driver loaded [ Features: PNL ]
[    6.107350] Broadcom 43xx-legacy driver loaded [ Features: PLID ]
[    6.107415] VMware vmxnet3 virtual NIC driver - version 1.3.4.0-k-NAPI
[    6.107483] Fusion MPT base driver 3.04.20
[    6.107534] Copyright (c) 1999-2008 LSI Corporation
[    6.107589] Fusion MPT SPI Host driver 3.04.20
[    6.107652] Fusion MPT FC Host driver 3.04.20
[    6.107717] Fusion MPT SAS Host driver 3.04.20
[    6.107781] Fusion MPT misc device (ioctl) driver 3.04.20
[    6.107846] mptctl: Registered with Fusion MPT base driver
[    6.107852] usbcore: registered new interface driver brcmfmac
[    6.107951] mptctl: /dev/mptctl @ (major,minor=10,220)
[    6.108006] Fusion MPT LAN driver 3.04.20
[    6.108174] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    6.108229] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    6.108347] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00009810
[    6.108408] xhci_hcd 0000:00:14.0: cache line size of 32 is not supported
[    6.108467] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    6.108522] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.108576] usb usb1: Product: xHCI Host Controller
[    6.108628] usb usb1: Manufacturer: Linux 4.0.5-gentoo xhci-hcd
[    6.108680] usb usb1: SerialNumber: 0000:00:14.0
[    6.108797] hub 1-0:1.0: USB hub found
[    6.108865] hub 1-0:1.0: 15 ports detected
[    6.110311] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    6.110365] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    6.110458] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    6.110513] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.110567] usb usb2: Product: xHCI Host Controller
[    6.110619] usb usb2: Manufacturer: Linux 4.0.5-gentoo xhci-hcd
[    6.110672] usb usb2: SerialNumber: 0000:00:14.0
[    6.110785] hub 2-0:1.0: USB hub found
[    6.110846] hub 2-0:1.0: 6 ports detected
[    6.111551] xhci_hcd 0000:06:00.0: xHCI Host Controller
[    6.111606] xhci_hcd 0000:06:00.0: new USB bus registered, assigned bus number 3
[    6.170411] xhci_hcd 0000:06:00.0: hcc params 0x0200eec1 hci version 0x110 quirks 0x00000010
[    6.170592] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    6.170646] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.170700] usb usb3: Product: xHCI Host Controller
[    6.170752] usb usb3: Manufacturer: Linux 4.0.5-gentoo xhci-hcd
[    6.170804] usb usb3: SerialNumber: 0000:06:00.0
[    6.170909] hub 3-0:1.0: USB hub found
[    6.170966] hub 3-0:1.0: 2 ports detected
[    6.171076] xhci_hcd 0000:06:00.0: xHCI Host Controller
[    6.171130] xhci_hcd 0000:06:00.0: new USB bus registered, assigned bus number 4
[    6.171228] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[    6.171282] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.171336] usb usb4: Product: xHCI Host Controller
[    6.171387] usb usb4: Manufacturer: Linux 4.0.5-gentoo xhci-hcd
[    6.171440] usb usb4: SerialNumber: 0000:06:00.0
[    6.171550] hub 4-0:1.0: USB hub found
[    6.171609] hub 4-0:1.0: 2 ports detected
[    6.171716] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    6.171770] ehci-pci: EHCI PCI platform driver
[    6.171893] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    6.171948] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 5
[    6.172010] ehci-pci 0000:00:1a.0: debug port 2
[    6.175943] ehci-pci 0000:00:1a.0: cache line size of 32 is not supported
[    6.175953] ehci-pci 0000:00:1a.0: irq 18, io mem 0xfb138000
[    6.194775] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    6.194852] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002
[    6.194906] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.194960] usb usb5: Product: EHCI Host Controller
[    6.195012] usb usb5: Manufacturer: Linux 4.0.5-gentoo ehci_hcd
[    6.195065] usb usb5: SerialNumber: 0000:00:1a.0
[    6.195172] hub 5-0:1.0: USB hub found
[    6.195227] hub 5-0:1.0: 2 ports detected
[    6.195417] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    6.195471] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 6
[    6.195534] ehci-pci 0000:00:1d.0: debug port 2
[    6.199466] ehci-pci 0000:00:1d.0: cache line size of 32 is not supported
[    6.199476] ehci-pci 0000:00:1d.0: irq 21, io mem 0xfb137000
[    6.214771] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    6.214848] usb usb6: New USB device found, idVendor=1d6b, idProduct=0002
[    6.214902] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.214956] usb usb6: Product: EHCI Host Controller
[    6.215008] usb usb6: Manufacturer: Linux 4.0.5-gentoo ehci_hcd
[    6.215060] usb usb6: SerialNumber: 0000:00:1d.0
[    6.215168] hub 6-0:1.0: USB hub found
[    6.215223] hub 6-0:1.0: 2 ports detected
[    6.215361] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    6.215418] ohci-pci: OHCI PCI platform driver
[    6.215481] uhci_hcd: USB Universal Host Controller Interface driver
[    6.215568] usbcore: registered new interface driver cdc_acm
[    6.215620] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[    6.215689] usbcore: registered new interface driver usb-storage
[    6.215747] usbcore: registered new interface driver ums-alauda
[    6.215804] usbcore: registered new interface driver ums-datafab
[    6.215861] usbcore: registered new interface driver ums-freecom
[    6.215918] usbcore: registered new interface driver ums-isd200
[    6.215976] usbcore: registered new interface driver ums-jumpshot
[    6.216033] usbcore: registered new interface driver ums-karma
[    6.216089] usbcore: registered new interface driver ums-sddr09
[    6.216147] usbcore: registered new interface driver ums-sddr55
[    6.216204] usbcore: registered new interface driver ums-usbat
[    6.216257] ftdi_elan: driver ftdi-elan
[    6.216344] usbcore: registered new interface driver ftdi-elan
[    6.216403] usbcore: registered new interface driver sisusb
[    6.216469] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    6.218953] serio: i8042 KBD port at 0x60,0x64 irq 1
[    6.219007] serio: i8042 AUX port at 0x60,0x64 irq 12
[    6.219132] mousedev: PS/2 mouse device common for all mice
[    6.219228] usbcore: registered new interface driver appletouch
[    6.219289] usbcore: registered new interface driver bcm5974
[    6.219382] rtc_cmos 00:00: RTC can wake from S4
[    6.219524] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
[    6.219598] rtc_cmos 00:00: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    6.219683] md: linear personality registered for level -1
[    6.219735] md: raid0 personality registered for level 0
[    6.219788] md: raid1 personality registered for level 1
[    6.219841] md: raid10 personality registered for level 10
[    6.219913] md: raid6 personality registered for level 6
[    6.219965] md: raid5 personality registered for level 5
[    6.220017] md: raid4 personality registered for level 4
[    6.220070] md: multipath personality registered for level -4
[    6.220123] md: faulty personality registered for level -5
[    6.220210] device-mapper: uevent: version 1.0.3
[    6.222731] device-mapper: ioctl: 4.30.0-ioctl (2014-12-22) initialised: dm-devel@redhat.com
[    6.222829] device-mapper: multipath: version 1.8.0 loaded
[    6.222882] device-mapper: multipath round-robin: version 1.0.0 loaded
[    6.222943] device-mapper: raid: Loading target version 1.6.0
[    6.223003] Driver 'mmcblk' needs updating - please use bus_type methods
[    6.223067] sdhci: Secure Digital Host Controller Interface driver
[    6.223119] sdhci: Copyright(c) Pierre Ossman
[    6.223189] wbsd: Winbond W83L51xD SD/MMC card interface driver
[    6.223242] wbsd: Copyright(c) Pierre Ossman
[    6.223311] sdhci-pltfm: SDHCI platform and OF driver helper
[    6.223392] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
[    6.223448] No iBFT detected.
[    6.223507] hidraw: raw HID events driver (C) Jiri Kosina
[    6.223684] usbcore: registered new interface driver usbhid
[    6.223737] usbhid: USB HID core driver
[    6.223883] usbcore: registered new interface driver snd-usb-audio
[    6.223944] usbcore: registered new interface driver snd-usb-usx2y
[    6.224006] usbcore: registered new interface driver snd-usb-us122l
[    6.224068] usbcore: registered new interface driver snd-usb-caiaq
[    6.224178] TCP: cubic registered
[    6.224230] NET: Registered protocol family 17
[    6.224296] Bluetooth: RFCOMM TTY layer initialized
[    6.224349] Bluetooth: RFCOMM socket layer initialized
[    6.224402] Bluetooth: RFCOMM ver 1.11
[    6.224454] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    6.224506] Bluetooth: BNEP filters: protocol multicast
[    6.224558] Bluetooth: BNEP socket layer initialized
[    6.224611] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    6.224664] Bluetooth: HIDP socket layer initialized
[    6.224726] Key type dns_resolver registered
[    6.225172] registered taskstats version 1
[    6.225660] rtc_cmos 00:00: setting system clock to 2015-08-10 21:21:33 UTC (1439241693)
[    6.226302] ALSA device list:
[    6.226353]   No soundcards found.
[    6.424723] usb 1-7: new full-speed USB device number 2 using xhci_hcd
[    6.444721] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    6.444786] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    6.445379] ata2.00: ATA-9: WDC WD60EZRX-00MVLB1, 80.00A80, max UDMA/133
[    6.445435] ata2.00: 11721045168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    6.445494] ata3.00: ATAPI: HL-DT-ST BD-RE  BH16NS40, 1.03, max UDMA/100
[    6.446047] ata2.00: configured for UDMA/133
[    6.446192] ata3.00: configured for UDMA/100
[    6.446536] usb 2-6: new SuperSpeed USB device number 2 using xhci_hcd
[    6.454723] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    6.456623] ata1.00: supports DRM functions and may not be fully accessible
[    6.456732] ata1.00: disabling queued TRIM support
[    6.456733] ata1.00: ATA-9: Samsung SSD 850 PRO 256GB, EXM02B6Q, max UDMA/133
[    6.456787] ata1.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
[    6.457018] ata1.00: supports DRM functions and may not be fully accessible
[    6.457126] ata1.00: disabling queued TRIM support
[    6.457170] ata1.00: configured for UDMA/133
[    6.514697] usb 5-1: new high-speed USB device number 2 using ehci-pci
[    6.534697] usb 6-1: new high-speed USB device number 2 using ehci-pci
[    6.566909] usb 1-7: New USB device found, idVendor=046d, idProduct=c52b
[    6.566964] usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    6.567018] usb 1-7: Product: USB Receiver
[    6.567069] usb 1-7: Manufacturer: Logitech
[    6.571724] logitech-djreceiver 0003:046D:C52B.0003: hiddev0,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-7/input2
[    6.572002] usb 2-6: New USB device found, idVendor=174c, idProduct=3074
[    6.572057] usb 2-6: New USB device strings: Mfr=2, Product=3, SerialNumber=0
[    6.572111] usb 2-6: Product: ASM107x
[    6.572161] usb 2-6: Manufacturer: ASUS TEK.
[    6.584230] hub 2-6:1.0: USB hub found
[    6.596150] hub 2-6:1.0: 4 ports detected
[    6.675042] usb 5-1: New USB device found, idVendor=8087, idProduct=800a
[    6.675096] usb 5-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    6.675304] hub 5-1:1.0: USB hub found
[    6.675415] hub 5-1:1.0: 6 ports detected
[    6.685039] usb 6-1: New USB device found, idVendor=8087, idProduct=8002
[    6.685094] usb 6-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    6.685301] hub 6-1:1.0: USB hub found
[    6.685413] hub 6-1:1.0: 8 ports detected
[    6.694579] input: Logitech Performance MX as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.2/0003:046D:C52B.0003/0003:046D:101A.0004/input/input5
[    6.694694] logitech-hidpp-device 0003:046D:101A.0004: input,hidraw1: USB HID v1.11 Mouse [Logitech Performance MX] on usb-0000:00:14.0-7:1
[    6.698618] input: Logitech K800 as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.2/0003:046D:C52B.0003/0003:046D:2010.0005/input/input6
[    6.698710] logitech-hidpp-device 0003:046D:2010.0005: input,hidraw2: USB HID v1.11 Keyboard [Logitech K800] on usb-0000:00:14.0-7:2
[    6.804631] usb 1-10: new high-speed USB device number 3 using xhci_hcd
[    6.968014] usb 1-10: New USB device found, idVendor=174c, idProduct=2074
[    6.968068] usb 1-10: New USB device strings: Mfr=2, Product=3, SerialNumber=0
[    6.968123] usb 1-10: Product: ASM107x
[    6.968174] usb 1-10: Manufacturer: ASUS TEK.
[    6.968539] hub 1-10:1.0: USB hub found
[    6.968734] hub 1-10:1.0: 4 ports detected
[    7.024572] tsc: Refined TSC clocksource calibration: 3749.996 MHz
[    7.024636] Switched to clocksource tsc
[    7.254587] usb 1-10.1: new full-speed USB device number 4 using xhci_hcd
[    7.367098] usb 1-10.1: New USB device found, idVendor=0b05, idProduct=17cf
[    7.367153] usb 1-10.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    7.367207] usb 1-10.1: Product: BCM20702A0
[    7.367258] usb 1-10.1: Manufacturer: Broadcom Corp
[    7.367310] usb 1-10.1: SerialNumber: 40E23013FDF5
[    7.734470] usb 1-10.4: new high-speed USB device number 6 using xhci_hcd
[    7.845205] usb 1-10.4: New USB device found, idVendor=04e8, idProduct=6864
[    7.845259] usb 1-10.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    7.845313] usb 1-10.4: Product: SAMSUNG_Android
[    7.845366] usb 1-10.4: Manufacturer: SAMSUNG
[    7.845417] usb 1-10.4: SerialNumber: 03157df3b1955a34
[    9.084070] floppy0: no floppy controllers found
[    9.084199] scsi 0:0:0:0: Direct-Access     ATA      Samsung SSD 850  2B6Q PQ: 0 ANSI: 5
[    9.084344] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[    9.084358] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    9.084416] scsi 1:0:0:0: Direct-Access     ATA      WDC WD60EZRX-00M 0A80 PQ: 0 ANSI: 5
[    9.084494] sd 1:0:0:0: [sdb] 11721045168 512-byte logical blocks: (6.00 TB/5.45 TiB)
[    9.084495] sd 1:0:0:0: [sdb] 4096-byte physical blocks
[    9.084507] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    9.084517] sd 1:0:0:0: [sdb] Write Protect is off
[    9.084519] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    9.084529] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    9.084793] scsi 2:0:0:0: CD-ROM            HL-DT-ST BD-RE  BH16NS40  1.03 PQ: 0 ANSI: 5
[    9.084808] sd 0:0:0:0: [sda] Write Protect is off
[    9.084809] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    9.084818] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    9.086746]  sda: sda1 sda2 sda3 sda4
[    9.086931] sd 0:0:0:0: [sda] Attached SCSI disk
[    9.094841] sr 2:0:0:0: [sr0] scsi3-mmc drive: 24x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[    9.094904] cdrom: Uniform CD-ROM driver Revision: 3.20
[    9.094999] sr 2:0:0:0: Attached scsi CD-ROM sr0
[    9.095024] sr 2:0:0:0: Attached scsi generic sg2 type 5
[    9.596863]  sdb: sdb1
[    9.596999] sd 1:0:0:0: [sdb] Attached SCSI disk
[    9.597190] Freeing unused kernel memory: 1056K (ffffffff822fa000 - ffffffff82402000)
[    9.597244] Write protecting the kernel read-only data: 18432k
[    9.597571] Freeing unused kernel memory: 1744K (ffff880001a4c000 - ffff880001c00000)
[    9.597863] Freeing unused kernel memory: 2044K (ffff880002001000 - ffff880002200000)
[    9.647394] libata: disagrees about version of symbol module_layout
[    9.648048] libata: disagrees about version of symbol module_layout
[    9.648689] libata: disagrees about version of symbol module_layout
[    9.649334] libata: disagrees about version of symbol module_layout
[    9.649976] libata: disagrees about version of symbol module_layout
[    9.650613] libata: disagrees about version of symbol module_layout
[    9.651253] libata: disagrees about version of symbol module_layout
[    9.651885] libata: disagrees about version of symbol module_layout
[    9.652520] libata: disagrees about version of symbol module_layout
[    9.653159] libata: disagrees about version of symbol module_layout
[    9.653800] libata: disagrees about version of symbol module_layout
[    9.654458] libata: disagrees about version of symbol module_layout
[    9.655095] libata: disagrees about version of symbol module_layout
[    9.655734] libata: disagrees about version of symbol module_layout
[    9.662363] libata: disagrees about version of symbol module_layout
[    9.664982] libata: disagrees about version of symbol module_layout
[    9.665626] libata: disagrees about version of symbol module_layout
[    9.666251] pcmcia_core: disagrees about version of symbol module_layout
[    9.668866] libata: disagrees about version of symbol module_layout
[    9.669507] libata: disagrees about version of symbol module_layout
[    9.670150] libata: disagrees about version of symbol module_layout
[    9.670795] libata: disagrees about version of symbol module_layout
[    9.671429] libata: disagrees about version of symbol module_layout
[    9.672082] libata: disagrees about version of symbol module_layout
[    9.672723] libata: disagrees about version of symbol module_layout
[    9.677315] libata: disagrees about version of symbol module_layout
[    9.677952] libata: disagrees about version of symbol module_layout
[    9.678589] libata: disagrees about version of symbol module_layout
[    9.679228] libata: disagrees about version of symbol module_layout
[    9.679866] libata: disagrees about version of symbol module_layout
[    9.680508] libata: disagrees about version of symbol module_layout
[    9.687091] libata: disagrees about version of symbol module_layout
[    9.687728] libata: disagrees about version of symbol module_layout
[    9.688982] libata: disagrees about version of symbol module_layout
[    9.689619] libata: disagrees about version of symbol module_layout
[    9.690255] libata: disagrees about version of symbol module_layout
[    9.690888] libata: disagrees about version of symbol module_layout
[    9.691533] libata: disagrees about version of symbol module_layout
[    9.692173] libata: disagrees about version of symbol module_layout
[    9.692806] libata: disagrees about version of symbol module_layout
[    9.693446] libata: disagrees about version of symbol module_layout
[    9.694114] libata: disagrees about version of symbol module_layout
[    9.694763] libata: disagrees about version of symbol module_layout
[    9.695404] libata: disagrees about version of symbol module_layout
[    9.696044] libata: disagrees about version of symbol module_layout
[    9.696675] libata: disagrees about version of symbol module_layout
[    9.697315] libata: disagrees about version of symbol module_layout
[    9.697951] libata: disagrees about version of symbol module_layout
[    9.698584] libata: disagrees about version of symbol module_layout
[    9.699223] libata: disagrees about version of symbol module_layout
[    9.702350] sg: disagrees about version of symbol module_layout
[    9.704855] scsi_transport_spi: disagrees about version of symbol module_layout
[    9.705380] scsi_transport_spi: disagrees about version of symbol module_layout
[    9.707867] arcmsr: disagrees about version of symbol module_layout
[    9.708394] BusLogic: disagrees about version of symbol module_layout
[    9.712845] initio: disagrees about version of symbol module_layout
[    9.713378] advansys: disagrees about version of symbol module_layout
[    9.721754] fdomain: disagrees about version of symbol module_layout
[    9.722292] gdth: disagrees about version of symbol module_layout
[    9.748436] scsi_transport_spi: disagrees about version of symbol module_layout
[    9.748961] scsi_transport_spi: disagrees about version of symbol module_layout
[    9.753415] ips: disagrees about version of symbol module_layout
[    9.753981] qla1280: disagrees about version of symbol module_layout
[    9.758435] dc395x: disagrees about version of symbol module_layout
[    9.758966] atp870u: disagrees about version of symbol module_layout
[    9.759559] mptbase: disagrees about version of symbol module_layout
[    9.760149] mptbase: disagrees about version of symbol module_layout
[    9.760733] scsi_transport_spi: disagrees about version of symbol module_layout
[    9.761320] scsi_transport_fc: disagrees about version of symbol module_layout
[    9.761904] scsi_transport_sas: disagrees about version of symbol module_layout
[    9.762437] 3w_xxxx: disagrees about version of symbol module_layout
[    9.762972] 3w_9xxx: disagrees about version of symbol module_layout
[    9.765467] cciss: disagrees about version of symbol module_layout
[    9.766011] hpsa: disagrees about version of symbol module_layout
[    9.766541] DAC960: disagrees about version of symbol module_layout
[    9.767060] sx8: disagrees about version of symbol module_layout
[    9.767603] aacraid: disagrees about version of symbol module_layout
[    9.768136] megaraid: disagrees about version of symbol module_layout
[    9.768654] megaraid_mm: disagrees about version of symbol module_layout
[    9.769168] megaraid_mm: disagrees about version of symbol module_layout
[    9.769705] megaraid_sas: disagrees about version of symbol module_layout
[    9.770242] scsi_transport_fc: disagrees about version of symbol module_layout
[    9.772738] scsi_transport_fc: disagrees about version of symbol module_layout
[    9.773306] libata: disagrees about version of symbol module_layout
[    9.773843] scsi_transport_sas: disagrees about version of symbol module_layout
[    9.775101] ehci_hcd: disagrees about version of symbol module_layout
[    9.775675] ehci_hcd: disagrees about version of symbol module_layout
[    9.782128] usb_storage: disagrees about version of symbol module_layout
[    9.782707] uhci_hcd: disagrees about version of symbol module_layout
[    9.783286] ohci_hcd: disagrees about version of symbol module_layout
[    9.783875] xhci_hcd: disagrees about version of symbol module_layout
[    9.790328] sl811_hcd: disagrees about version of symbol module_layout
[    9.806655] hid_gyration: disagrees about version of symbol module_layout
[    9.813092] hid_petalynx: disagrees about version of symbol module_layout
[    9.813679] hid_pl: disagrees about version of symbol module_layout
[    9.814332] hid_samsung: disagrees about version of symbol module_layout
[    9.814919] hid_sony: disagrees about version of symbol module_layout
[    9.815506] hid_sunplus: disagrees about version of symbol module_layout
[    9.825772] dm_mod: disagrees about version of symbol module_layout
[    9.826380] dm_mod: disagrees about version of symbol module_layout
[    9.826982] dm_mod: disagrees about version of symbol module_layout
[    9.828180] dm_mod: disagrees about version of symbol module_layout
[    9.828786] dm_mod: disagrees about version of symbol module_layout
[    9.829383] dm_mod: disagrees about version of symbol module_layout
[    9.831942] raid6_pq: disagrees about version of symbol module_layout
[    9.832548] dm_mod: disagrees about version of symbol module_layout
[    9.833129] raid0: disagrees about version of symbol module_layout
[    9.833720] raid1: disagrees about version of symbol module_layout
[    9.834322] raid6_pq: disagrees about version of symbol module_layout
[    9.836239] raid6_pq: disagrees about version of symbol module_layout
[    9.838158] raid6_pq: disagrees about version of symbol module_layout
[    9.838754] raid10: disagrees about version of symbol module_layout
[    9.839337] linear: disagrees about version of symbol module_layout
[    9.839919] multipath: disagrees about version of symbol module_layout
[    9.846937] raid6_pq: disagrees about version of symbol module_layout
[    9.849441] jfs: disagrees about version of symbol module_layout
[    9.855844] fuse: disagrees about version of symbol module_layout
[    9.856997] e1000: disagrees about version of symbol module_layout
[    9.857531] hwmon: disagrees about version of symbol module_layout
[    9.860629] libiscsi: disagrees about version of symbol module_layout
[    9.861166] libiscsi: disagrees about version of symbol module_layout
[    9.862277] sha256_generic: disagrees about version of symbol module_layout
[    9.866764] aes_x86_64: disagrees about version of symbol module_layout
[    9.869223] gf128mul: disagrees about version of symbol module_layout
[   10.789931] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
[   10.908153] systemd-udevd[1669]: starting version 224
[   10.911955] systemd-udevd[1675]: Network interface NamePolicy= disabled on kernel command line, ignoring.
[   10.911983] random: systemd-udevd urandom read with 60 bits of entropy available
[   10.970130] systemd-udevd[1675]: Network interface NamePolicy= disabled on kernel command line, ignoring.
[   11.012094] wmi: Mapper loaded
[   11.034808] pps_core: LinuxPPS API ver. 1 registered
[   11.034809] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[   11.036445] PTP clock support registered
[   11.037043] usbcore: registered new interface driver cdc_ether
[   11.037528] snd_hda_intel 0000:01:00.1: Disabling MSI
[   11.038310] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
[   11.038311] e1000e: Copyright(c) 1999 - 2014 Intel Corporation.
[   11.038451] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[   11.039423] rndis_host 1-10.4:1.0 usb0: register 'rndis_host' at usb-0000:00:14.0-10.4, RNDIS device, 02:59:60:37:36:35
[   11.039434] usbcore: registered new interface driver rndis_host
[   11.050551] systemd-udevd[1772]: Process 'net.sh usb0 start' failed with exit code 1.
[   11.114856] sound hdaudioC0D0: ALC1150: SKU not ready 0x00000000
[   11.115357] sound hdaudioC0D0: autoconfig for ALC1150: line_outs=3 (0x14/0x15/0x16/0x0/0x0) type:line
[   11.115358] sound hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   11.115359] sound hdaudioC0D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[   11.115360] sound hdaudioC0D0:    mono: mono_out=0x0
[   11.115361] sound hdaudioC0D0:    dig-out=0x11/0x1e
[   11.115361] sound hdaudioC0D0:    inputs:
[   11.115362] sound hdaudioC0D0:      Front Mic=0x19
[   11.115363] sound hdaudioC0D0:      Rear Mic=0x18
[   11.115364] sound hdaudioC0D0:      Line=0x1a
[   11.141746] EXT4-fs (sda3): re-mounted. Opts: (null)
[   11.316423] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null)
[   11.483687] e1000e 0000:00:19.0 eth0: registered PHC clock
[   11.483689] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 08:62:66:82:e4:b6
[   11.483689] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
[   11.483725] e1000e 0000:00:19.0 eth0: MAC: 11, PHY: 12, PBA No: FFFFFF-0FF
[   11.487634] systemd-udevd[1772]: Process 'net.sh eth0 start' failed with exit code 1.
[   11.629816] NET: Registered protocol family 10
[   11.772923] random: nonblocking pool is initialized
[   12.123379] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 2099.263827] usb 1-10.4: USB disconnect, device number 6
[ 2099.263872] rndis_host 1-10.4:1.0 usb0: unregister 'rndis_host' usb-0000:00:14.0-10.4, RNDIS device
[ 2099.265511] systemd-udevd[2646]: Process 'net.sh usb0 stop' failed with exit code 1.
[ 2099.590958] usb 1-10.4: new high-speed USB device number 7 using xhci_hcd
[ 2099.701741] usb 1-10.4: New USB device found, idVendor=04e8, idProduct=6860
[ 2099.701742] usb 1-10.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2099.701743] usb 1-10.4: Product: SAMSUNG_Android
[ 2099.701744] usb 1-10.4: Manufacturer: SAMSUNG
[ 2099.701744] usb 1-10.4: SerialNumber: 03157df3b1955a34
[ 2099.702697] cdc_acm 1-10.4:1.1: ttyACM0: USB ACM device
[ 2104.126634] usb 1-10.4: USB disconnect, device number 7
[ 2122.285386] usb 1-10.4: new high-speed USB device number 8 using xhci_hcd
[ 2122.396054] usb 1-10.4: New USB device found, idVendor=04e8, idProduct=6860
[ 2122.396056] usb 1-10.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2122.396056] usb 1-10.4: Product: SAMSUNG_Android
[ 2122.396057] usb 1-10.4: Manufacturer: SAMSUNG
[ 2122.396058] usb 1-10.4: SerialNumber: 03157df3b1955a34
[ 2122.396893] cdc_acm 1-10.4:1.1: ttyACM0: USB ACM device
[ 2123.833821] usb 1-10.4: USB disconnect, device number 8
[ 2124.074946] usb 1-10.4: new high-speed USB device number 9 using xhci_hcd
[ 2124.185693] usb 1-10.4: New USB device found, idVendor=04e8, idProduct=6864
[ 2124.185695] usb 1-10.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2124.185695] usb 1-10.4: Product: SAMSUNG_Android
[ 2124.185696] usb 1-10.4: Manufacturer: SAMSUNG
[ 2124.185697] usb 1-10.4: SerialNumber: 03157df3b1955a34
[ 2124.187277] rndis_host 1-10.4:1.0 usb0: register 'rndis_host' at usb-0000:00:14.0-10.4, RNDIS device, 02:59:60:37:36:35
[ 2124.189042] systemd-udevd[2723]: Process 'net.sh usb0 start' failed with exit code 1.