* [PATCH] KVM: VMX: Require KVM_SET_TSS_ADDR being called prior to running a VCPU
@ 2013-03-15 7:38 Jan Kiszka
2013-03-15 11:43 ` Gleb Natapov
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Jan Kiszka @ 2013-03-15 7:38 UTC (permalink / raw)
To: Gleb Natapov, Marcelo Tosatti; +Cc: kvm, Paolo Bonzini
From: Jan Kiszka <jan.kiszka@siemens.com>
Very old user space (namely qemu-kvm before kvm-49) didn't set the TSS
base before running the VCPU. We always warned about this bug, but no
reports about users actually seeing this are known. Time to finally
remove the workaround that effectively prevented to call vmx_vcpu_reset
while already holding the KVM srcu lock.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---
This obsoletes all other attempts to allow vmx_vcpu_reset to be called
with the srcu lock held. Hope we can settle the topic this way.
arch/x86/kvm/vmx.c | 30 ++++--------------------------
1 files changed, 4 insertions(+), 26 deletions(-)
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
index 958ac3a..310bd00 100644
--- a/arch/x86/kvm/vmx.c
+++ b/arch/x86/kvm/vmx.c
@@ -2898,22 +2898,6 @@ static void enter_pmode(struct kvm_vcpu *vcpu)
vmx->cpl = 0;
}
-static gva_t rmode_tss_base(struct kvm *kvm)
-{
- if (!kvm->arch.tss_addr) {
- struct kvm_memslots *slots;
- struct kvm_memory_slot *slot;
- gfn_t base_gfn;
-
- slots = kvm_memslots(kvm);
- slot = id_to_memslot(slots, 0);
- base_gfn = slot->base_gfn + slot->npages - 3;
-
- return base_gfn << PAGE_SHIFT;
- }
- return kvm->arch.tss_addr;
-}
-
static void fix_rmode_seg(int seg, struct kvm_segment *save)
{
const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
@@ -2964,19 +2948,15 @@ static void enter_rmode(struct kvm_vcpu *vcpu)
/*
* Very old userspace does not call KVM_SET_TSS_ADDR before entering
- * vcpu. Call it here with phys address pointing 16M below 4G.
+ * vcpu. Warn the user that an update is overdue.
*/
- if (!vcpu->kvm->arch.tss_addr) {
+ if (!vcpu->kvm->arch.tss_addr)
printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
"called before entering vcpu\n");
- srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
- vmx_set_tss_addr(vcpu->kvm, 0xfeffd000);
- vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
- }
vmx_segment_cache_clear(vmx);
- vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm));
+ vmcs_writel(GUEST_TR_BASE, vcpu->kvm->arch.tss_addr);
vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
@@ -3623,7 +3603,7 @@ static int init_rmode_tss(struct kvm *kvm)
int r, idx, ret = 0;
idx = srcu_read_lock(&kvm->srcu);
- fn = rmode_tss_base(kvm) >> PAGE_SHIFT;
+ fn = kvm->arch.tss_addr >> PAGE_SHIFT;
r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
if (r < 0)
goto out;
@@ -4190,9 +4170,7 @@ static void vmx_vcpu_reset(struct kvm_vcpu *vcpu)
vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
vmx->vcpu.arch.cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
- vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
vmx_set_cr0(&vmx->vcpu, kvm_read_cr0(vcpu)); /* enter rmode */
- srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
vmx_set_cr4(&vmx->vcpu, 0);
vmx_set_efer(&vmx->vcpu, 0);
vmx_fpu_activate(&vmx->vcpu);
--
1.7.3.4
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] KVM: VMX: Require KVM_SET_TSS_ADDR being called prior to running a VCPU
2013-03-15 7:38 [PATCH] KVM: VMX: Require KVM_SET_TSS_ADDR being called prior to running a VCPU Jan Kiszka
@ 2013-03-15 11:43 ` Gleb Natapov
2013-03-18 16:50 ` Marcelo Tosatti
2023-06-28 1:29 ` Thorsten Glaser
2 siblings, 0 replies; 7+ messages in thread
From: Gleb Natapov @ 2013-03-15 11:43 UTC (permalink / raw)
To: Jan Kiszka; +Cc: Marcelo Tosatti, kvm, Paolo Bonzini
On Fri, Mar 15, 2013 at 08:38:56AM +0100, Jan Kiszka wrote:
> From: Jan Kiszka <jan.kiszka@siemens.com>
>
> Very old user space (namely qemu-kvm before kvm-49) didn't set the TSS
> base before running the VCPU. We always warned about this bug, but no
> reports about users actually seeing this are known. Time to finally
> remove the workaround that effectively prevented to call vmx_vcpu_reset
> while already holding the KVM srcu lock.
>
> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Reviewed-by: Gleb Natapov <gleb@redhat.com>
> ---
>
> This obsoletes all other attempts to allow vmx_vcpu_reset to be called
> with the srcu lock held. Hope we can settle the topic this way.
>
> arch/x86/kvm/vmx.c | 30 ++++--------------------------
> 1 files changed, 4 insertions(+), 26 deletions(-)
>
> diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
> index 958ac3a..310bd00 100644
> --- a/arch/x86/kvm/vmx.c
> +++ b/arch/x86/kvm/vmx.c
> @@ -2898,22 +2898,6 @@ static void enter_pmode(struct kvm_vcpu *vcpu)
> vmx->cpl = 0;
> }
>
> -static gva_t rmode_tss_base(struct kvm *kvm)
> -{
> - if (!kvm->arch.tss_addr) {
> - struct kvm_memslots *slots;
> - struct kvm_memory_slot *slot;
> - gfn_t base_gfn;
> -
> - slots = kvm_memslots(kvm);
> - slot = id_to_memslot(slots, 0);
> - base_gfn = slot->base_gfn + slot->npages - 3;
> -
> - return base_gfn << PAGE_SHIFT;
> - }
> - return kvm->arch.tss_addr;
> -}
> -
> static void fix_rmode_seg(int seg, struct kvm_segment *save)
> {
> const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
> @@ -2964,19 +2948,15 @@ static void enter_rmode(struct kvm_vcpu *vcpu)
>
> /*
> * Very old userspace does not call KVM_SET_TSS_ADDR before entering
> - * vcpu. Call it here with phys address pointing 16M below 4G.
> + * vcpu. Warn the user that an update is overdue.
> */
> - if (!vcpu->kvm->arch.tss_addr) {
> + if (!vcpu->kvm->arch.tss_addr)
> printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
> "called before entering vcpu\n");
> - srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
> - vmx_set_tss_addr(vcpu->kvm, 0xfeffd000);
> - vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
> - }
>
> vmx_segment_cache_clear(vmx);
>
> - vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm));
> + vmcs_writel(GUEST_TR_BASE, vcpu->kvm->arch.tss_addr);
> vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
> vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
>
> @@ -3623,7 +3603,7 @@ static int init_rmode_tss(struct kvm *kvm)
> int r, idx, ret = 0;
>
> idx = srcu_read_lock(&kvm->srcu);
> - fn = rmode_tss_base(kvm) >> PAGE_SHIFT;
> + fn = kvm->arch.tss_addr >> PAGE_SHIFT;
> r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
> if (r < 0)
> goto out;
> @@ -4190,9 +4170,7 @@ static void vmx_vcpu_reset(struct kvm_vcpu *vcpu)
> vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
>
> vmx->vcpu.arch.cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
> - vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
> vmx_set_cr0(&vmx->vcpu, kvm_read_cr0(vcpu)); /* enter rmode */
> - srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
> vmx_set_cr4(&vmx->vcpu, 0);
> vmx_set_efer(&vmx->vcpu, 0);
> vmx_fpu_activate(&vmx->vcpu);
> --
> 1.7.3.4
--
Gleb.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] KVM: VMX: Require KVM_SET_TSS_ADDR being called prior to running a VCPU
2013-03-15 7:38 [PATCH] KVM: VMX: Require KVM_SET_TSS_ADDR being called prior to running a VCPU Jan Kiszka
2013-03-15 11:43 ` Gleb Natapov
@ 2013-03-18 16:50 ` Marcelo Tosatti
2023-06-28 1:29 ` Thorsten Glaser
2 siblings, 0 replies; 7+ messages in thread
From: Marcelo Tosatti @ 2013-03-18 16:50 UTC (permalink / raw)
To: Jan Kiszka; +Cc: Gleb Natapov, kvm, Paolo Bonzini
On Fri, Mar 15, 2013 at 08:38:56AM +0100, Jan Kiszka wrote:
> From: Jan Kiszka <jan.kiszka@siemens.com>
>
> Very old user space (namely qemu-kvm before kvm-49) didn't set the TSS
> base before running the VCPU. We always warned about this bug, but no
> reports about users actually seeing this are known. Time to finally
> remove the workaround that effectively prevented to call vmx_vcpu_reset
> while already holding the KVM srcu lock.
>
> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
> ---
>
> This obsoletes all other attempts to allow vmx_vcpu_reset to be called
> with the srcu lock held. Hope we can settle the topic this way.
Applied, thanks.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] KVM: VMX: Require KVM_SET_TSS_ADDR being called prior to running a VCPU
2013-03-15 7:38 [PATCH] KVM: VMX: Require KVM_SET_TSS_ADDR being called prior to running a VCPU Jan Kiszka
2013-03-15 11:43 ` Gleb Natapov
2013-03-18 16:50 ` Marcelo Tosatti
@ 2023-06-28 1:29 ` Thorsten Glaser
2023-06-28 16:21 ` Sean Christopherson
2 siblings, 1 reply; 7+ messages in thread
From: Thorsten Glaser @ 2023-06-28 1:29 UTC (permalink / raw)
To: Jan Kiszka; +Cc: Gleb Natapov, Marcelo Tosatti, kvm, Paolo Bonzini
[-- Attachment #1: Type: text/plain, Size: 1098 bytes --]
Hi,
I just saw a new message after reboot today and searched for it and got
https://patchwork.kernel.org/project/kvm/patch/5142D010.7060303@web.de/
and you might be interested that I ran into it.
[ 70.747068] kvm: KVM_SET_TSS_ADDR need to be called before entering vcpu
Full dmesg attached. This is on reboot, no VMs are running yet.
I don’t get any extra weird messages on VM start, and they come up fine.
bye,
//mirabilos
--
Infrastrukturexperte • tarent solutions GmbH
Am Dickobskreuz 10, D-53121 Bonn • http://www.tarent.de/
Telephon +49 228 54881-393 • Fax: +49 228 54881-235
HRB AG Bonn 5168 • USt-ID (VAT): DE122264941
Geschäftsführer: Dr. Stefan Barth, Kai Ebenrett, Boris Esser, Alexander Steeg
****************************************************
/⁀\ The UTF-8 Ribbon
╲ ╱ Campaign against Mit dem tarent-Newsletter nichts mehr verpassen:
╳ HTML eMail! Also, https://www.tarent.de/newsletter
╱ ╲ header encryption!
****************************************************
[-- Attachment #2: Type: text/plain, Size: 66261 bytes --]
[ 0.000000] microcode: microcode updated early to revision 0x1d, date = 2018-05-11
[ 0.000000] Linux version 5.10.0-23-amd64 (debian-kernel@lists.debian.org) (gcc-10 (Debian 10.2.1-6) 10.2.1 20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #1 SMP Debian 5.10.179-1 (2023-05-12)
[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-5.10.0-23-amd64 root=/dev/mapper/vg--tglase-lv--tglase ro rootdelay=5 net.ifnames=0 syscall.x32=y vsyscall=emulate kaslr l1tf=flush,nosmt
[ 0.000000] x86/fpu: x87 FPU will use FXSAVE
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009dbff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000cfecffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000cfed0000-0x00000000cfed0fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000cfed1000-0x00000000cfedffff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000cfee0000-0x00000000cfefffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000f4000000-0x00000000f7ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000062fffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.4 present.
[ 0.000000] DMI: Gigabyte Technology Co., Ltd. X58-USB3/X58-USB3, BIOS F5 09/07/2011
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 3064.406 MHz processor
[ 0.004021] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.004028] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.004040] last_pfn = 0x630000 max_arch_pfn = 0x400000000
[ 0.004048] MTRR default type: uncachable
[ 0.004050] MTRR fixed ranges enabled:
[ 0.004052] 00000-9FFFF write-back
[ 0.004054] A0000-BFFFF uncachable
[ 0.004057] C0000-CDFFF write-protect
[ 0.004059] CE000-EFFFF uncachable
[ 0.004061] F0000-FFFFF write-through
[ 0.004063] MTRR variable ranges enabled:
[ 0.004066] 0 base 000000000 mask F00000000 write-back
[ 0.004068] 1 base 0E0000000 mask FE0000000 uncachable
[ 0.004071] 2 base 0D0000000 mask FF0000000 uncachable
[ 0.004073] 3 base 100000000 mask F00000000 write-back
[ 0.004076] 4 base 200000000 mask E00000000 write-back
[ 0.004078] 5 base 400000000 mask C00000000 write-back
[ 0.004080] 6 base 500000000 mask F00000000 write-back
[ 0.004083] 7 base 600000000 mask FC0000000 write-back
[ 0.005066] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.005655] e820: update [mem 0xd0000000-0xffffffff] usable ==> reserved
[ 0.005667] last_pfn = 0xcfed0 max_arch_pfn = 0x400000000
[ 0.017369] found SMP MP-table at [mem 0x000f5a60-0x000f5a6f]
[ 0.032097] RAMDISK: [mem 0x32de9000-0x356ebfff]
[ 0.032108] ACPI: Early table checksum verification disabled
[ 0.032113] ACPI: RSDP 0x00000000000F7200 000014 (v00 GBT )
[ 0.032122] ACPI: RSDT 0x00000000CFED1040 000048 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
[ 0.032134] ACPI: FACP 0x00000000CFED1100 000074 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
[ 0.032147] ACPI: DSDT 0x00000000CFED11C0 00391C (v01 GBT GBTUACPI 00001000 MSFT 0100000C)
[ 0.032157] ACPI: FACS 0x00000000CFED0000 000040
[ 0.032165] ACPI: MSDM 0x00000000CFED4CC0 000055 (v03 GBT GBTUACPI 42302E31 GBTU 01010101)
[ 0.032174] ACPI: HPET 0x00000000CFED4D80 000038 (v01 GBT GBTUACPI 42302E31 GBTU 00000098)
[ 0.032184] ACPI: MCFG 0x00000000CFED4E00 00003C (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
[ 0.032193] ACPI: EUDS 0x00000000CFED4E40 0004D0 (v01 GBT 00000000 00000000)
[ 0.032202] ACPI: MATS 0x00000000CFED5310 000034 (v01 GBT 00000000 00000000)
[ 0.032211] ACPI: TAMG 0x00000000CFED5380 000CFA (v01 GBT GBT B0 5455312E BG?? 53450101)
[ 0.032221] ACPI: APIC 0x00000000CFED4B40 00012C (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
[ 0.032230] ACPI: SSDT 0x00000000CFED6080 002B1C (v01 INTEL PPM RCM 80000001 INTL 20061109)
[ 0.032239] ACPI: Reserving FACP table memory at [mem 0xcfed1100-0xcfed1173]
[ 0.032242] ACPI: Reserving DSDT table memory at [mem 0xcfed11c0-0xcfed4adb]
[ 0.032245] ACPI: Reserving FACS table memory at [mem 0xcfed0000-0xcfed003f]
[ 0.032248] ACPI: Reserving MSDM table memory at [mem 0xcfed4cc0-0xcfed4d14]
[ 0.032251] ACPI: Reserving HPET table memory at [mem 0xcfed4d80-0xcfed4db7]
[ 0.032254] ACPI: Reserving MCFG table memory at [mem 0xcfed4e00-0xcfed4e3b]
[ 0.032256] ACPI: Reserving EUDS table memory at [mem 0xcfed4e40-0xcfed530f]
[ 0.032259] ACPI: Reserving MATS table memory at [mem 0xcfed5310-0xcfed5343]
[ 0.032262] ACPI: Reserving TAMG table memory at [mem 0xcfed5380-0xcfed6079]
[ 0.032265] ACPI: Reserving APIC table memory at [mem 0xcfed4b40-0xcfed4c6b]
[ 0.032268] ACPI: Reserving SSDT table memory at [mem 0xcfed6080-0xcfed8b9b]
[ 0.032289] ACPI: Local APIC address 0xfee00000
[ 0.032353] No NUMA configuration found
[ 0.032356] Faking a node at [mem 0x0000000000000000-0x000000062fffffff]
[ 0.032377] NODE_DATA(0) allocated [mem 0x62ffc5000-0x62ffeefff]
[ 0.033488] Zone ranges:
[ 0.033491] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.033495] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.033500] Normal [mem 0x0000000100000000-0x000000062fffffff]
[ 0.033503] Device empty
[ 0.033507] Movable zone start for each node
[ 0.033514] Early memory node ranges
[ 0.033517] node 0: [mem 0x0000000000001000-0x000000000009cfff]
[ 0.033520] node 0: [mem 0x0000000000100000-0x00000000cfecffff]
[ 0.033524] node 0: [mem 0x0000000100000000-0x000000062fffffff]
[ 0.033535] Initmem setup node 0 [mem 0x0000000000001000-0x000000062fffffff]
[ 0.033539] On node 0 totalpages: 6291052
[ 0.033541] DMA zone: 64 pages used for memmap
[ 0.033543] DMA zone: 21 pages reserved
[ 0.033545] DMA zone: 3996 pages, LIFO batch:0
[ 0.033547] DMA32 zone: 13244 pages used for memmap
[ 0.033549] DMA32 zone: 847568 pages, LIFO batch:63
[ 0.033551] Normal zone: 84992 pages used for memmap
[ 0.033553] Normal zone: 5439488 pages, LIFO batch:63
[ 0.033560] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.033639] On node 0, zone DMA: 99 pages in unavailable ranges
[ 0.050433] On node 0, zone Normal: 304 pages in unavailable ranges
[ 0.050645] ACPI: PM-Timer IO Port: 0x408
[ 0.050651] ACPI: Local APIC address 0xfee00000
[ 0.050665] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
[ 0.050668] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
[ 0.050670] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
[ 0.050673] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
[ 0.050676] ACPI: LAPIC_NMI (acpi_id[0x04] dfl dfl lint[0x1])
[ 0.050678] ACPI: LAPIC_NMI (acpi_id[0x05] dfl dfl lint[0x1])
[ 0.050681] ACPI: LAPIC_NMI (acpi_id[0x06] dfl dfl lint[0x1])
[ 0.050683] ACPI: LAPIC_NMI (acpi_id[0x07] dfl dfl lint[0x1])
[ 0.050686] ACPI: LAPIC_NMI (acpi_id[0x08] dfl dfl lint[0x1])
[ 0.050689] ACPI: LAPIC_NMI (acpi_id[0x09] dfl dfl lint[0x1])
[ 0.050691] ACPI: LAPIC_NMI (acpi_id[0x0a] dfl dfl lint[0x1])
[ 0.050694] ACPI: LAPIC_NMI (acpi_id[0x0b] dfl dfl lint[0x1])
[ 0.050696] ACPI: LAPIC_NMI (acpi_id[0x0c] dfl dfl lint[0x1])
[ 0.050699] ACPI: LAPIC_NMI (acpi_id[0x0d] dfl dfl lint[0x1])
[ 0.050702] ACPI: LAPIC_NMI (acpi_id[0x0e] dfl dfl lint[0x1])
[ 0.050704] ACPI: LAPIC_NMI (acpi_id[0x0f] dfl dfl lint[0x1])
[ 0.050718] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[ 0.050723] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.050726] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.050730] ACPI: IRQ0 used by override.
[ 0.050733] ACPI: IRQ9 used by override.
[ 0.050738] Using ACPI (MADT) for SMP configuration information
[ 0.050742] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.050750] smpboot: Allowing 16 CPUs, 8 hotplug CPUs
[ 0.050777] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.050781] PM: hibernation: Registered nosave memory: [mem 0x0009d000-0x0009ffff]
[ 0.050784] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000effff]
[ 0.050787] PM: hibernation: Registered nosave memory: [mem 0x000f0000-0x000fffff]
[ 0.050791] PM: hibernation: Registered nosave memory: [mem 0xcfed0000-0xcfed0fff]
[ 0.050794] PM: hibernation: Registered nosave memory: [mem 0xcfed1000-0xcfedffff]
[ 0.050796] PM: hibernation: Registered nosave memory: [mem 0xcfee0000-0xcfefffff]
[ 0.050799] PM: hibernation: Registered nosave memory: [mem 0xcff00000-0xf3ffffff]
[ 0.050801] PM: hibernation: Registered nosave memory: [mem 0xf4000000-0xf7ffffff]
[ 0.050804] PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfebfffff]
[ 0.050806] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xffffffff]
[ 0.050811] [mem 0xcff00000-0xf3ffffff] available for PCI devices
[ 0.050813] Booting paravirtualized kernel on bare hardware
[ 0.050819] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[ 0.058869] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1
[ 0.059671] percpu: Embedded 63 pages/cpu s221184 r8192 d28672 u262144
[ 0.059685] pcpu-alloc: s221184 r8192 d28672 u262144 alloc=1*2097152
[ 0.059688] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15
[ 0.059761] Built 1 zonelists, mobility grouping on. Total pages: 6192731
[ 0.059763] Policy zone: Normal
[ 0.059767] Kernel command line: BOOT_IMAGE=/vmlinuz-5.10.0-23-amd64 root=/dev/mapper/vg--tglase-lv--tglase ro rootdelay=5 net.ifnames=0 syscall.x32=y vsyscall=emulate kaslr l1tf=flush,nosmt
[ 0.063119] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[ 0.064704] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[ 0.065087] mem auto-init: stack:off, heap alloc:on, heap free:off
[ 0.111088] Memory: 3380248K/25164208K available (12295K kernel code, 2536K rwdata, 7568K rodata, 2668K init, 17720K bss, 603924K reserved, 0K cma-reserved)
[ 0.111625] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
[ 0.111659] Kernel/User page tables isolation: enabled
[ 0.111704] ftrace: allocating 36577 entries in 143 pages
[ 0.149381] ftrace: allocated 143 pages with 5 groups
[ 0.149645] rcu: Hierarchical RCU implementation.
[ 0.149649] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=16.
[ 0.149652] Rude variant of Tasks RCU enabled.
[ 0.149654] Tracing variant of Tasks RCU enabled.
[ 0.149656] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[ 0.149659] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
[ 0.160193] NR_IRQS: 524544, nr_irqs: 552, preallocated irqs: 16
[ 0.164966] Console: colour VGA+ 80x25
[ 0.172581] printk: console [tty0] enabled
[ 0.172674] ACPI: Core revision 20200925
[ 0.172871] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[ 0.172968] APIC: Switch to symmetric I/O mode setup
[ 0.173026] DMAR-IR: This system BIOS has enabled interrupt remapping
on a chipset that contains an erratum making that
feature unstable. To maintain system stability
interrupt remapping is being disabled. Please
contact your BIOS vendor for an update
[ 0.173188] Switched APIC routing to physical flat.
[ 0.173972] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.192971] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2c2bef754df, max_idle_ns: 440795262435 ns
[ 0.193058] Calibrating delay loop (skipped), value calculated using timer frequency.. 6128.81 BogoMIPS (lpj=12257624)
[ 0.193145] pid_max: default: 32768 minimum: 301
[ 0.193337] LSM: Security Framework initializing
[ 0.193416] Yama: disabled by default; enable with sysctl kernel.yama.*
[ 0.193537] AppArmor: AppArmor initialized
[ 0.193596] TOMOYO Linux initialized
[ 0.193790] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.193952] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.194609] mce: CPU0: Thermal monitoring enabled (TM1)
[ 0.194682] process: using mwait in idle threads
[ 0.194744] Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
[ 0.194802] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[ 0.194865] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.194946] Spectre V2 : Mitigation: Retpolines
[ 0.195003] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.195081] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[ 0.195142] Spectre V2 : Enabling Restricted Speculation for firmware calls
[ 0.195205] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.195284] Spectre V2 : User space: Mitigation: STIBP via seccomp and prctl
[ 0.195347] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[ 0.195428] SMT: disabled
[ 0.195483] MDS: Vulnerable: Clear CPU buffers attempted, no microcode
[ 0.196548] MMIO Stale Data: Unknown: No mitigations
[ 0.215722] Freeing SMP alternatives memory: 32K
[ 0.330068] smpboot: CPU0: Intel(R) Core(TM) i7 CPU 950 @ 3.07GHz (family: 0x6, model: 0x1a, stepping: 0x5)
[ 0.330428] Performance Events: PEBS fmt1+, Nehalem events, 16-deep LBR, Intel PMU driver.
[ 0.330516] core: CPU erratum AAJ80 worked around
[ 0.330573] core: CPUID marked event: 'bus cycles' unavailable
[ 0.330632] ... version: 3
[ 0.330687] ... bit width: 48
[ 0.330742] ... generic registers: 4
[ 0.330797] ... value mask: 0000ffffffffffff
[ 0.330855] ... max period: 000000007fffffff
[ 0.330912] ... fixed-purpose events: 3
[ 0.330967] ... event mask: 000000070000000f
[ 0.331208] rcu: Hierarchical SRCU implementation.
[ 0.332976] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.333055] smp: Bringing up secondary CPUs ...
[ 0.333055] x86: Booting SMP configuration:
[ 0.333055] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
[ 0.361294] smp: Brought up 1 node, 4 CPUs
[ 0.361417] smpboot: Max logical packages: 4
[ 0.361473] smpboot: Total of 4 processors activated (24515.24 BogoMIPS)
[ 0.409130] node 0 deferred pages initialised in 44ms
[ 0.409884] devtmpfs: initialized
[ 0.409884] x86/mm: Memory block size: 128MB
[ 0.414766] PM: Registering ACPI NVS region [mem 0xcfed0000-0xcfed0fff] (4096 bytes)
[ 0.414766] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.414766] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
[ 0.414766] pinctrl core: initialized pinctrl subsystem
[ 0.414766] NET: Registered protocol family 16
[ 0.414844] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[ 0.417192] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.417809] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.417910] audit: initializing netlink subsys (disabled)
[ 0.417990] audit: type=2000 audit(1687915223.244:1): state=initialized audit_enabled=0 res=1
[ 0.417990] thermal_sys: Registered thermal governor 'fair_share'
[ 0.417990] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.417990] thermal_sys: Registered thermal governor 'step_wise'
[ 0.417990] thermal_sys: Registered thermal governor 'user_space'
[ 0.417990] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.417990] cpuidle: using governor ladder
[ 0.417990] cpuidle: using governor menu
[ 0.417990] Enabled x32 syscalls
[ 0.417990] ACPI: bus type PCI registered
[ 0.417990] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.418133] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf4000000-0xf7ffffff] (base 0xf4000000)
[ 0.418217] PCI: MMCONFIG at [mem 0xf4000000-0xf7ffffff] reserved in E820
[ 0.418287] pmd_set_huge: Cannot satisfy [mem 0xf4000000-0xf4200000] with a huge-page mapping due to MTRR override.
[ 0.418575] PCI: Using configuration type 1 for base access
[ 0.421984] Kprobes globally optimized
[ 0.422049] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.745218] ACPI: Added _OSI(Module Device)
[ 0.745278] ACPI: Added _OSI(Processor Device)
[ 0.745335] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.745392] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.745450] ACPI: Added _OSI(Linux-Dell-Video)
[ 0.745507] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[ 0.745565] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[ 0.748886] ACPI: 2 ACPI AML tables successfully acquired and loaded
[ 0.754306] ACPI: Interpreter enabled
[ 0.754386] ACPI: (supports S0 S3 S4 S5)
[ 0.754442] ACPI: Using IOAPIC for interrupt routing
[ 0.754528] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.754789] ACPI: Enabled 9 GPEs in block 00 to 3F
[ 0.760412] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
[ 0.760480] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[ 0.760851] PCI host bridge to bus 0000:00
[ 0.760910] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.760972] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.761034] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.761059] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[ 0.761137] pci_bus 0000:00: root bus resource [mem 0xcff00000-0xfebfffff window]
[ 0.761214] pci_bus 0000:00: root bus resource [bus 00-3f]
[ 0.761296] pci 0000:00:00.0: [8086:3405] type 00 class 0x060000
[ 0.761389] pci 0000:00:00.0: enabling Extended Tags
[ 0.761495] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[ 0.761696] pci 0000:00:02.0: [8086:3409] type 01 class 0x060400
[ 0.761791] pci 0000:00:02.0: enabling Extended Tags
[ 0.761897] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[ 0.762089] pci 0000:00:03.0: [8086:340a] type 01 class 0x060400
[ 0.762184] pci 0000:00:03.0: enabling Extended Tags
[ 0.762292] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[ 0.762486] pci 0000:00:10.0: [8086:3425] type 00 class 0x080000
[ 0.762694] pci 0000:00:10.1: [8086:3426] type 00 class 0x080000
[ 0.762891] pci 0000:00:11.0: [8086:3427] type 00 class 0x080000
[ 0.763093] pci 0000:00:11.1: [8086:3428] type 00 class 0x080000
[ 0.763298] pci 0000:00:13.0: [8086:342d] type 00 class 0x080020
[ 0.763370] pci 0000:00:13.0: reg 0x10: [mem 0xfbfff000-0xfbffffff]
[ 0.763488] pci 0000:00:13.0: PME# supported from D0 D3hot D3cold
[ 0.763654] pci 0000:00:14.0: [8086:342e] type 00 class 0x080000
[ 0.763881] pci 0000:00:14.1: [8086:3422] type 00 class 0x080000
[ 0.764101] pci 0000:00:14.2: [8086:3423] type 00 class 0x080000
[ 0.764321] pci 0000:00:15.0: [8086:342f] type 00 class 0x080020
[ 0.764524] pci 0000:00:1a.0: [8086:3a37] type 00 class 0x0c0300
[ 0.764630] pci 0000:00:1a.0: reg 0x20: [io 0xff00-0xff1f]
[ 0.764866] pci 0000:00:1a.1: [8086:3a38] type 00 class 0x0c0300
[ 0.764972] pci 0000:00:1a.1: reg 0x20: [io 0xfe00-0xfe1f]
[ 0.765231] pci 0000:00:1a.2: [8086:3a39] type 00 class 0x0c0300
[ 0.765337] pci 0000:00:1a.2: reg 0x20: [io 0xfd00-0xfd1f]
[ 0.765582] pci 0000:00:1a.7: [8086:3a3c] type 00 class 0x0c0320
[ 0.765659] pci 0000:00:1a.7: reg 0x10: [mem 0xfbffe000-0xfbffe3ff]
[ 0.765811] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
[ 0.766013] pci 0000:00:1b.0: [8086:3a3e] type 00 class 0x040300
[ 0.766092] pci 0000:00:1b.0: reg 0x10: [mem 0xfbff4000-0xfbff7fff 64bit]
[ 0.766241] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.766451] pci 0000:00:1c.0: [8086:3a40] type 01 class 0x060400
[ 0.766600] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.766819] pci 0000:00:1c.4: [8086:3a48] type 01 class 0x060400
[ 0.766974] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[ 0.767187] pci 0000:00:1d.0: [8086:3a34] type 00 class 0x0c0300
[ 0.767293] pci 0000:00:1d.0: reg 0x20: [io 0xfc00-0xfc1f]
[ 0.767530] pci 0000:00:1d.1: [8086:3a35] type 00 class 0x0c0300
[ 0.767635] pci 0000:00:1d.1: reg 0x20: [io 0xfb00-0xfb1f]
[ 0.767868] pci 0000:00:1d.2: [8086:3a36] type 00 class 0x0c0300
[ 0.767973] pci 0000:00:1d.2: reg 0x20: [io 0xfa00-0xfa1f]
[ 0.768211] pci 0000:00:1d.7: [8086:3a3a] type 00 class 0x0c0320
[ 0.768289] pci 0000:00:1d.7: reg 0x10: [mem 0xfbffd000-0xfbffd3ff]
[ 0.768441] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[ 0.768645] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
[ 0.768906] pci 0000:00:1f.0: [8086:3a16] type 00 class 0x060100
[ 0.769090] pci 0000:00:1f.0: quirk: [io 0x0400-0x047f] claimed by ICH6 ACPI/GPIO/TCO
[ 0.769172] pci 0000:00:1f.0: quirk: [io 0x0580-0x05bf] claimed by ICH6 GPIO
[ 0.769235] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0800 (mask 000f)
[ 0.769315] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 0290 (mask 000f)
[ 0.769553] pci 0000:00:1f.2: [8086:3a22] type 00 class 0x010601
[ 0.769627] pci 0000:00:1f.2: reg 0x10: [io 0xf900-0xf907]
[ 0.769693] pci 0000:00:1f.2: reg 0x14: [io 0xf800-0xf803]
[ 0.769759] pci 0000:00:1f.2: reg 0x18: [io 0xf700-0xf707]
[ 0.769824] pci 0000:00:1f.2: reg 0x1c: [io 0xf600-0xf603]
[ 0.769889] pci 0000:00:1f.2: reg 0x20: [io 0xf500-0xf51f]
[ 0.769955] pci 0000:00:1f.2: reg 0x24: [mem 0xfbffc000-0xfbffc7ff]
[ 0.770063] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.770252] pci 0000:00:1f.3: [8086:3a30] type 00 class 0x0c0500
[ 0.770331] pci 0000:00:1f.3: reg 0x10: [mem 0xfbffb000-0xfbffb0ff 64bit]
[ 0.770413] pci 0000:00:1f.3: reg 0x20: [io 0x0500-0x051f]
[ 0.770671] pci 0000:01:00.0: [1033:0194] type 00 class 0x0c0330
[ 0.770753] pci 0000:01:00.0: reg 0x10: [mem 0xfbcfe000-0xfbcfffff 64bit]
[ 0.770921] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[ 0.781096] pci 0000:00:02.0: PCI bridge to [bus 01]
[ 0.781160] pci 0000:00:02.0: bridge window [mem 0xfbc00000-0xfbcfffff]
[ 0.781286] pci 0000:02:00.0: [10de:10c3] type 00 class 0x030000
[ 0.781358] pci 0000:02:00.0: reg 0x10: [mem 0xf9000000-0xf9ffffff]
[ 0.781429] pci 0000:02:00.0: reg 0x14: [mem 0xd0000000-0xdfffffff 64bit pref]
[ 0.781515] pci 0000:02:00.0: reg 0x1c: [mem 0xee000000-0xefffffff 64bit pref]
[ 0.781598] pci 0000:02:00.0: reg 0x24: [io 0xdf00-0xdf7f]
[ 0.781664] pci 0000:02:00.0: reg 0x30: [mem 0x00000000-0x0007ffff pref]
[ 0.781730] pci 0000:02:00.0: enabling Extended Tags
[ 0.781939] pci 0000:02:00.1: [10de:0be3] type 00 class 0x040300
[ 0.782012] pci 0000:02:00.1: reg 0x10: [mem 0xfaffc000-0xfaffffff]
[ 0.782114] pci 0000:02:00.1: enabling Extended Tags
[ 0.793083] pci 0000:00:03.0: PCI bridge to [bus 02]
[ 0.793144] pci 0000:00:03.0: bridge window [io 0xd000-0xdfff]
[ 0.793206] pci 0000:00:03.0: bridge window [mem 0xf9000000-0xfaffffff]
[ 0.793270] pci 0000:00:03.0: bridge window [mem 0xd0000000-0xefffffff 64bit pref]
[ 0.793403] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 0.793541] pci 0000:04:00.0: [10ec:8168] type 00 class 0x020000
[ 0.793623] pci 0000:04:00.0: reg 0x10: [io 0xee00-0xeeff]
[ 0.793710] pci 0000:04:00.0: reg 0x18: [mem 0xfbdff000-0xfbdfffff 64bit pref]
[ 0.793804] pci 0000:04:00.0: reg 0x20: [mem 0xfbdf8000-0xfbdfbfff 64bit pref]
[ 0.795019] pci 0000:04:00.0: supports D1 D2
[ 0.795077] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.795267] pci 0000:00:1c.4: ASPM: current common clock configuration is inconsistent, reconfiguring
[ 0.805083] pci 0000:00:1c.4: PCI bridge to [bus 04]
[ 0.805144] pci 0000:00:1c.4: bridge window [io 0xe000-0xefff]
[ 0.805210] pci 0000:00:1c.4: bridge window [mem 0xfbd00000-0xfbdfffff 64bit pref]
[ 0.805307] pci_bus 0000:05: extended config space not accessible
[ 0.805406] pci 0000:05:00.0: [8086:107c] type 00 class 0x020000
[ 0.805484] pci 0000:05:00.0: reg 0x10: [mem 0xfbee0000-0xfbefffff]
[ 0.805553] pci 0000:05:00.0: reg 0x14: [mem 0xfbec0000-0xfbedffff]
[ 0.805622] pci 0000:05:00.0: reg 0x18: [io 0xcf00-0xcf3f]
[ 0.805716] pci 0000:05:00.0: reg 0x30: [mem 0x00000000-0x0001ffff pref]
[ 0.805820] pci 0000:05:00.0: PME# supported from D0 D3hot D3cold
[ 0.805980] pci 0000:00:1e.0: PCI bridge to [bus 05] (subtractive decode)
[ 0.806045] pci 0000:00:1e.0: bridge window [io 0xc000-0xcfff]
[ 0.806107] pci 0000:00:1e.0: bridge window [mem 0xfbe00000-0xfbefffff]
[ 0.806173] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7 window] (subtractive decode)
[ 0.806253] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff window] (subtractive decode)
[ 0.806332] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[ 0.806413] pci 0000:00:1e.0: bridge window [mem 0x000c0000-0x000dffff window] (subtractive decode)
[ 0.806494] pci 0000:00:1e.0: bridge window [mem 0xcff00000-0xfebfffff window] (subtractive decode)
[ 0.807180] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 *10 11 12 14 15)
[ 0.807338] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 *12 14 15)
[ 0.807492] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 *7 9 10 11 12 14 15)
[ 0.807647] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)
[ 0.807801] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[ 0.807959] ACPI: PCI Interrupt Link [LNKF] (IRQs *3 4 5 6 7 9 10 11 12 14 15)
[ 0.808113] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 9 10 11 12 *14 15)
[ 0.808267] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 *5 6 7 9 10 11 12 14 15)
[ 0.808567] iommu: Default domain type: Translated
[ 0.809093] pci 0000:02:00.0: vgaarb: setting as boot VGA device
[ 0.809136] pci 0000:02:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.809216] pci 0000:02:00.0: vgaarb: bridge control possible
[ 0.809274] vgaarb: loaded
[ 0.809274] EDAC MC: Ver: 3.0.0
[ 0.809304] NetLabel: Initializing
[ 0.809360] NetLabel: domain hash size = 128
[ 0.809415] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.809499] NetLabel: unlabeled traffic allowed by default
[ 0.809559] PCI: Using ACPI for IRQ routing
[ 0.811203] PCI: Discovered peer bus 3f
[ 0.811258] PCI: root bus 3f: using default resources
[ 0.811260] PCI: Probing PCI hardware (bus 3f)
[ 0.811296] PCI host bridge to bus 0000:3f
[ 0.811354] pci_bus 0000:3f: root bus resource [io 0x0000-0xffff]
[ 0.811415] pci_bus 0000:3f: root bus resource [mem 0x00000000-0xfffffffff]
[ 0.811477] pci_bus 0000:3f: No busn resource found for root bus, will use [bus 3f-ff]
[ 0.811556] pci_bus 0000:3f: busn_res: can not insert [bus 3f-ff] under domain [bus 00-ff] (conflicts with (null) [bus 00-3f])
[ 0.811648] pci 0000:3f:00.0: [8086:2c41] type 00 class 0x060000
[ 0.811775] pci 0000:3f:00.1: [8086:2c01] type 00 class 0x060000
[ 0.811903] pci 0000:3f:02.0: [8086:2c10] type 00 class 0x060000
[ 0.812025] pci 0000:3f:02.1: [8086:2c11] type 00 class 0x060000
[ 0.812149] pci 0000:3f:03.0: [8086:2c18] type 00 class 0x060000
[ 0.812282] pci 0000:3f:03.1: [8086:2c19] type 00 class 0x060000
[ 0.812406] pci 0000:3f:03.4: [8086:2c1c] type 00 class 0x060000
[ 0.812530] pci 0000:3f:04.0: [8086:2c20] type 00 class 0x060000
[ 0.812651] pci 0000:3f:04.1: [8086:2c21] type 00 class 0x060000
[ 0.813104] pci 0000:3f:04.2: [8086:2c22] type 00 class 0x060000
[ 0.813226] pci 0000:3f:04.3: [8086:2c23] type 00 class 0x060000
[ 0.813356] pci 0000:3f:05.0: [8086:2c28] type 00 class 0x060000
[ 0.813482] pci 0000:3f:05.1: [8086:2c29] type 00 class 0x060000
[ 0.813610] pci 0000:3f:05.2: [8086:2c2a] type 00 class 0x060000
[ 0.813732] pci 0000:3f:05.3: [8086:2c2b] type 00 class 0x060000
[ 0.813857] pci 0000:3f:06.0: [8086:2c30] type 00 class 0x060000
[ 0.813978] pci 0000:3f:06.1: [8086:2c31] type 00 class 0x060000
[ 0.814100] pci 0000:3f:06.2: [8086:2c32] type 00 class 0x060000
[ 0.814226] pci 0000:3f:06.3: [8086:2c33] type 00 class 0x060000
[ 0.814363] pci_bus 0000:3f: busn_res: [bus 3f-ff] end is updated to 3f
[ 0.814426] pci_bus 0000:3f: busn_res: can not insert [bus 3f] under domain [bus 00-ff] (conflicts with (null) [bus 00-3f])
[ 0.814518] PCI: pci_cache_line_size set to 64 bytes
[ 0.814616] e820: reserve RAM buffer [mem 0x0009dc00-0x0009ffff]
[ 0.814618] e820: reserve RAM buffer [mem 0xcfed0000-0xcfffffff]
[ 0.817294] hpet: 4 channels of 0 reserved for per-cpu timers
[ 0.817359] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[ 0.817421] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
[ 0.819536] clocksource: Switched to clocksource tsc-early
[ 0.838163] VFS: Disk quotas dquot_6.6.0
[ 0.838261] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.838542] AppArmor: AppArmor Filesystem Enabled
[ 0.838632] pnp: PnP ACPI init
[ 0.838924] system 00:00: [io 0x04d0-0x04d1] has been reserved
[ 0.838986] system 00:00: [io 0x0290-0x029f] has been reserved
[ 0.839046] system 00:00: [io 0x0800-0x087f] has been reserved
[ 0.839106] system 00:00: [io 0x0290-0x0294] has been reserved
[ 0.839166] system 00:00: [io 0x0880-0x088f] has been reserved
[ 0.839234] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.839330] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.839485] pnp 00:02: [dma 2]
[ 0.839530] pnp 00:02: Plug and Play ACPI device, IDs PNP0700 (active)
[ 0.839684] system 00:03: [io 0x0400-0x047f] has been reserved
[ 0.839747] system 00:03: [io 0x0580-0x05ff] could not be reserved
[ 0.839813] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.840107] system 00:04: [mem 0xf4000000-0xf7ffffff] has been reserved
[ 0.840175] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.840432] system 00:05: [mem 0x000f0000-0x000f3fff] could not be reserved
[ 0.840496] system 00:05: [mem 0x000f4000-0x000f7fff] could not be reserved
[ 0.840559] system 00:05: [mem 0x000f8000-0x000fbfff] could not be reserved
[ 0.840621] system 00:05: [mem 0x000fc000-0x000fffff] could not be reserved
[ 0.840683] system 00:05: [mem 0xcfed0000-0xcfedffff] could not be reserved
[ 0.840746] system 00:05: [mem 0x00000000-0x0009ffff] could not be reserved
[ 0.840808] system 00:05: [mem 0x00100000-0xcfecffff] could not be reserved
[ 0.840870] system 00:05: [mem 0xcfee0000-0xcfefffff] has been reserved
[ 0.840932] system 00:05: [mem 0xfec00000-0xfec00fff] could not be reserved
[ 0.840994] system 00:05: [mem 0xfed10000-0xfed1dfff] has been reserved
[ 0.841056] system 00:05: [mem 0xfed20000-0xfed8ffff] has been reserved
[ 0.841117] system 00:05: [mem 0xfee00000-0xfee00fff] has been reserved
[ 0.841179] system 00:05: [mem 0xffb00000-0xffb7ffff] has been reserved
[ 0.841240] system 00:05: [mem 0xfff00000-0xffffffff] has been reserved
[ 0.841301] system 00:05: [mem 0x000e0000-0x000effff] has been reserved
[ 0.841368] system 00:05: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 0.841376] pnp: PnP ACPI: found 6 devices
[ 0.848293] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.848514] NET: Registered protocol family 2
[ 0.848872] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.852548] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[ 0.852992] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.853759] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[ 0.854027] TCP: Hash tables configured (established 262144 bind 65536)
[ 0.854222] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[ 0.854477] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[ 0.854819] NET: Registered protocol family 1
[ 0.854884] NET: Registered protocol family 44
[ 0.854958] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 03] add_size 1000
[ 0.855039] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[ 0.855125] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 03] add_size 200000 add_align 100000
[ 0.855210] pci 0000:00:1c.4: bridge window [mem 0x00100000-0x000fffff] to [bus 04] add_size 200000 add_align 100000
[ 0.855314] pci 0000:00:1c.0: BAR 14: assigned [mem 0xf0000000-0xf01fffff]
[ 0.855381] pci 0000:00:1c.0: BAR 15: assigned [mem 0xf0200000-0xf03fffff 64bit pref]
[ 0.855460] pci 0000:00:1c.4: BAR 14: assigned [mem 0xf0400000-0xf05fffff]
[ 0.855524] pci 0000:00:1c.0: BAR 13: assigned [io 0x1000-0x1fff]
[ 0.855586] pci 0000:00:02.0: PCI bridge to [bus 01]
[ 0.855647] pci 0000:00:02.0: bridge window [mem 0xfbc00000-0xfbcfffff]
[ 0.855715] pci 0000:02:00.0: BAR 6: assigned [mem 0xfa000000-0xfa07ffff pref]
[ 0.855793] pci 0000:00:03.0: PCI bridge to [bus 02]
[ 0.855851] pci 0000:00:03.0: bridge window [io 0xd000-0xdfff]
[ 0.855914] pci 0000:00:03.0: bridge window [mem 0xf9000000-0xfaffffff]
[ 0.855977] pci 0000:00:03.0: bridge window [mem 0xd0000000-0xefffffff 64bit pref]
[ 0.856059] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 0.856117] pci 0000:00:1c.0: bridge window [io 0x1000-0x1fff]
[ 0.856180] pci 0000:00:1c.0: bridge window [mem 0xf0000000-0xf01fffff]
[ 0.856243] pci 0000:00:1c.0: bridge window [mem 0xf0200000-0xf03fffff 64bit pref]
[ 0.856325] pci 0000:00:1c.4: PCI bridge to [bus 04]
[ 0.856383] pci 0000:00:1c.4: bridge window [io 0xe000-0xefff]
[ 0.856446] pci 0000:00:1c.4: bridge window [mem 0xf0400000-0xf05fffff]
[ 0.856509] pci 0000:00:1c.4: bridge window [mem 0xfbd00000-0xfbdfffff 64bit pref]
[ 0.856592] pci 0000:05:00.0: BAR 6: assigned [mem 0xfbe00000-0xfbe1ffff pref]
[ 0.856669] pci 0000:00:1e.0: PCI bridge to [bus 05]
[ 0.856727] pci 0000:00:1e.0: bridge window [io 0xc000-0xcfff]
[ 0.856790] pci 0000:00:1e.0: bridge window [mem 0xfbe00000-0xfbefffff]
[ 0.856858] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.856918] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.856978] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.857040] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff window]
[ 0.857101] pci_bus 0000:00: resource 8 [mem 0xcff00000-0xfebfffff window]
[ 0.857163] pci_bus 0000:01: resource 1 [mem 0xfbc00000-0xfbcfffff]
[ 0.857224] pci_bus 0000:02: resource 0 [io 0xd000-0xdfff]
[ 0.857282] pci_bus 0000:02: resource 1 [mem 0xf9000000-0xfaffffff]
[ 0.858369] pci_bus 0000:02: resource 2 [mem 0xd0000000-0xefffffff 64bit pref]
[ 0.858446] pci_bus 0000:03: resource 0 [io 0x1000-0x1fff]
[ 0.858505] pci_bus 0000:03: resource 1 [mem 0xf0000000-0xf01fffff]
[ 0.858565] pci_bus 0000:03: resource 2 [mem 0xf0200000-0xf03fffff 64bit pref]
[ 0.858647] pci_bus 0000:04: resource 0 [io 0xe000-0xefff]
[ 0.858706] pci_bus 0000:04: resource 1 [mem 0xf0400000-0xf05fffff]
[ 0.858766] pci_bus 0000:04: resource 2 [mem 0xfbd00000-0xfbdfffff 64bit pref]
[ 0.858843] pci_bus 0000:05: resource 0 [io 0xc000-0xcfff]
[ 0.858902] pci_bus 0000:05: resource 1 [mem 0xfbe00000-0xfbefffff]
[ 0.858962] pci_bus 0000:05: resource 4 [io 0x0000-0x0cf7 window]
[ 0.859022] pci_bus 0000:05: resource 5 [io 0x0d00-0xffff window]
[ 0.859082] pci_bus 0000:05: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.859144] pci_bus 0000:05: resource 7 [mem 0x000c0000-0x000dffff window]
[ 0.859205] pci_bus 0000:05: resource 8 [mem 0xcff00000-0xfebfffff window]
[ 0.859329] pci_bus 0000:3f: resource 4 [io 0x0000-0xffff]
[ 0.859389] pci_bus 0000:3f: resource 5 [mem 0x00000000-0xfffffffff]
[ 0.878722] pci 0000:00:1a.7: quirk_usb_early_handoff+0x0/0x710 took 17986 usecs
[ 0.898713] pci 0000:00:1d.7: quirk_usb_early_handoff+0x0/0x710 took 18709 usecs
[ 0.899178] pci 0000:02:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.899300] pci 0000:02:00.1: D0 power state depends on 0000:02:00.0
[ 0.899427] PCI: CLS 64 bytes, default 64
[ 0.899593] Trying to unpack rootfs image as initramfs...
[ 1.906809] Freeing initrd memory: 41996K
[ 1.907053] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 1.907116] software IO TLB: mapped [mem 0x00000000cbed0000-0x00000000cfed0000] (64MB)
[ 1.908171] Initialise system trusted keyrings
[ 1.908257] Key type blacklist registered
[ 1.908384] workingset: timestamp_bits=36 max_order=23 bucket_order=0
[ 1.910748] zbud: loaded
[ 1.911115] integrity: Platform Keyring initialized
[ 1.911177] Key type asymmetric registered
[ 1.911233] Asymmetric key parser 'x509' registered
[ 1.911300] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[ 1.911435] io scheduler mq-deadline registered
[ 1.912818] pcieport 0000:00:1c.0: enabling device (0000 -> 0003)
[ 1.913352] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 1.913432] intel_idle: MWAIT substates: 0x1120
[ 1.913445] intel_idle: ACPI _CST not found or not usable
[ 1.913446] intel_idle: v0.5.1 model 0x1A
[ 1.913805] intel_idle: Local APIC timer is reliable in C1
[ 1.916546] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 1.917777] Linux agpgart interface v0.103
[ 1.917928] AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
[ 1.918664] i8042: PNP: No PS/2 controller found.
[ 1.918722] i8042: Probing ports directly.
[ 1.951410] i8042: Failed to disable AUX port, but continuing anyway... Is this a SiS?
[ 1.951489] i8042: If AUX port is really absent please use the 'i8042.noaux' option
[ 2.221296] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 2.221820] mousedev: PS/2 mouse device common for all mice
[ 2.221940] rtc_cmos 00:01: RTC can wake from S4
[ 2.222434] rtc_cmos 00:01: registered as rtc0
[ 2.222608] rtc_cmos 00:01: setting system clock to 2023-06-28T01:20:25 UTC (1687915225)
[ 2.222741] rtc_cmos 00:01: alarms up to one month, 242 bytes nvram, hpet irqs
[ 2.222830] intel_pstate: CPU model not supported
[ 2.223365] ledtrig-cpu: registered to indicate activity on CPUs
[ 2.223971] NET: Registered protocol family 10
[ 2.238172] Segment Routing with IPv6
[ 2.238271] mip6: Mobile IPv6
[ 2.238327] NET: Registered protocol family 17
[ 2.238650] mpls_gso: MPLS GSO support
[ 2.239493] microcode: sig=0x106a5, pf=0x2, revision=0x1d
[ 2.239636] microcode: Microcode Update Driver: v2.2.
[ 2.239641] IPI shorthand broadcast: enabled
[ 2.239775] sched_clock: Marking stable (2227036622, 12275957)->(2248128561, -8815982)
[ 2.240118] registered taskstats version 1
[ 2.240179] Loading compiled-in X.509 certificates
[ 2.314217] Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
[ 2.314328] Loaded X.509 cert 'Debian Secure Boot Signer 2022 - linux: 14011249c2675ea8e5148542202005810584b25f'
[ 2.314450] zswap: loaded using pool lzo/zbud
[ 2.315285] Key type .fscrypt registered
[ 2.315344] Key type fscrypt-provisioning registered
[ 2.315488] AppArmor: AppArmor sha1 policy hashing enabled
[ 2.317713] Freeing unused decrypted memory: 2036K
[ 2.318534] Freeing unused kernel image (initmem) memory: 2668K
[ 2.345212] Write protecting the kernel read-only data: 22528k
[ 2.346304] Freeing unused kernel image (text/rodata gap) memory: 2040K
[ 2.346733] Freeing unused kernel image (rodata/data gap) memory: 624K
[ 2.438123] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 2.438271] x86/mm: Checking user space page tables
[ 2.524065] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 2.524134] Run /init as init process
[ 2.524190] with arguments:
[ 2.524191] /init
[ 2.524192] kaslr
[ 2.524193] with environment:
[ 2.524195] HOME=/
[ 2.524196] TERM=linux
[ 2.524197] BOOT_IMAGE=/vmlinuz-5.10.0-23-amd64
[ 2.547892] process '/usr/libexec/rnd_jytter' started with executable stack
[ 2.687796] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[ 2.708576] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x000000000000042C-0x000000000000042D (\GP2C) (20200925/utaddress-204)
[ 2.708695] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 2.708819] lpc_ich: Resource conflict(s) found affecting gpio_ich
[ 2.709380] ACPI: bus type USB registered
[ 2.709473] usbcore: registered new interface driver usbfs
[ 2.709545] usbcore: registered new interface driver hub
[ 2.709624] usbcore: registered new device driver usb
[ 2.718766] r8169 0000:04:00.0: can't disable ASPM; OS doesn't have ASPM control
[ 2.722191] e1000: Intel(R) PRO/1000 Network Driver
[ 2.722252] e1000: Copyright (c) 1999-2006 Intel Corporation.
[ 2.727137] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 2.734377] xhci_hcd 0000:01:00.0: xHCI Host Controller
[ 2.734454] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 1
[ 2.734633] xhci_hcd 0000:01:00.0: hcc params 0x014042cb hci version 0x96 quirks 0x0000000000000004
[ 2.735020] xhci_hcd 0000:01:00.0: xHCI Host Controller
[ 2.735083] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 2
[ 2.735163] xhci_hcd 0000:01:00.0: Host supports USB 3.0 SuperSpeed
[ 2.739873] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[ 2.739956] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.740034] usb usb1: Product: xHCI Host Controller
[ 2.740091] usb usb1: Manufacturer: Linux 5.10.0-23-amd64 xhci-hcd
[ 2.740151] usb usb1: SerialNumber: 0000:01:00.0
[ 2.741040] uhci_hcd: USB Universal Host Controller Interface driver
[ 2.741288] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[ 2.741407] hub 1-0:1.0: USB hub found
[ 2.742360] hub 1-0:1.0: 2 ports detected
[ 2.744916] ehci-pci: EHCI PCI platform driver
[ 2.745465] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[ 2.745590] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[ 2.745670] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.745747] usb usb2: Product: xHCI Host Controller
[ 2.745805] usb usb2: Manufacturer: Linux 5.10.0-23-amd64 xhci-hcd
[ 2.745865] usb usb2: SerialNumber: 0000:01:00.0
[ 2.746077] hub 2-0:1.0: USB hub found
[ 2.746145] hub 2-0:1.0: 2 ports detected
[ 2.746616] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
[ 2.746703] uhci_hcd 0000:00:1a.0: detected 2 ports
[ 2.746800] uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000ff00
[ 2.747025] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10
[ 2.747107] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.747184] usb usb3: Product: UHCI Host Controller
[ 2.747242] usb usb3: Manufacturer: Linux 5.10.0-23-amd64 uhci_hcd
[ 2.747302] usb usb3: SerialNumber: 0000:00:1a.0
[ 2.747516] hub 3-0:1.0: USB hub found
[ 2.747583] hub 3-0:1.0: 2 ports detected
[ 2.748138] ehci-pci 0000:00:1a.7: EHCI Host Controller
[ 2.748205] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 4
[ 2.748293] ehci-pci 0000:00:1a.7: debug port 1
[ 2.752247] ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
[ 2.752375] ehci-pci 0000:00:1a.7: irq 18, io mem 0xfbffe000
[ 2.753100] r8169 0000:04:00.0 eth0: RTL8168e/8111e, 1c:6f:65:c4:c8:c2, XID 2c2, IRQ 26
[ 2.753182] r8169 0000:04:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[ 2.758853] SCSI subsystem initialized
[ 2.765077] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[ 2.765223] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[ 2.765304] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.765381] usb usb4: Product: EHCI Host Controller
[ 2.765439] usb usb4: Manufacturer: Linux 5.10.0-23-amd64 ehci_hcd
[ 2.765499] usb usb4: SerialNumber: 0000:00:1a.7
[ 2.765724] hub 4-0:1.0: USB hub found
[ 2.765792] hub 4-0:1.0: 6 ports detected
[ 2.782179] libata version 3.00 loaded.
[ 2.789805] ahci 0000:00:1f.2: version 3.0
[ 2.790056] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[ 2.791192] ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
[ 2.791273] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pmp pio slum part ccc ems
[ 2.793155] hub 3-0:1.0: USB hub found
[ 2.793232] hub 3-0:1.0: 2 ports detected
[ 2.796477] uhci_hcd 0000:00:1a.1: UHCI Host Controller
[ 2.796545] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 5
[ 2.796629] uhci_hcd 0000:00:1a.1: detected 2 ports
[ 2.796717] uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000fe00
[ 2.797003] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10
[ 2.797106] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.797184] usb usb5: Product: UHCI Host Controller
[ 2.797241] usb usb5: Manufacturer: Linux 5.10.0-23-amd64 uhci_hcd
[ 2.797302] usb usb5: SerialNumber: 0000:00:1a.1
[ 2.800307] hub 5-0:1.0: USB hub found
[ 2.800430] hub 5-0:1.0: 2 ports detected
[ 2.800690] ehci-pci 0000:00:1d.7: EHCI Host Controller
[ 2.800758] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 6
[ 2.800849] ehci-pci 0000:00:1d.7: debug port 1
[ 2.804799] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
[ 2.804876] ehci-pci 0000:00:1d.7: irq 23, io mem 0xfbffd000
[ 2.805379] r8169 0000:04:00.0 rl0: renamed from eth0
[ 2.817228] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 2.817941] usb usb6: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[ 2.818025] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.818102] usb usb6: Product: EHCI Host Controller
[ 2.818160] usb usb6: Manufacturer: Linux 5.10.0-23-amd64 ehci_hcd
[ 2.818220] usb usb6: SerialNumber: 0000:00:1d.7
[ 2.818644] hub 6-0:1.0: USB hub found
[ 2.818715] hub 6-0:1.0: 6 ports detected
[ 2.819030] uhci_hcd 0000:00:1a.2: UHCI Host Controller
[ 2.819099] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 7
[ 2.819185] uhci_hcd 0000:00:1a.2: detected 2 ports
[ 2.819269] uhci_hcd 0000:00:1a.2: irq 18, io base 0x0000fd00
[ 2.819494] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10
[ 2.819576] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.819653] usb usb7: Product: UHCI Host Controller
[ 2.819710] usb usb7: Manufacturer: Linux 5.10.0-23-amd64 uhci_hcd
[ 2.819771] usb usb7: SerialNumber: 0000:00:1a.2
[ 2.819992] hub 7-0:1.0: USB hub found
[ 2.820121] hub 7-0:1.0: 2 ports detected
[ 2.820595] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 2.820661] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 8
[ 2.820744] uhci_hcd 0000:00:1d.0: detected 2 ports
[ 2.820819] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000fc00
[ 2.820970] usb usb8: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10
[ 2.821051] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.821137] usb usb8: Product: UHCI Host Controller
[ 2.821195] usb usb8: Manufacturer: Linux 5.10.0-23-amd64 uhci_hcd
[ 2.821256] usb usb8: SerialNumber: 0000:00:1d.0
[ 2.821488] hub 8-0:1.0: USB hub found
[ 2.821557] hub 8-0:1.0: 2 ports detected
[ 2.821941] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[ 2.822007] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 9
[ 2.822090] uhci_hcd 0000:00:1d.1: detected 2 ports
[ 2.822175] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000fb00
[ 2.822318] usb usb9: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10
[ 2.822401] usb usb9: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.822478] usb usb9: Product: UHCI Host Controller
[ 2.822535] usb usb9: Manufacturer: Linux 5.10.0-23-amd64 uhci_hcd
[ 2.822596] usb usb9: SerialNumber: 0000:00:1d.1
[ 2.822920] hub 9-0:1.0: USB hub found
[ 2.822988] hub 9-0:1.0: 2 ports detected
[ 2.823389] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[ 2.823455] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 10
[ 2.823538] uhci_hcd 0000:00:1d.2: detected 2 ports
[ 2.823613] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000fa00
[ 2.823758] usb usb10: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10
[ 2.823839] usb usb10: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.823916] usb usb10: Product: UHCI Host Controller
[ 2.823973] usb usb10: Manufacturer: Linux 5.10.0-23-amd64 uhci_hcd
[ 2.824034] usb usb10: SerialNumber: 0000:00:1d.2
[ 2.824347] hub 10-0:1.0: USB hub found
[ 2.824415] hub 10-0:1.0: 2 ports detected
[ 2.850238] scsi host0: ahci
[ 2.850585] scsi host1: ahci
[ 2.850866] scsi host2: ahci
[ 2.853233] scsi host3: ahci
[ 2.853692] scsi host4: ahci
[ 2.854076] scsi host5: ahci
[ 2.854225] ata1: SATA max UDMA/133 abar m2048@0xfbffc000 port 0xfbffc100 irq 32
[ 2.854304] ata2: SATA max UDMA/133 abar m2048@0xfbffc000 port 0xfbffc180 irq 32
[ 2.854382] ata3: SATA max UDMA/133 abar m2048@0xfbffc000 port 0xfbffc200 irq 32
[ 2.854460] ata4: SATA max UDMA/133 abar m2048@0xfbffc000 port 0xfbffc280 irq 32
[ 2.854537] ata5: SATA max UDMA/133 abar m2048@0xfbffc000 port 0xfbffc300 irq 32
[ 2.854616] ata6: SATA max UDMA/133 abar m2048@0xfbffc000 port 0xfbffc380 irq 32
[ 2.925197] tsc: Refined TSC clocksource calibration: 3064.488 MHz
[ 2.925266] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2c2c3ca10b8, max_idle_ns: 440795252656 ns
[ 2.926909] clocksource: Switched to clocksource tsc
[ 3.209197] usb 8-1: new low-speed USB device number 2 using uhci_hcd
[ 3.223380] e1000 0000:05:00.0 eth0: (PCI:33MHz:32-bit) 00:1b:21:62:25:77
[ 3.223448] e1000 0000:05:00.0 eth0: Intel(R) PRO/1000 Network Connection
[ 3.329086] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 3.335004] ata1.00: ATA-8: SAMSUNG HD502HJ, 1AJ10001, max UDMA/133
[ 3.335068] ata1.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 32), AA
[ 3.341244] ata1.00: configured for UDMA/133
[ 3.341726] scsi 0:0:0:0: Direct-Access ATA SAMSUNG HD502HJ 0001 PQ: 0 ANSI: 5
[ 3.417273] usb 8-1: New USB device found, idVendor=17ef, idProduct=6009, bcdDevice= 1.27
[ 3.417356] usb 8-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3.417419] usb 8-1: Product: ThinkPad USB Keyboard with TrackPoint
[ 3.417479] usb 8-1: Manufacturer: Lite-On Technology Corp.
[ 3.431871] hid: raw HID events driver (C) Jiri Kosina
[ 3.817192] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 3.818624] ata2.00: ATA-8: ST3500418AS, CC46, max UDMA/133
[ 3.818687] ata2.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 32)
[ 3.820360] ata2.00: configured for UDMA/133
[ 3.820728] scsi 1:0:0:0: Direct-Access ATA ST3500418AS CC46 PQ: 0 ANSI: 5
[ 4.301148] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 4.302531] ata3.00: ATA-8: Hitachi HUA722050CLA330, JP2OA3EA, max UDMA/133
[ 4.302597] ata3.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 32), AA
[ 4.304152] ata3.00: configured for UDMA/133
[ 4.304541] scsi 2:0:0:0: Direct-Access ATA Hitachi HUA72205 A3EA PQ: 0 ANSI: 5
[ 4.781209] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 4.782493] ata4.00: ATA-8: WDC WD3200AAKS-75B3A0, 01.03A01, max UDMA/133
[ 4.782558] ata4.00: 625142448 sectors, multi 0: LBA48 NCQ (depth 32), AA
[ 4.784675] ata4.00: configured for UDMA/133
[ 4.785179] scsi 3:0:0:0: Direct-Access ATA WDC WD3200AAKS-7 3A01 PQ: 0 ANSI: 5
[ 5.097078] ata5: SATA link down (SStatus 0 SControl 300)
[ 5.577164] ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 5.583125] ata6.00: ATA-8: SAMSUNG HD502HJ, 1AJ10001, max UDMA/133
[ 5.583193] ata6.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 32), AA
[ 5.589244] ata6.00: configured for UDMA/133
[ 5.589693] scsi 5:0:0:0: Direct-Access ATA SAMSUNG HD502HJ 0001 PQ: 0 ANSI: 5
[ 5.592669] e1000 0000:05:00.0 em0: renamed from eth0
[ 5.607218] sd 2:0:0:0: [sdc] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[ 5.607367] sd 1:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[ 5.607398] sd 5:0:0:0: [sde] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[ 5.607458] sd 2:0:0:0: [sdc] Write Protect is off
[ 5.607547] sd 5:0:0:0: [sde] Write Protect is off
[ 5.607562] sd 3:0:0:0: [sdd] 625142448 512-byte logical blocks: (320 GB/298 GiB)
[ 5.607575] sd 3:0:0:0: [sdd] Write Protect is off
[ 5.607577] sd 3:0:0:0: [sdd] Mode Sense: 00 3a 00 00
[ 5.607581] sd 2:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[ 5.607602] sd 3:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 5.607640] sd 5:0:0:0: [sde] Mode Sense: 00 3a 00 00
[ 5.607692] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[ 5.607706] sd 0:0:0:0: [sda] Write Protect is off
[ 5.607708] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 5.607727] sd 1:0:0:0: [sdb] Write Protect is off
[ 5.607731] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 5.607825] sd 5:0:0:0: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 5.607852] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 5.608279] sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 5.608351] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 5.635677] sdc: sdc1 sdc2
[ 5.637958] sde: sde1 sde2
[ 5.638713] sda: sda1 sda2
[ 5.646472] sdd: sdd1 sdd2
[ 5.647356] usbcore: registered new interface driver usbhid
[ 5.647418] usbhid: USB HID core driver
[ 5.649341] sdb: sdb1 sdb2
[ 5.653487] sd 5:0:0:0: [sde] Attached SCSI disk
[ 5.653511] sd 0:0:0:0: [sda] Attached SCSI disk
[ 5.653726] sd 2:0:0:0: [sdc] Attached SCSI disk
[ 5.665798] sd 3:0:0:0: [sdd] Attached SCSI disk
[ 5.665981] sd 1:0:0:0: [sdb] Attached SCSI disk
[ 5.671136] input: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint as /devices/pci0000:00/0000:00:1d.0/usb8/8-1/8-1:1.0/0003:17EF:6009.0001/input/input1
[ 5.729530] lenovo 0003:17EF:6009.0001: input,hidraw0: USB HID v1.10 Keyboard [Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint] on usb-0000:00:1d.0-1/input0
[ 5.729986] input: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint as /devices/pci0000:00/0000:00:1d.0/usb8/8-1/8-1:1.1/0003:17EF:6009.0002/input/input2
[ 5.789348] lenovo 0003:17EF:6009.0002: input,hiddev0,hidraw1: USB HID v1.10 Mouse [Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint] on usb-0000:00:1d.0-1/input1
[ 5.951798] md: kicking non-fresh sdc2 from array!
[ 5.955268] md/raid1:md1: active with 4 out of 4 mirrors
[ 5.981506] md1: detected capacity change from 0 to 4291821568
[ 6.053215] raid6: sse2x4 gen() 5293 MB/s
[ 6.121253] raid6: sse2x4 xor() 3521 MB/s
[ 6.189236] raid6: sse2x2 gen() 5847 MB/s
[ 6.257252] raid6: sse2x2 xor() 3593 MB/s
[ 6.325236] raid6: sse2x1 gen() 4794 MB/s
[ 6.393252] raid6: sse2x1 xor() 2996 MB/s
[ 6.393309] raid6: using algorithm sse2x2 gen() 5847 MB/s
[ 6.393366] raid6: .... xor() 3593 MB/s, rmw enabled
[ 6.393424] raid6: using ssse3x2 recovery algorithm
[ 6.395317] xor: measuring software checksum speed
[ 6.396638] prefetch64-sse : 7804 MB/sec
[ 6.398176] generic_sse : 6750 MB/sec
[ 6.398233] xor: using function: prefetch64-sse (7804 MB/sec)
[ 6.399607] async_tx: api initialized (async)
[ 6.420344] md/raid:md5: device sdb2 operational as raid disk 1
[ 6.420407] md/raid:md5: device sda2 operational as raid disk 2
[ 6.420466] md/raid:md5: device sde2 operational as raid disk 3
[ 6.420525] md/raid:md5: device sdd2 operational as raid disk 0
[ 6.422053] md/raid:md5: raid level 6 active with 4 out of 5 devices, algorithm 2
[ 6.430257] random: crng init done
[ 6.432876] md5: detected capacity change from 0 to 946931171328
[ 6.587199] device-mapper: uevent: version 1.0.3
[ 6.587433] device-mapper: ioctl: 4.43.0-ioctl (2020-10-01) initialised: dm-devel@redhat.com
[ 7.562991] tun: Universal TUN/TAP device driver, 1.6
[ 13.142916] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null)
[ 13.648365] Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
[ 18.434262] EDAC MC0: Giving out device to module i7core_edac.c controller i7 core #0: DEV 0000:3f:03.0 (INTERRUPT)
[ 18.434389] EDAC PCI0: Giving out device to module i7core_edac controller EDAC PCI controller: DEV 0000:3f:03.0 (POLLED)
[ 18.434492] EDAC i7core: Driver loaded, 1 memory controller(s) found.
[ 18.477634] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
[ 18.477759] ACPI: Power Button [PWRB]
[ 18.477907] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
[ 18.493123] ACPI: Power Button [PWRF]
[ 18.718807] iTCO_vendor_support: vendor-support=0
[ 18.739026] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 18.739140] sd 1:0:0:0: Attached scsi generic sg1 type 0
[ 18.739249] sd 2:0:0:0: Attached scsi generic sg2 type 0
[ 18.739352] sd 3:0:0:0: Attached scsi generic sg3 type 0
[ 18.739457] sd 5:0:0:0: Attached scsi generic sg4 type 0
[ 18.842071] input: PC Speaker as /devices/platform/pcspkr/input/input5
[ 18.874859] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[ 18.874973] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[ 20.677482] kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL does not work properly. Using workaround
[ 21.123029] MXM: GUID detected in BIOS
[ 21.123543] nouveau 0000:02:00.0: vgaarb: deactivate vga console
[ 21.124655] Console: switching to colour dummy device 80x25
[ 21.124980] nouveau 0000:02:00.0: NVIDIA GT218 (0a8180b1)
[ 21.248215] nouveau 0000:02:00.0: bios: version 70.18.5f.00.00
[ 21.248981] nouveau 0000:02:00.0: fb: 512 MiB DDR3
[ 21.248992] nouveau 0000:02:00.0: fb: memory controller reports 512 MiB VRAM
[ 21.282835] snd_hda_intel 0000:02:00.1: Disabling MSI
[ 21.282854] snd_hda_intel 0000:02:00.1: Handle vga_switcheroo audio client
[ 21.335094] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/0000:02:00.1/sound/card1/input6
[ 21.335209] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/0000:02:00.1/sound/card1/input7
[ 21.335619] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/0000:02:00.1/sound/card1/input8
[ 21.335709] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.0/0000:02:00.1/sound/card1/input9
[ 21.413274] snd_hda_codec_realtek hdaudioC0D2: autoconfig for ALC892: line_outs=4 (0x14/0x15/0x16/0x17/0x0) type:line
[ 21.413287] snd_hda_codec_realtek hdaudioC0D2: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 21.413293] snd_hda_codec_realtek hdaudioC0D2: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[ 21.413299] snd_hda_codec_realtek hdaudioC0D2: mono: mono_out=0x0
[ 21.413303] snd_hda_codec_realtek hdaudioC0D2: dig-out=0x11/0x1e
[ 21.413307] snd_hda_codec_realtek hdaudioC0D2: inputs:
[ 21.413313] snd_hda_codec_realtek hdaudioC0D2: Front Mic=0x19
[ 21.413318] snd_hda_codec_realtek hdaudioC0D2: Rear Mic=0x18
[ 21.413322] snd_hda_codec_realtek hdaudioC0D2: Line=0x1a
[ 21.413327] snd_hda_codec_realtek hdaudioC0D2: dig-in=0x1f
[ 21.434424] input: HDA Intel Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[ 21.434682] input: HDA Intel Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[ 21.434979] input: HDA Intel Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[ 21.435988] input: HDA Intel Line Out Front as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[ 21.437961] input: HDA Intel Line Out Surround as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
[ 21.440142] input: HDA Intel Line Out CLFE as /devices/pci0000:00/0000:00:1b.0/sound/card0/input15
[ 21.440431] input: HDA Intel Line Out Side as /devices/pci0000:00/0000:00:1b.0/sound/card0/input16
[ 21.441601] input: HDA Intel Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input17
[ 22.597357] [TTM] Zone kernel: Available graphics memory: 12304840 KiB
[ 22.597368] [TTM] Zone dma32: Available graphics memory: 2097152 KiB
[ 22.597372] [TTM] Initializing pool allocator
[ 22.597381] [TTM] Initializing DMA pool allocator
[ 22.597407] nouveau 0000:02:00.0: DRM: VRAM: 512 MiB
[ 22.597413] nouveau 0000:02:00.0: DRM: GART: 1048576 MiB
[ 22.597420] nouveau 0000:02:00.0: DRM: TMDS table version 2.0
[ 22.597425] nouveau 0000:02:00.0: DRM: DCB version 4.0
[ 22.597431] nouveau 0000:02:00.0: DRM: DCB outp 00: 01000302 00020030
[ 22.597436] nouveau 0000:02:00.0: DRM: DCB outp 01: 02000300 00000000
[ 22.597441] nouveau 0000:02:00.0: DRM: DCB outp 02: 02011362 00020010
[ 22.597446] nouveau 0000:02:00.0: DRM: DCB outp 03: 01022310 00000000
[ 22.597451] nouveau 0000:02:00.0: DRM: DCB conn 00: 00001030
[ 22.597455] nouveau 0000:02:00.0: DRM: DCB conn 01: 00002161
[ 22.597459] nouveau 0000:02:00.0: DRM: DCB conn 02: 00000200
[ 22.600828] nouveau 0000:02:00.0: DRM: MM: using COPY for buffer copies
[ 22.642046] nouveau 0000:02:00.0: DRM: allocated 1280x1024 fb: 0x70000, bo 00000000ecbc498b
[ 22.642283] fbcon: nouveaudrmfb (fb0) is primary device
[ 22.691362] Console: switching to colour frame buffer device 160x64
[ 22.692534] nouveau 0000:02:00.0: [drm] fb0: nouveaudrmfb frame buffer device
[ 22.705699] [drm] Initialized nouveau 1.3.1 20120801 for 0000:02:00.0 on minor 0
[ 23.409361] EXT4-fs (dm-0): re-mounted. Opts: auto_da_alloc
[ 24.671663] cryptd: max_cpu_qlen set to 1000
[ 25.619108] lp: driver loaded but no devices found
[ 25.649297] ppdev: user-space parallel port driver
[ 29.276523] EXT4-fs (md1): mounted filesystem with ordered data mode. Opts: auto_da_alloc
[ 29.393269] Adding 4194300k swap on /dev/mapper/cswap. Priority:-2 extents:1 across:4194300k FS
[ 31.028495] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[ 31.068252] br0: port 1(em0) entered blocking state
[ 31.068979] br0: port 1(em0) entered disabled state
[ 31.069927] device em0 entered promiscuous mode
[ 31.074399] br0: port 2(rl0) entered blocking state
[ 31.075129] br0: port 2(rl0) entered disabled state
[ 31.075928] device rl0 entered promiscuous mode
[ 31.153093] r8169 0000:04:00.0: firmware: direct-loading firmware rtl_nic/rtl8168e-2.fw
[ 31.154569] RTL8211DN Gigabit Ethernet r8169-0-400:00: attached PHY driver [RTL8211DN Gigabit Ethernet] (mii_bus:phy_addr=r8169-0-400:00, irq=IGNORE)
[ 31.433978] r8169 0000:04:00.0 rl0: Link is Down
[ 31.437322] br0: port 2(rl0) entered blocking state
[ 31.440530] br0: port 2(rl0) entered forwarding state
[ 32.077223] br0: port 2(rl0) entered disabled state
[ 34.144985] r8169 0000:04:00.0 rl0: Link is Up - 1Gbps/Full - flow control rx/tx
[ 34.145748] br0: port 2(rl0) entered blocking state
[ 34.148899] br0: port 2(rl0) entered forwarding state
[ 34.152016] IPv6: ADDRCONF(NETDEV_CHANGE): br0: link becomes ready
[ 70.747068] kvm: KVM_SET_TSS_ADDR need to be called before entering vcpu
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] KVM: VMX: Require KVM_SET_TSS_ADDR being called prior to running a VCPU
2023-06-28 1:29 ` Thorsten Glaser
@ 2023-06-28 16:21 ` Sean Christopherson
2023-06-28 17:53 ` Thorsten Glaser
0 siblings, 1 reply; 7+ messages in thread
From: Sean Christopherson @ 2023-06-28 16:21 UTC (permalink / raw)
To: Thorsten Glaser; +Cc: kvm, Paolo Bonzini
Dropped all the old maintainers from Cc. This is one of the more impressive
displays of thread necromancy I've seen :-)
On Wed, Jun 28, 2023, Thorsten Glaser wrote:
> Hi,
>
> I just saw a new message after reboot today and searched for it and got
> https://patchwork.kernel.org/project/kvm/patch/5142D010.7060303@web.de/
> and you might be interested that I ran into it.
>
> [ 70.747068] kvm: KVM_SET_TSS_ADDR need to be called before entering vcpu
>
> Full dmesg attached. This is on reboot, no VMs are running yet.
Heh, there are no VMs that _you_ deliberately created, but that doesn't mean there
aren't VMs in the system. IIRC, libvirt (or maybe systemd?) probes KVM by doing
modprobe *and* creating a dummy VM. If whatever is creating a VM also creates a
vCPU, then the "soft" warning about KVM_SET_TSS_ADDR will trigger.
Another possibility is that KVM sefltests are being run during boot. KVM's selftests
stuff register state to force the vCPU into 64-bit mode, and so they don't bother
setting KVM_SET_TSS_ADDR, e.g. the soft warning can be triggered by doing
sudo modprobe kvm_intel unrestricted_guest=0
and running pretty much any KVM selftest.
> I don’t get any extra weird messages on VM start, and they come up fine.
So long as the VMs you care about don't have issues, the message is completely
benign, and expected since you are running on Nehalem, which doesn't support
unrestricted guest.
> [ 0.000000] DMI: Gigabyte Technology Co., Ltd. X58-USB3/X58-USB3, BIOS F5 09/07/2011
> [ 0.330068] smpboot: CPU0: Intel(R) Core(TM) i7 CPU 950 @ 3.07GHz (family: 0x6, model: 0x1a, stepping: 0x5)
> [ 70.747068] kvm: KVM_SET_TSS_ADDR need to be called before entering vcpu
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] KVM: VMX: Require KVM_SET_TSS_ADDR being called prior to running a VCPU
2023-06-28 16:21 ` Sean Christopherson
@ 2023-06-28 17:53 ` Thorsten Glaser
2023-06-28 19:07 ` Sean Christopherson
0 siblings, 1 reply; 7+ messages in thread
From: Thorsten Glaser @ 2023-06-28 17:53 UTC (permalink / raw)
To: Sean Christopherson; +Cc: kvm, Paolo Bonzini
On Wed, 28 Jun 2023, Sean Christopherson wrote:
>Dropped all the old maintainers from Cc. This is one of the more impressive
>displays of thread necromancy I've seen :-)
Well, I found that mail, and it specifically mentioned users not having
reported seeing this message, so…
>> Full dmesg attached. This is on reboot, no VMs are running yet.
>
>Heh, there are no VMs that _you_ deliberately created, but that doesn't mean there
>aren't VMs in the system. IIRC, libvirt (or maybe systemd?) probes KVM by doing
>modprobe *and* creating a dummy VM. If whatever is creating a VM also creates a
>vCPU, then the "soft" warning about KVM_SET_TSS_ADDR will trigger.
No systemd here, but libvirt might be it. There’s significant time between
the last kernel messages and this, that would explain it.
>So long as the VMs you care about don't have issues, the message is completely
>benign, and expected since you are running on Nehalem, which doesn't support
>unrestricted guest.
OK, thanks.
Might want to make that more well-known… though I don’t have a
good idea how. Perhaps the next person to run into that message
will, at least, find this thread.
bye,
//mirabilos
--
Infrastrukturexperte • tarent solutions GmbH
Am Dickobskreuz 10, D-53121 Bonn • http://www.tarent.de/
Telephon +49 228 54881-393 • Fax: +49 228 54881-235
HRB AG Bonn 5168 • USt-ID (VAT): DE122264941
Geschäftsführer: Dr. Stefan Barth, Kai Ebenrett, Boris Esser, Alexander Steeg
****************************************************
/⁀\ The UTF-8 Ribbon
╲ ╱ Campaign against Mit dem tarent-Newsletter nichts mehr verpassen:
╳ HTML eMail! Also, https://www.tarent.de/newsletter
╱ ╲ header encryption!
****************************************************
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] KVM: VMX: Require KVM_SET_TSS_ADDR being called prior to running a VCPU
2023-06-28 17:53 ` Thorsten Glaser
@ 2023-06-28 19:07 ` Sean Christopherson
0 siblings, 0 replies; 7+ messages in thread
From: Sean Christopherson @ 2023-06-28 19:07 UTC (permalink / raw)
To: Thorsten Glaser; +Cc: kvm, Paolo Bonzini
On Wed, Jun 28, 2023, Thorsten Glaser wrote:
> On Wed, 28 Jun 2023, Sean Christopherson wrote:
> >So long as the VMs you care about don't have issues, the message is completely
> >benign, and expected since you are running on Nehalem, which doesn't support
> >unrestricted guest.
>
> OK, thanks.
>
> Might want to make that more well-known… though I don’t have a
> good idea how.
I'm leaning toward deleting the message entirely. It was placed there 10+ years
ago to alert users that they needed to upgrade QEMU. At this point, if someone
files a bug report against a 10+ year old QEMU build, the very first question is
going to be if the issue reproduces on a more recent build. The only possible
benefit I can think of is for people writing new VMMs from scratch, but any benefit
there is also dubious for a variety of reasons.
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-06-28 19:08 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-15 7:38 [PATCH] KVM: VMX: Require KVM_SET_TSS_ADDR being called prior to running a VCPU Jan Kiszka
2013-03-15 11:43 ` Gleb Natapov
2013-03-18 16:50 ` Marcelo Tosatti
2023-06-28 1:29 ` Thorsten Glaser
2023-06-28 16:21 ` Sean Christopherson
2023-06-28 17:53 ` Thorsten Glaser
2023-06-28 19:07 ` Sean Christopherson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox