Hi Debian kernel team,

Sorry for the short report yesterday. Reportbug sent it out earlier
than I expected. Here is the full report:

   * What led up to the situation?

On Debian 10 buster, I upgraded the linux kernel packages from
4.19+105+deb10u12 (buster) to 5.10.46-4~bpo10+1 (buster-backports).

Since then, the system started to regularly hang. These are always
complete freezes: I cannot move the mouse pointer anymore, cannot
switch to virtual console, and no response to network pings anymore.


   * What exactly did you do (or not do) that was effective (or
     ineffective)?

Use Firefox or Evince. See below for details.

   * What was the outcome of this action?

Complete system hang/freeze.

   * What outcome did you expect instead?

No hang.


Git bisect results:

Bisect Debian: https://salsa.debian.org/kernel-team/linux.git
First bad commit: 3fcc0ffb or 0fc228cb. Probably 3fcc0ffb, the first
update from 5.6 to 5.7.

    * | a2f70104 [amd64] Update "x86: Make x32 syscall support conditional ..." 
for 5.7
    * | 0fc228cb lockdown: Update Secure Boot support patches for 5.7       
<--- git bisect bad
    * | 3fcc0ffb Update to 5.7-rc4                                          
<--- git bisect skip, because it fails to build
    * | 6e17c1ca Enable support for fsverity                                
<--- git bisect good
    |/  
    o b49338be (tag: debian/5.6.7-1) Prepare to release linux (5.6.7-1).


Bisect upstream:
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/

Notes about bisecting upstream:
- The pristine upstream kernel does not by default show the bug,
  because it disables `intel_iommu` by default. You need to either:
  - Apply the following two Debian patches:
        features/x86/intel-iommu-add-option-to-exclude-integrated-gpu-only.patch
        
features/x86/intel-iommu-add-kconfig-option-to-exclude-igpu-by-default.patch
  - Or boot the pristine upstream kernel with `intel_iommu=on`.
- The first bad commit is in a range of commits that fail to build
  because of an unrelated problem:
      depmod: ERROR: Cycle detected: drm_kms_helper -> drm -> drm_kms_helper
  Cherrypick the following later revert commits to solve that:
      $ git cherry-pick -x 6ae1a4bb^..09912635
      $ git commit --allow-empty
      $ git cherry-pick --continue
  (Only relevant for bisecting one specific old branch, otherwise not
  relevant to this bug report.)

First bad commit upstream: bf72c8c6, first merged in torvalds/master
with v5.7-rc1.

    commit bf72c8c6ee77d46f74a2b143303a9c9923f9e7a7 (refs/bisect/bad)
    Author: Chris Wilson <ch...@chris-wilson.co.uk>
    Date:   Thu Jan 30 09:22:38 2020 +0000
    
        drm/i915/gt: Skip global serialisation of clear_range for bxt vtd
        
        VT'd on Broxton and on Braswell require serialisation of GGTT updates.
        However, it seems to only be required for insertion, so drop the
        complication and heavyweight stop_machine() for clears. The range will
        be serialised again before use.
        
        Signed-off-by: Chris Wilson <ch...@chris-wilson.co.uk>
        Reviewed-by: Mika Kuoppala <mika.kuopp...@linux.intel.com>
        Link: 
https://patchwork.freedesktop.org/patch/msgid/20200130092239.1743672-1-ch...@chris-wilson.co.uk

    diff --git a/drivers/gpu/drm/i915/gt/intel_ggtt.c 
b/drivers/gpu/drm/i915/gt/intel_ggtt.c
    index fdfed921..f83070b5 100644
    --- a/drivers/gpu/drm/i915/gt/intel_ggtt.c
    +++ b/drivers/gpu/drm/i915/gt/intel_ggtt.c
    @@ -350,31 +350,6 @@ static void bxt_vtd_ggtt_insert_entries__BKL(struct 
i915_address_space *vm,
            stop_machine(bxt_vtd_ggtt_insert_entries__cb, &arg, NULL);
     }
     
    -struct clear_range {
    -       struct i915_address_space *vm;
    -       u64 start;
    -       u64 length;
    -};
    -
    -static int bxt_vtd_ggtt_clear_range__cb(void *_arg)
    -{
    -       struct clear_range *arg = _arg;
    -
    -       gen8_ggtt_clear_range(arg->vm, arg->start, arg->length);
    -       bxt_vtd_ggtt_wa(arg->vm);
    -
    -       return 0;
    -}
    -
    -static void bxt_vtd_ggtt_clear_range__BKL(struct i915_address_space *vm,
    -                                         u64 start,
    -                                         u64 length)
    -{
    -       struct clear_range arg = { vm, start, length };
    -
    -       stop_machine(bxt_vtd_ggtt_clear_range__cb, &arg, NULL);
    -}
    -
     static void gen6_ggtt_clear_range(struct i915_address_space *vm,
                                      u64 start, u64 length)
     {
    @@ -881,8 +856,6 @@ static int gen8_gmch_probe(struct i915_ggtt *ggtt)
                IS_CHERRYVIEW(i915) /* fails with concurrent use/update */) {
                    ggtt->vm.insert_entries = bxt_vtd_ggtt_insert_entries__BKL;
                    ggtt->vm.insert_page    = bxt_vtd_ggtt_insert_page__BKL;
    -               if (ggtt->vm.clear_range != nop_clear_range)
    -                       ggtt->vm.clear_range = 
bxt_vtd_ggtt_clear_range__BKL;
            }
     
            ggtt->invalidate = gen8_ggtt_invalidate;



How to reproduce:
- BIOS: VT-d enabled.
and
- Kernel releases since v5.7-rc1. I can still reproduce it with drm-tip
  e61e3604 of 2021-09-17 based on v5.15-rc1.
and
- Kernel from:
  - Debian official packages, or
  - Built from Debian linux kernel source (salsa), or
  - Built from pristine upstream patched with these 2 Debian patches:
        features/x86/intel-iommu-add-option-to-exclude-integrated-gpu-only.patch
        
features/x86/intel-iommu-add-kconfig-option-to-exclude-igpu-by-default.patch
    or
  - Built from pristine upstream without the 2 Debian patches, but then
    use boot parameter `intel_iommu=on`.
and
- Linux boot parameter:
  - Debian packages, or upstream patched with the 2 Debian patches:
    - No boot parameter, or
    - `intel_iommu=intgpu_off` (Debian-specific, Debian default), or
    - `intel_iommu=on`.
  or
  - With pristine upstream, without Debian patches:
    - `intel_iommu=on`.
and
- The buster-versions of binaries from these sources:
  - mesa      18.3.6-2+deb10u1  (not 20.3.5-1~bpo10+1), and
  - libglvnd  1.1.0-1           (not  1.3.2-1~bpo10+2)
and
- Xorg driver:
  - modesetting: Easiest to reproduce with Evince: Hang in <2 minutes,
    usually less <30 seconds. Also reproducible with Firefox with
    Compositing: OpenGL, though it will take longer, see Steps below.
  or
  - intel: Have not been able to reproduce with Evince, only with
    Firefox with Compositing: OpenGL. Sometimes <1 min, sometimes 20
    minutes. See Steps below.

To prevent the bug:
- BIOS: VT-d disabled.
or
- Linux version 5.6 or lower.
or
- Boot parameter `intel_iommu=off` (this is the default for pristine
  upstream without the 2 Debian patches)
or
- The buster-backports-versions of binaries from these sources:
  - mesa       20.3.5-1~bpo10+1, and
  - libglvnd   1.3.2-1~bpo10+2

No influence:
- Boot parameter `intel_iommu=strict iommu.strict=1` does not prevent
  the bug.


Steps to reproduce:

I usually use Xorg modesetting + Evince, because it triggers the bug
fastest and most reliably. Firefox with OpenGL can trigger the bug with
Xorg modesetting or Xorg intel, but takes longer.

- With Evince (with Xorg modesetting, not Xorg intel driver): Open the
  PDF with Evince (tested with 3.30.2-3+deb10u1) and quickly and
  repeatedly scroll up and down the document. System should hang in
  less than 2 minutes, usually even less than 30 seconds.
  - Choose a PDF that can be scrolled through, but is not so big that
    Evince will spend time "Loading..." during scrolling. For example,
    on Debian I used:
    - /usr/share/doc/quilt/quilt.pdf (12 pages)
    - /usr/share/doc/dbconfig-common/dbapp-policy.pdf.gz (7 pages)
- With Firefox (tested with 78.14.0esr-1~deb10u1), in `about:config`:
      gfx.webrender.all                  false
      layers.acceleration.force-enabled  true
      layers.acceleration.disabled       false
  Now `about:support` should show `Compositing: OpenGL`. Now scroll and
  switch between tabs, such as about:config, about:preferences,
  about:performance, about:support, about:performance, some random
  offline documentation, or a random bug on bugs.debian.org. System may
  hang in <1 min, but it may also take 20 minutes (or hours even).
  - Make sure the page is not that long that the page goes blank during
    scrolling. The page should be long enough to be scrollable,
    but short enough that the contents stay visible even during fast
    scrolling.
  - Not sure if it can reproduce with Firefox with Compositing: Basic
    or Compositing: WebRender.


Further notes:
- I searched upstream bug tracker for drm/intel a bit and so far found
  only this report that may be related:
  - https://gitlab.freedesktop.org/drm/intel/-/issues/4082
    (System hangs during parallel media transcode operations after
    enabling VT-d)
  However, the discussion there focused more on that they had
  temporarily ignored `intel_iommu=igfx_off` for their CI, causing the
  bug to surface. They did not really look into the underlying issue,
  except:
  > this kernel bug may have been there for longer time, or be HW/FW
  > issue needing WA.
  (I guess HW/FW=Hardware/Firmware, WA=Workaround.)
  and:
  > Complete system hang sounds like a possible hw bug.
  and:
  > I'm more inclined to think the issue being some race condition in
  > kernel, which could trigger BUG/Oops/panic (i.e. cause machine also
  > to drop network connection and not answer pings any more).  IOMMU
  > changes performance a bit, so it could trigger races that do not
  > trigger with IOMMU off.
- Actually, I feel there are two bugs here:
  - One Debian bug, in the 2 Debian intel iommu patches: I would expect
    that the Debian-specific `INTEL_IOMMU_DEFAULT_ON_INTGPU_OFF` would
    result in the same behavior as `intel_iommu=off`, but here it
    actually seems to behave like `intel_iommu=on`. Or maybe I am
    misunderstanding something.
  - One upstream bug, since bf72c8c6, first merged in v5.7-rc1. Still
    in drm-tip e61e3604 of 2021-09-17 based on v5.15-rc1. I thought I
    better first hear what you (the Debian kernel team) have to say
    about this, so I did not report upstream yet.
- I do not know what to make of the fact that mesa and libglvnd from
  buster-backports make the bug disappear. Perhaps this means that once
  I upgrade to Debian 11 bullseye, I will not experience the bug
  anymore anyway. But I thought mesa and libglvnd are like "user-space"
  from the kernel's point-of-view and should never be able to make the
  system freeze, whatever their version. How likely is it that later
  some other user-space program not depending on mesa, or perhaps even
  a later version of mesa, is able to trigger the bug again?
- Attached is a kernel log of a boot without any `intel_iommu` boot
  parameters on which I was able to reproduce the bug. No log data for
  the exact moment the bug is triggered, unfortunately. Note that the
  MCE error does not occur on every boot and I have also seen hangs on
  boots that did not have the MCE error.

Hope I did not forget anything, otherwise I will send more info later.

Thank you for your attention, and for all the work you do on packaging
the kernel. Really impressed by the sheer amount of work you all must
be doing to get all those packages out.

Best regards,
Peter Nowee
microcode: microcode updated early to revision 0x44, date = 2020-10-23
Linux version 5.10.0-0.bpo.8-amd64 (debian-kernel@lists.debian.org) (gcc-8 
(Debian 8.3.0-6) 8.3.0, GNU ld (GNU Binutils for Debian) 2.31.1) #1 SMP Debian 
5.10.46-4~bpo10+1 (2021-08-07)
Command line: BOOT_IMAGE=/vmlinuz-5.10.0-0.bpo.8-amd64 
root=/dev/mapper/disruption--vg-disruption--debstable--root ro ipv6.disable=1
x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
x86/fpu: xstate_offset[3]:  576, xstate_sizes[3]:   64
x86/fpu: xstate_offset[4]:  640, xstate_sizes[4]:   64
x86/fpu: Enabled xstate features 0x1b, context size is 704 bytes, using 
'compacted' format.
BIOS-provided physical RAM map:
BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
BIOS-e820: [mem 0x0000000000059000-0x000000000009dfff] usable
BIOS-e820: [mem 0x000000000009e000-0x00000000000fffff] reserved
BIOS-e820: [mem 0x0000000000100000-0x000000000fffffff] usable
BIOS-e820: [mem 0x0000000010000000-0x0000000012150fff] reserved
BIOS-e820: [mem 0x0000000012151000-0x00000000785d6fff] usable
BIOS-e820: [mem 0x00000000785d7000-0x000000007b801fff] reserved
BIOS-e820: [mem 0x000000007b802000-0x000000007b820fff] ACPI data
BIOS-e820: [mem 0x000000007b821000-0x000000007b880fff] ACPI NVS
BIOS-e820: [mem 0x000000007b881000-0x000000007bc07fff] reserved
BIOS-e820: [mem 0x000000007bc08000-0x000000007bc75fff] type 20
BIOS-e820: [mem 0x000000007bc76000-0x000000007bfeefff] usable
BIOS-e820: [mem 0x000000007bfef000-0x000000007bfeffff] ACPI NVS
BIOS-e820: [mem 0x000000007bff0000-0x000000007c009fff] reserved
BIOS-e820: [mem 0x000000007c00a000-0x000000007c6a0fff] usable
BIOS-e820: [mem 0x000000007c6a1000-0x000000007c6a2fff] reserved
BIOS-e820: [mem 0x000000007c6a3000-0x000000007cffffff] usable
BIOS-e820: [mem 0x000000007d000000-0x000000007fffffff] reserved
BIOS-e820: [mem 0x00000000d0000000-0x00000000d0ffffff] reserved
BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
BIOS-e820: [mem 0x00000000fe042000-0x00000000fe044fff] reserved
BIOS-e820: [mem 0x00000000fe900000-0x00000000fe902fff] reserved
BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
BIOS-e820: [mem 0x00000000fed01000-0x00000000fed01fff] reserved
BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
BIOS-e820: [mem 0x00000000ff800000-0x00000000ffffffff] reserved
BIOS-e820: [mem 0x0000000100000000-0x000000017fffffff] usable
NX (Execute Disable) protection: active
efi: EFI v2.50 by American Megatrends
efi: ACPI=0x7b80c000 ACPI 2.0=0x7b80c000 SMBIOS=0x7babe000 SMBIOS 
3.0=0x7babd000 ESRT=0x773f9f18 MOKvar=0x76a26000 
secureboot: Secure boot could not be determined (mode 0)
SMBIOS 3.0.0 present.
DMI: ASUSTeK COMPUTER INC. E402NA/E402NA, BIOS E402NA.317 04/16/2019
tsc: Detected 1094.400 MHz processor
last_pfn = 0x180000 max_arch_pfn = 0x400000000
x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
last_pfn = 0x7d000 max_arch_pfn = 0x400000000
esrt: Reserving ESRT space from 0x00000000773f9f18 to 0x00000000773f9f50.
Using GB pages for direct mapping
RAMDISK: [mem 0x31a11000-0x34cfffff]
ACPI: Early table checksum verification disabled
ACPI: RSDP 0x000000007B80C000 000024 (v02 _ASUS_)
ACPI: XSDT 0x000000007B80C0C0 0000DC (v01 _ASUS_ Notebook 01072009 AMI  
00010013)
ACPI: FACP 0x000000007B818C10 000114 (v06 _ASUS_ Notebook 01072009 AMI  
00010013)
ACPI: DSDT 0x000000007B80C230 00C9D9 (v02 _ASUS_ Notebook 01072009 INTL 
20120913)
ACPI: FACS 0x000000007B87F080 000040
ACPI: FPDT 0x000000007B818D30 000044 (v01 _ASUS_ Notebook 01072009 AMI  
00010013)
ACPI: FIDT 0x000000007B818D80 00009C (v01 _ASUS_ Notebook 01072009 AMI  
00010013)
ACPI: ECDT 0x000000007B818E20 0000C1 (v01 _ASUS_ Notebook 01072009 AMI. 
00000005)
ACPI: MCFG 0x000000007B818EF0 00003C (v01 _ASUS_ Notebook 01072009 MSFT 
00000097)
ACPI: DBG2 0x000000007B818F30 000072 (v00 INTEL  EDK2     00000003 BRXT 
0100000D)
ACPI: DBGP 0x000000007B818FB0 000034 (v01 INTEL  EDK2     00000003 BRXT 
0100000D)
ACPI: LPIT 0x000000007B818FF0 00005C (v01 INTEL  EDK2     00000003 BRXT 
0100000D)
ACPI: APIC 0x000000007B819050 000084 (v03 INTEL  EDK2     00000003 BRXT 
0100000D)
ACPI: NPKT 0x000000007B8190E0 000065 (v01 INTEL  EDK2     00000003 BRXT 
0100000D)
ACPI: PRAM 0x000000007B819150 000030 (v01 INTEL  EDK2     00000003 BRXT 
0100000D)
ACPI: WSMT 0x000000007B819180 000028 (v01 INTEL  EDK2     00000003 BRXT 
0100000D)
ACPI: SSDT 0x000000007B8191B0 00414B (v02 INTEL  DptfTab  00000003 BRXT 
0100000D)
ACPI: SSDT 0x000000007B81D300 00002C (v01 Intel_ Platform 00001000 INTL 
20120913)
ACPI: SSDT 0x000000007B81D330 0003F7 (v02 PmRef  Cpu0Ist  00003000 INTL 
20120913)
ACPI: SSDT 0x000000007B81D730 00072B (v02 CpuRef CpuSsdt  00003000 INTL 
20120913)
ACPI: SSDT 0x000000007B81DE60 00032D (v02 PmRef  Cpu0Tst  00003000 INTL 
20120913)
ACPI: SSDT 0x000000007B81E190 00017C (v02 PmRef  ApTst    00003000 INTL 
20120913)
ACPI: SSDT 0x000000007B81E310 002760 (v02 SaSsdt SaSsdt   00003000 INTL 
20120913)
ACPI: UEFI 0x000000007B820A70 000042 (v01 _ASUS_ Notebook 00000000      
00000000)
ACPI: BGRT 0x000000007B820AC0 000038 (v01 _ASUS_ Notebook 01072009 AMI  
00010013)
ACPI: DMAR 0x000000007B820B00 0000A8 (v01 INTEL  EDK2     00000003 BRXT 
0100000D)
ACPI: WDAT 0x000000007B820BB0 000104 (v01                 00000000      
00000000)
ACPI: Reserving FACP table memory at [mem 0x7b818c10-0x7b818d23]
ACPI: Reserving DSDT table memory at [mem 0x7b80c230-0x7b818c08]
ACPI: Reserving FACS table memory at [mem 0x7b87f080-0x7b87f0bf]
ACPI: Reserving FPDT table memory at [mem 0x7b818d30-0x7b818d73]
ACPI: Reserving FIDT table memory at [mem 0x7b818d80-0x7b818e1b]
ACPI: Reserving ECDT table memory at [mem 0x7b818e20-0x7b818ee0]
ACPI: Reserving MCFG table memory at [mem 0x7b818ef0-0x7b818f2b]
ACPI: Reserving DBG2 table memory at [mem 0x7b818f30-0x7b818fa1]
ACPI: Reserving DBGP table memory at [mem 0x7b818fb0-0x7b818fe3]
ACPI: Reserving LPIT table memory at [mem 0x7b818ff0-0x7b81904b]
ACPI: Reserving APIC table memory at [mem 0x7b819050-0x7b8190d3]
ACPI: Reserving NPKT table memory at [mem 0x7b8190e0-0x7b819144]
ACPI: Reserving PRAM table memory at [mem 0x7b819150-0x7b81917f]
ACPI: Reserving WSMT table memory at [mem 0x7b819180-0x7b8191a7]
ACPI: Reserving SSDT table memory at [mem 0x7b8191b0-0x7b81d2fa]
ACPI: Reserving SSDT table memory at [mem 0x7b81d300-0x7b81d32b]
ACPI: Reserving SSDT table memory at [mem 0x7b81d330-0x7b81d726]
ACPI: Reserving SSDT table memory at [mem 0x7b81d730-0x7b81de5a]
ACPI: Reserving SSDT table memory at [mem 0x7b81de60-0x7b81e18c]
ACPI: Reserving SSDT table memory at [mem 0x7b81e190-0x7b81e30b]
ACPI: Reserving SSDT table memory at [mem 0x7b81e310-0x7b820a6f]
ACPI: Reserving UEFI table memory at [mem 0x7b820a70-0x7b820ab1]
ACPI: Reserving BGRT table memory at [mem 0x7b820ac0-0x7b820af7]
ACPI: Reserving DMAR table memory at [mem 0x7b820b00-0x7b820ba7]
ACPI: Reserving WDAT table memory at [mem 0x7b820bb0-0x7b820cb3]
No NUMA configuration found
Faking a node at [mem 0x0000000000000000-0x000000017fffffff]
NODE_DATA(0) allocated [mem 0x17ffd6000-0x17fffffff]
Zone ranges:
  DMA      [mem 0x0000000000001000-0x0000000000ffffff]
  DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
  Normal   [mem 0x0000000100000000-0x000000017fffffff]
  Device   empty
Movable zone start for each node
Early memory node ranges
  node   0: [mem 0x0000000000001000-0x0000000000057fff]
  node   0: [mem 0x0000000000059000-0x000000000009dfff]
  node   0: [mem 0x0000000000100000-0x000000000fffffff]
  node   0: [mem 0x0000000012151000-0x00000000785d6fff]
  node   0: [mem 0x000000007bc76000-0x000000007bfeefff]
  node   0: [mem 0x000000007c00a000-0x000000007c6a0fff]
  node   0: [mem 0x000000007c6a3000-0x000000007cffffff]
  node   0: [mem 0x0000000100000000-0x000000017fffffff]
Initmem setup node 0 [mem 0x0000000000001000-0x000000017fffffff]
  DMA zone: 28772 pages in unavailable ranges
  DMA32 zone: 34829 pages in unavailable ranges
Reserving Intel graphics memory at [mem 0x7e000000-0x7fffffff]
ACPI: PM-Timer IO Port: 0x408
ACPI: LAPIC_NMI (acpi_id[0x01] high level lint[0x1])
ACPI: LAPIC_NMI (acpi_id[0x02] high level lint[0x1])
ACPI: LAPIC_NMI (acpi_id[0x03] high level lint[0x1])
ACPI: LAPIC_NMI (acpi_id[0x04] high level lint[0x1])
IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-119
ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
Using ACPI (MADT) for SMP configuration information
TSC deadline timer available
smpboot: Allowing 4 CPUs, 2 hotplug CPUs
PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
PM: hibernation: Registered nosave memory: [mem 0x00058000-0x00058fff]
PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x000fffff]
PM: hibernation: Registered nosave memory: [mem 0x10000000-0x12150fff]
PM: hibernation: Registered nosave memory: [mem 0x76a26000-0x76a28fff]
PM: hibernation: Registered nosave memory: [mem 0x77174000-0x771a2fff]
PM: hibernation: Registered nosave memory: [mem 0x773f9000-0x773f9fff]
PM: hibernation: Registered nosave memory: [mem 0x785d7000-0x7b801fff]
PM: hibernation: Registered nosave memory: [mem 0x7b802000-0x7b820fff]
PM: hibernation: Registered nosave memory: [mem 0x7b821000-0x7b880fff]
PM: hibernation: Registered nosave memory: [mem 0x7b881000-0x7bc07fff]
PM: hibernation: Registered nosave memory: [mem 0x7bc08000-0x7bc75fff]
PM: hibernation: Registered nosave memory: [mem 0x7bfef000-0x7bfeffff]
PM: hibernation: Registered nosave memory: [mem 0x7bff0000-0x7c009fff]
PM: hibernation: Registered nosave memory: [mem 0x7c6a1000-0x7c6a2fff]
PM: hibernation: Registered nosave memory: [mem 0x7d000000-0x7fffffff]
PM: hibernation: Registered nosave memory: [mem 0x80000000-0xcfffffff]
PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xd0ffffff]
PM: hibernation: Registered nosave memory: [mem 0xd1000000-0xdfffffff]
PM: hibernation: Registered nosave memory: [mem 0xe0000000-0xefffffff]
PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xfe041fff]
PM: hibernation: Registered nosave memory: [mem 0xfe042000-0xfe044fff]
PM: hibernation: Registered nosave memory: [mem 0xfe045000-0xfe8fffff]
PM: hibernation: Registered nosave memory: [mem 0xfe900000-0xfe902fff]
PM: hibernation: Registered nosave memory: [mem 0xfe903000-0xfebfffff]
PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfed00fff]
PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed01fff]
PM: hibernation: Registered nosave memory: [mem 0xfed02000-0xfedfffff]
PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xff7fffff]
PM: hibernation: Registered nosave memory: [mem 0xff800000-0xffffffff]
[mem 0x80000000-0xcfffffff] available for PCI devices
Booting paravirtualized kernel on bare hardware
clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, 
max_idle_ns: 7645519600211568 ns
setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
percpu: Embedded 54 pages/cpu s183960 r8192 d29032 u524288
Built 1 zonelists, mobility grouping on.  Total pages: 997783
Policy zone: Normal
Kernel command line: BOOT_IMAGE=/vmlinuz-5.10.0-0.bpo.8-amd64 
root=/dev/mapper/disruption--vg-disruption--debstable--root ro ipv6.disable=1
Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
mem auto-init: stack:off, heap alloc:on, heap free:off
Memory: 1894760K/4054588K available (12295K kernel code, 2544K rwdata, 7656K 
rodata, 2400K init, 1700K bss, 299480K reserved, 0K cma-reserved)
random: get_random_u64 called from __kmem_cache_create+0x2a/0x420 with 
crng_init=0
SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
ftrace: allocating 37450 entries in 147 pages
ftrace: allocated 147 pages with 4 groups
rcu: Hierarchical RCU implementation.
rcu:    RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
        Rude variant of Tasks RCU enabled.
        Tracing variant of Tasks RCU enabled.
rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
NR_IRQS: 524544, nr_irqs: 1024, preallocated irqs: 16
random: crng done (trusting CPU's manufacturer)
Console: colour dummy device 80x25
printk: console [tty0] enabled
ACPI: Core revision 20200925
APIC: Switch to symmetric I/O mode setup
DMAR: Host address width 39
DMAR: DRHD base: 0x000000fed64000 flags: 0x0
DMAR: dmar0: reg_base_addr fed64000 ver 1:0 cap 1c0000c40660462 ecap 7e3ff0505e
DMAR: DRHD base: 0x000000fed65000 flags: 0x1
DMAR: dmar1: reg_base_addr fed65000 ver 1:0 cap d2008c40660462 ecap f050da
DMAR: RMRR base: 0x0000007b7ad000 end: 0x0000007b7ccfff
DMAR: RMRR base: 0x0000007d800000 end: 0x0000007fffffff
DMAR-IR: IOAPIC id 1 under DRHD base  0xfed65000 IOMMU 1
DMAR-IR: HPET id 0 under DRHD base 0xfed65000
DMAR-IR: Queued invalidation will be enabled to support x2apic and 
Intr-remapping.
DMAR-IR: Enabled IRQ remapping in x2apic mode
x2apic enabled
Switched APIC routing to cluster x2apic.
clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0xfc66f4fc7c, 
max_idle_ns: 440795224246 ns
Calibrating delay loop (skipped), value calculated using timer frequency.. 
2188.80 BogoMIPS (lpj=4377600)
pid_max: default: 32768 minimum: 301
LSM: Security Framework initializing
Yama: disabled by default; enable with sysctl kernel.yama.*
AppArmor: AppArmor initialized
TOMOYO Linux initialized
Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
mce: CPU0: Thermal monitoring enabled (TM1)
Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0
Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer 
sanitization
Spectre V2 : Mitigation: Full generic retpoline
Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Spectre V2 : Enabling Restricted Speculation for firmware calls
Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Freeing SMP alternatives memory: 32K
smpboot: CPU0: Intel(R) Celeron(R) CPU N3350 @ 1.10GHz (family: 0x6, model: 
0x5c, stepping: 0x9)
mce: [Hardware Error]: Machine check events logged
mce: [Hardware Error]: CPU 0: Machine Check: 0 Bank 4: a600000000020408
mce: [Hardware Error]: TSC 0 ADDR fef61e80 
mce: [Hardware Error]: PROCESSOR 0:506c9 TIME 1631195263 SOCKET 0 APIC 0 
microcode 44
Performance Events: PEBS fmt3+, Goldmont events, 32-deep LBR, full-width 
counters, Intel PMU driver.
... version:                4
... bit width:              48
... generic registers:      4
... value mask:             0000ffffffffffff
... max period:             00007fffffffffff
... fixed-purpose events:   3
... event mask:             000000070000000f
rcu: Hierarchical SRCU implementation.
NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
smp: Bringing up secondary CPUs ...
x86: Booting SMP configuration:
.... node  #0, CPUs:      #1
smp: Brought up 1 node, 2 CPUs
smpboot: Max logical packages: 2
smpboot: Total of 2 processors activated (4377.60 BogoMIPS)
node 0 deferred pages initialised in 12ms
devtmpfs: initialized
x86/mm: Memory block size: 128MB
PM: Registering ACPI NVS region [mem 0x7b821000-0x7b880fff] (393216 bytes)
PM: Registering ACPI NVS region [mem 0x7bfef000-0x7bfeffff] (4096 bytes)
clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 
7645041785100000 ns
futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
pinctrl core: initialized pinctrl subsystem
NET: Registered protocol family 16
audit: initializing netlink subsys (disabled)
thermal_sys: Registered thermal governor 'fair_share'
thermal_sys: Registered thermal governor 'bang_bang'
thermal_sys: Registered thermal governor 'step_wise'
thermal_sys: Registered thermal governor 'user_space'
thermal_sys: Registered thermal governor 'power_allocator'
cpuidle: using governor ladder
cpuidle: using governor menu
audit: type=2000 audit(1631195263.024:1): state=initialized audit_enabled=0 
res=1
ACPI: bus type PCI registered
acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 
0xe0000000)
PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
PCI: Using configuration type 1 for base access
Kprobes globally optimized
HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
ACPI: Added _OSI(Module Device)
ACPI: Added _OSI(Processor Device)
ACPI: Added _OSI(3.0 _SCP Extensions)
ACPI: Added _OSI(Processor Aggregator Device)
ACPI: Added _OSI(Linux-Dell-Video)
ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
ACPI: 8 ACPI AML tables successfully acquired and loaded
ACPI: EC: EC started
ACPI: EC: interrupt blocked
ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
ACPI: EC: Boot ECDT EC used to handle transactions
ACPI: Dynamic OEM Table Load:
ACPI: SSDT 0xFFFF8FD71EE7FE00 000102 (v02 PmRef  Cpu0Cst  00003001 INTL 
20120913)
ACPI: Dynamic OEM Table Load:
ACPI: SSDT 0xFFFF8FD71EE7F200 00015F (v02 PmRef  ApIst    00003000 INTL 
20120913)
ACPI: Dynamic OEM Table Load:
ACPI: SSDT 0xFFFF8FD73BD45C00 00008D (v02 PmRef  ApCst    00003000 INTL 
20120913)
ACPI: Interpreter enabled
ACPI: (supports S0 S3 S4 S5)
ACPI: Using IOAPIC for interrupt routing
PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and 
report a bug
ACPI: Enabled 5 GPEs in block 00 to 7F
ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI 
HPX-Type3]
acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER 
PCIeCapability LTR]
PCI host bridge to bus 0000:00
pci_bus 0000:00: root bus resource [io  0x0070-0x0077]
pci_bus 0000:00: root bus resource [io  0x0000-0x006f window]
pci_bus 0000:00: root bus resource [io  0x0078-0x0cf7 window]
pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
pci_bus 0000:00: root bus resource [mem 0x7e000001-0x7fffffff window]
pci_bus 0000:00: root bus resource [mem 0x7d800001-0x7dffffff window]
pci_bus 0000:00: root bus resource [mem 0x80000000-0xcfffffff window]
pci_bus 0000:00: root bus resource [mem 0xe0000000-0xefffffff window]
pci_bus 0000:00: root bus resource [bus 00-ff]
pci 0000:00:00.0: [8086:5af0] type 00 class 0x060000
pci 0000:00:00.1: [8086:5a8c] type 00 class 0x118000
pci 0000:00:00.1: reg 0x10: [mem 0x91310000-0x91317fff 64bit]
pci 0000:00:02.0: [8086:5a85] type 00 class 0x030000
pci 0000:00:02.0: reg 0x10: [mem 0x90000000-0x90ffffff 64bit]
pci 0000:00:02.0: reg 0x18: [mem 0x80000000-0x8fffffff 64bit pref]
pci 0000:00:02.0: reg 0x20: [io  0xf000-0xf03f]
pci 0000:00:02.0: BAR 2: assigned to efifb
pci 0000:00:0e.0: [8086:5a98] type 00 class 0x040300
pci 0000:00:0e.0: reg 0x10: [mem 0x91318000-0x9131bfff 64bit]
pci 0000:00:0e.0: reg 0x20: [mem 0x91000000-0x910fffff 64bit]
pci 0000:00:0e.0: PME# supported from D0 D3hot D3cold
pci 0000:00:0f.0: [8086:5a9a] type 00 class 0x078000
pci 0000:00:0f.0: reg 0x10: [mem 0x91327000-0x91327fff 64bit]
pci 0000:00:0f.0: PME# supported from D3hot
pci 0000:00:12.0: [8086:5ae3] type 00 class 0x010601
pci 0000:00:12.0: reg 0x10: [mem 0x9131c000-0x9131dfff]
pci 0000:00:12.0: reg 0x14: [mem 0x91324000-0x913240ff]
pci 0000:00:12.0: reg 0x18: [io  0xf090-0xf097]
pci 0000:00:12.0: reg 0x1c: [io  0xf080-0xf083]
pci 0000:00:12.0: reg 0x20: [io  0xf060-0xf07f]
pci 0000:00:12.0: reg 0x24: [mem 0x91323000-0x913237ff]
pci 0000:00:12.0: PME# supported from D3hot
pci 0000:00:13.0: [8086:5ad8] type 01 class 0x060400
pci 0000:00:13.0: PME# supported from D0 D3hot D3cold
pci 0000:00:13.1: [8086:5ad9] type 01 class 0x060400
pci 0000:00:13.1: PME# supported from D0 D3hot D3cold
pci 0000:00:15.0: [8086:5aa8] type 00 class 0x0c0330
pci 0000:00:15.0: reg 0x10: [mem 0x91300000-0x9130ffff 64bit]
pci 0000:00:15.0: PME# supported from D3hot D3cold
pci 0000:00:16.0: [8086:5aac] type 00 class 0x118000
pci 0000:00:16.0: reg 0x10: [mem 0x91322000-0x91322fff 64bit]
pci 0000:00:16.0: reg 0x18: [mem 0x91321000-0x91321fff 64bit]
pci 0000:00:17.0: [8086:5ab4] type 00 class 0x118000
pci 0000:00:17.0: reg 0x10: [mem 0x91320000-0x91320fff 64bit]
pci 0000:00:17.0: reg 0x18: [mem 0x9131f000-0x9131ffff 64bit]
pci 0000:00:1f.0: [8086:5ae8] type 00 class 0x060100
pci 0000:00:1f.1: [8086:5ad4] type 00 class 0x0c0500
pci 0000:00:1f.1: reg 0x10: [mem 0x9131e000-0x9131e0ff 64bit]
pci 0000:00:1f.1: reg 0x20: [io  0xf040-0xf05f]
pci 0000:01:00.0: [10ec:5286] type 00 class 0xff0000
pci 0000:01:00.0: reg 0x10: [mem 0x91200000-0x9120ffff]
pci 0000:01:00.0: Upstream bridge's Max Payload Size set to 128 (was 256, max 
256)
pci 0000:01:00.0: Max Payload Size set to 128 (was 128, max 128)
pci 0000:01:00.0: supports D1 D2
pci 0000:01:00.0: PME# supported from D1 D2 D3hot D3cold
pci 0000:01:00.2: [10ec:8136] type 00 class 0x020000
pci 0000:01:00.2: reg 0x10: [io  0xe000-0xe0ff]
pci 0000:01:00.2: reg 0x18: [mem 0x91214000-0x91214fff 64bit]
pci 0000:01:00.2: reg 0x20: [mem 0x91210000-0x91213fff 64bit pref]
pci 0000:01:00.2: supports D1 D2
pci 0000:01:00.2: PME# supported from D0 D1 D2 D3hot D3cold
pci 0000:00:13.0: PCI bridge to [bus 01]
pci 0000:00:13.0:   bridge window [io  0xe000-0xefff]
pci 0000:00:13.0:   bridge window [mem 0x91200000-0x912fffff]
pci 0000:02:00.0: [168c:0036] type 00 class 0x028000
pci 0000:02:00.0: reg 0x10: [mem 0x91100000-0x9117ffff 64bit]
pci 0000:02:00.0: reg 0x30: [mem 0x91180000-0x9118ffff pref]
pci 0000:02:00.0: Upstream bridge's Max Payload Size set to 128 (was 256, max 
256)
pci 0000:02:00.0: Max Payload Size set to 128 (was 128, max 128)
pci 0000:02:00.0: supports D1 D2
pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
pci 0000:00:13.1: PCI bridge to [bus 02]
pci 0000:00:13.1:   bridge window [mem 0x91100000-0x911fffff]
ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 *15), disabled.
ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 *15), disabled.
ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 *15), disabled.
ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 *15), disabled.
ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 *15), disabled.
ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 *15), disabled.
ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 *15), disabled.
ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 *15), disabled.
ACPI: EC: interrupt unblocked
ACPI: EC: event unblocked
ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
ACPI: EC: GPE=0x2b
ACPI: \_SB_.PCI0.SBRG.EC0_: Boot ECDT EC initialization complete
ACPI: \_SB_.PCI0.SBRG.EC0_: EC: Used to handle transactions and events
iommu: Default domain type: Translated 
pci 0000:00:02.0: vgaarb: setting as boot VGA device
pci 0000:00:02.0: vgaarb: VGA device added: 
decodes=io+mem,owns=io+mem,locks=none
pci 0000:00:02.0: vgaarb: bridge control possible
vgaarb: loaded
EDAC MC: Ver: 3.0.0
Registered efivars operations
NetLabel: Initializing
NetLabel:  domain hash size = 128
NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
NetLabel:  unlabeled traffic allowed by default
PCI: Using ACPI for IRQ routing
clocksource: Switched to clocksource tsc-early
VFS: Disk quotas dquot_6.6.0
VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
AppArmor: AppArmor Filesystem Enabled
pnp: PnP ACPI init
system 00:00: [io  0x0680-0x069f] has been reserved
system 00:00: [io  0x0400-0x047f] could not be reserved
system 00:00: [io  0x0500-0x05fe] has been reserved
system 00:00: [io  0x0600-0x061f] has been reserved
system 00:00: [io  0x164e-0x164f] has been reserved
system 00:02: [mem 0xe0000000-0xefffffff] has been reserved
system 00:02: [mem 0xfea00000-0xfeafffff] has been reserved
system 00:02: [mem 0xfed01000-0xfed01fff] has been reserved
system 00:02: [mem 0xfed03000-0xfed03fff] has been reserved
system 00:02: [mem 0xfed06000-0xfed06fff] has been reserved
system 00:02: [mem 0xfed08000-0xfed09fff] has been reserved
system 00:02: [mem 0xfed80000-0xfedbffff] has been reserved
system 00:02: [mem 0xfed1c000-0xfed1cfff] has been reserved
system 00:02: [mem 0xfee00000-0xfeefffff] could not be reserved
pnp: PnP ACPI: found 4 devices
clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 
2085701024 ns
NET: Registered protocol family 2
IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, 
linear)
TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear)
TCP: Hash tables configured (established 32768 bind 32768)
UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
NET: Registered protocol family 1
NET: Registered protocol family 44
pci 0000:00:13.0: PCI bridge to [bus 01]
pci 0000:00:13.0:   bridge window [io  0xe000-0xefff]
pci 0000:00:13.0:   bridge window [mem 0x91200000-0x912fffff]
pci 0000:00:13.1: PCI bridge to [bus 02]
pci 0000:00:13.1:   bridge window [mem 0x91100000-0x911fffff]
pci_bus 0000:00: resource 4 [io  0x0070-0x0077]
pci_bus 0000:00: resource 5 [io  0x0000-0x006f window]
pci_bus 0000:00: resource 6 [io  0x0078-0x0cf7 window]
pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
pci_bus 0000:00: resource 8 [mem 0x7e000001-0x7fffffff window]
pci_bus 0000:00: resource 9 [mem 0x7d800001-0x7dffffff window]
pci_bus 0000:00: resource 10 [mem 0x80000000-0xcfffffff window]
pci_bus 0000:00: resource 11 [mem 0xe0000000-0xefffffff window]
pci_bus 0000:01: resource 0 [io  0xe000-0xefff]
pci_bus 0000:01: resource 1 [mem 0x91200000-0x912fffff]
pci_bus 0000:02: resource 1 [mem 0x91100000-0x911fffff]
pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
PCI: CLS 64 bytes, default 64
Trying to unpack rootfs image as initramfs...
Freeing initrd memory: 52156K
DMAR: No ATSR found
DMAR: dmar0: Using Queued invalidation
DMAR: dmar1: Using Queued invalidation
pci 0000:00:00.0: Adding to iommu group 0
pci 0000:00:00.1: Adding to iommu group 0
pci 0000:00:02.0: Adding to iommu group 1
pci 0000:00:0e.0: Adding to iommu group 2
pci 0000:00:0f.0: Adding to iommu group 3
pci 0000:00:12.0: Adding to iommu group 4
pci 0000:00:13.0: Adding to iommu group 5
pci 0000:00:13.1: Adding to iommu group 5
pci 0000:00:15.0: Adding to iommu group 6
pci 0000:00:16.0: Adding to iommu group 7
pci 0000:00:17.0: Adding to iommu group 8
pci 0000:00:1f.0: Adding to iommu group 9
pci 0000:00:1f.1: Adding to iommu group 9
pci 0000:01:00.0: Adding to iommu group 5
pci 0000:01:00.2: Adding to iommu group 5
pci 0000:02:00.0: Adding to iommu group 5
DMAR: Intel(R) Virtualization Technology for Directed I/O
PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
software IO TLB: mapped [mem 0x0000000070d86000-0x0000000074d86000] (64MB)
clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0xfc66f4fc7c, 
max_idle_ns: 440795224246 ns
clocksource: Switched to clocksource tsc
Initialise system trusted keyrings
Key type blacklist registered
workingset: timestamp_bits=36 max_order=20 bucket_order=0
zbud: loaded
integrity: Platform Keyring initialized
Key type asymmetric registered
Asymmetric key parser 'x509' registered
Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
io scheduler mq-deadline registered
pcieport 0000:00:13.0: PME: Signaling with IRQ 122
pcieport 0000:00:13.1: PME: Signaling with IRQ 123
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
efifb: probing for efifb
efifb: framebuffer at 0x80000000, using 8128k, total 8128k
efifb: mode is 1920x1080x32, linelength=7680, pages=1
efifb: scrolling: redraw
efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Console: switching to colour frame buffer device 240x67
fb0: EFI VGA frame buffer device
thermal LNXTHERM:00: registered as thermal_zone0
ACPI: Thermal Zone [THRM] (50 C)
Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
hpet: number irqs doesn't agree with number of timers
Linux agpgart interface v0.103
AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroe...@suse.de>
AMD-Vi: AMD IOMMUv2 functionality not available on this system
i8042: PNP: PS/2 Controller [PNP030b:PS2K] at 0x60,0x64 irq 1
i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please 
boot with i8042.nopnp
serio: i8042 KBD port at 0x60,0x64 irq 1
mousedev: PS/2 mouse device common for all mice
rtc_cmos 00:03: RTC can wake from S4
rtc_cmos 00:03: registered as rtc0
rtc_cmos 00:03: setting system clock to 2021-09-09T13:47:46 UTC (1631195266)
rtc_cmos 00:03: alarms up to one month, y3k, 242 bytes nvram
intel_pstate: Intel P-state driver initializing
ledtrig-cpu: registered to indicate activity on CPUs
EFI Variables Facility v0.08 2004-May-17
input: AT Translated Set 2 keyboard as 
/devices/platform/i8042/serio0/input/input0
IPv6: Loaded, but administratively disabled, reboot required to enable
mip6: Mobile IPv6
mip6: mip6_init: can't add xfrm type(destopt)
NET: Registered protocol family 17
mpls_gso: MPLS GSO support
microcode: sig=0x506c9, pf=0x1, revision=0x44
microcode: Microcode Update Driver: v2.2.
resctrl: L2 allocation detected
IPI shorthand broadcast: enabled
sched_clock: Marking stable (3125735700, 8988928)->(3154307612, -19582984)
registered taskstats version 1
Loading compiled-in X.509 certificates
Loaded X.509 cert 'Debian Secure Boot CA: 
6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
Loaded X.509 cert 'Debian Secure Boot Signer 2021 - linux: 
4b6ef5abca669825178e052c84667ccbc0531f8c'
zswap: loaded using pool lzo/zbud
Key type ._fscrypt registered
Key type .fscrypt registered
Key type fscrypt-provisioning registered
AppArmor: AppArmor sha1 policy hashing enabled
integrity: Loading X.509 certificate: UEFI:db
integrity: Loaded X.509 cert 'ASUSTeK Notebook SW Key Certificate: 
b8e581e4df77a5bb4282d5ccfc00c071'
integrity: Loading X.509 certificate: UEFI:db
integrity: Loaded X.509 cert 'ASUSTeK MotherBoard SW Key Certificate: 
da83b990422ebc8c441f8d8b039a65a2'
integrity: Loading X.509 certificate: UEFI:db
integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 
13adbf4309bd82709c8cd54f316ed522988a1bd4'
integrity: Loading X.509 certificate: UEFI:db
integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: 
a92902398e16c49778cd90f99e4f9ae17c55af53'
integrity: Loading X.509 certificate: UEFI:db
integrity: Loaded X.509 cert 'Canonical Ltd. Master Certificate Authority: 
ad91990bc22ab1f517048c23b6655a268e345a63'
Freeing unused kernel image (initmem) memory: 2400K
Write protecting the kernel read-only data: 22528k
Freeing unused kernel image (text/rodata gap) memory: 2040K
Freeing unused kernel image (rodata/data gap) memory: 536K
x86/mm: Checked W+X mappings: passed, no W+X pages found.
Run /init as init process
input: Power Button as 
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:13/PNP0C09:01/PNP0C0C:00/input/input1
ACPI: Power Button [PWRB]
input: Lid Switch as 
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:13/PNP0C09:01/PNP0C0D:01/input/input2
ACPI: Lid Switch [LID]
battery: ACPI: Battery Slot [BAT0] (battery present)
input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3
ACPI: Sleep Button [SLPB]
hid: raw HID events driver (C) Jiri Kosina
idma64 idma64.0: Found Intel integrated DMA 64-bit
rtsx_pci 0000:01:00.0: enabling device (0000 -> 0002)
idma64 idma64.1: Found Intel integrated DMA 64-bit
i801_smbus 0000:00:1f.1: can't derive routing for PCI INT A
i801_smbus 0000:00:1f.1: PCI INT A: not connected
i2c_hid i2c-ELAN1200:00: supply vdd not found, using dummy regulator
i2c_hid i2c-ELAN1200:00: supply vddl not found, using dummy regulator
i801_smbus 0000:00:1f.1: SPD Write Disable is set
cryptd: max_cpu_qlen set to 1000
i801_smbus 0000:00:1f.1: SMBus using polling
SCSI subsystem initialized
SSE version of gcm_enc/dec engaged.
r8169 0000:01:00.2: enabling device (0000 -> 0003)
i2c i2c-2: 1/1 memory slots populated (from DMI)
ACPI: bus type USB registered
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
libphy: r8169: probed
r8169 0000:01:00.2 eth0: RTL8402, 2c:fd:a1:7f:c1:72, XID 440, IRQ 126
r8169 0000:01:00.2 enp1s0f2: renamed from eth0
ahci 0000:00:12.0: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
ahci 0000:00:12.0: flags: 64bit ncq sntf pm clo only pmp pio slum part deso 
sadm sds apst 
xhci_hcd 0000:00:15.0: xHCI Host Controller
xhci_hcd 0000:00:15.0: new USB bus registered, assigned bus number 1
xhci_hcd 0000:00:15.0: hcc params 0x200077c1 hci version 0x100 quirks 
0x0000000081109810
xhci_hcd 0000:00:15.0: cache line size of 64 is not supported
usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb1: Product: xHCI Host Controller
usb usb1: Manufacturer: Linux 5.10.0-0.bpo.8-amd64 xhci-hcd
usb usb1: SerialNumber: 0000:00:15.0
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 8 ports detected
xhci_hcd 0000:00:15.0: xHCI Host Controller
xhci_hcd 0000:00:15.0: new USB bus registered, assigned bus number 2
xhci_hcd 0000:00:15.0: Host supports USB 3.0 SuperSpeed
usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb2: Product: xHCI Host Controller
usb usb2: Manufacturer: Linux 5.10.0-0.bpo.8-amd64 xhci-hcd
usb usb2: SerialNumber: 0000:00:15.0
scsi host0: ahci
input: ELAN1200:00 04F3:3045 Mouse as 
/devices/pci0000:00/0000:00:17.0/i2c_designware.1/i2c-1/i2c-ELAN1200:00/0018:04F3:3045.0001/input/input4
input: ELAN1200:00 04F3:3045 Touchpad as 
/devices/pci0000:00/0000:00:17.0/i2c_designware.1/i2c-1/i2c-ELAN1200:00/0018:04F3:3045.0001/input/input5
hid-generic 0018:04F3:3045.0001: input,hidraw0: I2C HID v1.00 Mouse 
[ELAN1200:00 04F3:3045] on i2c-ELAN1200:00
scsi host1: ahci
ata1: SATA max UDMA/133 abar m2048@0x91323000 port 0x91323100 irq 127
ata2: SATA max UDMA/133 abar m2048@0x91323000 port 0x91323180 irq 127
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 7 ports detected
usb: port power management may be unreliable
i915 0000:00:02.0: [drm] VT-d active for gfx access
fb0: switching to inteldrmfb from EFI VGA
Console: switching to colour dummy device 80x25
i915 0000:00:02.0: vgaarb: deactivate vga console
i915 0000:00:02.0: vgaarb: changed VGA decodes: 
olddecodes=io+mem,decodes=io+mem:owns=io+mem
i915 0000:00:02.0: [drm] Disabling framebuffer compression (FBC) to prevent 
screen flicker with VT-d enabled
i915 0000:00:02.0: firmware: direct-loading firmware i915/bxt_dmc_ver1_07.bin
i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/bxt_dmc_ver1_07.bin 
(v1.7)
usb 1-2: new high-speed USB device number 2 using xhci_hcd
ata2: SATA link down (SStatus 4 SControl 300)
usb 1-2: New USB device found, idVendor=0781, idProduct=5583, bcdDevice= 1.00
usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
usb 1-2: Product: Ultra Fit
usb 1-2: Manufacturer: SanDisk
usb 1-2: SerialNumber: 4C530001301102114401
usb-storage 1-2:1.0: USB Mass Storage device detected
scsi host2: usb-storage 1-2:1.0
usbcore: registered new interface driver usb-storage
usbcore: registered new interface driver uas
usb 1-3: new high-speed USB device number 3 using xhci_hcd
ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
ata1.00: ATA-9: SanDisk SD8SBAT128G1002, Z2317002, max UDMA/133
ata1.00: 250069680 sectors, multi 1: LBA48 NCQ (depth 32), AA
ata1.00: configured for UDMA/133
ahci 0000:00:12.0: port does not support device sleep
scsi 0:0:0:0: Direct-Access     ATA      SanDisk SD8SBAT1 7002 PQ: 0 ANSI: 5
sd 0:0:0:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB)
sd 0:0:0:0: [sda] Write Protect is off
sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support 
DPO or FUA
 sda: sda1 sda2 sda3 sda4
sd 0:0:0:0: [sda] Attached SCSI disk
usb 1-3: New USB device found, idVendor=05e3, idProduct=0606, bcdDevice= 7.02
usb 1-3: New USB device strings: Mfr=0, Product=1, SerialNumber=0
usb 1-3: Product: USB2.0 Hub
hub 1-3:1.0: USB hub found
hub 1-3:1.0: 4 ports detected
usb 1-4: new full-speed USB device number 4 using xhci_hcd
usb 1-4: New USB device found, idVendor=13d3, idProduct=3490, bcdDevice= 0.01
usb 1-4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
usb 1-3.3: new low-speed USB device number 5 using xhci_hcd
usb 1-3.3: New USB device found, idVendor=413c, idProduct=3200, bcdDevice= 1.10
usb 1-3.3: New USB device strings: Mfr=2, Product=1, SerialNumber=0
usb 1-3.3: Product: Dell USB Mouse
usb 1-3.3: Manufacturer: Dell
input: Dell Dell USB Mouse as 
/devices/pci0000:00/0000:00:15.0/usb1/1-3/1-3.3/1-3.3:1.0/0003:413C:3200.0002/input/input6
hid-generic 0003:413C:3200.0002: input,hidraw1: USB HID v1.10 Mouse [Dell Dell 
USB Mouse] on usb-0000:00:15.0-3.3/input0
usbcore: registered new interface driver usbhid
usbhid: USB HID core driver
i915 0000:00:02.0: [drm] failed to retrieve link info, disabling eDP
usb 1-3.4: new low-speed USB device number 6 using xhci_hcd
[drm] Initialized i915 1.6.0 20200917 for 0000:00:02.0 on minor 0
ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
acpi device:10: registered as cooling_device2
input: Video Bus as 
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input7
fbcon: i915drmfb (fb0) is primary device
usb 1-3.4: New USB device found, idVendor=046d, idProduct=c31c, bcdDevice=64.00
usb 1-3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
usb 1-3.4: Product: USB Keyboard
usb 1-3.4: Manufacturer: Logitech
input: Logitech USB Keyboard as 
/devices/pci0000:00/0000:00:15.0/usb1/1-3/1-3.4/1-3.4:1.0/0003:046D:C31C.0003/input/input8
Console: switching to colour frame buffer device 240x67
i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
hid-generic 0003:046D:C31C.0003: input,hidraw2: USB HID v1.10 Keyboard 
[Logitech USB Keyboard] on usb-0000:00:15.0-3.4/input0
input: Logitech USB Keyboard Consumer Control as 
/devices/pci0000:00/0000:00:15.0/usb1/1-3/1-3.4/1-3.4:1.1/0003:046D:C31C.0004/input/input9
scsi 2:0:0:0: Direct-Access     SanDisk  Ultra Fit        1.00 PQ: 0 ANSI: 6
sd 2:0:0:0: [sdb] 121307136 512-byte logical blocks: (62.1 GB/57.8 GiB)
sd 2:0:0:0: [sdb] Write Protect is off
sd 2:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support 
DPO or FUA
 sdb: sdb1 sdb2 sdb3 sdb4 sdb5
sd 2:0:0:0: [sdb] Attached SCSI removable disk
input: Logitech USB Keyboard System Control as 
/devices/pci0000:00/0000:00:15.0/usb1/1-3/1-3.4/1-3.4:1.1/0003:046D:C31C.0004/input/input10
hid-generic 0003:046D:C31C.0004: input,hidraw3: USB HID v1.10 Device [Logitech 
USB Keyboard] on usb-0000:00:15.0-3.4/input1
device-mapper: uevent: version 1.0.3
device-mapper: ioctl: 4.43.0-ioctl (2020-10-01) initialised: dm-de...@redhat.com
NET: Registered protocol family 38
process '/usr/bin/fstype' started with executable stack
EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
Inserted module 'autofs4'
systemd 247.3-6~bpo10+1 running in system mode. (+PAM +AUDIT +SELINUX +IMA 
+APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 
+ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 
default-hierarchy=hybrid)
Detected architecture x86-64.
Set hostname to <disruption>.
/lib/systemd/system/plymouth-start.service:15: Unit configured to use 
KillMode=none. This is unsafe, as it disables systemd's process lifecycle 
management for the service. Please update your service to use a safer 
KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is 
deprecated and will eventually be removed.
/lib/systemd/system/smartd.service:9: Standard output type syslog is obsolete, 
automatically updating to journal. Please update your unit file, and consider 
removing the setting altogether.
Queued start job for default target Graphical Interface.
Created slice system-getty.slice.
Created slice system-modprobe.slice.
Created slice Cryptsetup Units Slice.
Created slice system-systemd\x2dfsck.slice.
Created slice User and Session Slice.
Started Forward Password Requests to Wall Directory Watch.
Set up automount Arbitrary Executable File Formats File System Automount Point.
Reached target User and Group Name Lookups.
Reached target Remote File Systems.
Reached target Slices.
Listening on Device-mapper event daemon FIFOs.
Listening on LVM2 poll daemon socket.
Listening on Syslog Socket.
Listening on fsck to fsckd communication Socket.
Listening on initctl Compatibility Named Pipe.
Listening on Journal Audit Socket.
Listening on Journal Socket (/dev/log).
Listening on Journal Socket.
Listening on udev Control Socket.
Listening on udev Kernel Socket.
Mounting Huge Pages File System...
Mounting POSIX Message Queue File System...
Mounting Kernel Debug File System...
Mounting Kernel Trace File System...
Starting Availability of block devices...
Starting Set the console keyboard layout...
Starting Create list of static device nodes for the current kernel...
Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress 
polling...
Starting Load Kernel Module configfs...
Starting Load Kernel Module drm...
Starting Load Kernel Module fuse...
Starting nftables...
Condition check resulted in Set Up Additional Binary Formats being skipped.
Condition check resulted in File System Check on Root Device being skipped.
Starting Journal Service...
Starting Load Kernel Modules...
fuse: init (API version 7.32)
Starting Remount Root and Kernel File Systems...
Starting Coldplug All udev Devices...
Mounted Huge Pages File System.
Mounted POSIX Message Queue File System.
Mounted Kernel Debug File System.
Mounted Kernel Trace File System.
Finished Availability of block devices.
Finished Set the console keyboard layout.
Finished Create list of static device nodes for the current kernel.
modprobe@configfs.service: Succeeded.
Finished Load Kernel Module configfs.
Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress 
polling.
lp: driver loaded but no devices found
modprobe@drm.service: Succeeded.
EXT4-fs (dm-1): re-mounted. Opts: errors=remount-ro
Finished Load Kernel Module drm.
ppdev: user-space parallel port driver
modprobe@fuse.service: Succeeded.
Finished Load Kernel Module fuse.
Finished Load Kernel Modules.
Finished Remount Root and Kernel File Systems.
Activating swap /swapfile...
Mounting FUSE Control File System...
Mounting Kernel Configuration File System...
Condition check resulted in Rebuild Hardware Database being skipped.
Condition check resulted in Platform Persistent Storage Archival being skipped.
Starting Load/Save Random Seed...
Adding 2097148k swap on /swapfile.  Priority:-2 extents:1003 across:77986400k 
SSFS
Starting Apply Kernel Variables...
Starting Create System Users...
Activated swap /swapfile.
Mounted FUSE Control File System.
Mounted Kernel Configuration File System.
Finished Load/Save Random Seed.
Condition check resulted in First Boot Complete being skipped.
Reached target Swap.
Finished Apply Kernel Variables.
Finished Create System Users.
Started Journal Service.
audit: type=1400 audit(1631195283.543:2): apparmor="STATUS" 
operation="profile_load" profile="unconfined" name="syslogd" pid=384 
comm="apparmor_parser"
audit: type=1400 audit(1631195283.547:3): apparmor="STATUS" 
operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" 
pid=383 comm="apparmor_parser"
audit: type=1400 audit(1631195283.575:4): apparmor="STATUS" 
operation="profile_load" profile="unconfined" name="system_tor" pid=390 
comm="apparmor_parser"
audit: type=1400 audit(1631195283.579:5): apparmor="STATUS" 
operation="profile_load" profile="unconfined" name="smbd" pid=391 
comm="apparmor_parser"
audit: type=1400 audit(1631195283.587:6): apparmor="STATUS" 
operation="profile_load" profile="unconfined" name="/usr/sbin/apt-cacher-ng" 
pid=392 comm="apparmor_parser"
audit: type=1400 audit(1631195283.595:7): apparmor="STATUS" 
operation="profile_load" profile="unconfined" name="nmbd" pid=393 
comm="apparmor_parser"
audit: type=1400 audit(1631195283.603:8): apparmor="STATUS" 
operation="profile_load" profile="unconfined" name="/usr/bin/irssi" pid=394 
comm="apparmor_parser"
audit: type=1400 audit(1631195283.611:9): apparmor="STATUS" 
operation="profile_load" profile="unconfined" name="ping" pid=395 
comm="apparmor_parser"
audit: type=1400 audit(1631195283.619:10): apparmor="STATUS" 
operation="profile_load" profile="unconfined" name="mdnsd" pid=396 
comm="apparmor_parser"
audit: type=1400 audit(1631195283.643:11): apparmor="STATUS" 
operation="profile_load" profile="unconfined" name="avahi-daemon" pid=397 
comm="apparmor_parser"
input: Asus Wireless Radio Control as 
/devices/LNXSYSTM:00/LNXSYBUS:00/ATK4002:00/input/input11
ACPI: AC Adapter [AC0] (on-line)
proc_thermal 0000:00:00.1: Creating sysfs group for PROC_THERMAL_PCI
input: PC Speaker as /devices/platform/pcspkr/input/input12
sd 0:0:0:0: Attached scsi generic sg0 type 0
RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
RAPL PMU: hw unit of domain package 2^-14 Joules
RAPL PMU: hw unit of domain dram 2^-14 Joules
RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
sd 2:0:0:0: Attached scsi generic sg1 type 0
asus_wmi: ASUS WMI generic driver loaded
input: ELAN1200:00 04F3:3045 Mouse as 
/devices/pci0000:00/0000:00:17.0/i2c_designware.1/i2c-1/i2c-ELAN1200:00/0018:04F3:3045.0001/input/input13
input: ELAN1200:00 04F3:3045 Touchpad as 
/devices/pci0000:00/0000:00:17.0/i2c_designware.1/i2c-1/i2c-ELAN1200:00/0018:04F3:3045.0001/input/input14
asus_wmi: Initialization: 0x1
asus_wmi: BIOS WMI version: 9.0
asus_wmi: SFUN value: 0x21
asus-nb-wmi asus-nb-wmi: Detected ATK, not ASUSWMI, use DSTS
asus-nb-wmi asus-nb-wmi: Detected ATK, enable event queue
hid-multitouch 0018:04F3:3045.0001: input,hidraw0: I2C HID v1.00 Mouse 
[ELAN1200:00 04F3:3045] on i2c-ELAN1200:00
pstore: Using crash dump compression: deflate
pstore: Registered efi as persistent store backend
alg: No test for fips(ansi_cprng) (fips_ansi_cprng)
input: Asus WMI hotkeys as /devices/platform/asus-nb-wmi/input/input15
cfg80211: Loading compiled-in X.509 certificates for regulatory database
cfg80211: Loaded X.509 cert 'b...@debian.org: 
577e021cb980e0e820821ba7b54b4961b8b4fadf'
cfg80211: Loaded X.509 cert 'romain.per...@gmail.com: 
3abbc6ec146e09d1b6016ab9d6cf71dd233f0328'
cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
platform regulatory.0: firmware: direct-loading firmware regulatory.db
platform regulatory.0: firmware: direct-loading firmware regulatory.db.p7s
intel_rapl_common: Found RAPL domain package
intel_rapl_common: Found RAPL domain core
intel_rapl_common: Found RAPL domain uncore
intel_rapl_common: Found RAPL domain dram
snd_hda_intel 0000:00:0e.0: bound 0000:00:02.0 (ops 
i915_audio_component_bind_ops [i915])
EDAC pnd2: ECC disabled on channel 0
EDAC pnd2: Failed to register device with error -22.
EDAC pnd2: ECC disabled on channel 0
EDAC pnd2: Failed to register device with error -22.
ath9k 0000:02:00.0: enabling device (0000 -> 0002)
ath: phy0: Set BT/WLAN RX diversity capability
ath: phy0: Enable LNA combining
ath: phy0: ASPM enabled: 0x43
ieee80211 phy0: Atheros AR9565 Rev:2 mem=0xffffb43d40600000, irq=23
snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC256: line_outs=1 
(0x14/0x0/0x0/0x0/0x0) type:speaker
snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
snd_hda_codec_realtek hdaudioC0D0:    inputs:
snd_hda_codec_realtek hdaudioC0D0:      Headset Mic=0x19
snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x1b
snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x13
ath9k 0000:02:00.0 wlp2s0: renamed from wlan0
Bluetooth: Core ver 2.22
NET: Registered protocol family 31
Bluetooth: HCI device and connection manager initialized
Bluetooth: HCI socket layer initialized
Bluetooth: L2CAP socket layer initialized
Bluetooth: SCO socket layer initialized
usbcore: registered new interface driver btusb
usb 1-4: firmware: direct-loading firmware ar3k/ramps_0x31010100_40.dfu
usbcore: registered new interface driver ath3k
usb 1-4: USB disconnect, device number 4
EXT4-fs (sdb2): mounting ext2 file system using the ext4 subsystem
EXT4-fs (sdb2): mounted filesystem without journal. Opts: (null)
ext2 filesystem being mounted at /boot supports timestamps until 2038 
(0x7fffffff)
usb 1-4: new full-speed USB device number 7 using xhci_hcd
input: HDA Intel PCH Headphone as 
/devices/pci0000:00/0000:00:0e.0/sound/card0/input16
input: HDA Intel PCH HDMI/DP,pcm=3 as 
/devices/pci0000:00/0000:00:0e.0/sound/card0/input17
input: HDA Intel PCH HDMI/DP,pcm=7 as 
/devices/pci0000:00/0000:00:0e.0/sound/card0/input18
input: HDA Intel PCH HDMI/DP,pcm=8 as 
/devices/pci0000:00/0000:00:0e.0/sound/card0/input19
input: HDA Intel PCH HDMI/DP,pcm=9 as 
/devices/pci0000:00/0000:00:0e.0/sound/card0/input20
input: HDA Intel PCH HDMI/DP,pcm=10 as 
/devices/pci0000:00/0000:00:0e.0/sound/card0/input21
usb 1-4: New USB device found, idVendor=13d3, idProduct=3490, bcdDevice= 0.02
usb 1-4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Bluetooth: BNEP filters: protocol multicast
Bluetooth: BNEP socket layer initialized
NET: Registered protocol family 5
r8169 0000:01:00.2: firmware: direct-loading firmware rtl_nic/rtl8402-1.fw
RTL8208 Fast Ethernet r8169-102:00: attached PHY driver [RTL8208 Fast Ethernet] 
(mii_bus:phy_addr=r8169-102:00, irq=IGNORE)
r8169 0000:01:00.2 enp1s0f2: Link is Down
RTL8208 Fast Ethernet r8169-102:00: attached PHY driver [RTL8208 Fast Ethernet] 
(mii_bus:phy_addr=r8169-102:00, irq=IGNORE)
r8169 0000:01:00.2 enp1s0f2: Link is Down
Bluetooth: RFCOMM TTY layer initialized
Bluetooth: RFCOMM socket layer initialized
Bluetooth: RFCOMM ver 1.11
wlp2s0: authenticate with 00:1f:f3:bf:d2:f1
wlp2s0: send auth to 00:1f:f3:bf:d2:f1 (try 1/3)
wlp2s0: authenticated
wlp2s0: associate with 00:1f:f3:bf:d2:f1 (try 1/3)
wlp2s0: RX AssocResp from 00:1f:f3:bf:d2:f1 (capab=0x1431 status=0 aid=1)
wlp2s0: associated

Reply via email to