OpenWrt Forum Archive

Topic: OpenWRT x86(VmWare) RAM usage

The content of this topic has been archived on 7 May 2018. There are no obvious gaps in this topic, but there may still be some posts missing at the end.

Hi. I need to setup a set of openwrt virtual machines to test some network software. Host is running ESX. Machines count ~300-400pcs. So I need a minimal installation. The goal is to fit each VM in 16-32 mb of RAM.

I tried to compile a minimal OpenWRT vmdk image and found that after start procd/netifd processes eats 12-15 megabytes each. I don't think it is normal, but still can't find the reason of this.

> cat /proc/1/status

Name:   procd
State:  S (sleeping)
Tgid:   1
Ngid:   0
Pid:    1
PPid:   0
TracerPid:      0
Uid:    0       0       0       0
Gid:    0       0       0       0
FDSize: 64
Groups:
VmPeak:    13340 kB
VmSize:    13340 kB
VmLck:         0 kB
VmPin:         0 kB
VmHWM:       836 kB
VmRSS:       836 kB
VmData:      216 kB
VmStk:       136 kB
VmExe:        60 kB
VmLib:     12868 kB
VmPTE:        48 kB
VmPMD:        12 kB
VmSwap:        0 kB
Threads:        1
SigQ:   0/88
SigPnd: 0000000000000000
ShdPnd: 0000000000000000
SigBlk: 0000000000000000
SigIgn: 0000000000001004
SigCgt: 0000000000014e43
CapInh: 0000000000000000
CapPrm: 0000003fffffffff
CapEff: 0000003fffffffff
CapBnd: 0000003fffffffff
CapAmb: 0000000000000000
Cpus_allowed:   1
Cpus_allowed_list:      0
voluntary_ctxt_switches:        347
nonvoluntary_ctxt_switches:     2

> cat /proc/1122/status

Name:   netifd
State:  S (sleeping)
Tgid:   1122
Ngid:   0
Pid:    1122
PPid:   1
TracerPid:      0
Uid:    0       0       0       0
Gid:    0       0       0       0
FDSize: 64
Groups:
VmPeak:    15428 kB
VmSize:    15428 kB
VmLck:         0 kB
VmPin:         0 kB
VmHWM:       932 kB
VmRSS:       932 kB
VmData:      124 kB
VmStk:       136 kB
VmExe:       132 kB
VmLib:     14968 kB
VmPTE:        56 kB
VmPMD:        12 kB
VmSwap:        0 kB
Threads:        1
SigQ:   0/88
SigPnd: 0000000000000000
ShdPnd: 0000000000000000
SigBlk: 0000000000000000
SigIgn: 0000000000001004
SigCgt: 0000000000014a02
CapInh: 0000000000000000
CapPrm: 0000003fffffffff
CapEff: 0000003fffffffff
CapBnd: 0000003fffffffff
CapAmb: 0000000000000000
Cpus_allowed:   1
Cpus_allowed_list:      0
voluntary_ctxt_switches:        151
nonvoluntary_ctxt_switches:     12

Is there any way to find out library that eats RAM ?

Those 12/15 MB are the allocated virtual memory, doesn't mean it's ever going to use that much. The resident set size (VmRSS) is what is actually used / you need to have physical memory for. Read up on overcommitting.

While 16MB might be a tad to small 32MB per minimal VM should be plenty enough.

It doesn't even boot kernel on 16-24mb. Only 28 mb is enough to boot it.
I tried to remove iptables from kernel but it just compiles it and ignore settings (tried to uncheck it via make menuconfig & make kernel_menuconfig).

I have read some articles about overcommit and tried to set vm.overcommit_memory = 2 This doesn't change situation:

> cat /proc/meminfo
MemTotal:          23836 kB
MemFree:            4816 kB
MemAvailable:      10288 kB
Buffers:             516 kB
Cached:             5280 kB
SwapCached:            0 kB
Active:             6160 kB
Inactive:           2268 kB
Active(anon):       2636 kB
Inactive(anon):        8 kB
Active(file):       3524 kB
Inactive(file):     2260 kB
Unevictable:           0 kB
Mlocked:               0 kB
SwapTotal:             0 kB
SwapFree:              0 kB
Dirty:                 0 kB
Writeback:             0 kB
AnonPages:          2636 kB
Mapped:             3084 kB
Shmem:                20 kB
Slab:               7484 kB
SReclaimable:       1932 kB
SUnreclaim:         5552 kB
KernelStack:         656 kB
PageTables:          368 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:       11916 kB
Committed_AS:       4300 kB
VmallocTotal:   34359738367 kB
VmallocUsed:           0 kB
VmallocChunk:          0 kB
DirectMap4k:       10176 kB
DirectMap2M:       22528 kB
DirectMap1G:           0 kB

... It looks like ~10Mb of memory used by shared library /lib/libubus.so

regressor wrote:

It doesn't even boot kernel on 16-24mb. Only 28 mb is enough to boot it.

16MiB should work


regressor wrote:

I tried to remove iptables from kernel but it just compiles it and ignore settings (tried to uncheck it via make menuconfig & make kernel_menuconfig).

As firewall is in the default package set and depends on those config symbol be set it is quite a feet to get rid of them.


regressor wrote:

I have read some articles about overcommit and tried to set vm.overcommit_memory = 2 This doesn't change situation:

2 means don't allow overcommitting in which case allocating memory will fail if it can't be backed. Only needed if you need to ensure the oom-killer will never run (life support or similar).


regressor wrote:

... It looks like ~10Mb of memory used by shared library /lib/libubus.so

Thinking 15MiB to be over the top / awful coding I checked on a live box:

# cat /proc/1/status
Name:   procd
Umask:  0022
State:  S (sleeping)
Tgid:   1
Ngid:   0
Pid:    1
PPid:   0
TracerPid:      0
Uid:    0       0       0       0
Gid:    0       0       0       0
FDSize: 32
Groups:
VmPeak:     1324 kB
VmSize:     1324 kB
VmLck:         0 kB
VmPin:         0 kB
VmHWM:       612 kB
VmRSS:       612 kB
RssAnon:             128 kB
RssFile:             484 kB
RssShmem:              0 kB
VmData:      204 kB
VmStk:       136 kB
VmExe:        48 kB
VmLib:       908 kB
VmPTE:         8 kB
VmPMD:         0 kB
VmSwap:        0 kB
Threads:        1
SigQ:   0/3983
SigPnd: 0000000000000000
ShdPnd: 0000000000000000
SigBlk: 0000000000000000
SigIgn: 0000000000001000
SigCgt: 0000000000014e43
CapInh: 0000000000000000
CapPrm: 0000003fffffffff
CapEff: 0000003fffffffff
CapBnd: 0000003fffffffff
CapAmb: 0000000000000000
NoNewPrivs:     0
Cpus_allowed:   3
Cpus_allowed_list:      0-1
voluntary_ctxt_switches:        15939
nonvoluntary_ctxt_switches:     34

So what version are you even using?

Currently I tried 15.05.01 from openwrt.org site (ready vmdk package) and self-compiled trunk. And procd/netifd has almost same size > 10Mb. Host system is ESX 6.5.

uname print this:
Linux OpenWrt 4.4.14 #6 SMP Sat Jun 3 10:10:19 UTC 2017 x86_64 GNU/Linux

(Last edited by regressor on 3 Jun 2017, 13:21)

Hm, are you per chance using glibc instead of musl?

I selected "Use musl" at the "Advanced...\Toolchain...\C Library...
/lib/libc.so size = 427153 bytes

so It is musl...

Also I tried https://downloads.openwrt.org/chaos_cal … xt4.img.gz image and procd have almost same size... Looks like it is x86/ESX issue...

If I run the linked image with qemu-system-x86_64 I get:

# cat proc/1/status
Name:   procd
State:  S (sleeping)
Tgid:   1
Ngid:   0
Pid:    1
PPid:   0
TracerPid:      0
Uid:    0       0       0       0
Gid:    0       0       0       0
FDSize: 32
Groups:
VmPeak:      972 kB
VmSize:      972 kB
VmLck:         0 kB
VmPin:         0 kB
VmHWM:       716 kB
VmRSS:       716 kB
VmData:      208 kB
VmStk:       136 kB
VmExe:        52 kB
VmLib:       532 kB
VmPTE:        16 kB
VmSwap:        0 kB
Threads:        1
SigQ:   0/962
SigPnd: 0000000000000000
ShdPnd: 0000000000000000
SigBlk: 0000000000000000
SigIgn: 0000000000001004
SigCgt: 0000000000014e43
CapInh: 0000000000000000
CapPrm: 0000003fffffffff
CapEff: 0000003fffffffff
CapBnd: 0000003fffffffff
Cpus_allowed:   1
Cpus_allowed_list:      0
voluntary_ctxt_switches:        290
nonvoluntary_ctxt_switches:     79

So looks like an ESX related issue, no idea as to what might be different there. Well, with musl you can't close shared libs, so there is a small chance glibc might actually work better for your usecase.

Sorry no further ideas.

Here is the boot log of esx vm running openwrt (32mb ram). I removed sata because esx doesn't support it (it can be added by hands, but this is a hack) and added Fusion MPT (default esx scsi device). This reduced kernel by 1-1.5 mbytes, but procd still big sad Also I removed all non-needed devices like usb and non-used network cards. Sera, could you post your dmesg log to compare ? I'm not sure about SMP and bunch of pci bridges...

[    0.000000] Linux version 4.4.14 (regressor@OSMServer.local) (gcc version 5.3.0 (OpenWrt GCC 5.3.0 50107) ) #5 SMP Sat Jun 3 13:59:35 UTC 2017
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz root=PARTUUID=1fde6f62-02 rootfstype=ext4 rootwait console=tty0 console=ttyS0,38400n8 noinitrd
[    0.000000] Disabled fast string operations
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Supporting XSAVE feature 0x01: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x02: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x04: 'AVX registers'
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.000000] x86/fpu: Using 'lazy' FPU context switches.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f7ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000dc000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000001eeffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000001ef0000-0x0000000001efefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x0000000001eff000-0x0000000001efffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000001f00000-0x0000000001ffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fffe0000-0x00000000ffffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.4 present.
[    0.000000] DMI: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 04/05/2016
[    0.000000] Hypervisor detected: VMware
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x2000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-CBFFF write-protect
[    0.000000]   CC000-EFFFF uncachable
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0000000000 mask FFFE000000 write-back
[    0.000000]   1 disabled
[    0.000000]   2 disabled
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT
[    0.000000] found SMP MP-table at [mem 0x000f6a80-0x000f6a8f] mapped at [ffff8800000f6a80]
[    0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
[    0.000000] Using GB pages for direct mapping
[    0.000000] BRK [0x016d6000, 0x016d6fff] PGTABLE
[    0.000000] BRK [0x016d7000, 0x016d7fff] PGTABLE
[    0.000000] BRK [0x016d8000, 0x016d8fff] PGTABLE
[    0.000000] BRK [0x016d9000, 0x016d9fff] PGTABLE
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F6A10 000024 (v02 PTLTD )
[    0.000000] ACPI: XSDT 0x0000000001EF0284 00005C (v01 INTEL  440BX    06040000 VMW  01324272)
[    0.000000] ACPI: FACP 0x0000000001EFEE73 0000F4 (v04 INTEL  440BX    06040000 PTL  000F4240)
[    0.000000] ACPI: DSDT 0x0000000001EF04C4 00E9AF (v01 PTLTD  Custom   06040000 MSFT 03000001)
[    0.000000] ACPI: FACS 0x0000000001EFFFC0 000040
[    0.000000] ACPI: FACS 0x0000000001EFFFC0 000040
[    0.000000] ACPI: BOOT 0x0000000001EF049C 000028 (v01 PTLTD  $SBFTBL$ 06040000  LTP 00000001)
[    0.000000] ACPI: APIC 0x0000000001EF044C 000050 (v01 PTLTD  ? APIC   06040000  LTP 00000000)
[    0.000000] ACPI: MCFG 0x0000000001EF0410 00003C (v01 PTLTD  $PCITBL$ 06040000  LTP 00000001)
[    0.000000] ACPI: SRAT 0x0000000001EF0380 000090 (v02 VMWARE MEMPLUG  06040000 VMW  00000001)
[    0.000000] ACPI: HPET 0x0000000001EF0348 000038 (v01 VMWARE VMW HPET 06040000 VMW  00000001)
[    0.000000] ACPI: WAET 0x0000000001EF0320 000028 (v01 VMWARE VMW WAET 06040000 VMW  00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x0000000001ffffff]
[    0.000000]   Normal   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x0000000001eeffff]
[    0.000000]   node   0: [mem 0x0000000001f00000-0x0000000001ffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x0000000001ffffff]
[    0.000000] On node 0 totalpages: 8078
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 21 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 64 pages used for memmap
[    0.000000]   DMA32 zone: 4080 pages, LIFO batch:0
[    0.000000] ACPI: PM-Timer IO Port: 0x1008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 1, version 17, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
[    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: 0x8086af01 base: 0xfed00000
[    0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs
[    0.000000] e820: [mem 0x02000000-0xefffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1
[    0.000000] PERCPU: Embedded 30 pages/cpu @ffff880001c00000 s84376 r8192 d30312 u2097152
[    0.000000] pcpu-alloc: s84376 r8192 d30312 u2097152 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 7929
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz root=PARTUUID=1fde6f62-02 rootfstype=ext4 rootwait console=tty0 console=ttyS0,38400n8 noinitrd
[    0.000000] PID hash table entries: 128 (order: -2, 1024 bytes)
[    0.000000] Dentry cache hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Inode-cache hash table entries: 2048 (order: 2, 16384 bytes)
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 22972K/32312K available (3855K kernel code, 359K rwdata, 1456K rodata, 812K init, 484K bss, 9340K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000]  CONFIG_RCU_FANOUT set to non-default value of 32
[    0.000000]  RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=1.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
[    0.000000] NR_IRQS:4352 nr_irqs:256 16
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] console [ttyS0] enabled
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.000000] hpet clockevent registered
[    0.000000] TSC freq read from hypervisor : 3399.997 MHz
[    0.000000] tsc: Detected 3399.997 MHz processor
[    0.000002] Calibrating delay loop (skipped) preset value.. 6799.99 BogoMIPS (lpj=33999970)
[    0.001186] pid_max: default: 32768 minimum: 301
[    0.001793] ACPI: Core revision 20150930
[    0.020794] ACPI: 1 ACPI AML tables successfully acquired and loaded
[    0.021679] Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
[    0.029166] Mountpoint-cache hash table entries: 512 (order: 0, 4096 bytes)
[    0.030127] Disabled fast string operations
[    0.030665] CPU: Physical Processor ID: 0
[    0.031209] mce: CPU supports 0 MCE banks
[    0.031764] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    0.039158] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    0.050175] Freeing SMP alternatives memory: 16K (ffffffff81657000 - ffffffff8165b000)
[    0.250232] x2apic: IRQ remapping doesn't support X2APIC mode
[    0.251177] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.628714] smpboot: CPU0: Intel(R) Core(TM) i7-6800K CPU @ 3.40GHz (family: 0x6, model: 0x4f, stepping: 0x1)
[    0.630032] Performance Events: 16-deep LBR, Broadwell events, core PMU driver.
[    0.631051] perf_event_intel: CPUID marked event: 'cpu cycles' unavailable
[    0.631890] perf_event_intel: CPUID marked event: 'instructions' unavailable
[    0.632733] perf_event_intel: CPUID marked event: 'bus cycles' unavailable
[    0.633560] perf_event_intel: CPUID marked event: 'cache references' unavailable
[    0.634471] perf_event_intel: CPUID marked event: 'cache misses' unavailable
[    0.635306] perf_event_intel: CPUID marked event: 'branch instructions' unavailable
[    0.636249] perf_event_intel: CPUID marked event: 'branch misses' unavailable
[    0.637109] ... version:                1
[    0.637612] ... bit width:              48
[    0.638124] ... generic registers:      4
[    0.638628] ... value mask:             0000ffffffffffff
[    0.639273] ... max period:             000000007fffffff
[    0.639918] ... fixed-purpose events:   0
[    0.640420] ... event mask:             000000000000000f
[    0.641201] x86: Booted up 1 node, 1 CPUs
[    0.641707] smpboot: Total of 1 processors activated (6799.99 BogoMIPS)
[    0.642929] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.644287] NET: Registered protocol family 16
[    0.644917] cpuidle: using governor ladder
[    0.678786] Simple Boot Flag at 0x36 set to 0x80
[    0.679368] ACPI: bus type PCI registered
[    0.679900] PCI: Using configuration type 1 for base access
[    0.681898] ACPI: Added _OSI(Module Device)
[    0.682445] ACPI: Added _OSI(Processor Device)
[    0.682995] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.683579] ACPI: Added _OSI(Processor Aggregator Device)
[    0.688357] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.690331] ACPI: Interpreter enabled
[    0.690923] ACPI: (supports S0 S5)
[    0.691362] ACPI: Using IOAPIC for interrupt routing
[    0.691982] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.717748] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7f])
[    0.718522] acpi PNP0A03:00: _OSC: OS supports [Segments MSI]
[    0.719338] acpi PNP0A03:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    0.720835] PCI host bridge to bus 0000:00
[    0.721352] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.722290] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
[    0.723215] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
[    0.724153] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[    0.725074] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[    0.726003] pci_bus 0000:00: root bus resource [mem 0x02000000-0xfebfffff window]
[    0.726944] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.727752] pci_bus 0000:00: root bus resource [io  0x0d00-0xfeff window]
[    0.728713] pci_bus 0000:00: root bus resource [bus 00-7f]
[    0.729422] pci 0000:00:00.0: [8086:7190] type 00 class 0x060000
[    0.729697] pci 0000:00:01.0: [8086:7191] type 01 class 0x060400
[    0.729955] pci 0000:00:07.0: [8086:7110] type 00 class 0x060100
[    0.730331] pci 0000:00:07.1: [8086:7111] type 00 class 0x01018a
[    0.731156] pci 0000:00:07.1: reg 0x20: [io  0x1060-0x106f]
[    0.731490] pci 0000:00:07.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    2.238688] pci 0000:00:07.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    2.239481] pci 0000:00:07.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    2.240329] pci 0000:00:07.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    2.241276] pci 0000:00:07.3: [8086:7113] type 00 class 0x068000
[    2.242249] pci 0000:00:07.3: quirk: [io  0x1000-0x103f] claimed by PIIX4 ACPI
[    2.243172] pci 0000:00:07.3: quirk: [io  0x1040-0x104f] claimed by PIIX4 SMB
[    2.244190] pci 0000:00:07.7: [15ad:0740] type 00 class 0x088000
[    2.244689] pci 0000:00:07.7: reg 0x10: [io  0x1080-0x10bf]
[    2.245097] pci 0000:00:07.7: reg 0x14: [mem 0xfebfe000-0xfebfffff 64bit]
[    2.246948] pci 0000:00:0f.0: [15ad:0405] type 00 class 0x030000
[    2.248056] pci 0000:00:0f.0: reg 0x10: [io  0x1070-0x107f]
[    2.249160] pci 0000:00:0f.0: reg 0x14: [mem 0xf8000000-0xfbffffff pref]
[    2.250164] pci 0000:00:0f.0: reg 0x18: [mem 0xfe000000-0xfe7fffff]
[    2.254247] pci 0000:00:0f.0: reg 0x30: [mem 0x00000000-0x00007fff pref]
[    2.254451] pci 0000:00:11.0: [15ad:0790] type 01 class 0x060401
[    2.254840] pci 0000:00:15.0: [15ad:07a0] type 01 class 0x060400
[    2.255191] pci 0000:00:15.0: PME# supported from D0 D3hot D3cold
[    2.255332] pci 0000:00:15.1: [15ad:07a0] type 01 class 0x060400
[    2.255686] pci 0000:00:15.1: PME# supported from D0 D3hot D3cold
[    2.255828] pci 0000:00:15.2: [15ad:07a0] type 01 class 0x060400
[    2.256177] pci 0000:00:15.2: PME# supported from D0 D3hot D3cold
[    2.256316] pci 0000:00:15.3: [15ad:07a0] type 01 class 0x060400
[    2.256666] pci 0000:00:15.3: PME# supported from D0 D3hot D3cold
[    2.256806] pci 0000:00:15.4: [15ad:07a0] type 01 class 0x060400
[    2.257155] pci 0000:00:15.4: PME# supported from D0 D3hot D3cold
[    2.257294] pci 0000:00:15.5: [15ad:07a0] type 01 class 0x060400
[    2.257619] pci 0000:00:15.5: PME# supported from D0 D3hot D3cold
[    2.257759] pci 0000:00:15.6: [15ad:07a0] type 01 class 0x060400
[    2.258085] pci 0000:00:15.6: PME# supported from D0 D3hot D3cold
[    2.258225] pci 0000:00:15.7: [15ad:07a0] type 01 class 0x060400
[    2.258551] pci 0000:00:15.7: PME# supported from D0 D3hot D3cold
[    2.258893] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.259677] pci 0000:02:01.0: [8086:100f] type 00 class 0x020000
[    2.260417] pci 0000:02:01.0: reg 0x10: [mem 0xfd5c0000-0xfd5dffff 64bit]
[    2.261055] pci 0000:02:01.0: reg 0x18: [mem 0xfdff0000-0xfdffffff 64bit]
[    2.261699] pci 0000:02:01.0: reg 0x20: [io  0x2000-0x203f]
[    2.262912] pci 0000:02:01.0: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[    2.263029] pci 0000:02:01.0: PME# supported from D0 D3hot D3cold
[    2.263288] pci 0000:00:11.0: PCI bridge to [bus 02] (subtractive decode)
[    2.264138] pci 0000:00:11.0:   bridge window [io  0x2000-0x3fff]
[    2.264149] pci 0000:00:11.0:   bridge window [mem 0xfd500000-0xfdffffff]
[    2.264171] pci 0000:00:11.0:   bridge window [mem 0xefb00000-0xefffffff 64bit pref]
[    2.264172] pci 0000:00:11.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    2.264173] pci 0000:00:11.0:   bridge window [mem 0x000cc000-0x000cffff window] (subtractive decode)
[    2.264174] pci 0000:00:11.0:   bridge window [mem 0x000d0000-0x000d3fff window] (subtractive decode)
[    2.264175] pci 0000:00:11.0:   bridge window [mem 0x000d4000-0x000d7fff window] (subtractive decode)
[    2.264176] pci 0000:00:11.0:   bridge window [mem 0x000d8000-0x000dbfff window] (subtractive decode)
[    2.264178] pci 0000:00:11.0:   bridge window [mem 0x02000000-0xfebfffff window] (subtractive decode)
[    2.264179] pci 0000:00:11.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
[    2.264180] pci 0000:00:11.0:   bridge window [io  0x0d00-0xfeff window] (subtractive decode)
[    2.264425] pci 0000:03:00.0: [1000:0054] type 00 class 0x010700
[    2.265134] pci 0000:03:00.0: reg 0x10: [io  0x4000-0x40ff]
[    2.265782] pci 0000:03:00.0: reg 0x14: [mem 0xfd4ec000-0xfd4effff 64bit]
[    2.266429] pci 0000:03:00.0: reg 0x1c: [mem 0xfd4f0000-0xfd4fffff 64bit]
[    2.267653] pci 0000:03:00.0: reg 0x30: [mem 0x00000000-0x00003fff pref]
[    2.267815] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    2.267900] pci 0000:00:15.0: PCI bridge to [bus 03]
[    2.268552] pci 0000:00:15.0:   bridge window [io  0x4000-0x4fff]
[    2.268563] pci 0000:00:15.0:   bridge window [mem 0xfd400000-0xfd4fffff]
[    2.268751] pci 0000:00:15.1: PCI bridge to [bus 04]
[    2.269395] pci 0000:00:15.1:   bridge window [io  0x5000-0x5fff]
[    2.269407] pci 0000:00:15.1:   bridge window [mem 0xfd300000-0xfd3fffff]
[    2.269428] pci 0000:00:15.1:   bridge window [mem 0xefa00000-0xefafffff 64bit pref]
[    2.269599] pci 0000:00:15.2: PCI bridge to [bus 05]
[    2.270227] pci 0000:00:15.2:   bridge window [io  0x6000-0x6fff]
[    2.270238] pci 0000:00:15.2:   bridge window [mem 0xfd200000-0xfd2fffff]
[    2.270260] pci 0000:00:15.2:   bridge window [mem 0xef900000-0xef9fffff 64bit pref]
[    2.270422] pci 0000:00:15.3: PCI bridge to [bus 06]
[    2.271061] pci 0000:00:15.3:   bridge window [io  0x7000-0x7fff]
[    2.271072] pci 0000:00:15.3:   bridge window [mem 0xfd100000-0xfd1fffff]
[    2.271093] pci 0000:00:15.3:   bridge window [mem 0xef800000-0xef8fffff 64bit pref]
[    2.271251] pci 0000:00:15.4: PCI bridge to [bus 07]
[    2.271890] pci 0000:00:15.4:   bridge window [io  0x8000-0x8fff]
[    2.271901] pci 0000:00:15.4:   bridge window [mem 0xfd000000-0xfd0fffff]
[    2.271922] pci 0000:00:15.4:   bridge window [mem 0xef700000-0xef7fffff 64bit pref]
[    2.272086] pci 0000:00:15.5: PCI bridge to [bus 08]
[    2.272728] pci 0000:00:15.5:   bridge window [io  0x9000-0x9fff]
[    2.272739] pci 0000:00:15.5:   bridge window [mem 0xfcf00000-0xfcffffff]
[    2.272760] pci 0000:00:15.5:   bridge window [mem 0xef600000-0xef6fffff 64bit pref]
[    2.272915] pci 0000:00:15.6: PCI bridge to [bus 09]
[    2.349243] pci 0000:00:15.6:   bridge window [io  0xa000-0xafff]
[    2.349265] pci 0000:00:15.6:   bridge window [mem 0xfce00000-0xfcefffff]
[    2.349287] pci 0000:00:15.6:   bridge window [mem 0xef500000-0xef5fffff 64bit pref]
[    2.349471] pci 0000:00:15.7: PCI bridge to [bus 0a]
[    2.350126] pci 0000:00:15.7:   bridge window [io  0xb000-0xbfff]
[    2.350138] pci 0000:00:15.7:   bridge window [mem 0xfcd00000-0xfcdfffff]
[    2.350159] pci 0000:00:15.7:   bridge window [mem 0xef400000-0xef4fffff 64bit pref]
[    2.350475] pci_bus 0000:00: on NUMA node 0
[    2.350598] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *9 10 11 14 15)
[    2.351879] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    2.353377] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 *10 11 14 15)
[    2.354597] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11 14 15)
[    2.358230] ACPI: Enabled 2 GPEs in block 00 to 0F
[    2.358962] SCSI subsystem initialized
[    2.359457] pps_core: LinuxPPS API ver. 1 registered
[    2.360135] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    2.361260] PTP clock support registered
[    2.361783] PCI: Using ACPI for IRQ routing
[    2.362308] PCI: pci_cache_line_size set to 64 bytes
[    2.362506] e820: reserve RAM buffer [mem 0x0009f800-0x0009ffff]
[    2.362507] e820: reserve RAM buffer [mem 0x01ef0000-0x03ffffff]
[    2.362508] e820: reserve RAM buffer [mem 0x02000000-0x03ffffff]
[    2.362594] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[    2.364111] hpet0: 16 comparators, 64-bit 14.318180 MHz counter
[    2.367954] clocksource: Switched to clocksource hpet
[    2.368639] pnp: PnP ACPI init
[    2.369131] system 00:00: [io  0x1000-0x103f] could not be reserved
[    2.369887] system 00:00: [io  0x1040-0x104f] has been reserved
[    2.370601] system 00:00: [io  0x0cf0-0x0cf1] has been reserved
[    2.371317] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    2.371332] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    2.371340] pnp 00:02: Plug and Play ACPI device, IDs PNP0303 (active)
[    2.371349] pnp 00:03: Plug and Play ACPI device, IDs PNP0f13 VMW0003 (active)
[    2.371441] system 00:04: [mem 0xfed00000-0xfed003ff] has been reserved
[    2.372395] system 00:04: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
[    2.373253] pnp 00:05: Plug and Play ACPI device, IDs PNP0400 (active)
[    2.373359] pnp 00:06: Plug and Play ACPI device, IDs PNP0501 (active)
[    2.373462] pnp 00:07: Plug and Play ACPI device, IDs PNP0501 (active)
[    2.373547] pnp 00:08: [dma 2]
[    2.373563] pnp 00:08: Plug and Play ACPI device, IDs PNP0700 (active)
[    2.373657] system 00:09: [io  0xfce0-0xfcff] has been reserved
[    2.374376] system 00:09: [mem 0xf0000000-0xf7ffffff] has been reserved
[    2.375184] system 00:09: [mem 0xfe800000-0xfe9fffff] has been reserved
[    2.375995] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[    2.377615] pnp: PnP ACPI: found 10 devices
[    2.382955] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    2.384117] pci 0000:00:15.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[    2.384334] pci 0000:00:15.0: res[9]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    2.384335] pci 0000:00:15.0: res[9]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    2.384340] pci 0000:00:15.0: BAR 9: assigned [mem 0x02000000-0x021fffff 64bit pref]
[    2.385294] pci 0000:00:0f.0: BAR 6: assigned [mem 0x02200000-0x02207fff pref]
[    2.386188] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.386848] pci 0000:02:01.0: BAR 6: assigned [mem 0xfd500000-0xfd50ffff pref]
[    2.387773] pci 0000:00:11.0: PCI bridge to [bus 02]
[    2.388481] pci 0000:00:11.0:   bridge window [io  0x2000-0x3fff]
[    2.389241] pci 0000:00:11.0:   bridge window [mem 0xfd500000-0xfdffffff]
[    2.390062] pci 0000:00:11.0:   bridge window [mem 0xefb00000-0xefffffff 64bit pref]
[    2.391036] pci 0000:03:00.0: BAR 6: assigned [mem 0xfd400000-0xfd403fff pref]
[    2.391930] pci 0000:00:15.0: PCI bridge to [bus 03]
[    2.392545] pci 0000:00:15.0:   bridge window [io  0x4000-0x4fff]
[    2.393331] pci 0000:00:15.0:   bridge window [mem 0xfd400000-0xfd4fffff]
[    2.394173] pci 0000:00:15.0:   bridge window [mem 0x02000000-0x021fffff 64bit pref]
[    2.395166] pci 0000:00:15.1: PCI bridge to [bus 04]
[    2.395782] pci 0000:00:15.1:   bridge window [io  0x5000-0x5fff]
[    2.396539] pci 0000:00:15.1:   bridge window [mem 0xfd300000-0xfd3fffff]
[    2.397371] pci 0000:00:15.1:   bridge window [mem 0xefa00000-0xefafffff 64bit pref]
[    2.398361] pci 0000:00:15.2: PCI bridge to [bus 05]
[    2.398978] pci 0000:00:15.2:   bridge window [io  0x6000-0x6fff]
[    2.399727] pci 0000:00:15.2:   bridge window [mem 0xfd200000-0xfd2fffff]
[    2.400552] pci 0000:00:15.2:   bridge window [mem 0xef900000-0xef9fffff 64bit pref]
[    2.401541] pci 0000:00:15.3: PCI bridge to [bus 06]
[    2.402173] pci 0000:00:15.3:   bridge window [io  0x7000-0x7fff]
[    2.402932] pci 0000:00:15.3:   bridge window [mem 0xfd100000-0xfd1fffff]
[    2.403754] pci 0000:00:15.3:   bridge window [mem 0xef800000-0xef8fffff 64bit pref]
[    2.404735] pci 0000:00:15.4: PCI bridge to [bus 07]
[    2.405348] pci 0000:00:15.4:   bridge window [io  0x8000-0x8fff]
[    2.406096] pci 0000:00:15.4:   bridge window [mem 0xfd000000-0xfd0fffff]
[    2.406926] pci 0000:00:15.4:   bridge window [mem 0xef700000-0xef7fffff 64bit pref]
[    2.408019] pci 0000:00:15.5: PCI bridge to [bus 08]
[    2.408638] pci 0000:00:15.5:   bridge window [io  0x9000-0x9fff]
[    2.409387] pci 0000:00:15.5:   bridge window [mem 0xfcf00000-0xfcffffff]
[    2.410206] pci 0000:00:15.5:   bridge window [mem 0xef600000-0xef6fffff 64bit pref]
[    2.411185] pci 0000:00:15.6: PCI bridge to [bus 09]
[    2.411801] pci 0000:00:15.6:   bridge window [io  0xa000-0xafff]
[    2.412551] pci 0000:00:15.6:   bridge window [mem 0xfce00000-0xfcefffff]
[    2.413371] pci 0000:00:15.6:   bridge window [mem 0xef500000-0xef5fffff 64bit pref]
[    2.414345] pci 0000:00:15.7: PCI bridge to [bus 0a]
[    2.414992] pci 0000:00:15.7:   bridge window [io  0xb000-0xbfff]
[    2.415704] pci 0000:00:15.7:   bridge window [mem 0xfcd00000-0xfcdfffff]
[    2.416527] pci 0000:00:15.7:   bridge window [mem 0xef400000-0xef4fffff 64bit pref]
[    2.417515] pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff window]
[    2.417516] pci_bus 0000:00: resource 5 [mem 0x000cc000-0x000cffff window]
[    2.417517] pci_bus 0000:00: resource 6 [mem 0x000d0000-0x000d3fff window]
[    2.417518] pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000d7fff window]
[    2.417519] pci_bus 0000:00: resource 8 [mem 0x000d8000-0x000dbfff window]
[    2.417519] pci_bus 0000:00: resource 9 [mem 0x02000000-0xfebfffff window]
[    2.417520] pci_bus 0000:00: resource 10 [io  0x0000-0x0cf7 window]
[    2.417521] pci_bus 0000:00: resource 11 [io  0x0d00-0xfeff window]
[    2.417523] pci_bus 0000:02: resource 0 [io  0x2000-0x3fff]
[    2.417524] pci_bus 0000:02: resource 1 [mem 0xfd500000-0xfdffffff]
[    2.417525] pci_bus 0000:02: resource 2 [mem 0xefb00000-0xefffffff 64bit pref]
[    2.417526] pci_bus 0000:02: resource 4 [mem 0x000a0000-0x000bffff window]
[    2.417526] pci_bus 0000:02: resource 5 [mem 0x000cc000-0x000cffff window]
[    2.417527] pci_bus 0000:02: resource 6 [mem 0x000d0000-0x000d3fff window]
[    2.417528] pci_bus 0000:02: resource 7 [mem 0x000d4000-0x000d7fff window]
[    2.417529] pci_bus 0000:02: resource 8 [mem 0x000d8000-0x000dbfff window]
[    2.417529] pci_bus 0000:02: resource 9 [mem 0x02000000-0xfebfffff window]
[    2.417530] pci_bus 0000:02: resource 10 [io  0x0000-0x0cf7 window]
[    2.417531] pci_bus 0000:02: resource 11 [io  0x0d00-0xfeff window]
[    2.417532] pci_bus 0000:03: resource 0 [io  0x4000-0x4fff]
[    2.417533] pci_bus 0000:03: resource 1 [mem 0xfd400000-0xfd4fffff]
[    2.417534] pci_bus 0000:03: resource 2 [mem 0x02000000-0x021fffff 64bit pref]
[    2.417535] pci_bus 0000:04: resource 0 [io  0x5000-0x5fff]
[    2.417535] pci_bus 0000:04: resource 1 [mem 0xfd300000-0xfd3fffff]
[    2.417536] pci_bus 0000:04: resource 2 [mem 0xefa00000-0xefafffff 64bit pref]
[    2.417537] pci_bus 0000:05: resource 0 [io  0x6000-0x6fff]
[    2.417538] pci_bus 0000:05: resource 1 [mem 0xfd200000-0xfd2fffff]
[    2.417538] pci_bus 0000:05: resource 2 [mem 0xef900000-0xef9fffff 64bit pref]
[    2.417539] pci_bus 0000:06: resource 0 [io  0x7000-0x7fff]
[    2.417540] pci_bus 0000:06: resource 1 [mem 0xfd100000-0xfd1fffff]
[    2.417541] pci_bus 0000:06: resource 2 [mem 0xef800000-0xef8fffff 64bit pref]
[    2.417542] pci_bus 0000:07: resource 0 [io  0x8000-0x8fff]
[    2.417542] pci_bus 0000:07: resource 1 [mem 0xfd000000-0xfd0fffff]
[    2.417543] pci_bus 0000:07: resource 2 [mem 0xef700000-0xef7fffff 64bit pref]
[    2.417544] pci_bus 0000:08: resource 0 [io  0x9000-0x9fff]
[    2.417545] pci_bus 0000:08: resource 1 [mem 0xfcf00000-0xfcffffff]
[    2.417545] pci_bus 0000:08: resource 2 [mem 0xef600000-0xef6fffff 64bit pref]
[    2.417546] pci_bus 0000:09: resource 0 [io  0xa000-0xafff]
[    2.417547] pci_bus 0000:09: resource 1 [mem 0xfce00000-0xfcefffff]
[    2.417548] pci_bus 0000:09: resource 2 [mem 0xef500000-0xef5fffff 64bit pref]
[    2.417548] pci_bus 0000:0a: resource 0 [io  0xb000-0xbfff]
[    2.417549] pci_bus 0000:0a: resource 1 [mem 0xfcd00000-0xfcdfffff]
[    2.417550] pci_bus 0000:0a: resource 2 [mem 0xef400000-0xef4fffff 64bit pref]
[    2.417571] NET: Registered protocol family 2
[    2.418189] TCP established hash table entries: 512 (order: 0, 4096 bytes)
[    2.419012] TCP bind hash table entries: 512 (order: 1, 8192 bytes)
[    2.419765] TCP: Hash tables configured (established 512 bind 512)
[    2.420520] UDP hash table entries: 256 (order: 1, 8192 bytes)
[    2.421226] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
[    2.422053] NET: Registered protocol family 1
[    2.422595] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    2.423332] pci 0000:00:0f.0: Video device with shadowed ROM
[    2.423388] PCI: CLS mismatch (32 != 64), using 64 bytes
[    2.423437] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x31024bd20a6, max_idle_ns: 440795346804 ns
[    2.425087] clocksource: Switched to clocksource tsc
[    2.425789] futex hash table entries: 256 (order: 2, 16384 bytes)
[    2.427961] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    2.428886] io scheduler noop registered
[    2.429384] io scheduler deadline registered (default)
[    2.431418] ACPI: AC Adapter [ACAD] (on-line)
[    2.432003] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    2.432923] ACPI: Power Button [PWRF]
[    2.433568] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled
[    2.456023] 00:06: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    2.478640] 00:07: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    2.479730] Non-volatile memory driver v1.3
[    2.480484] vmw_vmci 0000:00:07.7: Found VMCI PCI device at 0x11080, irq 16
[    2.481700] vmw_vmci 0000:00:07.7: Using capabilities 0xc
[    2.482572] Guest personality initialized and is active
[    2.483247] VMCI host device registered (name=vmci, major=10, minor=63)
[    2.484208] Initialized host personality
[    2.484796] VMware PVSCSI driver - version 1.0.5.0-k
[    2.485445] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
[    2.486264] e1000: Copyright (c) 1999-2006 Intel Corporation.
[    5.531981] e1000 0000:02:01.0 eth0: (PCI:66MHz:32-bit) 00:0c:29:85:f4:5a
[    5.532805] e1000 0000:02:01.0 eth0: Intel(R) PRO/1000 Network Connection
[    5.533632] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    5.534337] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    5.535063] VMware vmxnet3 virtual NIC driver - version 1.4.5.0-k-NAPI
[    5.535851] Fusion MPT base driver 3.04.20
[    5.536369] Copyright (c) 1999-2008 LSI Corporation
[    5.536983] Fusion MPT SAS Host driver 3.04.20
[    5.537869] mptbase: ioc0: Initiating bringup
[    5.717015] ioc0: LSISAS1068 B0: Capabilities={Initiator}
[    6.117112] scsi host0: ioc0: LSISAS1068 B0, FwRev=01032920h, Ports=1, MaxQ=128, IRQ=18
[    6.119389] mptsas: ioc0: attaching ssp device: fw_channel 0, fw_id 0, phy 0, sas_addr 0x5000c2949b6aa786
[    6.120679] scsi 0:0:0:0: Direct-Access     VMware   Virtual disk     1.0  PQ: 0 ANSI: 2
[    6.122148] sd 0:0:0:0: [sda] 107520 512-byte logical blocks: (55.1 MB/52.5 MiB)
[    6.123123] sd 0:0:0:0: [sda] Write Protect is off
[    6.123743] sd 0:0:0:0: [sda] Mode Sense: 61 00 00 00
[    6.123758] sd 0:0:0:0: [sda] Cache data unavailable
[    6.124370] sd 0:0:0:0: [sda] Assuming drive cache: write through
[    6.125347] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12
[    6.126766] serio: i8042 KBD port at 0x60,0x64 irq 1
[    6.127412] serio: i8042 AUX port at 0x60,0x64 irq 12
[    6.148262] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    6.149028] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    6.150005] sdhci: Secure Digital Host Controller Interface driver
[    6.150765] sdhci: Copyright(c) Pierre Ossman
[    6.151331] hidraw: raw HID events driver (C) Jiri Kosina
[    6.152024] Netfilter messages via NETLINK v0.30.
[    6.152664] ip_set: protocol 6
[    6.153097] NET: Registered protocol family 17
[    6.153629] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this.
[    6.155073] 8021q: 802.1Q VLAN Support v1.8
[    6.155589] NET: Registered protocol family 40
[    6.157151]  sda: sda1 sda2
[    6.157669] sd 0:0:0:0: [sda] Attached SCSI disk
[    6.158453] rtc_cmos 00:01: setting system clock to 2017-06-06 23:56:01 UTC (1496793361)
[    6.160286] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[    6.201370] EXT4-fs (sda2): mounted filesystem without journal. Opts: (null)
[    6.202232] VFS: Mounted root (ext4 filesystem) readonly on device 8:2.
[    6.203226] Freeing unused kernel memory: 812K (ffffffff8158c000 - ffffffff81657000)
[    6.244636] init: Console is alive
[    6.255234] init: - preinit -
[    8.278611] mount_root: mounting /dev/root
[    8.279347] EXT4-fs (sda2): re-mounted. Opts: (null)
[    8.304471] EXT4-fs (sda1): mounted filesystem without journal. Opts: (null)
[    8.307439] procd: - early -
[    8.813968] procd: - ubus -
[    8.864847] random: ubusd urandom read with 35 bits of entropy available
[    8.867450] procd: - init -
[   10.090710] 8021q: adding VLAN 0 to HW filter on device eth0
[   10.092272] device eth0 entered promiscuous mode
[   10.097346] e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
[   10.098762] br-lan: port 1(eth0) entered forwarding state
[   10.099428] br-lan: port 1(eth0) entered forwarding state
[   12.096885] br-lan: port 1(eth0) entered forwarding state
[   89.260788] random: nonblocking pool is initialized

The discussion might have continued from here.