Add styling on links
This commit is contained in:
BIN
static/assets/netgate-6100/bench-var2-64b-unidirectional.png
(Stored with Git LFS)
Normal file
BIN
static/assets/netgate-6100/bench-var2-64b-unidirectional.png
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
static/assets/netgate-6100/blinkboot.png
(Stored with Git LFS)
Normal file
BIN
static/assets/netgate-6100/blinkboot.png
(Stored with Git LFS)
Normal file
Binary file not shown.
241
static/assets/netgate-6100/c3.css
Normal file
241
static/assets/netgate-6100/c3.css
Normal file
@ -0,0 +1,241 @@
|
||||
/*-- Chart --*/
|
||||
.c3 svg {
|
||||
font: 10px sans-serif;
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
.c3 path, .c3 line {
|
||||
fill: none;
|
||||
stroke: #000;
|
||||
}
|
||||
|
||||
.c3 text {
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.c3-legend-item-tile,
|
||||
.c3-xgrid-focus,
|
||||
.c3-ygrid,
|
||||
.c3-event-rect,
|
||||
.c3-bars path {
|
||||
shape-rendering: crispEdges;
|
||||
}
|
||||
|
||||
.c3-chart-arc path {
|
||||
stroke: #fff;
|
||||
}
|
||||
|
||||
.c3-chart-arc rect {
|
||||
stroke: white;
|
||||
stroke-width: 1;
|
||||
}
|
||||
|
||||
.c3-chart-arc text {
|
||||
fill: #fff;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
/*-- Axis --*/
|
||||
/*-- Grid --*/
|
||||
.c3-grid line {
|
||||
stroke: #aaa;
|
||||
}
|
||||
|
||||
.c3-grid text {
|
||||
fill: #aaa;
|
||||
}
|
||||
|
||||
.c3-xgrid, .c3-ygrid {
|
||||
stroke-dasharray: 3 3;
|
||||
}
|
||||
|
||||
/*-- Text on Chart --*/
|
||||
.c3-text.c3-empty {
|
||||
fill: #808080;
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
/*-- Line --*/
|
||||
.c3-line {
|
||||
stroke-width: 1px;
|
||||
}
|
||||
|
||||
/*-- Point --*/
|
||||
.c3-circle {
|
||||
fill: currentColor;
|
||||
}
|
||||
|
||||
.c3-circle._expanded_ {
|
||||
stroke-width: 1px;
|
||||
stroke: white;
|
||||
}
|
||||
|
||||
.c3-selected-circle {
|
||||
fill: white;
|
||||
stroke-width: 2px;
|
||||
}
|
||||
|
||||
/*-- Bar --*/
|
||||
.c3-bar {
|
||||
stroke-width: 0;
|
||||
}
|
||||
|
||||
.c3-bar._expanded_ {
|
||||
fill-opacity: 1;
|
||||
fill-opacity: 0.75;
|
||||
}
|
||||
|
||||
/*-- Focus --*/
|
||||
.c3-target.c3-focused {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.c3-target.c3-focused path.c3-line, .c3-target.c3-focused path.c3-step {
|
||||
stroke-width: 2px;
|
||||
}
|
||||
|
||||
.c3-target.c3-defocused {
|
||||
opacity: 0.3 !important;
|
||||
}
|
||||
|
||||
/*-- Region --*/
|
||||
.c3-region {
|
||||
fill: steelblue;
|
||||
fill-opacity: 0.1;
|
||||
}
|
||||
.c3-region text {
|
||||
fill-opacity: 1;
|
||||
}
|
||||
|
||||
/*-- Brush --*/
|
||||
.c3-brush .extent {
|
||||
fill-opacity: 0.1;
|
||||
}
|
||||
|
||||
/*-- Select - Drag --*/
|
||||
/*-- Legend --*/
|
||||
.c3-legend-item {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.c3-legend-item-hidden {
|
||||
opacity: 0.15;
|
||||
}
|
||||
|
||||
.c3-legend-background {
|
||||
opacity: 0.75;
|
||||
fill: white;
|
||||
stroke: lightgray;
|
||||
stroke-width: 1;
|
||||
}
|
||||
|
||||
/*-- Title --*/
|
||||
.c3-title {
|
||||
font: 14px sans-serif;
|
||||
}
|
||||
|
||||
/*-- Tooltip --*/
|
||||
.c3-tooltip-container {
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.c3-tooltip {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
background-color: #fff;
|
||||
empty-cells: show;
|
||||
-webkit-box-shadow: 7px 7px 12px -9px #777777;
|
||||
-moz-box-shadow: 7px 7px 12px -9px #777777;
|
||||
box-shadow: 7px 7px 12px -9px #777777;
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
.c3-tooltip tr {
|
||||
border: 1px solid #CCC;
|
||||
}
|
||||
|
||||
.c3-tooltip th {
|
||||
background-color: #aaa;
|
||||
font-size: 14px;
|
||||
padding: 2px 5px;
|
||||
text-align: left;
|
||||
color: #FFF;
|
||||
}
|
||||
|
||||
.c3-tooltip td {
|
||||
font-size: 13px;
|
||||
padding: 3px 6px;
|
||||
background-color: #fff;
|
||||
border-left: 1px dotted #999;
|
||||
}
|
||||
|
||||
.c3-tooltip td > span {
|
||||
display: inline-block;
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
margin-right: 6px;
|
||||
}
|
||||
|
||||
.c3-tooltip .value {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
/*-- Area --*/
|
||||
.c3-area {
|
||||
stroke-width: 0;
|
||||
opacity: 0.2;
|
||||
}
|
||||
|
||||
/*-- Arc --*/
|
||||
.c3-chart-arcs-title {
|
||||
dominant-baseline: middle;
|
||||
font-size: 1.3em;
|
||||
}
|
||||
|
||||
.c3-chart-arcs .c3-chart-arcs-background {
|
||||
fill: #e0e0e0;
|
||||
stroke: #FFF;
|
||||
}
|
||||
|
||||
.c3-chart-arcs .c3-chart-arcs-gauge-unit {
|
||||
fill: #000;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.c3-chart-arcs .c3-chart-arcs-gauge-max {
|
||||
fill: #777;
|
||||
}
|
||||
|
||||
.c3-chart-arcs .c3-chart-arcs-gauge-min {
|
||||
fill: #777;
|
||||
}
|
||||
|
||||
.c3-chart-arc .c3-gauge-value {
|
||||
fill: #000;
|
||||
/* font-size: 28px !important;*/
|
||||
}
|
||||
|
||||
.c3-chart-arc.c3-target g path {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.c3-chart-arc.c3-target.c3-focused g path {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/*-- Zoom --*/
|
||||
.c3-drag-zoom.enabled {
|
||||
pointer-events: all !important;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.c3-drag-zoom.disabled {
|
||||
pointer-events: none !important;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.c3-drag-zoom .extent {
|
||||
fill-opacity: 0.1;
|
||||
}
|
2
static/assets/netgate-6100/c3.min.js
vendored
Normal file
2
static/assets/netgate-6100/c3.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
2
static/assets/netgate-6100/d3.v5.min.js
vendored
Normal file
2
static/assets/netgate-6100/d3.v5.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
225
static/assets/netgate-6100/dmesg-pfsense.boot
Normal file
225
static/assets/netgate-6100/dmesg-pfsense.boot
Normal file
@ -0,0 +1,225 @@
|
||||
Copyright (c) 1992-2021 The FreeBSD Project.
|
||||
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
|
||||
The Regents of the University of California. All rights reserved.
|
||||
FreeBSD is a registered trademark of The FreeBSD Foundation.
|
||||
FreeBSD 12.2-STABLE plus-RELENG_21_05-n202558-698cc2089f8e pfSense amd64
|
||||
FreeBSD clang version 10.0.1 (git@github.com:llvm/llvm-project.git llvmorg-10.0.1-0-gef32c611aa2)
|
||||
VT(vga): resolution 640x480
|
||||
CPU: Intel(R) Atom(TM) CPU C3558 @ 2.20GHz (2200.07-MHz K8-class CPU)
|
||||
Origin="GenuineIntel" Id=0x506f1 Family=0x6 Model=0x5f Stepping=1
|
||||
Features=0xbfebfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE>
|
||||
Features2=0x4ff8ebbf<SSE3,PCLMULQDQ,DTES64,MON,DS_CPL,VMX,EST,TM2,SSSE3,SDBG,CX16,xTPR,PDCM,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,TSCDLT,AESNI,XSAVE,OSXSAVE,RDRAND>
|
||||
AMD Features=0x2c100800<SYSCALL,NX,Page1GB,RDTSCP,LM>
|
||||
AMD Features2=0x101<LAHF,Prefetch>
|
||||
Structured Extended Features=0x2294e283<FSGSBASE,TSCADJ,SMEP,ERMS,NFPUSG,MPX,PQE,RDSEED,SMAP,CLFLUSHOPT,PROCTRACE,SHA>
|
||||
Structured Extended Features3=0xac000400<MD_CLEAR,IBPB,STIBP,ARCH_CAP,SSBD>
|
||||
XSAVE Features=0xf<XSAVEOPT,XSAVEC,XINUSE,XSAVES>
|
||||
IA32_ARCH_CAPS=0x69<RDCL_NO,SKIP_L1DFL_VME>
|
||||
VT-x: PAT,HLT,MTF,PAUSE,EPT,UG,VPID,VID,PostIntr
|
||||
TSC: P-state invariant, performance statistics
|
||||
real memory = 8589934592 (8192 MB)
|
||||
avail memory = 8157822976 (7779 MB)
|
||||
Event timer "LAPIC" quality 600
|
||||
ACPI APIC Table: <INSYDE H2O BIOS>
|
||||
WARNING: L1 data cache covers fewer APIC IDs than a core (0 < 1)
|
||||
FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs
|
||||
FreeBSD/SMP: 1 package(s) x 4 core(s)
|
||||
arc4random: no preloaded entropy cache
|
||||
ioapic0 <Version 2.0> irqs 0-119 on motherboard
|
||||
Launching APs: 1 2 3
|
||||
Timecounter "TSC-low" frequency 1100035087 Hz quality 1000
|
||||
wlan: mac acl policy registered
|
||||
random: entropy device external interface
|
||||
ipw_bss: You need to read the LICENSE file in /usr/share/doc/legal/intel_ipw.LICENSE.
|
||||
ipw_bss: If you agree with the license, set legal.intel_ipw.license_ack=1 in /boot/loader.conf.
|
||||
module_register_init: MOD_LOAD (ipw_bss_fw, 0xffffffff8073c7e0, 0) error 1
|
||||
ipw_ibss: You need to read the LICENSE file in /usr/share/doc/legal/intel_ipw.LICENSE.
|
||||
ipw_ibss: If you agree with the license, set legal.intel_ipw.license_ack=1 in /boot/loader.conf.
|
||||
module_register_init: MOD_LOAD (ipw_ibss_fw, 0xffffffff8073c890, 0) error 1
|
||||
ipw_monitor: You need to read the LICENSE file in /usr/share/doc/legal/intel_ipw.LICENSE.
|
||||
ipw_monitor: If you agree with the license, set legal.intel_ipw.license_ack=1 in /boot/loader.conf.
|
||||
module_register_init: MOD_LOAD (ipw_monitor_fw, 0xffffffff8073c940, 0) error 1
|
||||
iwi_bss: You need to read the LICENSE file in /usr/share/doc/legal/intel_iwi.LICENSE.
|
||||
iwi_bss: If you agree with the license, set legal.intel_iwi.license_ack=1 in /boot/loader.conf.
|
||||
module_register_init: MOD_LOAD (iwi_bss_fw, 0xffffffff807641d0, 0) error 1
|
||||
iwi_ibss: You need to read the LICENSE file in /usr/share/doc/legal/intel_iwi.LICENSE.
|
||||
iwi_ibss: If you agree with the license, set legal.intel_iwi.license_ack=1 in /boot/loader.conf.
|
||||
module_register_init: MOD_LOAD (iwi_ibss_fw, 0xffffffff80764280, 0) error 1
|
||||
iwi_monitor: You need to read the LICENSE file in /usr/share/doc/legal/intel_iwi.LICENSE.
|
||||
iwi_monitor: If you agree with the license, set legal.intel_iwi.license_ack=1 in /boot/loader.conf.
|
||||
module_register_init: MOD_LOAD (iwi_monitor_fw, 0xffffffff80764330, 0) error 1
|
||||
WARNING: Device "g_ctl" is Giant locked and may be deleted before FreeBSD 14.0.
|
||||
000.000018 [4344] netmap_init netmap: loaded module
|
||||
WARNING: Device "pci" is Giant locked and may be deleted before FreeBSD 14.0.
|
||||
module_register_init: MOD_LOAD (vesa, 0xffffffff814060c0, 0) error 19
|
||||
WARNING: Device "kbd" is Giant locked and may be deleted before FreeBSD 14.0.
|
||||
kbd0 at kbdmux0
|
||||
random: registering fast source Intel Secure Key RNG
|
||||
random: fast provider: "Intel Secure Key RNG"
|
||||
WARNING: Device "spkr" is Giant locked and may be deleted before FreeBSD 14.0.
|
||||
[ath_hal] loaded
|
||||
mlx5en: Mellanox Ethernet driver 3.6.0 (December 2020)
|
||||
nexus0
|
||||
efirtc0: <EFI Realtime Clock> on motherboard
|
||||
efirtc0: registered as a time-of-day clock, resolution 1.000000s
|
||||
vtvga0: <VT VGA driver> on motherboard
|
||||
cryptosoft0: <software crypto> on motherboard
|
||||
acpi0: <INSYDE H2O BIOS> on motherboard
|
||||
acpi0: Power Button (fixed)
|
||||
unknown: I/O range not supported
|
||||
cpu0: <ACPI CPU> on acpi0
|
||||
hpet0: <High Precision Event Timer> iomem 0xfed00000-0xfed003ff on acpi0
|
||||
Timecounter "HPET" frequency 24000000 Hz quality 950
|
||||
Event timer "HPET" frequency 24000000 Hz quality 550
|
||||
Event timer "HPET1" frequency 24000000 Hz quality 440
|
||||
Event timer "HPET2" frequency 24000000 Hz quality 440
|
||||
Event timer "HPET3" frequency 24000000 Hz quality 440
|
||||
Event timer "HPET4" frequency 24000000 Hz quality 440
|
||||
atrtc0: <AT realtime clock> port 0x70-0x77 irq 8 on acpi0
|
||||
atrtc0: Warning: Couldn't map I/O.
|
||||
atrtc0: registered as a time-of-day clock, resolution 1.000000s
|
||||
Event timer "RTC" frequency 32768 Hz quality 0
|
||||
attimer0: <AT timer> port 0x40-0x43,0x50-0x53 irq 0 on acpi0
|
||||
Timecounter "i8254" frequency 1193182 Hz quality 0
|
||||
Event timer "i8254" frequency 1193182 Hz quality 100
|
||||
Timecounter "ACPI-fast" frequency 3579545 Hz quality 900
|
||||
acpi_timer0: <24-bit timer at 3.579545MHz> port 0x1808-0x180b on acpi0
|
||||
pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff on acpi0
|
||||
pci0: <ACPI PCI bus> on pcib0
|
||||
pcib1: <ACPI PCI-PCI bridge> at device 6.0 on pci0
|
||||
pci1: <ACPI PCI bus> on pcib1
|
||||
pci1: <processor> at device 0.0 (no driver attached)
|
||||
pcib2: <ACPI PCI-PCI bridge> mem 0x81500000-0x8151ffff at device 10.0 on pci0
|
||||
pci2: <ACPI PCI bus> on pcib2
|
||||
pcib3: <ACPI PCI-PCI bridge> mem 0x81520000-0x8153ffff at device 11.0 on pci0
|
||||
pci3: <ACPI PCI bus> on pcib3
|
||||
pcib4: <ACPI PCI-PCI bridge> mem 0x81540000-0x8155ffff at device 12.0 on pci0
|
||||
pci4: <ACPI PCI bus> on pcib4
|
||||
igc0: <Intel(R) PRO/1000 PCI-Express Network Driver> mem 0x81300000-0x813fffff,0x81400000-0x81403fff at device 0.0 on pci4
|
||||
igc0: Using 1024 TX descriptors and 1024 RX descriptors
|
||||
igc0: Using 4 RX queues 4 TX queues
|
||||
igc0: Using MSI-X interrupts with 5 vectors
|
||||
igc0: Ethernet address: 90:ec:77:1b:63:55
|
||||
igc0: netmap queues/slots: TX 4/1024, RX 4/1024
|
||||
pcib5: <ACPI PCI-PCI bridge> mem 0x81560000-0x8157ffff at device 14.0 on pci0
|
||||
pci5: <ACPI PCI bus> on pcib5
|
||||
igc1: <Intel(R) PRO/1000 PCI-Express Network Driver> mem 0x81100000-0x811fffff,0x81200000-0x81203fff at device 0.0 on pci5
|
||||
igc1: Using 1024 TX descriptors and 1024 RX descriptors
|
||||
igc1: Using 4 RX queues 4 TX queues
|
||||
igc1: Using MSI-X interrupts with 5 vectors
|
||||
igc1: Ethernet address: 90:ec:77:1b:63:56
|
||||
igc1: netmap queues/slots: TX 4/1024, RX 4/1024
|
||||
pcib6: <ACPI PCI-PCI bridge> mem 0x81580000-0x8159ffff at device 15.0 on pci0
|
||||
pci6: <ACPI PCI bus> on pcib6
|
||||
igc2: <Intel(R) PRO/1000 PCI-Express Network Driver> mem 0x80f00000-0x80ffffff,0x81000000-0x81003fff at device 0.0 on pci6
|
||||
igc2: Using 1024 TX descriptors and 1024 RX descriptors
|
||||
igc2: Using 4 RX queues 4 TX queues
|
||||
igc2: Using MSI-X interrupts with 5 vectors
|
||||
igc2: Ethernet address: 90:ec:77:1b:63:57
|
||||
igc2: netmap queues/slots: TX 4/1024, RX 4/1024
|
||||
pcib7: <ACPI PCI-PCI bridge> mem 0x815a0000-0x815bffff at device 16.0 on pci0
|
||||
pci7: <ACPI PCI bus> on pcib7
|
||||
igc3: <Intel(R) PRO/1000 PCI-Express Network Driver> mem 0x80d00000-0x80dfffff,0x80e00000-0x80e03fff at device 0.0 on pci7
|
||||
igc3: Using 1024 TX descriptors and 1024 RX descriptors
|
||||
igc3: Using 4 RX queues 4 TX queues
|
||||
igc3: Using MSI-X interrupts with 5 vectors
|
||||
igc3: Ethernet address: 90:ec:77:1b:63:58
|
||||
igc3: netmap queues/slots: TX 4/1024, RX 4/1024
|
||||
pcib8: <ACPI PCI-PCI bridge> mem 0x815c0000-0x815dffff at device 17.0 on pci0
|
||||
pci8: <ACPI PCI bus> on pcib8
|
||||
xhci0: <Intel Denverton USB 3.0 controller> mem 0x815e0000-0x815effff at device 21.0 on pci0
|
||||
xhci0: 32 bytes context size, 64-bit DMA
|
||||
usbus0 on xhci0
|
||||
usbus0: 5.0Gbps Super Speed USB v3.0
|
||||
pcib9: <ACPI PCI-PCI bridge> at device 22.0 on pci0
|
||||
pci9: <ACPI PCI bus> on pcib9
|
||||
ix0: <Intel(R) PRO/10GbE PCI-Express Network Driver> mem 0x80400000-0x805fffff,0x80604000-0x80607fff at device 0.0 on pci9
|
||||
ix0: Using 2048 TX descriptors and 2048 RX descriptors
|
||||
ix0: Using 4 RX queues 4 TX queues
|
||||
ix0: Using MSI-X interrupts with 5 vectors
|
||||
ix0: allocated for 4 queues
|
||||
ix0: allocated for 4 rx queues
|
||||
ix0: Ethernet address: 90:ec:77:1b:63:53
|
||||
ix0: netmap queues/slots: TX 4/2048, RX 4/2048
|
||||
ix1: <Intel(R) PRO/10GbE PCI-Express Network Driver> mem 0x80200000-0x803fffff,0x80600000-0x80603fff at device 0.1 on pci9
|
||||
ix1: Using 2048 TX descriptors and 2048 RX descriptors
|
||||
ix1: Using 4 RX queues 4 TX queues
|
||||
ix1: Using MSI-X interrupts with 5 vectors
|
||||
ix1: allocated for 4 queues
|
||||
ix1: allocated for 4 rx queues
|
||||
ix1: Ethernet address: 90:ec:77:1b:63:54
|
||||
ix1: netmap queues/slots: TX 4/2048, RX 4/2048
|
||||
pcib10: <ACPI PCI-PCI bridge> at device 23.0 on pci0
|
||||
pci10: <ACPI PCI bus> on pcib10
|
||||
ix2: <Intel(R) PRO/10GbE PCI-Express Network Driver> mem 0x80a00000-0x80bfffff,0x80c04000-0x80c07fff at device 0.0 on pci10
|
||||
ix2: Using 2048 TX descriptors and 2048 RX descriptors
|
||||
ix2: Using 4 RX queues 4 TX queues
|
||||
ix2: Using MSI-X interrupts with 5 vectors
|
||||
ix2: allocated for 4 queues
|
||||
ix2: allocated for 4 rx queues
|
||||
ix2: Ethernet address: 90:ec:77:1b:63:52
|
||||
ix2: netmap queues/slots: TX 4/2048, RX 4/2048
|
||||
ix3: <Intel(R) PRO/10GbE PCI-Express Network Driver> mem 0x80800000-0x809fffff,0x80c00000-0x80c03fff at device 0.1 on pci10
|
||||
ix3: Using 2048 TX descriptors and 2048 RX descriptors
|
||||
ix3: Using 4 RX queues 4 TX queues
|
||||
ix3: Using MSI-X interrupts with 5 vectors
|
||||
ix3: allocated for 4 queues
|
||||
ix3: allocated for 4 rx queues
|
||||
ix3: Ethernet address: 90:ec:77:1b:63:51
|
||||
ix3: netmap queues/slots: TX 4/2048, RX 4/2048
|
||||
pci0: <simple comms> at device 24.0 (no driver attached)
|
||||
sdhci_pci0: <Intel Denverton eMMC 5.0 Controller> mem 0x815f6000-0x815f6fff,0x815f7000-0x815f7fff at device 28.0 on pci0
|
||||
sdhci_pci0: 1 slot(s) allocated
|
||||
mmc0: <MMC/SD bus> on sdhci_pci0
|
||||
isab0: <PCI-ISA bridge> at device 31.0 on pci0
|
||||
isa0: <ISA bus> on isab0
|
||||
pci0: <memory> at device 31.2 (no driver attached)
|
||||
pci0: <serial bus> at device 31.5 (no driver attached)
|
||||
pci0: <unknown> at device 31.7 (no driver attached)
|
||||
acpi_button0: <Power Button> on acpi0
|
||||
acpi_tz0: <Thermal Zone> on acpi0
|
||||
uart0: <Non-standard ns8250 class UART with FIFOs> port 0x3f8-0x3ff irq 16 flags 0x10 on acpi0
|
||||
uart0: console (115200,n,8,1)
|
||||
est0: <Enhanced SpeedStep Frequency Control> on cpu0
|
||||
Timecounters tick every 1.000 msec
|
||||
arc4random: no preloaded entropy cache
|
||||
ugen0.1: <0x8086 XHCI root HUB> at usbus0
|
||||
uhub0: <0x8086 XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1> on usbus0
|
||||
mmcsd0: 16GB <MMCHC TB2916 9.0 SN 28E9724C MFG 09/2020 by 112 0x0000> at mmc0 50.0MHz/8bit/65535-block
|
||||
mmcsd0boot0: 4MB partition 1 at mmcsd0
|
||||
mmcsd0boot1: 4MB partition 2 at mmcsd0
|
||||
mmcsd0rpmb: 4MB partition 3 at mmcsd0
|
||||
Trying to mount root from ufs:/dev/ufsid/60b9302175a9865b [rw,noatime]...
|
||||
random: unblocking device.
|
||||
arc4random: no preloaded entropy cache
|
||||
arc4random: no preloaded entropy cache
|
||||
Netgate 6100 GPIO Driver 0.3 loaded
|
||||
cordbuc0: <Netgate 6100 IO controller> at port 0x800 on isa0
|
||||
gpio0: <SG-6100 uC GPIO controller> on cordbuc0
|
||||
gpiobus0: <GPIO bus> on gpio0
|
||||
gpioled0: <GPIO led> at pin 0 on gpiobus0
|
||||
gpioled1: <GPIO led> at pin 1 on gpiobus0
|
||||
gpioled10: <GPIO led> at pin 10 on gpiobus0
|
||||
gpioled11: <GPIO led> at pin 11 on gpiobus0
|
||||
gpioled2: <GPIO led> at pin 2 on gpiobus0
|
||||
gpioled3: <GPIO led> at pin 3 on gpiobus0
|
||||
gpioled4: <GPIO led> at pin 4 on gpiobus0
|
||||
gpioled5: <GPIO led> at pin 5 on gpiobus0
|
||||
gpioled6: <GPIO led> at pin 6 on gpiobus0
|
||||
gpioled7: <GPIO led> at pin 7 on gpiobus0
|
||||
gpioled8: <GPIO led> at pin 8 on gpiobus0
|
||||
gpioled9: <GPIO led> at pin 9 on gpiobus0
|
||||
gpioc0: <GPIO controller> on gpio0
|
||||
uhub0: 8 ports with 8 removable, self powered
|
||||
CPU: Intel(R) Atom(TM) CPU C3558 @ 2.20GHz (2200.07-MHz K8-class CPU)
|
||||
Origin="GenuineIntel" Id=0x506f1 Family=0x6 Model=0x5f Stepping=1
|
||||
Features=0xbfebfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE>
|
||||
Features2=0x4ff8ebbf<SSE3,PCLMULQDQ,DTES64,MON,DS_CPL,VMX,EST,TM2,SSSE3,SDBG,CX16,xTPR,PDCM,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,TSCDLT,AESNI,XSAVE,OSXSAVE,RDRAND>
|
||||
AMD Features=0x2c100800<SYSCALL,NX,Page1GB,RDTSCP,LM>
|
||||
AMD Features2=0x101<LAHF,Prefetch>
|
||||
Structured Extended Features=0x2294e283<FSGSBASE,TSCADJ,SMEP,ERMS,NFPUSG,MPX,PQE,RDSEED,SMAP,CLFLUSHOPT,PROCTRACE,SHA>
|
||||
Structured Extended Features3=0xac000400<MD_CLEAR,IBPB,STIBP,ARCH_CAP,SSBD>
|
||||
XSAVE Features=0xf<XSAVEOPT,XSAVEC,XINUSE,XSAVES>
|
||||
IA32_ARCH_CAPS=0x69<RDCL_NO,SKIP_L1DFL_VME>
|
||||
VT-x: PAT,HLT,MTF,PAUSE,EPT,UG,VPID,VID,PostIntr
|
||||
TSC: P-state invariant, performance statistics
|
962
static/assets/netgate-6100/dmesg-ubuntu.boot
Normal file
962
static/assets/netgate-6100/dmesg-ubuntu.boot
Normal file
@ -0,0 +1,962 @@
|
||||
[ 0.000000] microcode: microcode updated early to revision 0x34, date = 2020-10-23
|
||||
[ 0.000000] Linux version 5.4.0-90-generic (buildd@lgw01-amd64-054) (gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04)) #101-Ubuntu SMP Fri Oct 15 20:00:55 UTC 2021 (Ubuntu 5.4.0-90.101-generic 5.4.148)
|
||||
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-5.4.0-90-generic root=UUID=fb875ad8-746f-48b7-a1c4-c19fc4a7d3ff ro console=ttyS0,115200n8 isolcpu=1-3
|
||||
[ 0.000000] KERNEL supported cpus:
|
||||
[ 0.000000] Intel GenuineIntel
|
||||
[ 0.000000] AMD AuthenticAMD
|
||||
[ 0.000000] Hygon HygonGenuine
|
||||
[ 0.000000] Centaur CentaurHauls
|
||||
[ 0.000000] zhaoxin Shanghai
|
||||
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
|
||||
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
|
||||
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
|
||||
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
|
||||
[ 0.000000] x86/fpu: xstate_offset[3]: 576, xstate_sizes[3]: 64
|
||||
[ 0.000000] x86/fpu: xstate_offset[4]: 640, xstate_sizes[4]: 64
|
||||
[ 0.000000] x86/fpu: Enabled xstate features 0x1b, context size is 704 bytes, using 'compacted' format.
|
||||
[ 0.000000] BIOS-provided physical RAM map:
|
||||
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000005efff] usable
|
||||
[ 0.000000] BIOS-e820: [mem 0x000000000005f000-0x000000000005ffff] reserved
|
||||
[ 0.000000] BIOS-e820: [mem 0x0000000000060000-0x000000000009ffff] usable
|
||||
[ 0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
|
||||
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007c2befff] usable
|
||||
[ 0.000000] BIOS-e820: [mem 0x000000007c2bf000-0x000000007ebbefff] reserved
|
||||
[ 0.000000] BIOS-e820: [mem 0x000000007ebbf000-0x000000007efbefff] ACPI NVS
|
||||
[ 0.000000] BIOS-e820: [mem 0x000000007efbf000-0x000000007effefff] ACPI data
|
||||
[ 0.000000] BIOS-e820: [mem 0x000000007efff000-0x000000007effffff] usable
|
||||
[ 0.000000] BIOS-e820: [mem 0x000000007f000000-0x000000007fffffff] reserved
|
||||
[ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
|
||||
[ 0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000fe7fffff] reserved
|
||||
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
|
||||
[ 0.000000] BIOS-e820: [mem 0x00000000fec80000-0x00000000fed00fff] reserved
|
||||
[ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed17fff] reserved
|
||||
[ 0.000000] BIOS-e820: [mem 0x00000000fed84000-0x00000000fed84fff] reserved
|
||||
[ 0.000000] BIOS-e820: [mem 0x00000000ff800000-0x00000000ffffffff] reserved
|
||||
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000027fffffff] usable
|
||||
[ 0.000000] NX (Execute Disable) protection: active
|
||||
[ 0.000000] e820: update [mem 0x72008018-0x72039657] usable ==> usable
|
||||
[ 0.000000] e820: update [mem 0x72008018-0x72039657] usable ==> usable
|
||||
[ 0.000000] e820: update [mem 0x71fd6018-0x72007657] usable ==> usable
|
||||
[ 0.000000] e820: update [mem 0x71fd6018-0x72007657] usable ==> usable
|
||||
[ 0.000000] e820: update [mem 0x71fa4018-0x71fd5657] usable ==> usable
|
||||
[ 0.000000] e820: update [mem 0x71fa4018-0x71fd5657] usable ==> usable
|
||||
[ 0.000000] e820: update [mem 0x71f72018-0x71fa3657] usable ==> usable
|
||||
[ 0.000000] e820: update [mem 0x71f72018-0x71fa3657] usable ==> usable
|
||||
[ 0.000000] extended physical RAM map:
|
||||
[ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000005efff] usable
|
||||
[ 0.000000] reserve setup_data: [mem 0x000000000005f000-0x000000000005ffff] reserved
|
||||
[ 0.000000] reserve setup_data: [mem 0x0000000000060000-0x000000000009ffff] usable
|
||||
[ 0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000fffff] reserved
|
||||
[ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000071f72017] usable
|
||||
[ 0.000000] reserve setup_data: [mem 0x0000000071f72018-0x0000000071fa3657] usable
|
||||
[ 0.000000] reserve setup_data: [mem 0x0000000071fa3658-0x0000000071fa4017] usable
|
||||
[ 0.000000] reserve setup_data: [mem 0x0000000071fa4018-0x0000000071fd5657] usable
|
||||
[ 0.000000] reserve setup_data: [mem 0x0000000071fd5658-0x0000000071fd6017] usable
|
||||
[ 0.000000] reserve setup_data: [mem 0x0000000071fd6018-0x0000000072007657] usable
|
||||
[ 0.000000] reserve setup_data: [mem 0x0000000072007658-0x0000000072008017] usable
|
||||
[ 0.000000] reserve setup_data: [mem 0x0000000072008018-0x0000000072039657] usable
|
||||
[ 0.000000] reserve setup_data: [mem 0x0000000072039658-0x000000007c2befff] usable
|
||||
[ 0.000000] reserve setup_data: [mem 0x000000007c2bf000-0x000000007ebbefff] reserved
|
||||
[ 0.000000] reserve setup_data: [mem 0x000000007ebbf000-0x000000007efbefff] ACPI NVS
|
||||
[ 0.000000] reserve setup_data: [mem 0x000000007efbf000-0x000000007effefff] ACPI data
|
||||
[ 0.000000] reserve setup_data: [mem 0x000000007efff000-0x000000007effffff] usable
|
||||
[ 0.000000] reserve setup_data: [mem 0x000000007f000000-0x000000007fffffff] reserved
|
||||
[ 0.000000] reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
|
||||
[ 0.000000] reserve setup_data: [mem 0x00000000fd000000-0x00000000fe7fffff] reserved
|
||||
[ 0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
|
||||
[ 0.000000] reserve setup_data: [mem 0x00000000fec80000-0x00000000fed00fff] reserved
|
||||
[ 0.000000] reserve setup_data: [mem 0x00000000fed10000-0x00000000fed17fff] reserved
|
||||
[ 0.000000] reserve setup_data: [mem 0x00000000fed84000-0x00000000fed84fff] reserved
|
||||
[ 0.000000] reserve setup_data: [mem 0x00000000ff800000-0x00000000ffffffff] reserved
|
||||
[ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000027fffffff] usable
|
||||
[ 0.000000] efi: EFI v2.50 by Insyde Mar 5 2021 13:53:37
|
||||
[ 0.000000] efi: ACPI 2.0=0x7effe014 SMBIOS=0x7c583000 SMBIOS 3.0=0x7c581000
|
||||
[ 0.000000] secureboot: Secure boot disabled
|
||||
[ 0.000000] SMBIOS 3.0.0 present.
|
||||
[ 0.000000] DMI: Netgate 6100/80500-0214-G01, BIOS CORDOBA-02.01.00.05t 2021-07-25
|
||||
[ 0.000000] tsc: Detected 2200.000 MHz processor
|
||||
[ 0.000024] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
|
||||
[ 0.000026] e820: remove [mem 0x000a0000-0x000fffff] usable
|
||||
[ 0.000037] last_pfn = 0x280000 max_arch_pfn = 0x400000000
|
||||
[ 0.000042] MTRR default type: uncachable
|
||||
[ 0.000044] MTRR fixed ranges enabled:
|
||||
[ 0.000045] 00000-9FFFF write-back
|
||||
[ 0.000046] A0000-BFFFF uncachable
|
||||
[ 0.000048] C0000-E7FFF write-protect
|
||||
[ 0.000049] E8000-EFFFF write-combining
|
||||
[ 0.000050] F0000-FFFFF write-protect
|
||||
[ 0.000051] MTRR variable ranges enabled:
|
||||
[ 0.000053] 0 base 00FF800000 mask 7FFF800000 write-protect
|
||||
[ 0.000055] 1 base 0000000000 mask 7F80000000 write-back
|
||||
[ 0.000056] 2 base 007F000000 mask 7FFF000000 uncachable
|
||||
[ 0.000058] 3 base 0100000000 mask 7F00000000 write-back
|
||||
[ 0.000059] 4 base 0200000000 mask 7F80000000 write-back
|
||||
[ 0.000060] 5 disabled
|
||||
[ 0.000061] 6 disabled
|
||||
[ 0.000062] 7 disabled
|
||||
[ 0.000062] 8 disabled
|
||||
[ 0.000063] 9 disabled
|
||||
[ 0.000169] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
|
||||
[ 0.000336] x2apic: enabled by BIOS, switching to x2apic ops
|
||||
[ 0.000338] last_pfn = 0x7f000 max_arch_pfn = 0x400000000
|
||||
[ 0.005175] check: Scanning 1 areas for low memory corruption
|
||||
[ 0.005184] Using GB pages for direct mapping
|
||||
[ 0.005770] secureboot: Secure boot disabled
|
||||
[ 0.005773] RAMDISK: [mem 0x3ce3a000-0x3fffdfff]
|
||||
[ 0.005782] ACPI: Early table checksum verification disabled
|
||||
[ 0.005789] ACPI: RSDP 0x000000007EFFE014 000024 (v02 INSYDE)
|
||||
[ 0.005793] ACPI: XSDT 0x000000007EFFE120 00007C (v01 INSYDE H2O BIOS 00000001 01000013)
|
||||
[ 0.005802] ACPI: FACP 0x000000007EFF8000 00010C (v05 INSYDE H2O BIOS 00000001 ACPI 00040000)
|
||||
[ 0.005810] ACPI: DSDT 0x000000007EFF0000 004871 (v02 INSYDE H2O BIOS 00000000 ACPI 00040000)
|
||||
[ 0.005815] ACPI: FACS 0x000000007EF86000 000040
|
||||
[ 0.005819] ACPI: UEFI 0x000000007EFFD000 000236 (v01 INSYDE H2O BIOS 00000001 ACPI 00040000)
|
||||
[ 0.005824] ACPI: UEFI 0x000000007EFFB000 000042 (v01 00000000 00000000)
|
||||
[ 0.005829] ACPI: BDAT 0x000000007EFFA000 000030 (v01 INSYDE H2O BIOS 00000000 ACPI 00040000)
|
||||
[ 0.005834] ACPI: BOOT 0x000000007EFF9000 000028 (v01 INSYDE H2O BIOS 00000001 ACPI 00040000)
|
||||
[ 0.005839] ACPI: HPET 0x000000007EFF7000 000038 (v01 INSYDE H2O BIOS 00000001 ACPI 00040000)
|
||||
[ 0.005843] ACPI: APIC 0x000000007EFF6000 0000D2 (v03 INSYDE H2O BIOS 00000001 ACPI 00040000)
|
||||
[ 0.005848] ACPI: MCFG 0x000000007EFF5000 00003C (v01 INSYDE H2O BIOS 00000001 ACPI 00040000)
|
||||
[ 0.005853] ACPI: SSDT 0x000000007EFEE000 001901 (v02 PmRef CpuPm 00003000 INTL 20130117)
|
||||
[ 0.005858] ACPI: DMAR 0x000000007EFED000 000070 (v01 INTEL BDW 00000001 INTL 00000001)
|
||||
[ 0.005862] ACPI: DBG2 0x000000007EFEC000 000061 (v00 INTEL 00000000 MSFT 01000013)
|
||||
[ 0.005867] ACPI: Reserving FACP table memory at [mem 0x7eff8000-0x7eff810b]
|
||||
[ 0.005869] ACPI: Reserving DSDT table memory at [mem 0x7eff0000-0x7eff4870]
|
||||
[ 0.005871] ACPI: Reserving FACS table memory at [mem 0x7ef86000-0x7ef8603f]
|
||||
[ 0.005873] ACPI: Reserving UEFI table memory at [mem 0x7effd000-0x7effd235]
|
||||
[ 0.005875] ACPI: Reserving UEFI table memory at [mem 0x7effb000-0x7effb041]
|
||||
[ 0.005877] ACPI: Reserving BDAT table memory at [mem 0x7effa000-0x7effa02f]
|
||||
[ 0.005878] ACPI: Reserving BOOT table memory at [mem 0x7eff9000-0x7eff9027]
|
||||
[ 0.005880] ACPI: Reserving HPET table memory at [mem 0x7eff7000-0x7eff7037]
|
||||
[ 0.005882] ACPI: Reserving APIC table memory at [mem 0x7eff6000-0x7eff60d1]
|
||||
[ 0.005884] ACPI: Reserving MCFG table memory at [mem 0x7eff5000-0x7eff503b]
|
||||
[ 0.005886] ACPI: Reserving SSDT table memory at [mem 0x7efee000-0x7efef900]
|
||||
[ 0.005888] ACPI: Reserving DMAR table memory at [mem 0x7efed000-0x7efed06f]
|
||||
[ 0.005890] ACPI: Reserving DBG2 table memory at [mem 0x7efec000-0x7efec060]
|
||||
[ 0.005902] ACPI: Local APIC address 0xfee00000
|
||||
[ 0.005905] Setting APIC routing to cluster x2apic.
|
||||
[ 0.006045] No NUMA configuration found
|
||||
[ 0.006047] Faking a node at [mem 0x0000000000000000-0x000000027fffffff]
|
||||
[ 0.006062] NODE_DATA(0) allocated [mem 0x27ffd5000-0x27fffffff]
|
||||
[ 0.006521] Zone ranges:
|
||||
[ 0.006523] DMA [mem 0x0000000000001000-0x0000000000ffffff]
|
||||
[ 0.006525] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
|
||||
[ 0.006527] Normal [mem 0x0000000100000000-0x000000027fffffff]
|
||||
[ 0.006529] Device empty
|
||||
[ 0.006531] Movable zone start for each node
|
||||
[ 0.006535] Early memory node ranges
|
||||
[ 0.006537] node 0: [mem 0x0000000000001000-0x000000000005efff]
|
||||
[ 0.006539] node 0: [mem 0x0000000000060000-0x000000000009ffff]
|
||||
[ 0.006540] node 0: [mem 0x0000000000100000-0x000000007c2befff]
|
||||
[ 0.006542] node 0: [mem 0x000000007efff000-0x000000007effffff]
|
||||
[ 0.006544] node 0: [mem 0x0000000100000000-0x000000027fffffff]
|
||||
[ 0.006750] Zeroed struct page in unavailable ranges: 15778 pages
|
||||
[ 0.006752] Initmem setup node 0 [mem 0x0000000000001000-0x000000027fffffff]
|
||||
[ 0.006755] On node 0 totalpages: 2081374
|
||||
[ 0.006757] DMA zone: 64 pages used for memmap
|
||||
[ 0.006758] DMA zone: 22 pages reserved
|
||||
[ 0.006760] DMA zone: 3998 pages, LIFO batch:0
|
||||
[ 0.006852] DMA32 zone: 7883 pages used for memmap
|
||||
[ 0.006854] DMA32 zone: 504512 pages, LIFO batch:63
|
||||
[ 0.022215] Normal zone: 24576 pages used for memmap
|
||||
[ 0.022217] Normal zone: 1572864 pages, LIFO batch:63
|
||||
[ 0.056704] ACPI: PM-Timer IO Port: 0x1808
|
||||
[ 0.056709] ACPI: Local APIC address 0xfee00000
|
||||
[ 0.056723] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
|
||||
[ 0.056743] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
|
||||
[ 0.056747] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
|
||||
[ 0.056750] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
|
||||
[ 0.056753] ACPI: IRQ0 used by override.
|
||||
[ 0.056755] ACPI: IRQ9 used by override.
|
||||
[ 0.056757] Using ACPI (MADT) for SMP configuration information
|
||||
[ 0.056760] ACPI: HPET id: 0x8086a001 base: 0xfed00000
|
||||
[ 0.056769] TSC deadline timer available
|
||||
[ 0.056772] smpboot: Allowing 16 CPUs, 12 hotplug CPUs
|
||||
[ 0.056807] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
|
||||
[ 0.056811] PM: Registered nosave memory: [mem 0x0005f000-0x0005ffff]
|
||||
[ 0.056814] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
|
||||
[ 0.056817] PM: Registered nosave memory: [mem 0x71f72000-0x71f72fff]
|
||||
[ 0.056820] PM: Registered nosave memory: [mem 0x71fa3000-0x71fa3fff]
|
||||
[ 0.056822] PM: Registered nosave memory: [mem 0x71fa4000-0x71fa4fff]
|
||||
[ 0.056825] PM: Registered nosave memory: [mem 0x71fd5000-0x71fd5fff]
|
||||
[ 0.056826] PM: Registered nosave memory: [mem 0x71fd6000-0x71fd6fff]
|
||||
[ 0.056830] PM: Registered nosave memory: [mem 0x72007000-0x72007fff]
|
||||
[ 0.056831] PM: Registered nosave memory: [mem 0x72008000-0x72008fff]
|
||||
[ 0.056834] PM: Registered nosave memory: [mem 0x72039000-0x72039fff]
|
||||
[ 0.056837] PM: Registered nosave memory: [mem 0x7c2bf000-0x7ebbefff]
|
||||
[ 0.056839] PM: Registered nosave memory: [mem 0x7ebbf000-0x7efbefff]
|
||||
[ 0.056840] PM: Registered nosave memory: [mem 0x7efbf000-0x7effefff]
|
||||
[ 0.056843] PM: Registered nosave memory: [mem 0x7f000000-0x7fffffff]
|
||||
[ 0.056845] PM: Registered nosave memory: [mem 0x80000000-0xdfffffff]
|
||||
[ 0.056846] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
|
||||
[ 0.056848] PM: Registered nosave memory: [mem 0xf0000000-0xfcffffff]
|
||||
[ 0.056849] PM: Registered nosave memory: [mem 0xfd000000-0xfe7fffff]
|
||||
[ 0.056850] PM: Registered nosave memory: [mem 0xfe800000-0xfebfffff]
|
||||
[ 0.056852] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
|
||||
[ 0.056853] PM: Registered nosave memory: [mem 0xfec01000-0xfec7ffff]
|
||||
[ 0.056855] PM: Registered nosave memory: [mem 0xfec80000-0xfed00fff]
|
||||
[ 0.056856] PM: Registered nosave memory: [mem 0xfed01000-0xfed0ffff]
|
||||
[ 0.056857] PM: Registered nosave memory: [mem 0xfed10000-0xfed17fff]
|
||||
[ 0.056859] PM: Registered nosave memory: [mem 0xfed18000-0xfed83fff]
|
||||
[ 0.056860] PM: Registered nosave memory: [mem 0xfed84000-0xfed84fff]
|
||||
[ 0.056861] PM: Registered nosave memory: [mem 0xfed85000-0xff7fffff]
|
||||
[ 0.056863] PM: Registered nosave memory: [mem 0xff800000-0xffffffff]
|
||||
[ 0.056866] [mem 0x80000000-0xdfffffff] available for PCI devices
|
||||
[ 0.056869] Booting paravirtualized kernel on bare hardware
|
||||
[ 0.056874] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
|
||||
[ 0.056887] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1
|
||||
[ 0.058627] percpu: Embedded 55 pages/cpu s188416 r8192 d28672 u262144
|
||||
[ 0.058643] pcpu-alloc: s188416 r8192 d28672 u262144 alloc=1*2097152
|
||||
[ 0.058645] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15
|
||||
[ 0.058710] Built 1 zonelists, mobility grouping on. Total pages: 2048829
|
||||
[ 0.058714] Policy zone: Normal
|
||||
[ 0.058717] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.4.0-90-generic root=UUID=fb875ad8-746f-48b7-a1c4-c19fc4a7d3ff ro console=ttyS0,115200n8 isolcpu=1-3
|
||||
[ 0.060716] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
|
||||
[ 0.061674] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
|
||||
[ 0.061838] mem auto-init: stack:off, heap alloc:on, heap free:off
|
||||
[ 0.077318] Calgary: detecting Calgary via BIOS EBDA area
|
||||
[ 0.077321] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
|
||||
[ 0.120897] Memory: 7874788K/8325496K available (14339K kernel code, 2400K rwdata, 5020K rodata, 2736K init, 4964K bss, 450708K reserved, 0K cma-reserved)
|
||||
[ 0.120910] random: get_random_u64 called from kmem_cache_open+0x2d/0x410 with crng_init=0
|
||||
[ 0.121159] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
|
||||
[ 0.121185] ftrace: allocating 44628 entries in 175 pages
|
||||
[ 0.142349] rcu: Hierarchical RCU implementation.
|
||||
[ 0.142354] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=16.
|
||||
[ 0.142356] Tasks RCU enabled.
|
||||
[ 0.142358] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
|
||||
[ 0.142359] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
|
||||
[ 0.147073] NR_IRQS: 524544, nr_irqs: 2184, preallocated irqs: 16
|
||||
[ 0.147481] random: crng done (trusting CPU's manufacturer)
|
||||
[ 0.147531] Console: colour dummy device 80x25
|
||||
[ 1.405124] printk: console [ttyS0] enabled
|
||||
[ 1.409463] ACPI: Core revision 20190816
|
||||
[ 1.413680] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
|
||||
[ 1.422908] APIC: Switch to symmetric I/O mode setup
|
||||
[ 1.428017] DMAR: Host address width 39
|
||||
[ 1.432000] DMAR: DRHD base: 0x000000fed90000 flags: 0x1
|
||||
[ 1.437465] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap d2008c40660462 ecap f050da
|
||||
[ 1.445524] DMAR: RMRR base: 0x0000007eb80000 end: 0x0000007eb9ffff
|
||||
[ 1.451936] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed90000 IOMMU 0
|
||||
[ 1.458431] DMAR-IR: HPET id 0 under DRHD base 0xfed90000
|
||||
[ 1.463974] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
|
||||
[ 1.473702] DMAR-IR: Enabled IRQ remapping in x2apic mode
|
||||
[ 1.481577] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
|
||||
[ 1.506881] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1fb633008a4, max_idle_ns: 440795292230 ns
|
||||
[ 1.517543] Calibrating delay loop (skipped), value calculated using timer frequency.. 4400.00 BogoMIPS (lpj=8800000)
|
||||
[ 1.521541] pid_max: default: 32768 minimum: 301
|
||||
[ 1.535584] LSM: Security Framework initializing
|
||||
[ 1.537566] Yama: becoming mindful.
|
||||
[ 1.541658] AppArmor: AppArmor initialized
|
||||
[ 1.545617] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
|
||||
[ 1.549565] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
|
||||
[ 1.553568] *** VALIDATE tmpfs ***
|
||||
[ 1.557765] *** VALIDATE proc ***
|
||||
[ 1.561638] *** VALIDATE cgroup1 ***
|
||||
[ 1.565541] *** VALIDATE cgroup2 ***
|
||||
[ 1.569653] mce: CPU0: Thermal monitoring enabled (TM1)
|
||||
[ 1.573627] process: using mwait in idle threads
|
||||
[ 1.577542] Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0
|
||||
[ 1.581539] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
|
||||
[ 1.585544] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
|
||||
[ 1.589541] Spectre V2 : Mitigation: Full generic retpoline
|
||||
[ 1.593539] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
|
||||
[ 1.597539] Spectre V2 : Enabling Restricted Speculation for firmware calls
|
||||
[ 1.601541] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
|
||||
[ 1.605541] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
|
||||
[ 1.609811] Freeing SMP alternatives memory: 40K
|
||||
[ 1.615880] smpboot: CPU0: Intel(R) Atom(TM) CPU C3558 @ 2.20GHz (family: 0x6, model: 0x5f, stepping: 0x1)
|
||||
[ 1.617809] Performance Events: PEBS fmt3+, Goldmont events, 32-deep LBR, full-width counters, Intel PMU driver.
|
||||
[ 1.621542] ... version: 4
|
||||
[ 1.625540] ... bit width: 48
|
||||
[ 1.629540] ... generic registers: 4
|
||||
[ 1.633540] ... value mask: 0000ffffffffffff
|
||||
[ 1.637540] ... max period: 00007fffffffffff
|
||||
[ 1.641539] ... fixed-purpose events: 3
|
||||
[ 1.645540] ... event mask: 000000070000000f
|
||||
[ 1.649614] rcu: Hierarchical SRCU implementation.
|
||||
[ 1.655485] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
|
||||
[ 1.657990] smp: Bringing up secondary CPUs ...
|
||||
[ 1.661792] x86: Booting SMP configuration:
|
||||
[ 1.665545] .... node #0, CPUs: #1 #2 #3
|
||||
[ 1.677713] smp: Brought up 1 node, 4 CPUs
|
||||
[ 1.685540] smpboot: Max logical packages: 4
|
||||
[ 1.689540] smpboot: Total of 4 processors activated (17600.00 BogoMIPS)
|
||||
[ 1.694664] devtmpfs: initialized
|
||||
[ 1.697609] x86/mm: Memory block size: 128MB
|
||||
[ 1.702854] PM: Registering ACPI NVS region [mem 0x7ebbf000-0x7efbefff] (4194304 bytes)
|
||||
[ 1.705721] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
|
||||
[ 1.709605] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
|
||||
[ 1.713652] pinctrl core: initialized pinctrl subsystem
|
||||
[ 1.717702] PM: RTC time: 16:03:07, date: 2021-11-28
|
||||
[ 1.721753] NET: Registered protocol family 16
|
||||
[ 1.725697] audit: initializing netlink subsys (disabled)
|
||||
[ 1.729585] audit: type=2000 audit(1638115385.276:1): state=initialized audit_enabled=0 res=1
|
||||
[ 1.729720] EISA bus registered
|
||||
[ 1.736826] cpuidle: using governor ladder
|
||||
[ 1.737546] cpuidle: using governor menu
|
||||
[ 1.741589] Simple Boot Flag at 0x44 set to 0x1
|
||||
[ 1.745565] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
|
||||
[ 1.749540] ACPI: bus type PCI registered
|
||||
[ 1.753540] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
|
||||
[ 1.757653] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
|
||||
[ 1.761559] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
|
||||
[ 1.765562] PCI: Using configuration type 1 for base access
|
||||
[ 1.771773] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
|
||||
[ 1.773548] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
|
||||
[ 1.777680] ACPI: Added _OSI(Module Device)
|
||||
[ 1.781546] ACPI: Added _OSI(Processor Device)
|
||||
[ 1.785543] ACPI: Added _OSI(3.0 _SCP Extensions)
|
||||
[ 1.789549] ACPI: Added _OSI(Processor Aggregator Device)
|
||||
[ 1.793565] ACPI: Added _OSI(Linux-Dell-Video)
|
||||
[ 1.797542] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
|
||||
[ 1.801541] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
|
||||
[ 1.812875] ACPI: 2 ACPI AML tables successfully acquired and loaded
|
||||
[ 1.815114] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
|
||||
[ 1.818498] ACPI: Dynamic OEM Table Load:
|
||||
[ 1.821554] ACPI: SSDT 0xFFFF914E75ECC300 0000B3 (v02 PmRef Cpu0Cst 00003001 INTL 20130117)
|
||||
[ 1.826492] ACPI: Dynamic OEM Table Load:
|
||||
[ 1.829546] ACPI: SSDT 0xFFFF914E75F13800 0004B3 (v02 PmRef Cpu0Ist 00003000 INTL 20130117)
|
||||
[ 1.835215] ACPI: Dynamic OEM Table Load:
|
||||
[ 1.837549] ACPI: SSDT 0xFFFF914E75F16000 00063B (v02 PmRef ApIst 00003000 INTL 20130117)
|
||||
[ 1.842938] ACPI: Dynamic OEM Table Load:
|
||||
[ 1.845546] ACPI: SSDT 0xFFFF914E75D23400 000231 (v02 PmRef ApCst 00003000 INTL 20130117)
|
||||
[ 1.851981] ACPI: Interpreter enabled
|
||||
[ 1.853575] ACPI: (supports S0 S4 S5)
|
||||
[ 1.857369] ACPI: Using IOAPIC for interrupt routing
|
||||
[ 1.857595] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
|
||||
[ 1.861871] ACPI: Enabled 4 GPEs in block 00 to 7F
|
||||
[ 1.876097] ACPI: Power Resource [FN00] (off)
|
||||
[ 1.879009] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
|
||||
[ 1.881551] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
|
||||
[ 1.886103] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR]
|
||||
[ 1.890176] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
|
||||
[ 1.893542] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
|
||||
[ 1.898293] PCI host bridge to bus 0000:00
|
||||
[ 1.901544] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
|
||||
[ 1.905542] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
|
||||
[ 1.909542] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
|
||||
[ 1.913541] pci_bus 0000:00: root bus resource [mem 0x80000000-0xdfffffff window]
|
||||
[ 1.917542] pci_bus 0000:00: root bus resource [mem 0x280000000-0x7fffffffff window]
|
||||
[ 1.921542] pci_bus 0000:00: root bus resource [bus 00-ff]
|
||||
[ 1.925555] pci 0000:00:00.0: [8086:1980] type 00 class 0x060000
|
||||
[ 1.929757] pci 0000:00:04.0: [8086:19a1] type 00 class 0x060000
|
||||
[ 1.933806] pci 0000:00:05.0: [8086:19a2] type 00 class 0x080700
|
||||
[ 1.937649] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
|
||||
[ 1.941739] pci 0000:00:06.0: [8086:19a3] type 01 class 0x060400
|
||||
[ 1.945607] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
|
||||
[ 1.949737] pci 0000:00:0a.0: [8086:19a5] type 01 class 0x060400
|
||||
[ 1.953561] pci 0000:00:0a.0: reg 0x10: [mem 0x81500000-0x8151ffff 64bit]
|
||||
[ 1.957600] pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
|
||||
[ 1.961736] pci 0000:00:0b.0: [8086:19a6] type 01 class 0x060400
|
||||
[ 1.965560] pci 0000:00:0b.0: reg 0x10: [mem 0x81520000-0x8153ffff 64bit]
|
||||
[ 1.969600] pci 0000:00:0b.0: PME# supported from D0 D3hot D3cold
|
||||
[ 1.973738] pci 0000:00:0c.0: [8086:19a7] type 01 class 0x060400
|
||||
[ 1.977560] pci 0000:00:0c.0: reg 0x10: [mem 0x81540000-0x8155ffff 64bit]
|
||||
[ 1.981600] pci 0000:00:0c.0: PME# supported from D0 D3hot D3cold
|
||||
[ 1.985737] pci 0000:00:0e.0: [8086:19a8] type 01 class 0x060400
|
||||
[ 1.989560] pci 0000:00:0e.0: reg 0x10: [mem 0x81560000-0x8157ffff 64bit]
|
||||
[ 1.993600] pci 0000:00:0e.0: PME# supported from D0 D3hot D3cold
|
||||
[ 1.997762] pci 0000:00:0f.0: [8086:19a9] type 01 class 0x060400
|
||||
[ 2.001560] pci 0000:00:0f.0: reg 0x10: [mem 0x81580000-0x8159ffff 64bit]
|
||||
[ 2.005600] pci 0000:00:0f.0: PME# supported from D0 D3hot D3cold
|
||||
[ 2.009736] pci 0000:00:10.0: [8086:19aa] type 01 class 0x060400
|
||||
[ 2.013561] pci 0000:00:10.0: reg 0x10: [mem 0x815a0000-0x815bffff 64bit]
|
||||
[ 2.017600] pci 0000:00:10.0: PME# supported from D0 D3hot D3cold
|
||||
[ 2.021735] pci 0000:00:11.0: [8086:19ab] type 01 class 0x060400
|
||||
[ 2.025560] pci 0000:00:11.0: reg 0x10: [mem 0x815c0000-0x815dffff 64bit]
|
||||
[ 2.029607] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold
|
||||
[ 2.033743] pci 0000:00:12.0: [8086:19ac] type 00 class 0x088000
|
||||
[ 2.037564] pci 0000:00:12.0: reg 0x10: [mem 0x815f4000-0x815f43ff 64bit]
|
||||
[ 2.041804] pci 0000:00:15.0: [8086:19d0] type 00 class 0x0c0330
|
||||
[ 2.045560] pci 0000:00:15.0: reg 0x10: [mem 0x815e0000-0x815effff 64bit]
|
||||
[ 2.049598] pci 0000:00:15.0: PME# supported from D3hot D3cold
|
||||
[ 2.053733] pci 0000:00:16.0: [8086:19d1] type 01 class 0x060400
|
||||
[ 2.057601] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
|
||||
[ 2.061728] pci 0000:00:17.0: [8086:19d2] type 01 class 0x060400
|
||||
[ 2.065601] pci 0000:00:17.0: PME# supported from D0 D3hot D3cold
|
||||
[ 2.069732] pci 0000:00:18.0: [8086:19d3] type 00 class 0x078000
|
||||
[ 2.073570] pci 0000:00:18.0: reg 0x10: [mem 0x815f5000-0x815f5fff 64bit]
|
||||
[ 2.077631] pci 0000:00:18.0: PME# supported from D3hot
|
||||
[ 2.081742] pci 0000:00:1c.0: [8086:19db] type 00 class 0x080501
|
||||
[ 2.085564] pci 0000:00:1c.0: reg 0x10: [mem 0x815f6000-0x815f6fff 64bit]
|
||||
[ 2.089552] pci 0000:00:1c.0: reg 0x18: [mem 0x815f7000-0x815f7fff 64bit]
|
||||
[ 2.093767] pci 0000:00:1f.0: [8086:19dc] type 00 class 0x060100
|
||||
[ 2.097789] pci 0000:00:1f.2: [8086:19de] type 00 class 0x058000
|
||||
[ 2.101555] pci 0000:00:1f.2: reg 0x10: [mem 0x815f0000-0x815f3fff]
|
||||
[ 2.105751] pci 0000:00:1f.4: [8086:19df] type 00 class 0x0c0500
|
||||
[ 2.109559] pci 0000:00:1f.4: reg 0x10: [mem 0x815f8000-0x815f80ff 64bit]
|
||||
[ 2.113559] pci 0000:00:1f.4: reg 0x20: [io 0x2000-0x201f]
|
||||
[ 2.117728] pci 0000:00:1f.5: [8086:19e0] type 00 class 0x0c8000
|
||||
[ 2.121556] pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
|
||||
[ 2.125756] pci 0000:00:1f.7: [8086:19e1] type 00 class 0x130000
|
||||
[ 2.129555] pci 0000:00:1f.7: reg 0x10: [mem 0x00000000-0x000fffff 64bit]
|
||||
[ 2.133547] pci 0000:00:1f.7: reg 0x18: [mem 0xfb000000-0xfb7fffff 64bit]
|
||||
[ 2.137547] pci 0000:00:1f.7: reg 0x20: [mem 0x00000000-0x000007ff 64bit]
|
||||
[ 2.141790] pci 0000:01:00.0: [8086:19e2] type 00 class 0x0b4000
|
||||
[ 2.145574] pci 0000:01:00.0: reg 0x18: [mem 0x80700000-0x8073ffff 64bit]
|
||||
[ 2.149551] pci 0000:01:00.0: reg 0x20: [mem 0x80740000-0x8077ffff 64bit]
|
||||
[ 2.153552] pci 0000:01:00.0: Max Payload Size set to 128 (was 256, max 16384)
|
||||
[ 2.157616] pci 0000:01:00.0: reg 0x164: [mem 0x00000000-0x00000fff 64bit]
|
||||
[ 2.161542] pci 0000:01:00.0: VF(n) BAR0 space: [mem 0x00000000-0x0000ffff 64bit] (contains BAR0 for 16 VFs)
|
||||
[ 2.165549] pci 0000:01:00.0: reg 0x16c: [mem 0x00000000-0x00000fff 64bit]
|
||||
[ 2.169541] pci 0000:01:00.0: VF(n) BAR2 space: [mem 0x00000000-0x0000ffff 64bit] (contains BAR2 for 16 VFs)
|
||||
[ 2.173596] pci 0000:01:00.0: 2.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s x1 link at 0000:00:06.0 (capable of 64.000 Gb/s with 5 GT/s x16 link)
|
||||
[ 2.177644] pci 0000:00:06.0: PCI bridge to [bus 01]
|
||||
[ 2.181545] pci 0000:00:06.0: bridge window [mem 0x80700000-0x807fffff]
|
||||
[ 2.185604] pci 0000:00:0a.0: PCI bridge to [bus 11]
|
||||
[ 2.189612] pci 0000:00:0b.0: PCI bridge to [bus 08]
|
||||
[ 2.193623] pci 0000:04:00.0: [8086:15f3] type 00 class 0x020000
|
||||
[ 2.197570] pci 0000:04:00.0: reg 0x10: [mem 0x81300000-0x813fffff]
|
||||
[ 2.201568] pci 0000:04:00.0: reg 0x1c: [mem 0x81400000-0x81403fff]
|
||||
[ 2.205569] pci 0000:04:00.0: reg 0x30: [mem 0xfff00000-0xffffffff pref]
|
||||
[ 2.209622] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
|
||||
[ 2.213703] pci 0000:00:0c.0: PCI bridge to [bus 04]
|
||||
[ 2.217545] pci 0000:00:0c.0: bridge window [mem 0x81300000-0x814fffff]
|
||||
[ 2.221621] pci 0000:05:00.0: [8086:15f3] type 00 class 0x020000
|
||||
[ 2.225570] pci 0000:05:00.0: reg 0x10: [mem 0x81100000-0x811fffff]
|
||||
[ 2.229568] pci 0000:05:00.0: reg 0x1c: [mem 0x81200000-0x81203fff]
|
||||
[ 2.233568] pci 0000:05:00.0: reg 0x30: [mem 0xfff00000-0xffffffff pref]
|
||||
[ 2.237622] pci 0000:05:00.0: PME# supported from D0 D3hot D3cold
|
||||
[ 2.241693] pci 0000:00:0e.0: PCI bridge to [bus 05]
|
||||
[ 2.245545] pci 0000:00:0e.0: bridge window [mem 0x81100000-0x812fffff]
|
||||
[ 2.249623] pci 0000:06:00.0: [8086:15f3] type 00 class 0x020000
|
||||
[ 2.253570] pci 0000:06:00.0: reg 0x10: [mem 0x80f00000-0x80ffffff]
|
||||
[ 2.257568] pci 0000:06:00.0: reg 0x1c: [mem 0x81000000-0x81003fff]
|
||||
[ 2.261569] pci 0000:06:00.0: reg 0x30: [mem 0xfff00000-0xffffffff pref]
|
||||
[ 2.265622] pci 0000:06:00.0: PME# supported from D0 D3hot D3cold
|
||||
[ 2.269698] pci 0000:00:0f.0: PCI bridge to [bus 06]
|
||||
[ 2.273545] pci 0000:00:0f.0: bridge window [mem 0x80f00000-0x810fffff]
|
||||
[ 2.277621] pci 0000:07:00.0: [8086:15f3] type 00 class 0x020000
|
||||
[ 2.281570] pci 0000:07:00.0: reg 0x10: [mem 0x80d00000-0x80dfffff]
|
||||
[ 2.285569] pci 0000:07:00.0: reg 0x1c: [mem 0x80e00000-0x80e03fff]
|
||||
[ 2.289569] pci 0000:07:00.0: reg 0x30: [mem 0xfff00000-0xffffffff pref]
|
||||
[ 2.293622] pci 0000:07:00.0: PME# supported from D0 D3hot D3cold
|
||||
[ 2.297693] pci 0000:00:10.0: PCI bridge to [bus 07]
|
||||
[ 2.301545] pci 0000:00:10.0: bridge window [mem 0x80d00000-0x80efffff]
|
||||
[ 2.305607] pci 0000:00:11.0: PCI bridge to [bus 09]
|
||||
[ 2.309626] pci 0000:03:00.0: [8086:15c4] type 00 class 0x020000
|
||||
[ 2.313565] pci 0000:03:00.0: reg 0x10: [mem 0x80400000-0x805fffff 64bit pref]
|
||||
[ 2.317563] pci 0000:03:00.0: reg 0x20: [mem 0x80604000-0x80607fff 64bit pref]
|
||||
[ 2.321548] pci 0000:03:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
|
||||
[ 2.325602] pci 0000:03:00.0: PME# supported from D0 D3hot
|
||||
[ 2.329569] pci 0000:03:00.0: reg 0x184: [mem 0x00000000-0x00003fff 64bit]
|
||||
[ 2.333546] pci 0000:03:00.0: VF(n) BAR0 space: [mem 0x00000000-0x000fffff 64bit] (contains BAR0 for 64 VFs)
|
||||
[ 2.337555] pci 0000:03:00.0: reg 0x190: [mem 0x00000000-0x00003fff 64bit]
|
||||
[ 2.341542] pci 0000:03:00.0: VF(n) BAR3 space: [mem 0x00000000-0x000fffff 64bit] (contains BAR3 for 64 VFs)
|
||||
[ 2.345791] pci 0000:03:00.1: [8086:15c4] type 00 class 0x020000
|
||||
[ 2.349565] pci 0000:03:00.1: reg 0x10: [mem 0x80200000-0x803fffff 64bit pref]
|
||||
[ 2.353563] pci 0000:03:00.1: reg 0x20: [mem 0x80600000-0x80603fff 64bit pref]
|
||||
[ 2.357548] pci 0000:03:00.1: reg 0x30: [mem 0xfff80000-0xffffffff pref]
|
||||
[ 2.361602] pci 0000:03:00.1: PME# supported from D0 D3hot
|
||||
[ 2.365565] pci 0000:03:00.1: reg 0x184: [mem 0x00000000-0x00003fff 64bit]
|
||||
[ 2.369542] pci 0000:03:00.1: VF(n) BAR0 space: [mem 0x00000000-0x000fffff 64bit] (contains BAR0 for 64 VFs)
|
||||
[ 2.373555] pci 0000:03:00.1: reg 0x190: [mem 0x00000000-0x00003fff 64bit]
|
||||
[ 2.377542] pci 0000:03:00.1: VF(n) BAR3 space: [mem 0x00000000-0x000fffff 64bit] (contains BAR3 for 64 VFs)
|
||||
[ 2.381799] pci 0000:00:16.0: PCI bridge to [bus 03]
|
||||
[ 2.385547] pci 0000:00:16.0: bridge window [mem 0x80200000-0x806fffff 64bit pref]
|
||||
[ 2.389619] pci 0000:02:00.0: [8086:15e5] type 00 class 0x020000
|
||||
[ 2.393564] pci 0000:02:00.0: reg 0x10: [mem 0x80a00000-0x80bfffff 64bit pref]
|
||||
[ 2.397563] pci 0000:02:00.0: reg 0x20: [mem 0x80c04000-0x80c07fff 64bit pref]
|
||||
[ 2.401548] pci 0000:02:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
|
||||
[ 2.405602] pci 0000:02:00.0: PME# supported from D0 D3hot
|
||||
[ 2.409569] pci 0000:02:00.0: reg 0x184: [mem 0x00000000-0x00003fff 64bit]
|
||||
[ 2.413542] pci 0000:02:00.0: VF(n) BAR0 space: [mem 0x00000000-0x000fffff 64bit] (contains BAR0 for 64 VFs)
|
||||
[ 2.417555] pci 0000:02:00.0: reg 0x190: [mem 0x00000000-0x00003fff 64bit]
|
||||
[ 2.421542] pci 0000:02:00.0: VF(n) BAR3 space: [mem 0x00000000-0x000fffff 64bit] (contains BAR3 for 64 VFs)
|
||||
[ 2.425781] pci 0000:02:00.1: [8086:15e5] type 00 class 0x020000
|
||||
[ 2.429565] pci 0000:02:00.1: reg 0x10: [mem 0x80800000-0x809fffff 64bit pref]
|
||||
[ 2.433563] pci 0000:02:00.1: reg 0x20: [mem 0x80c00000-0x80c03fff 64bit pref]
|
||||
[ 2.437548] pci 0000:02:00.1: reg 0x30: [mem 0xfff80000-0xffffffff pref]
|
||||
[ 2.441602] pci 0000:02:00.1: PME# supported from D0 D3hot
|
||||
[ 2.445565] pci 0000:02:00.1: reg 0x184: [mem 0x00000000-0x00003fff 64bit]
|
||||
[ 2.449542] pci 0000:02:00.1: VF(n) BAR0 space: [mem 0x00000000-0x000fffff 64bit] (contains BAR0 for 64 VFs)
|
||||
[ 2.453555] pci 0000:02:00.1: reg 0x190: [mem 0x00000000-0x00003fff 64bit]
|
||||
[ 2.457542] pci 0000:02:00.1: VF(n) BAR3 space: [mem 0x00000000-0x000fffff 64bit] (contains BAR3 for 64 VFs)
|
||||
[ 2.461793] pci 0000:00:17.0: PCI bridge to [bus 02]
|
||||
[ 2.465547] pci 0000:00:17.0: bridge window [mem 0x80800000-0x80cfffff 64bit pref]
|
||||
[ 2.470292] ACPI: PCI Interrupt Link [LNKA] (IRQs 6 7 10 11 12 14 15) *0, disabled.
|
||||
[ 2.473683] ACPI: PCI Interrupt Link [LNKB] (IRQs 6 7 10 11 12 14 15) *0, disabled.
|
||||
[ 2.477682] ACPI: PCI Interrupt Link [LNKC] (IRQs 6 7 10 11 12 14 15) *0, disabled.
|
||||
[ 2.481681] ACPI: PCI Interrupt Link [LNKD] (IRQs 6 7 10 11 12 14 15) *0, disabled.
|
||||
[ 2.485682] ACPI: PCI Interrupt Link [LNKE] (IRQs 6 7 10 11 12 14 15) *0, disabled.
|
||||
[ 2.489682] ACPI: PCI Interrupt Link [LNKF] (IRQs 6 7 10 11 12 14 15) *0, disabled.
|
||||
[ 2.493682] ACPI: PCI Interrupt Link [LNKG] (IRQs 6 7 10 11 12 14 15) *0, disabled.
|
||||
[ 2.497682] ACPI: PCI Interrupt Link [LNKH] (IRQs 6 7 10 11 12 14 15) *0, disabled.
|
||||
[ 2.502102] iommu: Default domain type: Translated
|
||||
[ 2.505840] SCSI subsystem initialized
|
||||
[ 2.509579] libata version 3.00 loaded.
|
||||
[ 2.509579] vgaarb: loaded
|
||||
[ 2.512414] ACPI: bus type USB registered
|
||||
[ 2.513567] usbcore: registered new interface driver usbfs
|
||||
[ 2.517551] usbcore: registered new interface driver hub
|
||||
[ 2.521556] usbcore: registered new device driver usb
|
||||
[ 2.525584] pps_core: LinuxPPS API ver. 1 registered
|
||||
[ 2.529541] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
|
||||
[ 2.533544] PTP clock support registered
|
||||
[ 2.537585] EDAC MC: Ver: 3.0.0
|
||||
[ 2.540971] Registered efivars operations
|
||||
[ 2.541621] PCI: Using ACPI for IRQ routing
|
||||
[ 2.553431] PCI: pci_cache_line_size set to 64 bytes
|
||||
[ 2.553488] pci 0000:00:1f.5: can't claim BAR 0 [mem 0xfe010000-0xfe010fff]: no compatible bridge window
|
||||
[ 2.553585] pci 0000:00:1f.7: can't claim BAR 2 [mem 0xfb000000-0xfb7fffff 64bit]: no compatible bridge window
|
||||
[ 2.557543] e820: reserve RAM buffer [mem 0x0005f000-0x0005ffff]
|
||||
[ 2.557546] e820: reserve RAM buffer [mem 0x71f72018-0x73ffffff]
|
||||
[ 2.557547] e820: reserve RAM buffer [mem 0x71fa4018-0x73ffffff]
|
||||
[ 2.557548] e820: reserve RAM buffer [mem 0x71fd6018-0x73ffffff]
|
||||
[ 2.557549] e820: reserve RAM buffer [mem 0x72008018-0x73ffffff]
|
||||
[ 2.557550] e820: reserve RAM buffer [mem 0x7c2bf000-0x7fffffff]
|
||||
[ 2.557552] e820: reserve RAM buffer [mem 0x7f000000-0x7fffffff]
|
||||
[ 2.557717] NetLabel: Initializing
|
||||
[ 2.561252] NetLabel: domain hash size = 128
|
||||
[ 2.561541] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
|
||||
[ 2.565559] NetLabel: unlabeled traffic allowed by default
|
||||
[ 2.571276] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
|
||||
[ 2.573552] hpet0: 8 comparators, 64-bit 24.000000 MHz counter
|
||||
[ 2.579608] clocksource: Switched to clocksource tsc-early
|
||||
[ 2.603418] *** VALIDATE bpf ***
|
||||
[ 2.606892] VFS: Disk quotas dquot_6.6.0
|
||||
[ 2.610981] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
|
||||
[ 2.618035] *** VALIDATE ramfs ***
|
||||
[ 2.621578] *** VALIDATE hugetlbfs ***
|
||||
[ 2.625610] AppArmor: AppArmor Filesystem Enabled
|
||||
[ 2.630494] pnp: PnP ACPI init
|
||||
[ 2.634084] system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
|
||||
[ 2.640838] system 00:00: [mem 0x7f800000-0x7fffffff] has been reserved
|
||||
[ 2.647589] system 00:00: [mem 0xfed60000-0xfed60fff] has been reserved
|
||||
[ 2.654345] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
|
||||
[ 2.654385] pnp 00:01: disabling [mem 0x000c0000-0x000dffff] because it overlaps 0000:00:1f.7 BAR 0 [mem 0x00000000-0x000fffff 64bit]
|
||||
[ 2.666520] pnp 00:01: disabling [mem 0x000e0000-0x000fffff] because it overlaps 0000:00:1f.7 BAR 0 [mem 0x00000000-0x000fffff 64bit]
|
||||
[ 2.678660] pnp 00:01: disabling [mem 0x000c0000-0x000dffff disabled] because it overlaps 0000:03:00.0 BAR 7 [mem 0x00000000-0x000fffff 64bit]
|
||||
[ 2.691575] pnp 00:01: disabling [mem 0x000e0000-0x000fffff disabled] because it overlaps 0000:03:00.0 BAR 7 [mem 0x00000000-0x000fffff 64bit]
|
||||
[ 2.704487] pnp 00:01: disabling [mem 0x000c0000-0x000dffff disabled] because it overlaps 0000:03:00.0 BAR 10 [mem 0x00000000-0x000fffff 64bit]
|
||||
[ 2.717484] pnp 00:01: disabling [mem 0x000e0000-0x000fffff disabled] because it overlaps 0000:03:00.0 BAR 10 [mem 0x00000000-0x000fffff 64bit]
|
||||
[ 2.730486] pnp 00:01: disabling [mem 0x000c0000-0x000dffff disabled] because it overlaps 0000:03:00.1 BAR 7 [mem 0x00000000-0x000fffff 64bit]
|
||||
[ 2.743401] pnp 00:01: disabling [mem 0x000e0000-0x000fffff disabled] because it overlaps 0000:03:00.1 BAR 7 [mem 0x00000000-0x000fffff 64bit]
|
||||
[ 2.756314] pnp 00:01: disabling [mem 0x000c0000-0x000dffff disabled] because it overlaps 0000:03:00.1 BAR 10 [mem 0x00000000-0x000fffff 64bit]
|
||||
[ 2.769312] pnp 00:01: disabling [mem 0x000e0000-0x000fffff disabled] because it overlaps 0000:03:00.1 BAR 10 [mem 0x00000000-0x000fffff 64bit]
|
||||
[ 2.782314] pnp 00:01: disabling [mem 0x000c0000-0x000dffff disabled] because it overlaps 0000:02:00.0 BAR 7 [mem 0x00000000-0x000fffff 64bit]
|
||||
[ 2.795229] pnp 00:01: disabling [mem 0x000e0000-0x000fffff disabled] because it overlaps 0000:02:00.0 BAR 7 [mem 0x00000000-0x000fffff 64bit]
|
||||
[ 2.808140] pnp 00:01: disabling [mem 0x000c0000-0x000dffff disabled] because it overlaps 0000:02:00.0 BAR 10 [mem 0x00000000-0x000fffff 64bit]
|
||||
[ 2.821140] pnp 00:01: disabling [mem 0x000e0000-0x000fffff disabled] because it overlaps 0000:02:00.0 BAR 10 [mem 0x00000000-0x000fffff 64bit]
|
||||
[ 2.834141] pnp 00:01: disabling [mem 0x000c0000-0x000dffff disabled] because it overlaps 0000:02:00.1 BAR 7 [mem 0x00000000-0x000fffff 64bit]
|
||||
[ 2.847063] pnp 00:01: disabling [mem 0x000e0000-0x000fffff disabled] because it overlaps 0000:02:00.1 BAR 7 [mem 0x00000000-0x000fffff 64bit]
|
||||
[ 2.859977] pnp 00:01: disabling [mem 0x000c0000-0x000dffff disabled] because it overlaps 0000:02:00.1 BAR 10 [mem 0x00000000-0x000fffff 64bit]
|
||||
[ 2.872975] pnp 00:01: disabling [mem 0x000e0000-0x000fffff disabled] because it overlaps 0000:02:00.1 BAR 10 [mem 0x00000000-0x000fffff 64bit]
|
||||
[ 2.886014] system 00:01: [io 0x1800-0x187f] has been reserved
|
||||
[ 2.892071] system 00:01: [io 0x0500-0x05fe] has been reserved
|
||||
[ 2.898127] system 00:01: [io 0x0680-0x069f] has been reserved
|
||||
[ 2.904183] system 00:01: [mem 0xfed00000-0xfed003ff] has been reserved
|
||||
[ 2.910931] system 00:01: [mem 0xff800000-0xffffffff] has been reserved
|
||||
[ 2.917685] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
|
||||
[ 2.917726] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
|
||||
[ 2.917898] pnp 00:03: Plug and Play ACPI device, IDs PNP0501 (active)
|
||||
[ 2.918071] system 00:04: [io 0x1800-0x18fe] could not be reserved
|
||||
[ 2.924476] system 00:04: [mem 0xfed03000-0xfed03fff] has been reserved
|
||||
[ 2.931232] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
|
||||
[ 2.931577] pnp 00:05: Plug and Play ACPI device, IDs IFX0102 (active)
|
||||
[ 2.931583] pnp: PnP ACPI: found 6 devices
|
||||
[ 2.938601] thermal_sys: Registered thermal governor 'fair_share'
|
||||
[ 2.938602] thermal_sys: Registered thermal governor 'bang_bang'
|
||||
[ 2.944834] thermal_sys: Registered thermal governor 'step_wise'
|
||||
[ 2.950972] thermal_sys: Registered thermal governor 'user_space'
|
||||
[ 2.957115] thermal_sys: Registered thermal governor 'power_allocator'
|
||||
[ 2.967839] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
|
||||
[ 2.983552] pci 0000:04:00.0: can't claim BAR 6 [mem 0xfff00000-0xffffffff pref]: no compatible bridge window
|
||||
[ 2.993601] pci 0000:05:00.0: can't claim BAR 6 [mem 0xfff00000-0xffffffff pref]: no compatible bridge window
|
||||
[ 3.003649] pci 0000:06:00.0: can't claim BAR 6 [mem 0xfff00000-0xffffffff pref]: no compatible bridge window
|
||||
[ 3.013695] pci 0000:07:00.0: can't claim BAR 6 [mem 0xfff00000-0xffffffff pref]: no compatible bridge window
|
||||
[ 3.023745] pci 0000:03:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
|
||||
[ 3.033790] pci 0000:03:00.1: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
|
||||
[ 3.043839] pci 0000:02:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
|
||||
[ 3.053887] pci 0000:02:00.1: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
|
||||
[ 3.063938] pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
|
||||
[ 3.069752] pci 0000:00:1f.7: BAR 2: assigned [mem 0x280000000-0x2807fffff 64bit]
|
||||
[ 3.077377] pci 0000:00:16.0: BAR 14: assigned [mem 0x81600000-0x81afffff]
|
||||
[ 3.084388] pci 0000:00:17.0: BAR 14: assigned [mem 0x81b00000-0x81ffffff]
|
||||
[ 3.091402] pci 0000:00:1f.7: BAR 0: assigned [mem 0x280800000-0x2808fffff 64bit]
|
||||
[ 3.099026] pci 0000:00:1f.5: BAR 0: assigned [mem 0x80000000-0x80000fff]
|
||||
[ 3.105958] pci 0000:01:00.0: BAR 7: assigned [mem 0x80780000-0x8078ffff 64bit]
|
||||
[ 3.113405] pci 0000:01:00.0: BAR 9: assigned [mem 0x80790000-0x8079ffff 64bit]
|
||||
[ 3.120852] pci 0000:00:06.0: PCI bridge to [bus 01]
|
||||
[ 3.125956] pci 0000:00:06.0: bridge window [mem 0x80700000-0x807fffff]
|
||||
[ 3.132884] pci 0000:00:0a.0: PCI bridge to [bus 11]
|
||||
[ 3.137988] pci 0000:00:0b.0: PCI bridge to [bus 08]
|
||||
[ 3.143095] pci 0000:04:00.0: BAR 6: no space for [mem size 0x00100000 pref]
|
||||
[ 3.150281] pci 0000:04:00.0: BAR 6: failed to assign [mem size 0x00100000 pref]
|
||||
[ 3.157810] pci 0000:00:0c.0: PCI bridge to [bus 04]
|
||||
[ 3.162911] pci 0000:00:0c.0: bridge window [mem 0x81300000-0x814fffff]
|
||||
[ 3.169837] pci 0000:05:00.0: BAR 6: no space for [mem size 0x00100000 pref]
|
||||
[ 3.177020] pci 0000:05:00.0: BAR 6: failed to assign [mem size 0x00100000 pref]
|
||||
[ 3.184550] pci 0000:00:0e.0: PCI bridge to [bus 05]
|
||||
[ 3.189651] pci 0000:00:0e.0: bridge window [mem 0x81100000-0x812fffff]
|
||||
[ 3.196578] pci 0000:06:00.0: BAR 6: no space for [mem size 0x00100000 pref]
|
||||
[ 3.203760] pci 0000:06:00.0: BAR 6: failed to assign [mem size 0x00100000 pref]
|
||||
[ 3.211290] pci 0000:00:0f.0: PCI bridge to [bus 06]
|
||||
[ 3.216392] pci 0000:00:0f.0: bridge window [mem 0x80f00000-0x810fffff]
|
||||
[ 3.223318] pci 0000:07:00.0: BAR 6: no space for [mem size 0x00100000 pref]
|
||||
[ 3.230501] pci 0000:07:00.0: BAR 6: failed to assign [mem size 0x00100000 pref]
|
||||
[ 3.238031] pci 0000:00:10.0: PCI bridge to [bus 07]
|
||||
[ 3.243132] pci 0000:00:10.0: bridge window [mem 0x80d00000-0x80efffff]
|
||||
[ 3.250058] pci 0000:00:11.0: PCI bridge to [bus 09]
|
||||
[ 3.255165] pci 0000:03:00.0: BAR 6: assigned [mem 0x81600000-0x8167ffff pref]
|
||||
[ 3.262524] pci 0000:03:00.1: BAR 6: assigned [mem 0x81680000-0x816fffff pref]
|
||||
[ 3.269881] pci 0000:03:00.0: BAR 7: assigned [mem 0x81700000-0x817fffff 64bit]
|
||||
[ 3.277332] pci 0000:03:00.0: BAR 10: assigned [mem 0x81800000-0x818fffff 64bit]
|
||||
[ 3.284867] pci 0000:03:00.1: BAR 7: assigned [mem 0x81900000-0x819fffff 64bit]
|
||||
[ 3.292317] pci 0000:03:00.1: BAR 10: assigned [mem 0x81a00000-0x81afffff 64bit]
|
||||
[ 3.299849] pci 0000:00:16.0: PCI bridge to [bus 03]
|
||||
[ 3.304954] pci 0000:00:16.0: bridge window [mem 0x81600000-0x81afffff]
|
||||
[ 3.311884] pci 0000:00:16.0: bridge window [mem 0x80200000-0x806fffff 64bit pref]
|
||||
[ 3.319793] pci 0000:02:00.0: BAR 6: assigned [mem 0x81b00000-0x81b7ffff pref]
|
||||
[ 3.327161] pci 0000:02:00.1: BAR 6: assigned [mem 0x81b80000-0x81bfffff pref]
|
||||
[ 3.334519] pci 0000:02:00.0: BAR 7: assigned [mem 0x81c00000-0x81cfffff 64bit]
|
||||
[ 3.341971] pci 0000:02:00.0: BAR 10: assigned [mem 0x81d00000-0x81dfffff 64bit]
|
||||
[ 3.349507] pci 0000:02:00.1: BAR 7: assigned [mem 0x81e00000-0x81efffff 64bit]
|
||||
[ 3.356955] pci 0000:02:00.1: BAR 10: assigned [mem 0x81f00000-0x81ffffff 64bit]
|
||||
[ 3.364489] pci 0000:00:17.0: PCI bridge to [bus 02]
|
||||
[ 3.369594] pci 0000:00:17.0: bridge window [mem 0x81b00000-0x81ffffff]
|
||||
[ 3.376518] pci 0000:00:17.0: bridge window [mem 0x80800000-0x80cfffff 64bit pref]
|
||||
[ 3.384402] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
|
||||
[ 3.390719] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
|
||||
[ 3.397033] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
|
||||
[ 3.404043] pci_bus 0000:00: resource 7 [mem 0x80000000-0xdfffffff window]
|
||||
[ 3.411053] pci_bus 0000:00: resource 8 [mem 0x280000000-0x7fffffffff window]
|
||||
[ 3.418324] pci_bus 0000:01: resource 1 [mem 0x80700000-0x807fffff]
|
||||
[ 3.424726] pci_bus 0000:04: resource 1 [mem 0x81300000-0x814fffff]
|
||||
[ 3.431127] pci_bus 0000:05: resource 1 [mem 0x81100000-0x812fffff]
|
||||
[ 3.437530] pci_bus 0000:06: resource 1 [mem 0x80f00000-0x810fffff]
|
||||
[ 3.443931] pci_bus 0000:07: resource 1 [mem 0x80d00000-0x80efffff]
|
||||
[ 3.450336] pci_bus 0000:03: resource 1 [mem 0x81600000-0x81afffff]
|
||||
[ 3.456738] pci_bus 0000:03: resource 2 [mem 0x80200000-0x806fffff 64bit pref]
|
||||
[ 3.464097] pci_bus 0000:02: resource 1 [mem 0x81b00000-0x81ffffff]
|
||||
[ 3.470497] pci_bus 0000:02: resource 2 [mem 0x80800000-0x80cfffff 64bit pref]
|
||||
[ 3.478055] NET: Registered protocol family 2
|
||||
[ 3.482780] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
|
||||
[ 3.492200] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
|
||||
[ 3.500998] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
|
||||
[ 3.509404] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
|
||||
[ 3.517081] TCP: Hash tables configured (established 65536 bind 65536)
|
||||
[ 3.523867] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
|
||||
[ 3.530850] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
|
||||
[ 3.538322] NET: Registered protocol family 1
|
||||
[ 3.542824] NET: Registered protocol family 44
|
||||
[ 3.547888] PCI: CLS 64 bytes, default 64
|
||||
[ 3.552131] Trying to unpack rootfs image as initramfs...
|
||||
[ 3.796807] Freeing initrd memory: 50960K
|
||||
[ 3.817567] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
|
||||
[ 3.824145] software IO TLB: mapped [mem 0x6c7e5000-0x707e5000] (64MB)
|
||||
[ 3.830871] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1fb633008a4, max_idle_ns: 440795292230 ns
|
||||
[ 3.841026] clocksource: Switched to clocksource tsc
|
||||
[ 3.846252] check: Scanning for low memory corruption every 60 seconds
|
||||
[ 3.853619] Initialise system trusted keyrings
|
||||
[ 3.858219] Key type blacklist registered
|
||||
[ 3.862403] workingset: timestamp_bits=36 max_order=21 bucket_order=0
|
||||
[ 3.870943] zbud: loaded
|
||||
[ 3.874139] squashfs: version 4.0 (2009/01/31) Phillip Lougher
|
||||
[ 3.880361] fuse: init (API version 7.31)
|
||||
[ 3.884535] *** VALIDATE fuse ***
|
||||
[ 3.887990] *** VALIDATE fuse ***
|
||||
[ 3.891600] Platform Keyring initialized
|
||||
[ 3.899471] Key type asymmetric registered
|
||||
[ 3.903706] Asymmetric key parser 'x509' registered
|
||||
[ 3.908731] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
|
||||
[ 3.916319] io scheduler mq-deadline registered
|
||||
[ 3.921520] pcieport 0000:00:06.0: PME: Signaling with IRQ 121
|
||||
[ 3.927577] pcieport 0000:00:06.0: AER: enabled with IRQ 121
|
||||
[ 3.933620] pcieport 0000:00:0a.0: PME: Signaling with IRQ 122
|
||||
[ 3.939662] pcieport 0000:00:0a.0: AER: enabled with IRQ 122
|
||||
[ 3.945528] pcieport 0000:00:0a.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
|
||||
[ 3.958695] pcieport 0000:00:0b.0: PME: Signaling with IRQ 123
|
||||
[ 3.964736] pcieport 0000:00:0b.0: AER: enabled with IRQ 123
|
||||
[ 3.970600] pcieport 0000:00:0b.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
|
||||
[ 3.983773] pcieport 0000:00:0c.0: PME: Signaling with IRQ 124
|
||||
[ 3.989814] pcieport 0000:00:0c.0: AER: enabled with IRQ 124
|
||||
[ 3.995677] pcieport 0000:00:0c.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
|
||||
[ 4.008852] pcieport 0000:00:0e.0: PME: Signaling with IRQ 125
|
||||
[ 4.014894] pcieport 0000:00:0e.0: AER: enabled with IRQ 125
|
||||
[ 4.020754] pcieport 0000:00:0e.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
|
||||
[ 4.033938] pcieport 0000:00:0f.0: PME: Signaling with IRQ 126
|
||||
[ 4.039985] pcieport 0000:00:0f.0: AER: enabled with IRQ 126
|
||||
[ 4.045867] pcieport 0000:00:0f.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
|
||||
[ 4.059057] pcieport 0000:00:10.0: PME: Signaling with IRQ 127
|
||||
[ 4.065100] pcieport 0000:00:10.0: AER: enabled with IRQ 127
|
||||
[ 4.070963] pcieport 0000:00:10.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
|
||||
[ 4.084136] pcieport 0000:00:11.0: PME: Signaling with IRQ 128
|
||||
[ 4.090177] pcieport 0000:00:11.0: AER: enabled with IRQ 128
|
||||
[ 4.096038] pcieport 0000:00:11.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
|
||||
[ 4.109203] pcieport 0000:00:16.0: PME: Signaling with IRQ 129
|
||||
[ 4.115251] pcieport 0000:00:16.0: AER: enabled with IRQ 129
|
||||
[ 4.121269] pcieport 0000:00:17.0: PME: Signaling with IRQ 130
|
||||
[ 4.127311] pcieport 0000:00:17.0: AER: enabled with IRQ 130
|
||||
[ 4.133169] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
|
||||
[ 4.140096] intel_idle: MWAIT substates: 0x2020
|
||||
[ 4.140098] intel_idle: v0.4.1 model 0x5F
|
||||
[ 4.140367] intel_idle: lapic_timer_reliable_states 0xffffffff
|
||||
[ 4.140517] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
|
||||
[ 4.149039] ACPI: Power Button [PWRB]
|
||||
[ 4.152884] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
|
||||
[ 4.160468] ACPI: Power Button [PWRF]
|
||||
[ 4.165649] thermal LNXTHERM:00: registered as thermal_zone0
|
||||
[ 4.171448] ACPI: Thermal Zone [TZ01] (27 C)
|
||||
[ 4.176059] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
|
||||
[ 4.202810] 00:03: ttyS0 at I/O 0x3f8 (irq = 16, base_baud = 115200) is a 16550A
|
||||
[ 4.212928] Linux agpgart interface v0.103
|
||||
[ 4.219699] tpm_tis 00:05: 2.0 TPM (device-id 0x1B, rev-id 22)
|
||||
[ 4.227867] tpm tpm0: A TPM error (256) occurred attempting the self test
|
||||
[ 4.234798] tpm tpm0: starting up the TPM manually
|
||||
[ 4.953613] loop: module loaded
|
||||
[ 4.957296] libphy: Fixed MDIO Bus: probed
|
||||
[ 4.961534] tun: Universal TUN/TAP device driver, 1.6
|
||||
[ 4.966837] PPP generic driver version 2.4.2
|
||||
[ 4.971460] VFIO - User Level meta-driver version: 0.3
|
||||
[ 4.976918] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
|
||||
[ 4.983588] ehci-pci: EHCI PCI platform driver
|
||||
[ 4.988187] ehci-platform: EHCI generic platform driver
|
||||
[ 4.993556] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
|
||||
[ 4.999872] ohci-pci: OHCI PCI platform driver
|
||||
[ 5.004462] ohci-platform: OHCI generic platform driver
|
||||
[ 5.009829] uhci_hcd: USB Universal Host Controller Interface driver
|
||||
[ 5.016599] xhci_hcd 0000:00:15.0: xHCI Host Controller
|
||||
[ 5.021967] xhci_hcd 0000:00:15.0: new USB bus registered, assigned bus number 1
|
||||
[ 5.030571] xhci_hcd 0000:00:15.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000001109810
|
||||
[ 5.039871] xhci_hcd 0000:00:15.0: cache line size of 64 is not supported
|
||||
[ 5.047041] xhci_hcd 0000:00:15.0: xHCI Host Controller
|
||||
[ 5.052404] xhci_hcd 0000:00:15.0: new USB bus registered, assigned bus number 2
|
||||
[ 5.059938] xhci_hcd 0000:00:15.0: Host supports USB 3.0 SuperSpeed
|
||||
[ 5.066392] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04
|
||||
[ 5.074796] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
|
||||
[ 5.082153] usb usb1: Product: xHCI Host Controller
|
||||
[ 5.087166] usb usb1: Manufacturer: Linux 5.4.0-90-generic xhci-hcd
|
||||
[ 5.093567] usb usb1: SerialNumber: 0000:00:15.0
|
||||
[ 5.098540] hub 1-0:1.0: USB hub found
|
||||
[ 5.102445] hub 1-0:1.0: 4 ports detected
|
||||
[ 5.107569] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.04
|
||||
[ 5.115973] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
|
||||
[ 5.123329] usb usb2: Product: xHCI Host Controller
|
||||
[ 5.128343] usb usb2: Manufacturer: Linux 5.4.0-90-generic xhci-hcd
|
||||
[ 5.134746] usb usb2: SerialNumber: 0000:00:15.0
|
||||
[ 5.139650] hub 2-0:1.0: USB hub found
|
||||
[ 5.143547] hub 2-0:1.0: 4 ports detected
|
||||
[ 5.148689] i8042: PNP: No PS/2 controller found.
|
||||
[ 5.153670] mousedev: PS/2 mouse device common for all mice
|
||||
[ 5.159618] rtc_cmos 00:02: RTC can wake from S4
|
||||
[ 5.164710] rtc_cmos 00:02: registered as rtc0
|
||||
[ 5.169313] rtc_cmos 00:02: alarms up to one month, 242 bytes nvram, hpet irqs
|
||||
[ 5.176684] i2c /dev entries driver
|
||||
[ 5.180372] device-mapper: uevent: version 1.0.3
|
||||
[ 5.185239] device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com
|
||||
[ 5.193839] platform eisa.0: Probing EISA bus 0
|
||||
[ 5.198504] platform eisa.0: EISA: Cannot allocate resource for mainboard
|
||||
[ 5.205425] platform eisa.0: Cannot allocate resource for EISA slot 1
|
||||
[ 5.212007] platform eisa.0: Cannot allocate resource for EISA slot 2
|
||||
[ 5.218581] platform eisa.0: Cannot allocate resource for EISA slot 3
|
||||
[ 5.225157] platform eisa.0: Cannot allocate resource for EISA slot 4
|
||||
[ 5.231732] platform eisa.0: Cannot allocate resource for EISA slot 5
|
||||
[ 5.238308] platform eisa.0: Cannot allocate resource for EISA slot 6
|
||||
[ 5.244884] platform eisa.0: Cannot allocate resource for EISA slot 7
|
||||
[ 5.251459] platform eisa.0: Cannot allocate resource for EISA slot 8
|
||||
[ 5.258035] platform eisa.0: EISA: Detected 0 cards
|
||||
[ 5.263048] intel_pstate: CPU model not supported
|
||||
[ 5.268028] ledtrig-cpu: registered to indicate activity on CPUs
|
||||
[ 5.274175] EFI Variables Facility v0.08 2004-May-17
|
||||
[ 5.372046] drop_monitor: Initializing network drop monitor service
|
||||
[ 5.378704] NET: Registered protocol family 10
|
||||
[ 5.391874] Segment Routing with IPv6
|
||||
[ 5.395701] NET: Registered protocol family 17
|
||||
[ 5.400356] Key type dns_resolver registered
|
||||
[ 5.405418] RAS: Correctable Errors collector initialized.
|
||||
[ 5.411112] microcode: sig=0x506f1, pf=0x1, revision=0x34
|
||||
[ 5.416663] usb 2-2: new SuperSpeed Gen 1 USB device number 2 using xhci_hcd
|
||||
[ 5.421783] microcode: Microcode Update Driver: v2.2.
|
||||
[ 5.424054] *** VALIDATE rdt ***
|
||||
[ 5.432624] resctrl: L2 allocation detected
|
||||
[ 5.436944] IPI shorthand broadcast: enabled
|
||||
[ 5.441360] sched_clock: Marking stable (4135131832, 1306215697)->(6150381162, -709033633)
|
||||
[ 5.449967] registered taskstats version 1
|
||||
[ 5.454220] Loading compiled-in X.509 certificates
|
||||
[ 5.454575] usb 2-2: New USB device found, idVendor=0781, idProduct=5583, bcdDevice= 1.00
|
||||
[ 5.467468] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
|
||||
[ 5.474741] usb 2-2: Product: Ultra Fit
|
||||
[ 5.478711] usb 2-2: Manufacturer: SanDisk
|
||||
[ 5.482942] usb 2-2: SerialNumber: 0101be85b067ca0d703486a24a44646525df8e76c47edeadf7b9c53e084d130ff85a00000000000000000000c0e69e70000319008355810797264240
|
||||
[ 5.498346] Loaded X.509 cert 'Build time autogenerated kernel key: 85cd93e325e502cfcb4258a2209a1e273ffd77af'
|
||||
[ 5.509570] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969'
|
||||
[ 5.520613] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19'
|
||||
[ 5.530798] zswap: loaded using pool lzo/zbud
|
||||
[ 5.535517] Key type ._fscrypt registered
|
||||
[ 5.539668] Key type .fscrypt registered
|
||||
[ 5.552293] Key type big_key registered
|
||||
[ 5.556272] Key type trusted registered
|
||||
[ 5.564271] Key type encrypted registered
|
||||
[ 5.568422] AppArmor: AppArmor sha1 policy hashing enabled
|
||||
[ 5.575535] integrity: Loading X.509 certificate: UEFI:MokListRT
|
||||
[ 5.582377] integrity: Loaded X.509 cert 'Canonical Ltd. Master Certificate Authority: ad91990bc22ab1f517048c23b6655a268e345a63'
|
||||
[ 5.594910] ima: Allocated hash algorithm: sha1
|
||||
[ 5.634717] ima: No architecture policies found
|
||||
[ 5.639398] evm: Initialising EVM extended attributes:
|
||||
[ 5.644670] evm: security.selinux
|
||||
[ 5.648119] evm: security.SMACK64
|
||||
[ 5.651570] evm: security.SMACK64EXEC
|
||||
[ 5.655366] evm: security.SMACK64TRANSMUTE
|
||||
[ 5.659594] evm: security.SMACK64MMAP
|
||||
[ 5.663387] evm: security.apparmor
|
||||
[ 5.666921] evm: security.ima
|
||||
[ 5.670019] evm: security.capability
|
||||
[ 5.673726] evm: HMAC attrs: 0x1
|
||||
[ 5.677726] PM: Magic number: 13:346:86
|
||||
[ 5.682069] rtc_cmos 00:02: setting system clock to 2021-11-28T16:03:12 UTC (1638115392)
|
||||
[ 5.693475] Freeing unused decrypted memory: 2040K
|
||||
[ 5.699416] Freeing unused kernel image memory: 2736K
|
||||
[ 5.704648] Write protecting the kernel read-only data: 22528k
|
||||
[ 5.711669] Freeing unused kernel image memory: 2008K
|
||||
[ 5.717328] Freeing unused kernel image memory: 1124K
|
||||
[ 5.741240] x86/mm: Checked W+X mappings: passed, no W+X pages found.
|
||||
[ 5.747817] Run /init as init process
|
||||
[ 5.883323] Intel(R) 2.5G Ethernet Linux Driver - version 0.0.1-k
|
||||
[ 5.889573] Copyright(c) 2018 Intel Corporation.
|
||||
[ 5.903398] usb-storage 2-2:1.0: USB Mass Storage device detected
|
||||
[ 5.935053] dca service started, version 1.12.1
|
||||
[ 5.939747] scsi host0: usb-storage 2-2:1.0
|
||||
[ 5.944476] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
|
||||
[ 5.944514] usbcore: registered new interface driver usb-storage
|
||||
[ 5.957374] sdhci: Secure Digital Host Controller Interface driver
|
||||
[ 5.963706] sdhci: Copyright(c) Pierre Ossman
|
||||
[ 5.972629] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 5.1.0-k
|
||||
[ 5.980435] ixgbe: Copyright (c) 1999-2016 Intel Corporation.
|
||||
[ 5.986567] sdhci-pci 0000:00:1c.0: SDHCI controller found [8086:19db] (rev 11)
|
||||
[ 5.987680] usbcore: registered new interface driver uas
|
||||
[ 5.994575] mmc0: SDHCI controller on PCI [0000:00:1c.0] using ADMA 64-bit
|
||||
[ 6.041061] igc 0000:04:00.0: 4.000 Gb/s available PCIe bandwidth (5 GT/s x1 link)
|
||||
[ 6.048786] igc 0000:04:00.0 eth0: MAC: 90:ec:77:1b:63:55
|
||||
[ 6.128664] mmc0: new HS400 MMC card at address 0001
|
||||
[ 6.137188] mmcblk0: mmc0:0001 TB2916 14.6 GiB
|
||||
[ 6.142039] mmcblk0boot0: mmc0:0001 TB2916 partition 1 4.00 MiB
|
||||
[ 6.148258] mmcblk0boot1: mmc0:0001 TB2916 partition 2 4.00 MiB
|
||||
[ 6.154445] mmcblk0rpmb: mmc0:0001 TB2916 partition 3 4.00 MiB, chardev (241:0)
|
||||
[ 6.157804] igc 0000:05:00.0: 4.000 Gb/s available PCIe bandwidth (5 GT/s x1 link)
|
||||
[ 6.169613] igc 0000:05:00.0 eth1: MAC: 90:ec:77:1b:63:56
|
||||
[ 6.197134] mmcblk0: p1 p2
|
||||
[ 6.278959] igc 0000:06:00.0: 4.000 Gb/s available PCIe bandwidth (5 GT/s x1 link)
|
||||
[ 6.286680] igc 0000:06:00.0 eth2: MAC: 90:ec:77:1b:63:57
|
||||
[ 6.393013] igc 0000:07:00.0: 4.000 Gb/s available PCIe bandwidth (5 GT/s x1 link)
|
||||
[ 6.398151] ixgbe 0000:03:00.0: Multiqueue Enabled: Rx Queue count = 4, Tx Queue count = 4 XDP Queue count = 0
|
||||
[ 6.400727] igc 0000:07:00.0 eth3: MAC: 90:ec:77:1b:63:58
|
||||
[ 6.417807] igc 0000:05:00.0 enp5s0: renamed from eth1
|
||||
[ 6.505720] igc 0000:04:00.0 enp4s0: renamed from eth0
|
||||
[ 6.529932] igc 0000:06:00.0 enp6s0: renamed from eth2
|
||||
[ 6.545579] ixgbe 0000:03:00.0: MAC: 6, PHY: 20, SFP+: 5, PBA No: 000500-000
|
||||
[ 6.552767] ixgbe 0000:03:00.0: 90:ec:77:1b:63:53
|
||||
[ 6.598194] igc 0000:07:00.0 enp7s0: renamed from eth3
|
||||
[ 6.689043] ixgbe 0000:03:00.0: Intel(R) 10 Gigabit Network Connection
|
||||
[ 6.695771] libphy: ixgbe-mdio: probed
|
||||
[ 6.954749] scsi 0:0:0:0: Direct-Access SanDisk Ultra Fit 1.00 PQ: 0 ANSI: 6
|
||||
[ 6.963630] sd 0:0:0:0: [sda] 240353280 512-byte logical blocks: (123 GB/115 GiB)
|
||||
[ 6.963858] sd 0:0:0:0: Attached scsi generic sg0 type 0
|
||||
[ 6.977377] sd 0:0:0:0: [sda] Write Protect is off
|
||||
[ 6.982310] sd 0:0:0:0: [sda] Mode Sense: 43 00 00 00
|
||||
[ 6.982705] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
|
||||
[ 7.015084] sda: sda1 sda2 sda3
|
||||
sda2: <bsd: sda5 >
|
||||
[ 7.040355] sd 0:0:0:0: [sda] Attached SCSI removable disk
|
||||
[ 7.109706] ixgbe 0000:03:00.1: Multiqueue Enabled: Rx Queue count = 4, Tx Queue count = 4 XDP Queue count = 0
|
||||
[ 7.245591] ixgbe 0000:03:00.1: MAC: 6, PHY: 20, SFP+: 6, PBA No: 000500-000
|
||||
[ 7.252781] ixgbe 0000:03:00.1: 90:ec:77:1b:63:54
|
||||
[ 7.390593] ixgbe 0000:03:00.1: Intel(R) 10 Gigabit Network Connection
|
||||
[ 7.738313] ixgbe 0000:02:00.0: Multiqueue Enabled: Rx Queue count = 4, Tx Queue count = 4 XDP Queue count = 0
|
||||
[ 7.875646] ixgbe 0000:02:00.0: MAC: 6, PHY: 27, PBA No: 000800-000
|
||||
[ 7.882051] ixgbe 0000:02:00.0: 90:ec:77:1b:63:52
|
||||
[ 7.931041] ixgbe 0000:02:00.0: Intel(R) 10 Gigabit Network Connection
|
||||
[ 8.278280] ixgbe 0000:02:00.1: Multiqueue Enabled: Rx Queue count = 4, Tx Queue count = 4 XDP Queue count = 0
|
||||
[ 8.415646] ixgbe 0000:02:00.1: MAC: 6, PHY: 27, PBA No: 000800-000
|
||||
[ 8.422054] ixgbe 0000:02:00.1: 90:ec:77:1b:63:51
|
||||
[ 8.471042] ixgbe 0000:02:00.1: Intel(R) 10 Gigabit Network Connection
|
||||
[ 8.479255] ixgbe 0000:03:00.0 enp3s0f0: renamed from eth0
|
||||
[ 8.513712] ixgbe 0000:03:00.1 enp3s0f1: renamed from eth1
|
||||
[ 8.533927] ixgbe 0000:02:00.0 enp2s0f0: renamed from eth2
|
||||
[ 8.557745] ixgbe 0000:02:00.1 enp2s0f1: renamed from eth3
|
||||
[ 9.611309] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
|
||||
[ 9.835166] systemd[1]: Inserted module 'autofs4'
|
||||
[ 10.013538] systemd[1]: systemd 245.4-4ubuntu3.13 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
|
||||
[ 10.053671] systemd[1]: Detected architecture x86-64.
|
||||
[ 10.133923] systemd[1]: Set hostname to <netgate>.
|
||||
[ 10.387340] systemd[1]: Created slice system-modprobe.slice.
|
||||
[ 10.410015] systemd[1]: Created slice system-serial\x2dgetty.slice.
|
||||
[ 10.433960] systemd[1]: Created slice system-systemd\x2dfsck.slice.
|
||||
[ 10.458064] systemd[1]: Created slice User and Session Slice.
|
||||
[ 10.481706] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
|
||||
[ 10.506029] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
|
||||
[ 10.533696] systemd[1]: Reached target User and Group Name Lookups.
|
||||
[ 10.557633] systemd[1]: Reached target Remote File Systems.
|
||||
[ 10.577624] systemd[1]: Reached target Slices.
|
||||
[ 10.597807] systemd[1]: Listening on Syslog Socket.
|
||||
[ 10.617745] systemd[1]: Listening on fsck to fsckd communication Socket.
|
||||
[ 10.641695] systemd[1]: Listening on initctl Compatibility Named Pipe.
|
||||
[ 10.665907] systemd[1]: Listening on Journal Audit Socket.
|
||||
[ 10.685737] systemd[1]: Listening on Journal Socket (/dev/log).
|
||||
[ 10.709773] systemd[1]: Listening on Journal Socket.
|
||||
[ 10.729768] systemd[1]: Listening on udev Control Socket.
|
||||
[ 10.749712] systemd[1]: Listening on udev Kernel Socket.
|
||||
[ 10.771012] systemd[1]: Mounting Huge Pages File System...
|
||||
[ 10.790987] systemd[1]: Mounting POSIX Message Queue File System...
|
||||
[ 10.814884] systemd[1]: Mounting Kernel Debug File System...
|
||||
[ 10.834920] systemd[1]: Mounting Kernel Trace File System...
|
||||
[ 10.855743] systemd[1]: Starting Journal Service...
|
||||
[ 10.875249] systemd[1]: Starting Set the console keyboard layout...
|
||||
[ 10.899107] systemd[1]: Starting Create list of static device nodes for the current kernel...
|
||||
[ 10.928000] systemd[1]: Starting Load Kernel Module drm...
|
||||
[ 10.949633] systemd[1]: Condition check resulted in OpenVSwitch configuration for cleanup being skipped.
|
||||
[ 10.962530] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
|
||||
[ 10.971754] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
|
||||
[ 10.982934] systemd[1]: Starting Load Kernel Modules...
|
||||
[ 11.002978] systemd[1]: Starting Remount Root and Kernel File Systems...
|
||||
[ 11.020283] EXT4-fs (mmcblk0p2): re-mounted. Opts: errors=remount-ro
|
||||
[ 11.028330] systemd[1]: Starting udev Coldplug all Devices...
|
||||
[ 11.050897] systemd[1]: Starting Uncomplicated firewall...
|
||||
[ 11.079771] systemd[1]: Started Journal Service.
|
||||
[ 11.320291] systemd-journald[274]: Received client request to flush runtime journal.
|
||||
[ 11.345670] Adding 684488k swap on /swapfile. Priority:-2 extents:3 across:700872k SSFS
|
||||
[ 12.128786] intel_th_pci 0000:00:1f.7: enabling device (0000 -> 0002)
|
||||
[ 12.222398] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 655360 ms ovfl timer
|
||||
[ 12.222402] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
|
||||
[ 12.222403] RAPL PMU: hw unit of domain package 2^-14 Joules
|
||||
[ 12.237418] cryptd: max_cpu_qlen set to 1000
|
||||
[ 12.276796] SSE version of gcm_enc/dec engaged.
|
||||
[ 12.414799] EDAC pnd2: ECC disabled on channel 0
|
||||
[ 12.414801] EDAC pnd2: Failed to register device with error -22.
|
||||
[ 12.458330] EDAC pnd2: ECC disabled on channel 0
|
||||
[ 12.458332] EDAC pnd2: Failed to register device with error -22.
|
||||
[ 12.468652] intel_rapl_common: Found RAPL domain package
|
||||
[ 12.468655] intel_rapl_common: Found RAPL domain core
|
||||
[ 12.504777] pps pps0: new PPS source ptp0
|
||||
[ 12.504835] ixgbe 0000:02:00.1: registered PHC device on enp2s0f1
|
||||
[ 12.514098] EDAC pnd2: ECC disabled on channel 0
|
||||
[ 12.514100] EDAC pnd2: Failed to register device with error -22.
|
||||
[ 12.555917] EDAC pnd2: ECC disabled on channel 0
|
||||
[ 12.555919] EDAC pnd2: Failed to register device with error -22.
|
||||
[ 12.574272] audit: type=1400 audit(1638115399.387:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=390 comm="apparmor_parser"
|
||||
[ 12.574278] audit: type=1400 audit(1638115399.387:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=390 comm="apparmor_parser"
|
||||
[ 12.575222] audit: type=1400 audit(1638115399.387:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=391 comm="apparmor_parser"
|
||||
[ 12.575227] audit: type=1400 audit(1638115399.387:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=391 comm="apparmor_parser"
|
||||
[ 12.575230] audit: type=1400 audit(1638115399.387:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=391 comm="apparmor_parser"
|
||||
[ 12.580389] audit: type=1400 audit(1638115399.391:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/tcpdump" pid=389 comm="apparmor_parser"
|
||||
[ 12.581030] audit: type=1400 audit(1638115399.391:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=393 comm="apparmor_parser"
|
||||
[ 12.584323] audit: type=1400 audit(1638115399.395:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=388 comm="apparmor_parser"
|
||||
[ 12.584329] audit: type=1400 audit(1638115399.395:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=388 comm="apparmor_parser"
|
||||
[ 12.584332] audit: type=1400 audit(1638115399.395:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=388 comm="apparmor_parser"
|
||||
[ 12.621603] c3xxx 0000:01:00.0: qat_dev0 started 6 acceleration engines
|
||||
[ 12.705744] pps pps1: new PPS source ptp1
|
||||
[ 12.705833] ixgbe 0000:03:00.1: registered PHC device on enp3s0f1
|
||||
[ 12.729225] pps pps2: new PPS source ptp2
|
||||
[ 12.730286] ixgbe 0000:03:00.0: registered PHC device on enp3s0f0
|
||||
[ 12.811570] ixgbe 0000:03:00.1 enp3s0f1: detected SFP+: 6
|
||||
[ 13.449589] ixgbe 0000:03:00.1 enp3s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
|
||||
[ 13.449810] IPv6: ADDRCONF(NETDEV_CHANGE): enp3s0f1: link becomes ready
|
||||
[ 13.463834] ixgbe 0000:02:00.1 enp2s0f1: NIC Link is Up 1 Gbps, Flow Control: RX/TX
|
||||
[ 13.464339] IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0f1: link becomes ready
|
||||
[ 13.565590] ixgbe 0000:03:00.0 enp3s0f0: detected SFP+: 5
|
||||
[ 13.569853] IPMI message handler: version 39.2
|
||||
[ 13.572505] ipmi device interface
|
||||
[ 13.583677] ipmi_si: IPMI System Interface driver
|
||||
[ 13.583792] ipmi_si: Unable to find any System Interface(s)
|
||||
[ 14.136217] fbcon: Taking over console
|
||||
[ 14.213621] ixgbe 0000:03:00.0 enp3s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
|
||||
[ 14.214392] IPv6: ADDRCONF(NETDEV_CHANGE): enp3s0f0: link becomes ready
|
2
static/assets/netgate-6100/jquery.min.js
vendored
Normal file
2
static/assets/netgate-6100/jquery.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
89
static/assets/netgate-6100/loadtest.js
Normal file
89
static/assets/netgate-6100/loadtest.js
Normal file
@ -0,0 +1,89 @@
|
||||
(function () {
|
||||
function Graph(elem, ltdata, error) {
|
||||
var chart = c3.generate({
|
||||
bindto: elem,
|
||||
size: {
|
||||
width: 1200,
|
||||
height: error ? 400 : 800,
|
||||
},
|
||||
data: {
|
||||
columns: ltdata['data'],
|
||||
regions: {
|
||||
'ideal': error ? [] : [{'start': 0, 'style': 'dashed'}]
|
||||
},
|
||||
colors: {
|
||||
'ideal': '#bbbbbb',
|
||||
'txrate': '#bbbbbb',
|
||||
},
|
||||
axes: {
|
||||
'txrate': 'y2'
|
||||
}
|
||||
},
|
||||
point: {
|
||||
show: false
|
||||
},
|
||||
axis: {
|
||||
x: {
|
||||
tick: {
|
||||
values: ltdata['ticks'],
|
||||
},
|
||||
label: {
|
||||
text: 'seconds',
|
||||
position: 'outer-center'
|
||||
}
|
||||
},
|
||||
y: {
|
||||
min: 0,
|
||||
max: error ? 1 : ltdata['max'],
|
||||
padding: { top: 0, bottom: 0 },
|
||||
type: (error ? 'log' : 'linear'),
|
||||
tick: {
|
||||
format: d3.format('.3f'),
|
||||
},
|
||||
label: {
|
||||
text: (error ? 'err fraction of txrate (log)' : ltdata['yprefix'] + 'pps'),
|
||||
position: 'outer-middle'
|
||||
}
|
||||
},
|
||||
y2: {
|
||||
show: true,
|
||||
min: 0,
|
||||
max: error ? ltdata['max'] : 1,
|
||||
type: (error ? 'linear' : 'linear'),
|
||||
tick: {
|
||||
format: d3.format(error ? '.3f' : '.1f'),
|
||||
},
|
||||
padding: { top: 0, bottom: 0 },
|
||||
label: {
|
||||
text: error ? 'txrate ' + ltdata['yprefix'] + 'pps' : 'fraction of linerate',
|
||||
position: 'outer-middle'
|
||||
}
|
||||
}
|
||||
},
|
||||
grid: {
|
||||
y: {
|
||||
lines: error ? [{value: ltdata['ft'], text: 'fail threshold', class: 'ft', position: 'start'}] : [{value: ltdata['max']}]
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function LoadtestGraph(elem, ltdata) {
|
||||
return Graph(elem, ltdata, false);
|
||||
}
|
||||
|
||||
function ErrorGraph(elem, ltdata) {
|
||||
return Graph(elem, ltdata, true);
|
||||
}
|
||||
|
||||
$(window).on("load", function() {
|
||||
$('div.loadtest-graph').each(function(index, el) {
|
||||
if (el.dataset.ltdata) {
|
||||
LoadtestGraph(el, JSON.parse(el.dataset.ltdata));
|
||||
} else if (el.dataset.errdata) {
|
||||
ErrorGraph(el, JSON.parse(el.dataset.errdata));
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
})();
|
BIN
static/assets/netgate-6100/netgate-6100-back.png
(Stored with Git LFS)
Normal file
BIN
static/assets/netgate-6100/netgate-6100-back.png
(Stored with Git LFS)
Normal file
Binary file not shown.
121
static/assets/netgate-6100/netgate-6100.bench-bidirectional.html
Normal file
121
static/assets/netgate-6100/netgate-6100.bench-bidirectional.html
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
499
static/assets/netgate-6100/netgate-6100.html
Normal file
499
static/assets/netgate-6100/netgate-6100.html
Normal file
File diff suppressed because one or more lines are too long
121
static/assets/netgate-6100/netgate-6100.imix-bidirectional.html
Normal file
121
static/assets/netgate-6100/netgate-6100.imix-bidirectional.html
Normal file
File diff suppressed because one or more lines are too long
121
static/assets/netgate-6100/netgate-6100.imix-unidirectional.html
Normal file
121
static/assets/netgate-6100/netgate-6100.imix-unidirectional.html
Normal file
File diff suppressed because one or more lines are too long
112
static/assets/netgate-6100/test.html
Normal file
112
static/assets/netgate-6100/test.html
Normal file
File diff suppressed because one or more lines are too long
BIN
static/assets/netgate-6100/trex-loadtest-json.tar.gz
(Stored with Git LFS)
Normal file
BIN
static/assets/netgate-6100/trex-loadtest-json.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
Reference in New Issue
Block a user