Re: Infiniate systemd loop when power off the machine with multiple MD RAIDs

From: AceLan Kao
Date: Mon Aug 28 2023 - 23:13:56 EST


AceLan Kao <acelan@xxxxxxxxx> 於 2023年8月28日 週一 下午6:48寫道:
>
> Hi Song,
>
> Song Liu <song@xxxxxxxxxx> 於 2023年8月28日 週一 下午1:21寫道:
> >
> > Hi AceLan,
> >
> > Thanks for running the experiments.
> >
> > On Fri, Aug 25, 2023 at 9:32 PM AceLan Kao <acelan@xxxxxxxxx> wrote:
> > [...]
> > > >
> > > > Could you please run the follow two experiments?
> > > >
> > > > 1. Confirm 12a6caf273240a triggers this. Specifically:
> > > > git checkout 12a6caf273240a => repros
> > > > git checkout 12a6caf273240a~1 => cannot repro
> > > Yes, I'm pretty sure about this, that's my bisect result and I just
> > > confirmed it again.
> > > I also tried reverting 12a6caf273240a and the issue is gone.
> >
> > The log doesn't match my guess. Specifically:
> >
> > [ 420.068142] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
> > [ 420.074718] md_open:md123 openers++ = 1 by systemd-shutdow
> > [ 420.080787] systemd-shutdown[1]: Failed to sync MD block device
> > /dev/md123, ignoring: Input/output error
> > [ 420.090831] md: md123 stopped.
> > [ 420.094465] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
> > [ 420.101045] systemd-shutdown[1]: Could not stop MD /dev/md122:
> > Device or resource busy
> >
> > For a successful stop on md123, we reach the pr_info() in md_open().
> > For a failed stop on md122, the kernel returns -EBUSY before that
> > pr_info() in md_open(). There are some changes in md_open() in
> > the past few release, so I am not quite sure we are looking at the
> > same code.
> >
> > Therefore, could you please help clarify:
> >
> > 1. Which base kernel are you using?
> >
> > From the log, you are using 6.5-rc7-706a74159504. However,
> > I think we cannot cleanly revert 12a6caf273240a on top of
> > 6.5-rc7-706a74159504. Did you manually fix some issue in the
> > revert? If so, could you please share the revert commit?
> Yes, I'm basing 6.5.0-rc7 706a74159504 to apply your patch
> 706a74159504 Linux 6.5-rc7
>
> Attached how I revert the commit.
>
> >
> > 2. If you are not using 6.5-rc7-706a74159504 as base kernel, which
> > one are you using?
> >
> > Thanks,
> > Song
> >
> > >
> > > >
> > > > 2. Try with the following change (add debug messages), which hopefully
> > > > shows which command is holding a reference on mddev->openers.
> > > >
> > > > Thanks,
> > > > Song
> > > >
> > > > diff --git i/drivers/md/md.c w/drivers/md/md.c
> > > > index 78be7811a89f..3e9b718b32c1 100644
> > > > --- i/drivers/md/md.c
> > > > +++ w/drivers/md/md.c
> > > > @@ -7574,11 +7574,15 @@ static int md_ioctl(struct block_device *bdev,
> > > > blk_mode_t mode,
> > > > if (mddev->pers && atomic_read(&mddev->openers) > 1) {
> > > > mutex_unlock(&mddev->open_mutex);
> > > > err = -EBUSY;
> > > > + pr_warn("%s return -EBUSY for %s with
> > > > mddev->openers = %d\n",
> > > > + __func__, mdname(mddev),
> > > > atomic_read(&mddev->openers));
> > > > goto out;
> > > > }
> > > > if (test_and_set_bit(MD_CLOSING, &mddev->flags)) {
> > > > mutex_unlock(&mddev->open_mutex);
> > > > err = -EBUSY;
> > > > + pr_warn("%s return -EBUSY for %s with
> > > > MD_CLOSING bit set\n",
> > > > + __func__, mdname(mddev));
> > > > goto out;
> > > > }
> > > > did_set_md_closing = true;
> > > > @@ -7789,6 +7793,8 @@ static int md_open(struct gendisk *disk, blk_mode_t mode)
> > > > goto out_unlock;
> > > >
> > > > atomic_inc(&mddev->openers);
> > > > + pr_info("%s:%s openers++ = %d by %s\n", __func__, mdname(mddev),
> > > > + atomic_read(&mddev->openers), current->comm);
> > > > mutex_unlock(&mddev->open_mutex);
> > > >
> > > > disk_check_media_change(disk);
> > > > @@ -7807,6 +7813,8 @@ static void md_release(struct gendisk *disk)
> > > >
> > > > BUG_ON(!mddev);
> > > > atomic_dec(&mddev->openers);
> > > > + pr_info("%s:%s openers-- = %d by %s\n", __func__, mdname(mddev),
> > > > + atomic_read(&mddev->openers), current->comm);
> > > > mddev_put(mddev);
> > > > }
> > > It's pretty strange that I can't reproduce the issue after applied the patch.
> > >
> > > I tried to figure out which part affect the issue and found when I
> > > comment out the pr_info() In md_release(), the issue could be
> > > reproduced.
> > >
Hi Yu,

I saw your email on the list, but not in my mbox, so I reply you directly.
After applied your patch, here is the log.


--
Chia-Lin Kao(AceLan)
http://blog.acelan.idv.tw/
E-Mail: acelan.kaoATcanonical.com (s/AT/@/)
[ 0.000000] Linux version 6.5.0-rc7706a74159504-dirty (u@u-Precision-7960-Tower) (gcc (Ubuntu 12.2.0-3ubuntu1) 12.2.0, GNU ld (GNU Binutils for Ubuntu) 2.39) #137 SMP PREEMPT_DYNAMIC Mon Aug 28 21:35:19 EDT 2023
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-6.5.0-rc7706a74159504-dirty root=UUID=6d53dc8e-3f45-4efa-bc0e-4af477fac217 ro debug ignore_loglevel log_buf_len=10M no_console_suspend console=tty0 console=ttyS0,115200n8
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Hygon HygonGenuine
[ 0.000000] Centaur CentaurHauls
[ 0.000000] zhaoxin Shanghai
[ 0.000000] x86/split lock detection: #AC: crashing the kernel on kernel split_locks and warning on user-space split_locks
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000040090fff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000040091000-0x000000004fd3afff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000004fd3b000-0x000000005c3f1fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000005c3f2000-0x000000005d6fefff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x000000005d6ff000-0x000000005d6fffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000005d700000-0x000000007fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fe010000-0x00000000fe010fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff0e0000-0x00000000ff0effff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000108fffffff] usable
[ 0.000000] printk: debug: ignoring loglevel setting.
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] e820: update [mem 0x36cbf018-0x36cd0c57] usable ==> usable
[ 0.000000] e820: update [mem 0x36cbf018-0x36cd0c57] usable ==> usable
[ 0.000000] e820: update [mem 0x36c9a018-0x36cbea57] usable ==> usable
[ 0.000000] e820: update [mem 0x36c9a018-0x36cbea57] usable ==> usable
[ 0.000000] extended physical RAM map:
[ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] reserve setup_data: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000036c9a017] usable
[ 0.000000] reserve setup_data: [mem 0x0000000036c9a018-0x0000000036cbea57] usable
[ 0.000000] reserve setup_data: [mem 0x0000000036cbea58-0x0000000036cbf017] usable
[ 0.000000] reserve setup_data: [mem 0x0000000036cbf018-0x0000000036cd0c57] usable
[ 0.000000] reserve setup_data: [mem 0x0000000036cd0c58-0x0000000040090fff] usable
[ 0.000000] reserve setup_data: [mem 0x0000000040091000-0x000000004fd3afff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000004fd3b000-0x000000005c3f1fff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x000000005c3f2000-0x000000005d6fefff] ACPI data
[ 0.000000] reserve setup_data: [mem 0x000000005d6ff000-0x000000005d6fffff] usable
[ 0.000000] reserve setup_data: [mem 0x000000005d700000-0x000000007fffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fe010000-0x00000000fe010fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000ff0e0000-0x00000000ff0effff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000108fffffff] usable
[ 0.000000] efi: EFI v2.7 by Dell
[ 0.000000] efi: ACPI=0x5d6fe000 ACPI 2.0=0x5d6fe014 SMBIOS=0x4bfb9000 TPMFinalLog=0x5c392000 ESRT=0x4bf52718 MEMATTR=0x3890c018 MOKvar=0x4bf86000 RNG=0x5d58a018 TPMEventLog=0x36cd1018
[ 0.000000] random: crng init done
[ 0.000000] efi: Remove mem88: MMIO range=[0x70000000-0x7fffffff] (256MB) from e820 map
[ 0.000000] e820: remove [mem 0x70000000-0x7fffffff] reserved
[ 0.000000] efi: Not removing mem89: MMIO range=[0xfe010000-0xfe010fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem90: MMIO range=[0xff0e0000-0xff0effff] (64KB) from e820 map
[ 0.000000] SMBIOS 3.4 present.
[ 0.000000] DMI: Dell Inc. Precision 7960 Tower/, BIOS 1.0.0 02/24/2023
[ 0.000000] tsc: Detected 3100.000 MHz processor
[ 0.000000] tsc: Detected 3096.000 MHz TSC
[ 0.000016] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000018] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000024] last_pfn = 0x1090000 max_arch_pfn = 0x10000000000
[ 0.000030] total RAM covered: 128736M
[ 0.000149] Found optimal setting for mtrr clean up
[ 0.000149] gran_size: 64K chunk_size: 512M num_reg: 8 lose cover RAM: 0G
[ 0.000153] MTRR map: 5 entries (2 fixed + 3 variable; max 22), built from 10 variable MTRRs
[ 0.000154] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.001099] e820: update [mem 0x6e000000-0xffffffff] usable ==> reserved
[ 0.001105] x2apic: enabled by BIOS, switching to x2apic ops
[ 0.001107] last_pfn = 0x5d700 max_arch_pfn = 0x10000000000
[ 0.007582] esrt: Reserving ESRT space from 0x000000004bf52718 to 0x000000004bf527f0.
[ 0.007595] Using GB pages for direct mapping
[ 0.017860] printk: log_buf_len: 16777216 bytes
[ 0.017862] printk: early log buf free: 257320(98%)
[ 0.017863] Secure boot disabled
[ 0.017863] RAMDISK: [mem 0x350a1000-0x36624fff]
[ 0.017870] ACPI: Early table checksum verification disabled
[ 0.017873] ACPI: RSDP 0x000000005D6FE014 000024 (v02 INTEL )
[ 0.017878] ACPI: XSDT 0x000000005D593188 000124 (v01 INTEL INTEL ID 00000000 INTL 01000013)
[ 0.017884] ACPI: FACP 0x000000005D6F3000 000114 (v06 INTEL INTEL ID 00000000 INTL 20091013)
[ 0.017889] ACPI: DSDT 0x000000005D66D000 08109B (v02 INTEL INTEL ID 01072009 INTL 20091013)
[ 0.017892] ACPI: FACS 0x000000005C389000 000040
[ 0.017894] ACPI: SSDT 0x000000005D6FC000 000B4A (v02 INTEL xh_wscrb 00000000 INTL 20200925)
[ 0.017897] ACPI: SSDT 0x000000005D6FA000 00144E (v02 INTEL DTbtSsdt 00001000 INTL 20200925)
[ 0.017899] ACPI: SSDT 0x000000005D6F9000 000702 (v02 INTEL RAS_ACPI 00000001 INTL 20200925)
[ 0.017902] ACPI: SSDT 0x000000005D6F8000 00076E (v02 INTEL ADDRXLAT 00000001 INTL 20200925)
[ 0.017904] ACPI: BOOT 0x000000005D6F7000 000028 (v01 DELL CBX3 00000002 INTL 01000013)
[ 0.017907] ACPI: BERT 0x000000005D6F6000 000030 (v01 INTEL INTEL ID 00000001 INTL 00000001)
[ 0.017909] ACPI: ERST 0x000000005D6F5000 000230 (v01 INTEL INTEL ID 00000001 INTL 00000001)
[ 0.017911] ACPI: BDAT 0x000000005D6F4000 000030 (v01 INTEL INTEL ID 00000000 INTL 20091013)
[ 0.017914] ACPI: HPET 0x000000005D6F2000 000038 (v01 INTEL INTEL ID 00000001 INTL 20091013)
[ 0.017916] ACPI: MCFG 0x000000005D6F1000 00003C (v01 INTEL INTEL ID 00000001 INTL 20091013)
[ 0.017918] ACPI: MSCT 0x000000005D6F0000 00004E (v01 INTEL INTEL ID 00000001 INTL 20091013)
[ 0.017920] ACPI: WDDT 0x000000005D6EF000 000040 (v01 INTEL INTEL ID 00000000 INTL 20091013)
[ 0.017923] ACPI: APIC 0x000000005D66C000 00025E (v04 INTEL INTEL ID 00000000 INTL 20091013)
[ 0.017925] ACPI: SRAT 0x000000005D66A000 001E30 (v03 INTEL INTEL ID 00000002 INTL 01000013)
[ 0.017927] ACPI: SLIT 0x000000005D669000 00002D (v01 INTEL INTEL ID 00000002 INTL 01000013)
[ 0.017930] ACPI: HMAT 0x000000005D668000 0000F8 (v02 INTEL INTEL ID 00000002 INTL 01000013)
[ 0.017932] ACPI: OEM4 0x000000005D606000 061ED1 (v02 INTEL CPU CST 00003000 INTL 20200925)
[ 0.017934] ACPI: OEM1 0x000000005D5C1000 044379 (v02 INTEL CPU EIST 00003000 INTL 20200925)
[ 0.017936] ACPI: OEM2 0x000000005D5AF000 011831 (v02 INTEL CPU HWP 00003000 INTL 20200925)
[ 0.017939] ACPI: SSDT 0x000000005D594000 01A65E (v02 INTEL SSDT PM 00004000 INTL 20200925)
[ 0.017941] ACPI: DBG2 0x000000005D6FD000 00005C (v00 INTEL INTEL ID 00000002 INTL 01000013)
[ 0.017943] ACPI: SSDT 0x000000005D592000 000632 (v02 INTEL Tpm2Tabl 00001000 INTL 20200925)
[ 0.017946] ACPI: TPM2 0x000000005D591000 00004C (v04 INTEL INTEL ID 00000002 INTL 01000013)
[ 0.017948] ACPI: HEST 0x000000005D590000 00013C (v01 INTEL INTEL ID 00000001 INTL 00000001)
[ 0.017950] ACPI: DMAR 0x000000005D58F000 0002C0 (v01 INTEL INTEL ID 00000001 INTL 20091013)
[ 0.017952] ACPI: FPDT 0x000000005D58E000 000044 (v01 INTEL INTEL ID 00000002 INTL 01000013)
[ 0.017955] ACPI: UEFI 0x0000000056376000 00005C (v01 INTEL RstSataV 00000000 00000000)
[ 0.017957] ACPI: UEFI 0x000000005C377000 00005C (v01 INTEL RstUefiV 00000000 00000000)
[ 0.017959] ACPI: PHAT 0x000000005D58C000 000291 (v01 INTEL INTEL ID 00000005 MSFT 0100000D)
[ 0.017962] ACPI: ASF! 0x000000005D58D000 000074 (v32 INTEL INTEL ID 00000002 INTL 01000013)
[ 0.017964] ACPI: BGRT 0x000000005D58B000 000038 (v01 INTEL INTEL ID 00000002 INTL 01000013)
[ 0.017966] ACPI: Reserving FACP table memory at [mem 0x5d6f3000-0x5d6f3113]
[ 0.017967] ACPI: Reserving DSDT table memory at [mem 0x5d66d000-0x5d6ee09a]
[ 0.017968] ACPI: Reserving FACS table memory at [mem 0x5c389000-0x5c38903f]
[ 0.017969] ACPI: Reserving SSDT table memory at [mem 0x5d6fc000-0x5d6fcb49]
[ 0.017969] ACPI: Reserving SSDT table memory at [mem 0x5d6fa000-0x5d6fb44d]
[ 0.017970] ACPI: Reserving SSDT table memory at [mem 0x5d6f9000-0x5d6f9701]
[ 0.017971] ACPI: Reserving SSDT table memory at [mem 0x5d6f8000-0x5d6f876d]
[ 0.017971] ACPI: Reserving BOOT table memory at [mem 0x5d6f7000-0x5d6f7027]
[ 0.017972] ACPI: Reserving BERT table memory at [mem 0x5d6f6000-0x5d6f602f]
[ 0.017972] ACPI: Reserving ERST table memory at [mem 0x5d6f5000-0x5d6f522f]
[ 0.017973] ACPI: Reserving BDAT table memory at [mem 0x5d6f4000-0x5d6f402f]
[ 0.017974] ACPI: Reserving HPET table memory at [mem 0x5d6f2000-0x5d6f2037]
[ 0.017974] ACPI: Reserving MCFG table memory at [mem 0x5d6f1000-0x5d6f103b]
[ 0.017975] ACPI: Reserving MSCT table memory at [mem 0x5d6f0000-0x5d6f004d]
[ 0.017975] ACPI: Reserving WDDT table memory at [mem 0x5d6ef000-0x5d6ef03f]
[ 0.017976] ACPI: Reserving APIC table memory at [mem 0x5d66c000-0x5d66c25d]
[ 0.017977] ACPI: Reserving SRAT table memory at [mem 0x5d66a000-0x5d66be2f]
[ 0.017977] ACPI: Reserving SLIT table memory at [mem 0x5d669000-0x5d66902c]
[ 0.017978] ACPI: Reserving HMAT table memory at [mem 0x5d668000-0x5d6680f7]
[ 0.017978] ACPI: Reserving OEM4 table memory at [mem 0x5d606000-0x5d667ed0]
[ 0.017979] ACPI: Reserving OEM1 table memory at [mem 0x5d5c1000-0x5d605378]
[ 0.017979] ACPI: Reserving OEM2 table memory at [mem 0x5d5af000-0x5d5c0830]
[ 0.017980] ACPI: Reserving SSDT table memory at [mem 0x5d594000-0x5d5ae65d]
[ 0.017981] ACPI: Reserving DBG2 table memory at [mem 0x5d6fd000-0x5d6fd05b]
[ 0.017981] ACPI: Reserving SSDT table memory at [mem 0x5d592000-0x5d592631]
[ 0.017982] ACPI: Reserving TPM2 table memory at [mem 0x5d591000-0x5d59104b]
[ 0.017982] ACPI: Reserving HEST table memory at [mem 0x5d590000-0x5d59013b]
[ 0.017983] ACPI: Reserving DMAR table memory at [mem 0x5d58f000-0x5d58f2bf]
[ 0.017984] ACPI: Reserving FPDT table memory at [mem 0x5d58e000-0x5d58e043]
[ 0.017984] ACPI: Reserving UEFI table memory at [mem 0x56376000-0x5637605b]
[ 0.017985] ACPI: Reserving UEFI table memory at [mem 0x5c377000-0x5c37705b]
[ 0.017986] ACPI: Reserving PHAT table memory at [mem 0x5d58c000-0x5d58c290]
[ 0.017986] ACPI: Reserving ASF! table memory at [mem 0x5d58d000-0x5d58d073]
[ 0.017987] ACPI: Reserving BGRT table memory at [mem 0x5d58b000-0x5d58b037]
[ 0.018003] Setting APIC routing to cluster x2apic.
[ 0.018027] SRAT: PXM 0 -> APIC 0x0000 -> Node 0
[ 0.018028] SRAT: PXM 0 -> APIC 0x0001 -> Node 0
[ 0.018028] SRAT: PXM 0 -> APIC 0x0002 -> Node 0
[ 0.018029] SRAT: PXM 0 -> APIC 0x0003 -> Node 0
[ 0.018029] SRAT: PXM 0 -> APIC 0x0004 -> Node 0
[ 0.018030] SRAT: PXM 0 -> APIC 0x0005 -> Node 0
[ 0.018030] SRAT: PXM 0 -> APIC 0x0006 -> Node 0
[ 0.018031] SRAT: PXM 0 -> APIC 0x0007 -> Node 0
[ 0.018031] SRAT: PXM 0 -> APIC 0x0008 -> Node 0
[ 0.018032] SRAT: PXM 0 -> APIC 0x0009 -> Node 0
[ 0.018032] SRAT: PXM 0 -> APIC 0x000a -> Node 0
[ 0.018033] SRAT: PXM 0 -> APIC 0x000b -> Node 0
[ 0.018033] SRAT: PXM 0 -> APIC 0x000c -> Node 0
[ 0.018034] SRAT: PXM 0 -> APIC 0x000d -> Node 0
[ 0.018034] SRAT: PXM 0 -> APIC 0x000e -> Node 0
[ 0.018035] SRAT: PXM 0 -> APIC 0x000f -> Node 0
[ 0.018035] SRAT: PXM 0 -> APIC 0x0010 -> Node 0
[ 0.018036] SRAT: PXM 0 -> APIC 0x0011 -> Node 0
[ 0.018037] SRAT: PXM 0 -> APIC 0x0012 -> Node 0
[ 0.018037] SRAT: PXM 0 -> APIC 0x0013 -> Node 0
[ 0.018038] SRAT: PXM 0 -> APIC 0x0014 -> Node 0
[ 0.018038] SRAT: PXM 0 -> APIC 0x0015 -> Node 0
[ 0.018039] SRAT: PXM 0 -> APIC 0x0016 -> Node 0
[ 0.018039] SRAT: PXM 0 -> APIC 0x0017 -> Node 0
[ 0.018040] SRAT: PXM 0 -> APIC 0x0018 -> Node 0
[ 0.018040] SRAT: PXM 0 -> APIC 0x0019 -> Node 0
[ 0.018041] SRAT: PXM 0 -> APIC 0x001a -> Node 0
[ 0.018041] SRAT: PXM 0 -> APIC 0x001b -> Node 0
[ 0.018042] SRAT: PXM 0 -> APIC 0x001c -> Node 0
[ 0.018042] SRAT: PXM 0 -> APIC 0x001d -> Node 0
[ 0.018043] SRAT: PXM 0 -> APIC 0x001e -> Node 0
[ 0.018043] SRAT: PXM 0 -> APIC 0x001f -> Node 0
[ 0.018047] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x6fffffff]
[ 0.018048] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x108fffffff]
[ 0.018054] NUMA: Initialized distance table, cnt=1
[ 0.018057] NUMA: Node 0 [mem 0x00000000-0x6fffffff] + [mem 0x100000000-0x108fffffff] -> [mem 0x00000000-0x108fffffff]
[ 0.018064] NODE_DATA(0) allocated [mem 0x108b7d4000-0x108b7fefff]
[ 0.018324] Zone ranges:
[ 0.018325] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.018327] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.018328] Normal [mem 0x0000000100000000-0x000000108fffffff]
[ 0.018329] Device empty
[ 0.018330] Movable zone start for each node
[ 0.018331] Early memory node ranges
[ 0.018331] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.018333] node 0: [mem 0x0000000000100000-0x0000000040090fff]
[ 0.018333] node 0: [mem 0x000000005d6ff000-0x000000005d6fffff]
[ 0.018334] node 0: [mem 0x0000000100000000-0x000000108fffffff]
[ 0.018338] Initmem setup node 0 [mem 0x0000000000001000-0x000000108fffffff]
[ 0.018342] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.018362] On node 0, zone DMA: 97 pages in unavailable ranges
[ 0.019929] On node 0, zone DMA32: 54894 pages in unavailable ranges
[ 0.098583] On node 0, zone Normal: 10496 pages in unavailable ranges
[ 0.098785] ACPI: PM-Timer IO Port: 0x508
[ 0.098793] ACPI: X2APIC_NMI (uid[0xffffffff] high edge lint[0x1])
[ 0.098795] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[ 0.098838] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
[ 0.098840] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.098842] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.098846] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.098847] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[ 0.098856] e820: update [mem 0x3820e000-0x38225fff] usable ==> reserved
[ 0.098865] TSC deadline timer available
[ 0.098866] smpboot: Allowing 32 CPUs, 0 hotplug CPUs
[ 0.098875] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.098877] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[ 0.098878] PM: hibernation: Registered nosave memory: [mem 0x36c9a000-0x36c9afff]
[ 0.098879] PM: hibernation: Registered nosave memory: [mem 0x36cbe000-0x36cbefff]
[ 0.098880] PM: hibernation: Registered nosave memory: [mem 0x36cbf000-0x36cbffff]
[ 0.098881] PM: hibernation: Registered nosave memory: [mem 0x36cd0000-0x36cd0fff]
[ 0.098882] PM: hibernation: Registered nosave memory: [mem 0x3820e000-0x38225fff]
[ 0.098883] PM: hibernation: Registered nosave memory: [mem 0x40091000-0x4fd3afff]
[ 0.098883] PM: hibernation: Registered nosave memory: [mem 0x4fd3b000-0x5c3f1fff]
[ 0.098884] PM: hibernation: Registered nosave memory: [mem 0x5c3f2000-0x5d6fefff]
[ 0.098885] PM: hibernation: Registered nosave memory: [mem 0x5d700000-0x6fffffff]
[ 0.098885] PM: hibernation: Registered nosave memory: [mem 0x70000000-0xfe00ffff]
[ 0.098886] PM: hibernation: Registered nosave memory: [mem 0xfe010000-0xfe010fff]
[ 0.098886] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xff0dffff]
[ 0.098887] PM: hibernation: Registered nosave memory: [mem 0xff0e0000-0xff0effff]
[ 0.098887] PM: hibernation: Registered nosave memory: [mem 0xff0f0000-0xffffffff]
[ 0.098889] [mem 0x70000000-0xfe00ffff] available for PCI devices
[ 0.098890] Booting paravirtualized kernel on bare hardware
[ 0.098892] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[ 0.098899] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:1
[ 0.100039] percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
[ 0.100044] pcpu-alloc: s217088 r8192 d28672 u262144 alloc=1*2097152
[ 0.100047] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15
[ 0.100054] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 28 29 30 31
[ 0.100078] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.5.0-rc7706a74159504-dirty root=UUID=6d53dc8e-3f45-4efa-bc0e-4af477fac217 ro debug ignore_loglevel log_buf_len=10M no_console_suspend console=tty0 console=ttyS0,115200n8
[ 0.100171] Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-6.5.0-rc7706a74159504-dirty", will be passed to user space.
[ 0.105185] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, linear)
[ 0.107691] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[ 0.108024] Fallback order for Node 0: 0
[ 0.108028] Built 1 zonelists, mobility grouping on. Total pages: 16321423
[ 0.108030] Policy zone: Normal
[ 0.108036] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[ 0.108052] software IO TLB: area num 32.
[ 0.232542] Memory: 64755552K/66322624K available (20480K kernel code, 4168K rwdata, 12056K rodata, 4616K init, 17680K bss, 1566868K reserved, 0K cma-reserved)
[ 0.232822] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[ 0.232855] ftrace: allocating 50657 entries in 198 pages
[ 0.243888] ftrace: allocated 198 pages with 4 groups
[ 0.244658] Dynamic Preempt: voluntary
[ 0.244722] rcu: Preemptible hierarchical RCU implementation.
[ 0.244723] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=32.
[ 0.244724] Trampoline variant of Tasks RCU enabled.
[ 0.244724] Rude variant of Tasks RCU enabled.
[ 0.244725] Tracing variant of Tasks RCU enabled.
[ 0.244725] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[ 0.244726] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[ 0.246979] NR_IRQS: 524544, nr_irqs: 680, preallocated irqs: 16
[ 0.247304] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.247490] Console: colour dummy device 80x25
[ 0.247492] printk: console [tty0] enabled
[ 0.247849] printk: console [ttyS0] enabled
[ 1.964336] ACPI: Core revision 20230331
[ 1.968985] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
[ 1.978171] APIC: Switch to symmetric I/O mode setup
[ 1.983198] DMAR: Host address width 52
[ 1.987094] DMAR: DRHD base: 0x00000094ffc000 flags: 0x0
[ 1.992472] DMAR: dmar0: reg_base_addr 94ffc000 ver 6:0 cap 19ed008c40780c66 ecap 3ee9e86f050df
[ 2.001235] DMAR: DRHD base: 0x000000a13fc000 flags: 0x0
[ 2.006610] DMAR: dmar1: reg_base_addr a13fc000 ver 6:0 cap 19ed008c40780c66 ecap 3ee9e86f050df
[ 2.015360] DMAR: DRHD base: 0x000000ad7fc000 flags: 0x0
[ 2.020737] DMAR: dmar2: reg_base_addr ad7fc000 ver 6:0 cap 19ed008c40780c66 ecap 3ee9e86f050df
[ 2.029490] DMAR: DRHD base: 0x000000b97fc000 flags: 0x0
[ 2.034866] DMAR: dmar3: reg_base_addr b97fc000 ver 6:0 cap 19ed008c40780c66 ecap 3ee9e86f050df
[ 2.043617] DMAR: DRHD base: 0x000000c57fc000 flags: 0x0
[ 2.048993] DMAR: dmar4: reg_base_addr c57fc000 ver 6:0 cap 19ed008c40780c66 ecap 3ee9e86f050df
[ 2.057745] DMAR: DRHD base: 0x000000d17fc000 flags: 0x0
[ 2.063120] DMAR: dmar5: reg_base_addr d17fc000 ver 6:0 cap 19ed008c40780c66 ecap 3ef9e86f050df
[ 2.071875] DMAR: DRHD base: 0x000000dd7fc000 flags: 0x0
[ 2.077251] DMAR: dmar6: reg_base_addr dd7fc000 ver 6:0 cap 19ed008c40780c66 ecap 3ef9e86f050df
[ 2.086005] DMAR: DRHD base: 0x000000ddffc000 flags: 0x0
[ 2.091380] DMAR: dmar7: reg_base_addr ddffc000 ver 6:0 cap 19ed008c40780c66 ecap 3ef9ea6f050df
[ 2.100132] DMAR: DRHD base: 0x000000de7fc000 flags: 0x0
[ 2.105507] DMAR: dmar8: reg_base_addr de7fc000 ver 6:0 cap 19ed008c40780c66 ecap 3ef9ea6f050df
[ 2.114260] DMAR: DRHD base: 0x000000deffc000 flags: 0x0
[ 2.119634] DMAR: dmar9: reg_base_addr deffc000 ver 6:0 cap 19ed008c40780c66 ecap 3ef9ea6f050df
[ 2.128385] DMAR: DRHD base: 0x000000df7fc000 flags: 0x0
[ 2.133760] DMAR: dmar10: reg_base_addr df7fc000 ver 6:0 cap 19ed008c40780c66 ecap 3ef9ea6f050df
[ 2.142594] DMAR: DRHD base: 0x00000088bfc000 flags: 0x1
[ 2.147968] DMAR: dmar11: reg_base_addr 88bfc000 ver 6:0 cap 19ed008c40780c66 ecap 3ee9e86f050df
[ 2.156811] DMAR: RMRR base: 0x0000004fd2d000 end: 0x0000004fd2ffff
[ 2.163137] DMAR: ATSR flags: 0x0
[ 2.166509] DMAR: RHSA base: 0x00000088bfc000 proximity domain: 0x0
[ 2.172836] DMAR: RHSA base: 0x00000094ffc000 proximity domain: 0x0
[ 2.179163] DMAR: RHSA base: 0x000000a13fc000 proximity domain: 0x0
[ 2.185491] DMAR: RHSA base: 0x000000ad7fc000 proximity domain: 0x0
[ 2.191818] DMAR: RHSA base: 0x000000b97fc000 proximity domain: 0x0
[ 2.198144] DMAR: RHSA base: 0x000000c57fc000 proximity domain: 0x0
[ 2.204472] DMAR: RHSA base: 0x000000d17fc000 proximity domain: 0x0
[ 2.210800] DMAR: RHSA base: 0x000000dd7fc000 proximity domain: 0x0
[ 2.217128] DMAR: RHSA base: 0x000000ddffc000 proximity domain: 0x0
[ 2.223447] DMAR: RHSA base: 0x000000de7fc000 proximity domain: 0x0
[ 2.229774] DMAR: RHSA base: 0x000000deffc000 proximity domain: 0x0
[ 2.236093] DMAR: RHSA base: 0x000000df7fc000 proximity domain: 0x0
[ 2.242420] DMAR: SATC flags: 0x0
[ 2.245762] DMAR-IR: IOAPIC id 8 under DRHD base 0x88bfc000 IOMMU 11
[ 2.252264] DMAR-IR: HPET id 0 under DRHD base 0x88bfc000
[ 2.257720] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 2.269308] DMAR-IR: Enabled IRQ remapping in x2apic mode
[ 2.276220] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 2.302108] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2ca08564bf3, max_idle_ns: 440795312460 ns
[ 2.312654] Calibrating delay loop (skipped), value calculated using timer frequency.. 6192.00 BogoMIPS (lpj=12384000)
[ 2.316725] x86/tme: not enabled by BIOS
[ 2.320657] CPU0: Thermal monitoring enabled (TM1)
[ 2.324653] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[ 2.329123] process: using mwait in idle threads
[ 2.332655] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[ 2.336651] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[ 2.340656] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 2.344654] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[ 2.348652] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 2.352652] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
[ 2.356653] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 2.360652] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 2.364674] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 2.368652] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 2.372651] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 2.376651] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[ 2.380651] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[ 2.384651] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[ 2.388651] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[ 2.392652] x86/fpu: Supporting XSAVE feature 0x400: 'PASID state'
[ 2.396651] x86/fpu: Supporting XSAVE feature 0x20000: 'AMX Tile config'
[ 2.400652] x86/fpu: Supporting XSAVE feature 0x40000: 'AMX Tile data'
[ 2.404652] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 2.408652] x86/fpu: xstate_offset[5]: 832, xstate_sizes[5]: 64
[ 2.412651] x86/fpu: xstate_offset[6]: 896, xstate_sizes[6]: 512
[ 2.416651] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[ 2.420651] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]: 8
[ 2.424651] x86/fpu: xstate_offset[10]: 2440, xstate_sizes[10]: 8
[ 2.428652] x86/fpu: xstate_offset[17]: 2496, xstate_sizes[17]: 64
[ 2.432651] x86/fpu: xstate_offset[18]: 2560, xstate_sizes[18]: 8192
[ 2.436651] x86/fpu: Enabled xstate features 0x606e7, context size is 10752 bytes, using 'compacted' format.
[ 2.469020] Freeing SMP alternatives memory: 40K
[ 2.472654] pid_max: default: 32768 minimum: 301
[ 2.482179] LSM: initializing lsm=lockdown,capability,landlock,yama,apparmor,integrity
[ 2.484672] landlock: Up and running.
[ 2.488651] Yama: becoming mindful.
[ 2.492672] AppArmor: AppArmor initialized
[ 2.496830] Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 2.500778] Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 2.506061] smpboot: CPU0: Intel(R) Xeon(R) w5-3435X (family: 0x6, model: 0x8f, stepping: 0x6)
[ 2.508764] RCU Tasks: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
[ 2.512663] RCU Tasks Rude: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
[ 2.516668] RCU Tasks Trace: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
[ 2.520661] Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline, AnyThread deprecated, Sapphire Rapids events, 32-deep LBR, full-width counters, Intel PMU driver.
[ 2.524653] ... version: 5
[ 2.528651] ... bit width: 48
[ 2.532651] ... generic registers: 8
[ 2.536651] ... value mask: 0000ffffffffffff
[ 2.540651] ... max period: 00007fffffffffff
[ 2.544651] ... fixed-purpose events: 4
[ 2.548651] ... event mask: 0001000f000000ff
[ 2.552733] signal: max sigframe size: 11952
[ 2.556665] Estimated ratio of average max frequency by base frequency (times 1024): 1387
[ 2.560667] rcu: Hierarchical SRCU implementation.
[ 2.564651] rcu: Max phase no-delay instances is 1000.
[ 2.570598] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 2.572936] smp: Bringing up secondary CPUs ...
[ 2.576742] smpboot: x86: Booting SMP configuration:
[ 2.580653] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7 #8 #9 #10 #11 #12 #13 #14 #15 #16 #17 #18 #19 #20 #21 #22 #23 #24 #25 #26 #27 #28 #29 #30 #31
[ 2.620708] smp: Brought up 1 node, 32 CPUs
[ 2.628652] smpboot: Max logical packages: 1
[ 2.632652] smpboot: Total of 32 processors activated (198144.00 BogoMIPS)
[ 2.642447] devtmpfs: initialized
[ 2.644705] x86/mm: Memory block size: 2048MB
[ 2.648988] ACPI: PM: Registering ACPI NVS region [mem 0x4fd3b000-0x5c3f1fff] (208367616 bytes)
[ 2.654225] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 2.656705] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[ 2.660733] pinctrl core: initialized pinctrl subsystem
[ 2.664835] PM: RTC time: 02:37:39, date: 2023-08-29
[ 2.669150] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 2.673146] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[ 2.677039] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 2.681041] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 2.684657] audit: initializing netlink subsys (disabled)
[ 2.688673] audit: type=2000 audit(1693276657.580:1): state=initialized audit_enabled=0 res=1
[ 2.688738] thermal_sys: Registered thermal governor 'fair_share'
[ 2.692653] thermal_sys: Registered thermal governor 'bang_bang'
[ 2.696652] thermal_sys: Registered thermal governor 'step_wise'
[ 2.700651] thermal_sys: Registered thermal governor 'user_space'
[ 2.704651] thermal_sys: Registered thermal governor 'power_allocator'
[ 2.708655] EISA bus registered
[ 2.715840] cpuidle: using governor ladder
[ 2.716682] cpuidle: using governor menu
[ 2.720694] Simple Boot Flag at 0x4a set to 0x80
[ 2.724727] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 2.728652] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 2.732730] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x70000000-0x7fffffff] (base 0x70000000)
[ 2.736655] PCI: not using MMCONFIG
[ 2.740173] PCI: Using configuration type 1 for base access
[ 2.741226] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 2.744761] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 2.752687] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 2.760652] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 2.764652] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 2.772651] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 2.781390] fbcon: Taking over console
[ 2.784681] ACPI: Added _OSI(Module Device)
[ 2.788651] ACPI: Added _OSI(Processor Device)
[ 2.792651] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 2.796651] ACPI: Added _OSI(Processor Aggregator Device)
[ 2.859052] ACPI: 7 ACPI AML tables successfully acquired and loaded
[ 2.878845] ACPI: \_SB_.SCK0.C000: _OSC native thermal LVT Acked
[ 2.885292] ACPI: Dynamic OEM Table Load:
[ 2.918245] ACPI: Dynamic OEM Table Load:
[ 2.926955] ACPI: Dynamic OEM Table Load:
[ 2.992882] ACPI: EC: EC started
[ 2.996141] ACPI: EC: interrupt blocked
[ 3.002740] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
[ 3.004654] ACPI: \_SB_.PC00.LPCB.ECDV: Boot DSDT EC used to handle transactions
[ 3.012652] ACPI: Interpreter enabled
[ 3.016362] ACPI: PM: (supports S0 S3 S4 S5)
[ 3.020651] ACPI: Using IOAPIC for interrupt routing
[ 3.028665] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x70000000-0x7fffffff] (base 0x70000000)
[ 3.045370] [Firmware Info]: PCI: MMCONFIG at [mem 0x70000000-0x7fffffff] not reserved in ACPI motherboard resources
[ 3.056654] PCI: MMCONFIG at [mem 0x70000000-0x7fffffff] reserved as EfiMemoryMappedIO
[ 3.064702] HEST: Table parsing has been initialized.
[ 3.068742] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[ 3.076653] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 3.084652] PCI: Ignoring E820 reservations for host bridge windows
[ 3.097749] ACPI: Enabled 2 GPEs in block 00 to 7F
[ 3.116592] ACPI: \_SB_.PC00.CNVW.WRST: New power resource
[ 3.130244] ACPI: \_SB_.PC00.RP21.PXSX.WRST: New power resource
[ 3.132673] ACPI: \_SB_.PC00.RP21.PXSX.DRST: New power resource
[ 3.157249] ACPI: \PIN_: New power resource
[ 3.169641] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-14])
[ 3.176657] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 3.206327] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[ 3.216793] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[ 3.224652] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[ 3.235035] PCI host bridge to bus 0000:00
[ 3.240652] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 3.244652] pci_bus 0000:00: root bus resource [io 0x1000-0x3fff window]
[ 3.252652] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 3.260652] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cffff window]
[ 3.268651] pci_bus 0000:00: root bus resource [mem 0xfe010000-0xfe010fff window]
[ 3.276651] pci_bus 0000:00: root bus resource [mem 0x80040000-0x88bfffff window]
[ 3.280652] pci_bus 0000:00: root bus resource [mem 0x200000000000-0x200fffffffff window]
[ 3.288652] pci_bus 0000:00: root bus resource [bus 00-14]
[ 3.296671] pci 0000:00:00.0: [8086:09a2] type 00 class 0x088000
[ 3.300735] pci 0000:00:00.1: [8086:09a4] type 00 class 0x088000
[ 3.308719] pci 0000:00:00.2: [8086:09a3] type 00 class 0x088000
[ 3.312724] pci 0000:00:00.4: [8086:0b23] type 00 class 0x080700
[ 3.320822] pci 0000:00:14.0: [8086:7ae0] type 00 class 0x0c0330
[ 3.324668] pci 0000:00:14.0: reg 0x10: [mem 0x200ffff00000-0x200ffff0ffff 64bit]
[ 3.332720] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 3.340876] pci 0000:00:14.2: [8086:7aa7] type 00 class 0x050000
[ 3.344669] pci 0000:00:14.2: reg 0x10: [mem 0x200ffff14000-0x200ffff17fff 64bit]
[ 3.352663] pci 0000:00:14.2: reg 0x18: [mem 0x200ffff1a000-0x200ffff1afff 64bit]
[ 3.360773] pci 0000:00:16.0: [8086:7ae8] type 00 class 0x078000
[ 3.368674] pci 0000:00:16.0: reg 0x10: [mem 0x200ffff19000-0x200ffff19fff 64bit]
[ 3.376739] pci 0000:00:16.0: PME# supported from D3hot
[ 3.380853] pci 0000:00:16.3: [8086:7aeb] type 00 class 0x070002
[ 3.384662] pci 0000:00:16.3: reg 0x10: [io 0x2048-0x204f]
[ 3.392656] pci 0000:00:16.3: reg 0x14: [mem 0x80d45000-0x80d45fff]
[ 3.396772] pci 0000:00:17.0: [8086:2826] type 00 class 0x010400
[ 3.404665] pci 0000:00:17.0: reg 0x10: [mem 0x80d40000-0x80d41fff]
[ 3.412659] pci 0000:00:17.0: reg 0x14: [mem 0x80d44000-0x80d440ff]
[ 3.416659] pci 0000:00:17.0: reg 0x18: [io 0x2040-0x2047]
[ 3.424659] pci 0000:00:17.0: reg 0x1c: [io 0x2050-0x2053]
[ 3.428660] pci 0000:00:17.0: reg 0x20: [io 0x2020-0x203f]
[ 3.432659] pci 0000:00:17.0: reg 0x24: [mem 0x80d43000-0x80d437ff]
[ 3.440692] pci 0000:00:17.0: PME# supported from D3hot
[ 3.444953] pci 0000:00:1b.0: [8086:7ac4] type 01 class 0x060400
[ 3.452758] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 3.456693] pci 0000:00:1b.0: PTM enabled (root), 4ns granularity
[ 3.465138] pci 0000:00:1c.0: [8086:7abc] type 01 class 0x060400
[ 3.472746] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 3.476686] pci 0000:00:1c.0: PTM enabled (root), 4ns granularity
[ 3.485120] pci 0000:00:1c.7: [8086:7abf] type 01 class 0x060400
[ 3.488746] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
[ 3.496685] pci 0000:00:1c.7: PTM enabled (root), 4ns granularity
[ 3.501097] pci 0000:00:1f.0: [8086:7a8a] type 00 class 0x060100
[ 3.508866] pci 0000:00:1f.3: [8086:7ad0] type 00 class 0x040300
[ 3.512690] pci 0000:00:1f.3: reg 0x10: [mem 0x200ffff10000-0x200ffff13fff 64bit]
[ 3.520701] pci 0000:00:1f.3: reg 0x20: [mem 0x200fffe00000-0x200fffefffff 64bit]
[ 3.528749] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[ 3.536875] pci 0000:00:1f.4: [8086:7aa3] type 00 class 0x0c0500
[ 3.540671] pci 0000:00:1f.4: reg 0x10: [mem 0x200ffff18000-0x200ffff180ff 64bit]
[ 3.548672] pci 0000:00:1f.4: reg 0x20: [io 0x2000-0x201f]
[ 3.556757] pci 0000:00:1f.5: [8086:7aa4] type 00 class 0x0c8000
[ 3.560668] pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
[ 3.568776] pci 0000:00:1f.6: [8086:1a1c] type 00 class 0x020000
[ 3.572678] pci 0000:00:1f.6: reg 0x10: [mem 0x80d00000-0x80d1ffff]
[ 3.580798] pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
[ 3.584809] pci 0000:01:00.0: [17cb:1103] type 00 class 0x028000
[ 3.592669] pci 0000:01:00.0: reg 0x10: [mem 0x80a00000-0x80bfffff 64bit]
[ 3.600763] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[ 3.604878] pci 0000:00:1b.0: PCI bridge to [bus 01]
[ 3.608656] pci 0000:00:1b.0: bridge window [mem 0x80a00000-0x80bfffff]
[ 3.616713] pci 0000:02:00.0: [1d6a:94c0] type 00 class 0x020000
[ 3.624673] pci 0000:02:00.0: reg 0x10: [mem 0x80800000-0x8087ffff 64bit]
[ 3.628665] pci 0000:02:00.0: reg 0x18: [mem 0x80880000-0x80880fff 64bit]
[ 3.636666] pci 0000:02:00.0: reg 0x20: [mem 0x80400000-0x807fffff 64bit]
[ 3.644661] pci 0000:02:00.0: reg 0x30: [mem 0xfffe0000-0xffffffff pref]
[ 3.652757] pci 0000:02:00.0: supports D1 D2
[ 3.656651] pci 0000:02:00.0: PME# supported from D0 D1 D3hot D3cold
[ 3.660789] pci 0000:02:00.0: 15.752 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x2 link at 0000:00:1c.0 (capable of 31.506 Gb/s with 16.0 GT/s PCIe x2 link)
[ 3.676780] pci 0000:00:1c.0: PCI bridge to [bus 02]
[ 3.680655] pci 0000:00:1c.0: bridge window [mem 0x80400000-0x808fffff]
[ 3.688717] pci 0000:03:00.0: [10ec:525a] type 00 class 0xff0000
[ 3.696677] pci 0000:03:00.0: reg 0x14: [mem 0x80c00000-0x80c00fff]
[ 3.700779] pci 0000:03:00.0: supports D1 D2
[ 3.704651] pci 0000:03:00.0: PME# supported from D1 D2 D3hot D3cold
[ 3.712801] pci 0000:00:1c.7: PCI bridge to [bus 03]
[ 3.716655] pci 0000:00:1c.7: bridge window [mem 0x80c00000-0x80cfffff]
[ 3.724670] pci_bus 0000:00: on NUMA node 0
[ 3.729457] ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 15-32])
[ 3.736653] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 3.753446] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER DPC]
[ 3.760915] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[ 3.768652] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[ 3.776775] PCI host bridge to bus 0000:15
[ 3.780651] pci_bus 0000:15: root bus resource [io 0x4000-0x5fff window]
[ 3.788651] pci_bus 0000:15: root bus resource [mem 0x88c00000-0x94ffffff window]
[ 3.796653] pci_bus 0000:15: root bus resource [mem 0x201000000000-0x201fffffffff window]
[ 3.804652] pci_bus 0000:15: root bus resource [bus 15-32]
[ 3.808660] pci 0000:15:00.0: [8086:09a2] type 00 class 0x088000
[ 3.816719] pci 0000:15:00.1: [8086:09a4] type 00 class 0x088000
[ 3.820716] pci 0000:15:00.2: [8086:09a3] type 00 class 0x088000
[ 3.828718] pci 0000:15:00.4: [8086:0b23] type 00 class 0x080700
[ 3.832754] pci 0000:15:01.0: [8086:352a] type 01 class 0x060400
[ 3.840661] pci 0000:15:01.0: reg 0x10: [mem 0x201ff2000000-0x201ff201ffff 64bit]
[ 3.848706] pci 0000:15:01.0: PME# supported from D0 D3hot D3cold
[ 3.852678] pci 0000:15:01.0: PTM enabled (root), 2ns granularity
[ 3.861028] pci 0000:16:00.0: [10de:26b1] type 00 class 0x030000
[ 3.864659] pci 0000:16:00.0: reg 0x10: [mem 0x89000000-0x89ffffff]
[ 3.872658] pci 0000:16:00.0: reg 0x14: [mem 0x201fe0000000-0x201fefffffff 64bit pref]
[ 3.880658] pci 0000:16:00.0: reg 0x1c: [mem 0x201ff0000000-0x201ff1ffffff 64bit pref]
[ 3.888656] pci 0000:16:00.0: reg 0x24: [io 0x4000-0x407f]
[ 3.892656] pci 0000:16:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[ 3.900667] pci 0000:16:00.0: BAR 1: assigned to efifb
[ 3.904683] pci 0000:16:00.0: PME# supported from D0 D3hot
[ 3.912775] pci 0000:16:00.1: [10de:22ba] type 00 class 0x040300
[ 3.916658] pci 0000:16:00.1: reg 0x10: [mem 0x8a000000-0x8a003fff]
[ 3.924762] pci 0000:15:01.0: PCI bridge to [bus 16]
[ 3.928652] pci 0000:15:01.0: bridge window [io 0x4000-0x4fff]
[ 3.936653] pci 0000:15:01.0: bridge window [mem 0x89000000-0x8a0fffff]
[ 3.940659] pci 0000:15:01.0: bridge window [mem 0x201fe0000000-0x201ff1ffffff 64bit pref]
[ 3.948657] pci_bus 0000:15: on NUMA node 0
[ 3.956803] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 33-50])
[ 3.960654] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 3.977471] acpi PNP0A08:02: _OSC: platform does not support [SHPCHotplug AER DPC]
[ 3.988918] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[ 3.996652] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
[ 4.004780] PCI host bridge to bus 0000:33
[ 4.008651] pci_bus 0000:33: root bus resource [io 0x6000-0x7fff window]
[ 4.012651] pci_bus 0000:33: root bus resource [mem 0x95000000-0xa13fffff window]
[ 4.020652] pci_bus 0000:33: root bus resource [mem 0x202000000000-0x202fffffffff window]
[ 4.028653] pci_bus 0000:33: root bus resource [bus 33-50]
[ 4.036661] pci 0000:33:00.0: [8086:09a2] type 00 class 0x088000
[ 4.040723] pci 0000:33:00.1: [8086:09a4] type 00 class 0x088000
[ 4.048719] pci 0000:33:00.2: [8086:09a3] type 00 class 0x088000
[ 4.052719] pci 0000:33:00.4: [8086:0b23] type 00 class 0x080700
[ 4.060750] pci 0000:33:00.5: [8086:28c0] type 00 class 0x010400
[ 4.064660] pci 0000:33:00.5: reg 0x10: [mem 0x202ffc000000-0x202ffdffffff 64bit pref]
[ 4.072656] pci 0000:33:00.5: reg 0x18: [mem 0x98000000-0x9bffffff]
[ 4.080661] pci 0000:33:00.5: reg 0x20: [mem 0x202ffe000000-0x202ffe1fffff 64bit]
[ 4.088707] pci 0000:33:01.0: [8086:09ab] type 00 class 0x088000
[ 4.092883] pci 0000:33:03.0: [8086:09ab] type 00 class 0x088000
[ 4.100872] pci 0000:33:05.0: [8086:09ab] type 00 class 0x088000
[ 4.104875] pci 0000:33:07.0: [8086:09ab] type 00 class 0x088000
[ 4.112878] pci_bus 0000:33: on NUMA node 0
[ 4.116754] ACPI: PCI Root Bridge [PC03] (domain 0000 [bus 51-6e])
[ 4.124652] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 4.141576] acpi PNP0A08:03: _OSC: platform does not support [SHPCHotplug AER DPC]
[ 4.148917] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[ 4.156652] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration
[ 4.164774] PCI host bridge to bus 0000:51
[ 4.168651] pci_bus 0000:51: root bus resource [io 0x8000-0x9fff window]
[ 4.176652] pci_bus 0000:51: root bus resource [mem 0xa1400000-0xad7fffff window]
[ 4.184652] pci_bus 0000:51: root bus resource [mem 0x203000000000-0x203fffffffff window]
[ 4.192652] pci_bus 0000:51: root bus resource [bus 51-6e]
[ 4.196660] pci 0000:51:00.0: [8086:09a2] type 00 class 0x088000
[ 4.204719] pci 0000:51:00.1: [8086:09a4] type 00 class 0x088000
[ 4.208719] pci 0000:51:00.2: [8086:09a3] type 00 class 0x088000
[ 4.216719] pci 0000:51:00.4: [8086:0b23] type 00 class 0x080700
[ 4.220750] pci 0000:51:00.5: [8086:28c0] type 00 class 0x010400
[ 4.228660] pci 0000:51:00.5: reg 0x10: [mem 0x203ffc000000-0x203ffdffffff 64bit pref]
[ 4.236656] pci 0000:51:00.5: reg 0x18: [mem 0xa4000000-0xa7ffffff]
[ 4.244661] pci 0000:51:00.5: reg 0x20: [mem 0x203ffe000000-0x203ffe1fffff 64bit]
[ 4.248707] pci 0000:51:01.0: [8086:09ab] type 00 class 0x088000
[ 4.256879] pci 0000:51:03.0: [8086:09ab] type 00 class 0x088000
[ 4.264876] pci 0000:51:05.0: [8086:09ab] type 00 class 0x088000
[ 4.268871] pci 0000:51:07.0: [8086:09ab] type 00 class 0x088000
[ 4.276880] pci_bus 0000:51: on NUMA node 0
[ 4.280756] ACPI: PCI Root Bridge [PC04] (domain 0000 [bus 6f-8c])
[ 4.284653] acpi PNP0A08:04: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 4.305577] acpi PNP0A08:04: _OSC: platform does not support [SHPCHotplug AER DPC]
[ 4.312917] acpi PNP0A08:04: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[ 4.320652] acpi PNP0A08:04: FADT indicates ASPM is unsupported, using BIOS configuration
[ 4.328774] PCI host bridge to bus 0000:6f
[ 4.332651] pci_bus 0000:6f: root bus resource [io 0xa000-0xbfff window]
[ 4.340651] pci_bus 0000:6f: root bus resource [mem 0xad800000-0xb97fffff window]
[ 4.348652] pci_bus 0000:6f: root bus resource [mem 0x204000000000-0x204fffffffff window]
[ 4.356652] pci_bus 0000:6f: root bus resource [bus 6f-8c]
[ 4.360660] pci 0000:6f:00.0: [8086:09a2] type 00 class 0x088000
[ 4.364719] pci 0000:6f:00.1: [8086:09a4] type 00 class 0x088000
[ 4.372719] pci 0000:6f:00.2: [8086:09a3] type 00 class 0x088000
[ 4.380720] pci 0000:6f:00.4: [8086:0b23] type 00 class 0x080700
[ 4.384751] pci 0000:6f:00.5: [8086:28c0] type 00 class 0x010400
[ 4.392661] pci 0000:6f:00.5: reg 0x10: [mem 0x204ffc000000-0x204ffdffffff 64bit pref]
[ 4.400656] pci 0000:6f:00.5: reg 0x18: [mem 0xb0000000-0xb3ffffff]
[ 4.404662] pci 0000:6f:00.5: reg 0x20: [mem 0x204ffe000000-0x204ffe1fffff 64bit]
[ 4.412707] pci 0000:6f:01.0: [8086:09ab] type 00 class 0x088000
[ 4.420883] pci 0000:6f:03.0: [8086:09ab] type 00 class 0x088000
[ 4.424871] pci 0000:6f:05.0: [8086:09ab] type 00 class 0x088000
[ 4.432871] pci 0000:6f:07.0: [8086:09ab] type 00 class 0x088000
[ 4.436878] pci_bus 0000:6f: on NUMA node 0
[ 4.440758] ACPI: PCI Root Bridge [PC05] (domain 0000 [bus 8d-aa])
[ 4.448652] acpi PNP0A08:05: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 4.465548] acpi PNP0A08:05: _OSC: platform does not support [SHPCHotplug AER DPC]
[ 4.472912] acpi PNP0A08:05: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[ 4.480653] acpi PNP0A08:05: FADT indicates ASPM is unsupported, using BIOS configuration
[ 4.492773] PCI host bridge to bus 0000:8d
[ 4.496651] pci_bus 0000:8d: root bus resource [io 0xc000-0xdfff window]
[ 4.500651] pci_bus 0000:8d: root bus resource [mem 0xb9800000-0xc57fffff window]
[ 4.508652] pci_bus 0000:8d: root bus resource [mem 0x205000000000-0x205fffffffff window]
[ 4.516652] pci_bus 0000:8d: root bus resource [bus 8d-aa]
[ 4.524660] pci 0000:8d:00.0: [8086:09a2] type 00 class 0x088000
[ 4.528716] pci 0000:8d:00.1: [8086:09a4] type 00 class 0x088000
[ 4.536716] pci 0000:8d:00.2: [8086:09a3] type 00 class 0x088000
[ 4.540720] pci 0000:8d:00.4: [8086:0b23] type 00 class 0x080700
[ 4.548754] pci_bus 0000:8d: on NUMA node 0
[ 4.552751] ACPI: PCI Root Bridge [PC06] (domain 0000 [bus ab-c8])
[ 4.556652] acpi PNP0A08:06: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 4.577587] acpi PNP0A08:06: _OSC: platform does not support [SHPCHotplug AER DPC]
[ 4.584914] acpi PNP0A08:06: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[ 4.592652] acpi PNP0A08:06: FADT indicates ASPM is unsupported, using BIOS configuration
[ 4.600771] PCI host bridge to bus 0000:ab
[ 4.604652] pci_bus 0000:ab: root bus resource [io 0xe000-0xefff window]
[ 4.612652] pci_bus 0000:ab: root bus resource [mem 0xc5800000-0xd17fffff window]
[ 4.620652] pci_bus 0000:ab: root bus resource [mem 0x206000000000-0x206fffffffff window]
[ 4.628652] pci_bus 0000:ab: root bus resource [bus ab-c8]
[ 4.632660] pci 0000:ab:00.0: [8086:09a2] type 00 class 0x088000
[ 4.636718] pci 0000:ab:00.1: [8086:09a4] type 00 class 0x088000
[ 4.644716] pci 0000:ab:00.2: [8086:09a3] type 00 class 0x088000
[ 4.652716] pci 0000:ab:00.4: [8086:0b23] type 00 class 0x080700
[ 4.656746] pci 0000:ab:00.5: [8086:28c0] type 00 class 0x010400
[ 4.664661] pci 0000:ab:00.5: reg 0x10: [mem 0x206ffc000000-0x206ffdffffff 64bit pref]
[ 4.672656] pci 0000:ab:00.5: reg 0x18: [mem 0xc8000000-0xcbffffff]
[ 4.676661] pci 0000:ab:00.5: reg 0x20: [mem 0x206ffe000000-0x206ffe1fffff 64bit]
[ 4.684705] pci 0000:ab:01.0: [8086:09ab] type 00 class 0x088000
[ 4.692878] pci 0000:ab:03.0: [8086:09ab] type 00 class 0x088000
[ 4.696869] pci 0000:ab:05.0: [8086:09ab] type 00 class 0x088000
[ 4.704875] pci 0000:ab:07.0: [8086:09ab] type 00 class 0x088000
[ 4.708879] pci_bus 0000:ab: on NUMA node 0
[ 4.712751] ACPI: PCI Root Bridge [PC07] (domain 0000 [bus c9-e6])
[ 4.720652] acpi PNP0A08:07: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 4.737257] acpi PNP0A08:07: _OSC: platform does not support [SHPCHotplug AER DPC]
[ 4.744802] acpi PNP0A08:07: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[ 4.752652] acpi PNP0A08:07: FADT indicates ASPM is unsupported, using BIOS configuration
[ 4.760782] PCI host bridge to bus 0000:c9
[ 4.764651] pci_bus 0000:c9: root bus resource [io 0xf000-0xffff window]
[ 4.772651] pci_bus 0000:c9: root bus resource [mem 0xd1800000-0xdd7fffff window]
[ 4.780652] pci_bus 0000:c9: root bus resource [mem 0x207000000000-0x207fffffffff window]
[ 4.788652] pci_bus 0000:c9: root bus resource [bus c9-e6]
[ 4.792660] pci 0000:c9:00.0: [8086:09a2] type 00 class 0x088000
[ 4.800720] pci 0000:c9:00.1: [8086:09a4] type 00 class 0x088000
[ 4.808719] pci 0000:c9:00.2: [8086:09a3] type 00 class 0x088000
[ 4.812720] pci 0000:c9:00.4: [8086:0b23] type 00 class 0x080700
[ 4.820751] pci 0000:c9:00.5: [8086:28c0] type 00 class 0x010400
[ 4.824661] pci 0000:c9:00.5: reg 0x10: [mem 0x207ffc000000-0x207ffdffffff 64bit pref]
[ 4.832656] pci 0000:c9:00.5: reg 0x18: [mem 0xd4000000-0xd7ffffff]
[ 4.840662] pci 0000:c9:00.5: reg 0x20: [mem 0x207ffe000000-0x207ffe1fffff 64bit]
[ 4.848709] pci 0000:c9:01.0: [8086:09ab] type 00 class 0x088000
[ 4.852878] pci 0000:c9:03.0: [8086:09ab] type 00 class 0x088000
[ 4.860874] pci 0000:c9:05.0: [8086:09ab] type 00 class 0x088000
[ 4.864881] pci 0000:c9:07.0: [8086:09ab] type 00 class 0x088000
[ 4.872880] pci_bus 0000:c9: on NUMA node 0
[ 4.876778] ACPI: PCI Root Bridge [DIN0] (domain 0000 [bus e7-eb])
[ 4.880652] acpi PNP0A08:08: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 4.901269] acpi PNP0A08:08: _OSC: platform does not support [SHPCHotplug AER DPC]
[ 4.908803] acpi PNP0A08:08: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[ 4.916652] acpi PNP0A08:08: FADT indicates ASPM is unsupported, using BIOS configuration
[ 4.924701] PCI host bridge to bus 0000:e7
[ 4.928651] pci_bus 0000:e7: root bus resource [mem 0xdd800000-0xddffffff window]
[ 4.936652] pci_bus 0000:e7: root bus resource [mem 0x208000000000-0x208fffffffff window]
[ 4.944652] pci_bus 0000:e7: root bus resource [bus e7-eb]
[ 4.948659] pci 0000:e7:00.0: [8086:09a2] type 00 class 0x088000
[ 4.956717] pci 0000:e7:00.1: [8086:09a4] type 00 class 0x088000
[ 4.960716] pci 0000:e7:00.2: [8086:09a3] type 00 class 0x088000
[ 4.968716] pci 0000:e7:00.4: [8086:0b23] type 00 class 0x080700
[ 4.972748] pci 0000:e7:01.0: [8086:0b25] type 00 class 0x088000
[ 4.980659] pci 0000:e7:01.0: reg 0x10: [mem 0x208ffff20000-0x208ffff2ffff 64bit pref]
[ 4.988657] pci 0000:e7:01.0: reg 0x18: [mem 0x208ffff00000-0x208ffff1ffff 64bit pref]
[ 4.996766] pci 0000:e7:03.0: [8086:09a6] type 00 class 0x088000
[ 5.000657] pci 0000:e7:03.0: reg 0x10: [mem 0xdd800000-0xdd8fffff]
[ 5.008724] pci 0000:e7:03.1: [8086:09a7] type 00 class 0x088000
[ 5.016657] pci 0000:e7:03.1: reg 0x10: [mem 0xdd940000-0xdd941fff]
[ 5.020654] pci 0000:e7:03.1: reg 0x14: [mem 0xdd900000-0xdd93ffff]
[ 5.028767] pci_bus 0000:e7: on NUMA node 0
[ 5.032779] ACPI: PCI Root Bridge [DIN0] (domain 0000 [bus ec-f0])
[ 5.036652] acpi PNP0A08:0b: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 5.057279] acpi PNP0A08:0b: _OSC: platform does not support [SHPCHotplug AER DPC]
[ 5.064809] acpi PNP0A08:0b: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[ 5.072652] acpi PNP0A08:0b: FADT indicates ASPM is unsupported, using BIOS configuration
[ 5.080700] PCI host bridge to bus 0000:ec
[ 5.084651] pci_bus 0000:ec: root bus resource [mem 0xde000000-0xde7fffff window]
[ 5.092652] pci_bus 0000:ec: root bus resource [mem 0x209000000000-0x209fffffffff window]
[ 5.100652] pci_bus 0000:ec: root bus resource [bus ec-f0]
[ 5.104659] pci 0000:ec:00.0: [8086:09a2] type 00 class 0x088000
[ 5.112716] pci 0000:ec:00.1: [8086:09a4] type 00 class 0x088000
[ 5.116720] pci 0000:ec:00.2: [8086:09a3] type 00 class 0x088000
[ 5.124717] pci 0000:ec:00.4: [8086:0b23] type 00 class 0x080700
[ 5.128754] pci_bus 0000:ec: on NUMA node 0
[ 5.132769] ACPI: PCI Root Bridge [DIN0] (domain 0000 [bus f1-f5])
[ 5.140652] acpi PNP0A08:0e: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 5.157277] acpi PNP0A08:0e: _OSC: platform does not support [SHPCHotplug AER DPC]
[ 5.164802] acpi PNP0A08:0e: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[ 5.172652] acpi PNP0A08:0e: FADT indicates ASPM is unsupported, using BIOS configuration
[ 5.180700] PCI host bridge to bus 0000:f1
[ 5.184651] pci_bus 0000:f1: root bus resource [mem 0xde800000-0xdeffffff window]
[ 5.192652] pci_bus 0000:f1: root bus resource [mem 0x20a000000000-0x20afffffffff window]
[ 5.200652] pci_bus 0000:f1: root bus resource [bus f1-f5]
[ 5.208660] pci 0000:f1:00.0: [8086:09a2] type 00 class 0x088000
[ 5.212717] pci 0000:f1:00.1: [8086:09a4] type 00 class 0x088000
[ 5.220717] pci 0000:f1:00.2: [8086:09a3] type 00 class 0x088000
[ 5.224720] pci 0000:f1:00.4: [8086:0b23] type 00 class 0x080700
[ 5.232761] pci_bus 0000:f1: on NUMA node 0
[ 5.236769] ACPI: PCI Root Bridge [DIN0] (domain 0000 [bus f6-fa])
[ 5.244652] acpi PNP0A08:11: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 5.261274] acpi PNP0A08:11: _OSC: platform does not support [SHPCHotplug AER DPC]
[ 5.268801] acpi PNP0A08:11: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[ 5.276652] acpi PNP0A08:11: FADT indicates ASPM is unsupported, using BIOS configuration
[ 5.284699] PCI host bridge to bus 0000:f6
[ 5.288651] pci_bus 0000:f6: root bus resource [mem 0xdf000000-0xdf7fffff window]
[ 5.296652] pci_bus 0000:f6: root bus resource [mem 0x20b000000000-0x20bfffffffff window]
[ 5.304652] pci_bus 0000:f6: root bus resource [bus f6-fa]
[ 5.308660] pci 0000:f6:00.0: [8086:09a2] type 00 class 0x088000
[ 5.316719] pci 0000:f6:00.1: [8086:09a4] type 00 class 0x088000
[ 5.320718] pci 0000:f6:00.2: [8086:09a3] type 00 class 0x088000
[ 5.328721] pci 0000:f6:00.4: [8086:0b23] type 00 class 0x080700
[ 5.332758] pci_bus 0000:f6: on NUMA node 0
[ 5.336742] ACPI: PCI Root Bridge [UB00] (domain 0000 [bus fe])
[ 5.344652] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 5.352711] acpi PNP0A03:00: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[ 5.360762] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[ 5.368652] acpi PNP0A03:00: FADT indicates ASPM is unsupported, using BIOS configuration
[ 5.376716] PCI host bridge to bus 0000:fe
[ 5.380651] pci_bus 0000:fe: root bus resource [bus fe]
[ 5.388658] pci 0000:fe:00.0: [8086:3250] type 00 class 0x088000
[ 5.392718] pci 0000:fe:00.1: [8086:3251] type 00 class 0x088000
[ 5.400707] pci 0000:fe:00.2: [8086:3252] type 00 class 0x088000
[ 5.404706] pci 0000:fe:00.3: [8086:0998] type 00 class 0x060000
[ 5.412729] pci 0000:fe:00.5: [8086:3255] type 00 class 0x088000
[ 5.416716] pci 0000:fe:05.0: [8086:3245] type 00 class 0x088000
[ 5.424742] pci 0000:fe:05.1: [8086:3246] type 00 class 0x088000
[ 5.428744] pci 0000:fe:05.2: [8086:3247] type 00 class 0x088000
[ 5.436751] pci 0000:fe:06.0: [8086:3245] type 00 class 0x088000
[ 5.440790] pci 0000:fe:06.1: [8086:3246] type 00 class 0x088000
[ 5.448791] pci 0000:fe:06.2: [8086:3247] type 00 class 0x088000
[ 5.456796] pci 0000:fe:07.0: [8086:3245] type 00 class 0x088000
[ 5.460791] pci 0000:fe:07.1: [8086:3246] type 00 class 0x088000
[ 5.468787] pci 0000:fe:07.2: [8086:3247] type 00 class 0x088000
[ 5.472795] pci 0000:fe:08.0: [8086:3245] type 00 class 0x088000
[ 5.480831] pci 0000:fe:08.1: [8086:3246] type 00 class 0x088000
[ 5.484830] pci 0000:fe:08.2: [8086:3247] type 00 class 0x088000
[ 5.492822] pci 0000:fe:0c.0: [8086:324a] type 00 class 0x110100
[ 5.496746] pci 0000:fe:0d.0: [8086:324a] type 00 class 0x110100
[ 5.504774] pci 0000:fe:0e.0: [8086:324a] type 00 class 0x110100
[ 5.508779] pci 0000:fe:0f.0: [8086:324a] type 00 class 0x110100
[ 5.516799] pci 0000:fe:1a.0: [8086:2880] type 00 class 0x110100
[ 5.520743] pci 0000:fe:1b.0: [8086:2880] type 00 class 0x110100
[ 5.528775] pci 0000:fe:1c.0: [8086:2880] type 00 class 0x110100
[ 5.536776] pci 0000:fe:1d.0: [8086:2880] type 00 class 0x110100
[ 5.540788] pci_bus 0000:fe: on NUMA node 0
[ 5.544686] ACPI: PCI Root Bridge [UB01] (domain 0000 [bus ff])
[ 5.552652] acpi PNP0A03:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 5.560711] acpi PNP0A03:01: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[ 5.568763] acpi PNP0A03:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[ 5.576652] acpi PNP0A03:01: FADT indicates ASPM is unsupported, using BIOS configuration
[ 5.584716] PCI host bridge to bus 0000:ff
[ 5.588651] pci_bus 0000:ff: root bus resource [bus ff]
[ 5.592663] pci 0000:ff:00.0: [8086:324c] type 00 class 0x088000
[ 5.600754] pci 0000:ff:00.1: [8086:324c] type 00 class 0x088000
[ 5.604759] pci 0000:ff:00.2: [8086:324c] type 00 class 0x088000
[ 5.612749] pci 0000:ff:00.3: [8086:324c] type 00 class 0x088000
[ 5.616752] pci 0000:ff:00.4: [8086:324c] type 00 class 0x088000
[ 5.624743] pci 0000:ff:00.5: [8086:324c] type 00 class 0x088000
[ 5.632747] pci 0000:ff:00.6: [8086:324c] type 00 class 0x088000
[ 5.636752] pci 0000:ff:00.7: [8086:324c] type 00 class 0x088000
[ 5.644759] pci 0000:ff:01.0: [8086:324c] type 00 class 0x088000
[ 5.648773] pci 0000:ff:01.1: [8086:324c] type 00 class 0x088000
[ 5.656761] pci 0000:ff:01.2: [8086:324c] type 00 class 0x088000
[ 5.660767] pci 0000:ff:01.3: [8086:324c] type 00 class 0x088000
[ 5.668769] pci 0000:ff:01.4: [8086:324c] type 00 class 0x088000
[ 5.672801] pci 0000:ff:01.5: [8086:324c] type 00 class 0x088000
[ 5.680796] pci 0000:ff:01.6: [8086:324c] type 00 class 0x088000
[ 5.684792] pci 0000:ff:01.7: [8086:324c] type 00 class 0x088000
[ 5.692787] pci 0000:ff:02.0: [8086:324c] type 00 class 0x088000
[ 5.696789] pci 0000:ff:02.1: [8086:324c] type 00 class 0x088000
[ 5.704783] pci 0000:ff:02.2: [8086:324c] type 00 class 0x088000
[ 5.712799] pci 0000:ff:02.3: [8086:324c] type 00 class 0x088000
[ 5.716801] pci 0000:ff:02.4: [8086:324c] type 00 class 0x088000
[ 5.724809] pci 0000:ff:02.5: [8086:324c] type 00 class 0x088000
[ 5.728804] pci 0000:ff:02.6: [8086:324c] type 00 class 0x088000
[ 5.736809] pci 0000:ff:02.7: [8086:324c] type 00 class 0x088000
[ 5.740806] pci 0000:ff:0a.0: [8086:324d] type 00 class 0x088000
[ 5.748762] pci 0000:ff:0a.1: [8086:324d] type 00 class 0x088000
[ 5.752755] pci 0000:ff:0a.2: [8086:324d] type 00 class 0x088000
[ 5.760754] pci 0000:ff:0a.3: [8086:324d] type 00 class 0x088000
[ 5.764753] pci 0000:ff:0a.4: [8086:324d] type 00 class 0x088000
[ 5.772741] pci 0000:ff:0a.5: [8086:324d] type 00 class 0x088000
[ 5.776748] pci 0000:ff:0a.6: [8086:324d] type 00 class 0x088000
[ 5.784752] pci 0000:ff:0a.7: [8086:324d] type 00 class 0x088000
[ 5.792759] pci 0000:ff:0b.0: [8086:324d] type 00 class 0x088000
[ 5.796761] pci 0000:ff:0b.1: [8086:324d] type 00 class 0x088000
[ 5.804761] pci 0000:ff:0b.2: [8086:324d] type 00 class 0x088000
[ 5.808768] pci 0000:ff:0b.3: [8086:324d] type 00 class 0x088000
[ 5.816770] pci 0000:ff:0b.4: [8086:324d] type 00 class 0x088000
[ 5.820802] pci 0000:ff:0b.5: [8086:324d] type 00 class 0x088000
[ 5.828798] pci 0000:ff:0b.6: [8086:324d] type 00 class 0x088000
[ 5.832792] pci 0000:ff:0b.7: [8086:324d] type 00 class 0x088000
[ 5.840785] pci 0000:ff:0c.0: [8086:324d] type 00 class 0x088000
[ 5.844788] pci 0000:ff:0c.1: [8086:324d] type 00 class 0x088000
[ 5.852783] pci 0000:ff:0c.2: [8086:324d] type 00 class 0x088000
[ 5.856802] pci 0000:ff:0c.3: [8086:324d] type 00 class 0x088000
[ 5.864800] pci 0000:ff:0c.4: [8086:324d] type 00 class 0x088000
[ 5.872802] pci 0000:ff:0c.5: [8086:324d] type 00 class 0x088000
[ 5.876807] pci 0000:ff:0c.6: [8086:324d] type 00 class 0x088000
[ 5.884806] pci 0000:ff:0c.7: [8086:324d] type 00 class 0x088000
[ 5.888814] pci 0000:ff:1d.0: [8086:344f] type 00 class 0x088000
[ 5.896772] pci 0000:ff:1d.1: [8086:3457] type 00 class 0x088000
[ 5.900756] pci 0000:ff:1e.0: [8086:3258] type 00 class 0x088000
[ 5.908712] pci 0000:ff:1e.1: [8086:3259] type 00 class 0x088000
[ 5.912693] pci 0000:ff:1e.2: [8086:325a] type 00 class 0x088000
[ 5.920693] pci 0000:ff:1e.3: [8086:325b] type 00 class 0x088000
[ 5.924692] pci 0000:ff:1e.4: [8086:325c] type 00 class 0x088000
[ 5.932693] pci 0000:ff:1e.5: [8086:325d] type 00 class 0x088000
[ 5.936692] pci 0000:ff:1e.6: [8086:325e] type 00 class 0x088000
[ 5.944692] pci 0000:ff:1e.7: [8086:325f] type 00 class 0x088000
[ 5.948692] pci_bus 0000:ff: on NUMA node 0
[ 5.957553] ACPI: EC: interrupt unblocked
[ 5.960654] ACPI: EC: event unblocked
[ 5.964353] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
[ 5.968652] ACPI: EC: GPE=0x6e
[ 5.971738] ACPI: \_SB_.PC00.LPCB.ECDV: Boot DSDT EC initialization complete
[ 5.980652] ACPI: \_SB_.PC00.LPCB.ECDV: EC: Used to handle transactions and events
[ 5.984832] acpi/hmat: Memory Flags:0001 Processor Domain:0 Memory Domain:0
[ 5.992652] acpi/hmat: Locality: Flags:00 Type:Read Latency Initiator Domains:1 Target Domains:1 Base:100
[ 6.004652] acpi/hmat: Initiator-Target[0-0]:91 nsec
[ 6.008652] acpi/hmat: Locality: Flags:00 Type:Write Latency Initiator Domains:1 Target Domains:1 Base:100
[ 6.016652] acpi/hmat: Initiator-Target[0-0]:91 nsec
[ 6.024651] acpi/hmat: Locality: Flags:00 Type:Read Bandwidth Initiator Domains:1 Target Domains:1 Base:100
[ 6.032652] acpi/hmat: Initiator-Target[0-0]:262100 MB/s
[ 6.036651] acpi/hmat: Locality: Flags:00 Type:Write Bandwidth Initiator Domains:1 Target Domains:1 Base:100
[ 6.048652] acpi/hmat: Initiator-Target[0-0]:176100 MB/s
[ 6.052696] iommu: Default domain type: Translated
[ 6.056654] iommu: DMA domain TLB invalidation policy: lazy mode
[ 6.064797] SCSI subsystem initialized
[ 6.068663] libata version 3.00 loaded.
[ 6.072666] ACPI: bus type USB registered
[ 6.076659] usbcore: registered new interface driver usbfs
[ 6.080654] usbcore: registered new interface driver hub
[ 6.088661] usbcore: registered new device driver usb
[ 6.092675] pps_core: LinuxPPS API ver. 1 registered
[ 6.096651] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@xxxxxxxx>
[ 6.104653] PTP clock support registered
[ 6.108671] EDAC MC: Ver: 3.0.0
[ 6.112686] efivars: Registered efivars operations
[ 6.120815] NetLabel: Initializing
[ 6.124250] NetLabel: domain hash size = 128
[ 6.128652] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 6.132669] NetLabel: unlabeled traffic allowed by default
[ 6.136677] mctp: management component transport protocol core
[ 6.144653] NET: Registered PF_MCTP protocol family
[ 6.148654] PCI: Using ACPI for IRQ routing
[ 6.157160] PCI: pci_cache_line_size set to 64 bytes
[ 6.165004] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[ 6.168652] e820: reserve RAM buffer [mem 0x36c9a018-0x37ffffff]
[ 6.176651] e820: reserve RAM buffer [mem 0x36cbf018-0x37ffffff]
[ 6.180651] e820: reserve RAM buffer [mem 0x3820e000-0x3bffffff]
[ 6.188651] e820: reserve RAM buffer [mem 0x40091000-0x43ffffff]
[ 6.192651] e820: reserve RAM buffer [mem 0x5d700000-0x5fffffff]
[ 6.200671] pci 0000:16:00.0: vgaarb: setting as boot VGA device
[ 6.204650] pci 0000:16:00.0: vgaarb: bridge control possible
[ 6.204650] pci 0000:16:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 6.220672] vgaarb: loaded
[ 6.223411] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 6.228653] hpet0: 8 comparators, 64-bit 24.000000 MHz counter
[ 6.238812] clocksource: Switched to clocksource tsc-early
[ 6.242349] VFS: Disk quotas dquot_6.6.0
[ 6.246334] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 6.253356] AppArmor: AppArmor Filesystem Enabled
[ 6.258511] pnp: PnP ACPI init
[ 6.265788] system 00:01: [io 0x0500-0x05fe] has been reserved
[ 6.271747] system 00:01: [io 0x0400-0x041f] has been reserved
[ 6.277694] system 00:01: [io 0x0600-0x061f] has been reserved
[ 6.283641] system 00:01: [io 0x0ca0-0x0ca1] has been reserved
[ 6.289591] system 00:01: [io 0x0ca4-0x0ca6] has been reserved
[ 6.295540] system 00:01: [mem 0xff000000-0xffffffff] could not be reserved
[ 6.302974] pnp 00:02: [dma 0 disabled]
[ 6.308290] system 00:03: [io 0x1000-0x10fe] has been reserved
[ 6.314911] pnp: PnP ACPI: found 5 devices
[ 6.325117] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 6.334092] NET: Registered PF_INET protocol family
[ 6.339277] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 6.349112] tcp_listen_portaddr_hash hash table entries: 32768 (order: 7, 524288 bytes, linear)
[ 6.357900] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 6.366180] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 6.374983] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 6.382544] TCP: Hash tables configured (established 524288 bind 65536)
[ 6.389537] MPTCP token hash table entries: 65536 (order: 8, 1572864 bytes, linear)
[ 6.397457] UDP hash table entries: 32768 (order: 8, 1048576 bytes, linear)
[ 6.404624] UDP-Lite hash table entries: 32768 (order: 8, 1048576 bytes, linear)
[ 6.412161] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 6.417863] NET: Registered PF_XDP protocol family
[ 6.422699] pci 0000:02:00.0: can't claim BAR 6 [mem 0xfffe0000-0xffffffff pref]: no compatible bridge window
[ 6.432652] pci 0000:16:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[ 6.442596] pci 0000:00:1b.0: PCI bridge to [bus 01]
[ 6.447597] pci 0000:00:1b.0: bridge window [mem 0x80a00000-0x80bfffff]
[ 6.454417] pci 0000:02:00.0: BAR 6: assigned [mem 0x808a0000-0x808bffff pref]
[ 6.461668] pci 0000:00:1c.0: PCI bridge to [bus 02]
[ 6.466665] pci 0000:00:1c.0: bridge window [mem 0x80400000-0x808fffff]
[ 6.473480] pci 0000:00:1c.7: PCI bridge to [bus 03]
[ 6.478478] pci 0000:00:1c.7: bridge window [mem 0x80c00000-0x80cfffff]
[ 6.485297] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 6.491504] pci_bus 0000:00: resource 5 [io 0x1000-0x3fff window]
[ 6.497709] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 6.504611] pci_bus 0000:00: resource 7 [mem 0x000c8000-0x000cffff window]
[ 6.511516] pci_bus 0000:00: resource 8 [mem 0xfe010000-0xfe010fff window]
[ 6.518420] pci_bus 0000:00: resource 9 [mem 0x80040000-0x88bfffff window]
[ 6.525324] pci_bus 0000:00: resource 10 [mem 0x200000000000-0x200fffffffff window]
[ 6.533008] pci_bus 0000:01: resource 1 [mem 0x80a00000-0x80bfffff]
[ 6.539306] pci_bus 0000:02: resource 1 [mem 0x80400000-0x808fffff]
[ 6.545602] pci_bus 0000:03: resource 1 [mem 0x80c00000-0x80cfffff]
[ 6.551996] pci 0000:16:00.0: BAR 6: assigned [mem 0x8a080000-0x8a0fffff pref]
[ 6.559253] pci 0000:15:01.0: PCI bridge to [bus 16]
[ 6.564246] pci 0000:15:01.0: bridge window [io 0x4000-0x4fff]
[ 6.570371] pci 0000:15:01.0: bridge window [mem 0x89000000-0x8a0fffff]
[ 6.577183] pci 0000:15:01.0: bridge window [mem 0x201fe0000000-0x201ff1ffffff 64bit pref]
[ 6.585646] pci_bus 0000:15: resource 4 [io 0x4000-0x5fff window]
[ 6.591852] pci_bus 0000:15: resource 5 [mem 0x88c00000-0x94ffffff window]
[ 6.598756] pci_bus 0000:15: resource 6 [mem 0x201000000000-0x201fffffffff window]
[ 6.606346] pci_bus 0000:16: resource 0 [io 0x4000-0x4fff]
[ 6.611946] pci_bus 0000:16: resource 1 [mem 0x89000000-0x8a0fffff]
[ 6.618244] pci_bus 0000:16: resource 2 [mem 0x201fe0000000-0x201ff1ffffff 64bit pref]
[ 6.626222] pci_bus 0000:33: resource 4 [io 0x6000-0x7fff window]
[ 6.632429] pci_bus 0000:33: resource 5 [mem 0x95000000-0xa13fffff window]
[ 6.639332] pci_bus 0000:33: resource 6 [mem 0x202000000000-0x202fffffffff window]
[ 6.646960] pci_bus 0000:51: resource 4 [io 0x8000-0x9fff window]
[ 6.653171] pci_bus 0000:51: resource 5 [mem 0xa1400000-0xad7fffff window]
[ 6.660075] pci_bus 0000:51: resource 6 [mem 0x203000000000-0x203fffffffff window]
[ 6.667702] pci_bus 0000:6f: resource 4 [io 0xa000-0xbfff window]
[ 6.673912] pci_bus 0000:6f: resource 5 [mem 0xad800000-0xb97fffff window]
[ 6.680814] pci_bus 0000:6f: resource 6 [mem 0x204000000000-0x204fffffffff window]
[ 6.688443] pci_bus 0000:8d: resource 4 [io 0xc000-0xdfff window]
[ 6.694653] pci_bus 0000:8d: resource 5 [mem 0xb9800000-0xc57fffff window]
[ 6.701555] pci_bus 0000:8d: resource 6 [mem 0x205000000000-0x205fffffffff window]
[ 6.709180] pci_bus 0000:ab: resource 4 [io 0xe000-0xefff window]
[ 6.715387] pci_bus 0000:ab: resource 5 [mem 0xc5800000-0xd17fffff window]
[ 6.722291] pci_bus 0000:ab: resource 6 [mem 0x206000000000-0x206fffffffff window]
[ 6.729916] pci_bus 0000:c9: resource 4 [io 0xf000-0xffff window]
[ 6.736126] pci_bus 0000:c9: resource 5 [mem 0xd1800000-0xdd7fffff window]
[ 6.743028] pci_bus 0000:c9: resource 6 [mem 0x207000000000-0x207fffffffff window]
[ 6.750657] pci_bus 0000:e7: resource 4 [mem 0xdd800000-0xddffffff window]
[ 6.757565] pci_bus 0000:e7: resource 5 [mem 0x208000000000-0x208fffffffff window]
[ 6.765159] pci_bus 0000:ec: resource 4 [mem 0xde000000-0xde7fffff window]
[ 6.772058] pci_bus 0000:ec: resource 5 [mem 0x209000000000-0x209fffffffff window]
[ 6.779652] pci_bus 0000:f1: resource 4 [mem 0xde800000-0xdeffffff window]
[ 6.786556] pci_bus 0000:f1: resource 5 [mem 0x20a000000000-0x20afffffffff window]
[ 6.794152] pci_bus 0000:f6: resource 4 [mem 0xdf000000-0xdf7fffff window]
[ 6.801056] pci_bus 0000:f6: resource 5 [mem 0x20b000000000-0x20bfffffffff window]
[ 6.809040] pci 0000:16:00.1: extending delay after power-on from D3hot to 20 msec
[ 6.816666] pci 0000:16:00.1: D0 power state depends on 0000:16:00.0
[ 6.823267] PCI: CLS 32 bytes, default 64
[ 6.827390] Unpacking initramfs...
[ 6.827433] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 6.837309] software IO TLB: mapped [mem 0x000000002d39a000-0x000000003139a000] (64MB)
[ 6.845319] intel_uncore: Invalid Global Discovery State: 0xffffffffffffffff 0xffffffffffffffff 0xffffffffffffffff
[ 6.855702] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2ca08564bf3, max_idle_ns: 440795312460 ns
[ 6.865795] clocksource: Switched to clocksource tsc
[ 6.871560] Initialise system trusted keyrings
[ 6.876047] Key type blacklist registered
[ 6.880147] workingset: timestamp_bits=36 max_order=24 bucket_order=0
[ 6.886626] zbud: loaded
[ 6.889406] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 6.895366] fuse: init (API version 7.38)
[ 6.899614] integrity: Platform Keyring initialized
[ 6.899960] Freeing initrd memory: 22032K
[ 6.904535] integrity: Machine keyring initialized
[ 6.918003] Key type asymmetric registered
[ 6.922138] Asymmetric key parser 'x509' registered
[ 6.927067] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[ 6.934547] io scheduler mq-deadline registered
[ 6.939798] pcieport 0000:00:00.4: PME: Signaling with IRQ 36
[ 6.945815] pcieport 0000:00:1b.0: PME: Signaling with IRQ 37
[ 6.951819] pcieport 0000:00:1c.0: PME: Signaling with IRQ 38
[ 6.957812] pcieport 0000:00:1c.7: PME: Signaling with IRQ 39
[ 6.963753] pcieport 0000:15:00.4: PME: Signaling with IRQ 40
[ 6.969673] pcieport 0000:15:01.0: PME: Signaling with IRQ 41
[ 6.975609] pcieport 0000:33:00.4: PME: Signaling with IRQ 42
[ 6.981536] pcieport 0000:51:00.4: PME: Signaling with IRQ 43
[ 6.987471] pcieport 0000:6f:00.4: PME: Signaling with IRQ 44
[ 6.993409] pcieport 0000:8d:00.4: PME: Signaling with IRQ 45
[ 6.999333] pcieport 0000:ab:00.4: PME: Signaling with IRQ 46
[ 7.005266] pcieport 0000:c9:00.4: PME: Signaling with IRQ 47
[ 7.011193] pcieport 0000:e7:00.4: PME: Signaling with IRQ 48
[ 7.017119] pcieport 0000:ec:00.4: PME: Signaling with IRQ 49
[ 7.023033] pcieport 0000:f1:00.4: PME: Signaling with IRQ 50
[ 7.028954] pcieport 0000:f6:00.4: PME: Signaling with IRQ 51
[ 7.034923] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 7.041729] efifb: probing for efifb
[ 7.045368] efifb: framebuffer at 0x201fe0000000, using 8640k, total 8640k
[ 7.052275] efifb: mode is 1920x1080x32, linelength=8192, pages=1
[ 7.058399] efifb: scrolling: redraw
[ 7.062008] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 7.067692] Console: switching to colour frame buffer device 240x67
[ 7.075012] fb0: EFI VGA frame buffer device
[ 7.079426] Monitor-Mwait will be used to enter C-1 state
[ 7.084887] Monitor-Mwait will be used to enter C-2 state
[ 7.090330] ACPI: \_SB_.SCK0.C000: Found 2 idle states
[ 7.096746] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[ 7.105209] ACPI: button: Power Button [PBTN]
[ 7.109620] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
[ 7.118012] ACPI: button: Sleep Button [SBTN]
[ 7.122424] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 7.129894] ACPI: button: Power Button [PWRF]
[ 7.136588] ERST: Error Record Serialization Table (ERST) support is initialized.
[ 7.144111] pstore: Registered erst as persistent store backend
[ 7.150266] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
þ[ 7.180535] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 7.192921] serial 0000:00:16.3: enabling device (0000 -> 0003)
[ 7.220059] 0000:00:16.3: ttyS4 at I/O 0x2048 (irq = 19, base_baud = 115200) is a 16550A
[ 7.228649] Linux agpgart interface v0.103
[ 7.239718] tpm_tis NTC0702:00: 2.0 TPM (device-id 0xFC, rev-id 1)
[ 7.401857] loop: module loaded
[ 7.405283] tun: Universal TUN/TAP device driver, 1.6
[ 7.410393] PPP generic driver version 2.4.2
[ 7.414880] VFIO - User Level meta-driver version: 0.3
[ 7.420146] i8042: PNP: No PS/2 controller found.
[ 7.424930] mousedev: PS/2 mouse device common for all mice
[ 7.430623] rtc_cmos 00:00: RTC can wake from S4
[ 7.435988] rtc_cmos 00:00: registered as rtc0
[ 7.440623] rtc_cmos 00:00: setting system clock to 2023-08-29T02:37:44 UTC (1693276664)
[ 7.448770] rtc_cmos 00:00: alarms up to one month, y3k, 114 bytes nvram
[ 7.455508] i2c_dev: i2c /dev entries driver
[ 7.461491] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[ 7.473714] device-mapper: uevent: version 1.0.3
[ 7.478435] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@xxxxxxxxxx
[ 7.486928] platform eisa.0: Probing EISA bus 0
[ 7.491501] platform eisa.0: EISA: Cannot allocate resource for mainboard
[ 7.498317] platform eisa.0: Cannot allocate resource for EISA slot 1
[ 7.504808] platform eisa.0: Cannot allocate resource for EISA slot 2
[ 7.511289] platform eisa.0: Cannot allocate resource for EISA slot 3
[ 7.517770] platform eisa.0: Cannot allocate resource for EISA slot 4
[ 7.524252] platform eisa.0: Cannot allocate resource for EISA slot 5
[ 7.530735] platform eisa.0: Cannot allocate resource for EISA slot 6
[ 7.537216] platform eisa.0: Cannot allocate resource for EISA slot 7
[ 7.543706] platform eisa.0: Cannot allocate resource for EISA slot 8
[ 7.550533] platform eisa.0: EISA: Detected 0 cards
[ 7.555788] intel_pstate: Intel P-state driver initializing
[ 7.569397] intel_pstate: HWP enabled
[ 7.574015] ledtrig-cpu: registered to indicate activity on CPUs
[ 7.580579] drop_monitor: Initializing network drop monitor service
[ 7.593854] NET: Registered PF_INET6 protocol family
[ 7.610282] Segment Routing with IPv6
[ 7.614260] In-situ OAM (IOAM) with IPv6
[ 7.618507] NET: Registered PF_PACKET protocol family
[ 7.624017] Key type dns_resolver registered
[ 7.640037] microcode: Microcode Update Driver: v2.2.
[ 7.640815] resctrl: L3 allocation detected
[ 7.650686] resctrl: L2 allocation detected
[ 7.655159] resctrl: MB allocation detected
[ 7.659627] resctrl: L3 monitoring detected
[ 7.664098] IPI shorthand broadcast: enabled
[ 7.669329] sched_clock: Marking stable (5808000511, 1861225689)->(7995478728, -326252528)
[ 7.678213] registered taskstats version 1
[ 7.683443] Loading compiled-in X.509 certificates
[ 7.688933] Loaded X.509 cert 'Build time autogenerated kernel key: f42129709b95eb6ec1fca334700315a860cfa459'
[ 7.699953] Key type .fscrypt registered
[ 7.704147] Key type fscrypt-provisioning registered
[ 7.709481] pstore: Using crash dump compression: deflate
[ 7.715467] Key type trusted registered
[ 7.725776] Key type encrypted registered
[ 7.730074] AppArmor: AppArmor sha1 policy hashing enabled
[ 7.735910] integrity: Loading X.509 certificate: UEFI:db
[ 7.741604] integrity: Loaded X.509 cert 'Dell Inc.: Dell Bios DB Key: 637fa7a9f74471b406de0511557071fd41dd5487'
[ 7.752051] integrity: Loading X.509 certificate: UEFI:db
[ 7.757731] integrity: Loaded X.509 cert 'Dell Inc.: Dell Bios FW Aux Authority 2018: dd4df7c3f5ce7e5a77847915abc37b031f6b10bd'
[ 7.769547] integrity: Loading X.509 certificate: UEFI:db
[ 7.775234] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[ 7.786552] integrity: Loading X.509 certificate: UEFI:db
[ 7.792241] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[ 7.803666] Loading compiled-in module X.509 certificates
[ 7.809648] Loaded X.509 cert 'Build time autogenerated kernel key: f42129709b95eb6ec1fca334700315a860cfa459'
[ 7.819842] ima: Allocated hash algorithm: sha1
[ 7.851019] ima: No architecture policies found
[ 7.855838] evm: Initialising EVM extended attributes:
[ 7.861260] evm: security.selinux
[ 7.864838] evm: security.SMACK64
[ 7.868424] evm: security.SMACK64EXEC
[ 7.872356] evm: security.SMACK64TRANSMUTE
[ 7.876719] evm: security.SMACK64MMAP
[ 7.880638] evm: security.apparmor
[ 7.884303] evm: security.ima
[ 7.887532] evm: security.capability
[ 7.891365] evm: HMAC attrs: 0x1
[ 7.895092] PM: Magic number: 3:981:612
[ 7.899387] tty tty: hash matches
[ 7.903006] acpi device:14f: hash matches
[ 7.907517] RAS: Correctable Errors collector initialized.
[ 7.913290] clk: Disabling unused clocks
[ 7.920620] Freeing unused decrypted memory: 2036K
[ 7.926282] Freeing unused kernel image (initmem) memory: 4616K
[ 7.937244] Write protecting the kernel read-only data: 32768k
[ 7.943539] Freeing unused kernel image (rodata/data gap) memory: 232K
[ 7.957165] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 7.963847] Run /init as init process
[ 7.967746] with arguments:
[ 7.970955] /init
[ 7.973468] with environment:
[ 7.976847] HOME=/
[ 7.979453] TERM=linux
[ 7.982398] BOOT_IMAGE=/boot/vmlinuz-6.5.0-rc7706a74159504-dirty
Loading, please wait...
+ '[' -z ]
+ BOOT=local
+ '[' -n ]
+ '[' '=' none ]
+ resume=
+ mount -t tmpfs -o 'nodev,noexec,nosuid,size=10%,mode=0755' tmpfs /run
+ mkdir -m 0700 /run/initramfs
+ '[' -n /run/initramfs/initramfs.debug ]
+ exec
[ 8.112782] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 8.118559] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 8.126499] MACsec IEEE 802.1AE
[ 8.126503] vmd 0000:33:00.5: PCI host bridge to bus 10000:80
[ 8.136150] pci_bus 10000:80: root bus resource [bus 80-9f]
[ 8.143237] rtsx_pci 0000:03:00.0: enabling device (0000 -> 0002)
[ 8.150379] e1000e: Intel(R) PRO/1000 Network Driver
[ 8.155736] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[ 8.160469] xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[ 8.171631] pci_bus 10000:80: root bus resource [mem 0x98000000-0x9bffffff]
[ 8.178900] ahci 0000:00:17.0: version 3.0
[ 8.183558] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 8 ports 6 Gbps 0xff impl RAID mode
[ 8.192118] ahci 0000:00:17.0: flags: 64bit ncq sntf pm clo only pio slum part ems deso sadm sds
[ 8.201491] i801_smbus 0000:00:1f.4: enabling device (0140 -> 0143)
[ 8.208174] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[ 8.214358] e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[ 8.224192] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 8.229831] pci_bus 10000:80: root bus resource [mem 0x202ffe002010-0x202ffe1fffff 64bit]
[ 8.238429] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[ 8.245009] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 8.297971] atlantic: Detect ATL2FW 103001f
[ 8.312504] pci 10000:80:01.0: [8086:352a] type 01 class 0x060400
[ 8.318905] pci 10000:80:01.0: reg 0x10: [mem 0x00000000-0x0001ffff 64bit]
[ 8.326082] pci 10000:80:01.0: enabling Extended Tags
[ 8.331553] xhci_hcd 0000:00:14.0: Host supports USB 3.2 Enhanced SuperSpeed
[ 8.349255] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.05
[ 8.357804] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 8.365340] usb usb1: Product: xHCI Host Controller
[ 8.370509] usb usb1: Manufacturer: Linux 6.5.0-rc7706a74159504-dirty xhci-hcd
[ 8.378018] usb usb1: SerialNumber: 0000:00:14.0
[ 8.384283] i2c i2c-0: 4/16 memory slots populated (from DMI)
[ 8.390352] i2c i2c-0: Systems with more than 4 memory slots not supported yet, not instantiating SPD
[ 8.399929] pci 10000:80:01.0: PME# supported from D0 D3hot D3cold
[ 8.406412] pci 10000:80:01.0: PTM enabled (root), 2ns granularity
[ 8.422917] pci 10000:80:03.0: [8086:352b] type 01 class 0x060400
[ 8.429422] pci 10000:80:03.0: reg 0x10: [mem 0x00000000-0x0001ffff 64bit]
[ 8.436681] pci 10000:80:03.0: enabling Extended Tags
[ 8.442607] pci 10000:80:03.0: PME# supported from D0 D3hot D3cold
[ 8.449163] hub 1-0:1.0: USB hub found
[ 8.449984] atlantic 0000:02:00.0 enp2s0: renamed from eth0
[ 8.459539] e1000e 0000:00:1f.6 0000:00:1f.6 (uninitialized): registered PHC clock
[ 8.467421] hub 1-0:1.0: 16 ports detected
[ 8.472280] scsi host0: ahci
[ 8.475752] scsi host1: ahci
[ 8.479215] scsi host2: ahci
[ 8.483046] scsi host3: ahci
[ 8.486408] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.05
[ 8.494994] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 8.502542] usb usb2: Product: xHCI Host Controller
[ 8.507752] usb usb2: Manufacturer: Linux 6.5.0-rc7706a74159504-dirty xhci-hcd
[ 8.515389] usb usb2: SerialNumber: 0000:00:14.0
[ 8.530459] pci 10000:80:03.0: PTM enabled (root), 2ns granularity
[ 8.537766] scsi host4: ahci
[ 8.541167] scsi host5: ahci
[ 8.545131] pci 10000:80:05.0: [8086:352c] type 01 class 0x060400
[ 8.551565] pci 10000:80:05.0: reg 0x10: [mem 0x00000000-0x0001ffff 64bit]
[ 8.558779] pci 10000:80:05.0: enabling Extended Tags
[ 8.572441] e1000e 0000:00:1f.6 eth0: (PCI Express:2.5GT/s:Width x1) 00:be:43:bd:d6:42
[ 8.580686] e1000e 0000:00:1f.6 eth0: Intel(R) PRO/1000 Network Connection
[ 8.588036] scsi host6: ahci
[ 8.591351] hub 2-0:1.0: USB hub found
[ 8.595461] scsi host7: ahci
[ 8.598713] ata1: SATA max UDMA/133 abar m2048@0x80d43000 port 0x80d43100 irq 53
[ 8.606441] ata2: SATA max UDMA/133 abar m2048@0x80d43000 port 0x80d43180 irq 53
[ 8.614167] ata3: SATA max UDMA/133 abar m2048@0x80d43000 port 0x80d43200 irq 53
[ 8.621891] ata4: SATA max UDMA/133 abar m2048@0x80d43000 port 0x80d43280 irq 53
[ 8.629612] ata5: SATA max UDMA/133 abar m2048@0x80d43000 port 0x80d43300 irq 53
[ 8.637358] ata6: SATA max UDMA/133 abar m2048@0x80d43000 port 0x80d43380 irq 53
[ 8.645074] ata7: SATA max UDMA/133 abar m2048@0x80d43000 port 0x80d43400 irq 53
[ 8.652786] ata8: SATA max UDMA/133 abar m2048@0x80d43000 port 0x80d43480 irq 53
[ 8.660490] hub 2-0:1.0: 9 ports detected
[ 8.664827] pci 10000:80:05.0: PME# supported from D0 D3hot D3cold
[ 8.672285] e1000e 0000:00:1f.6 eth0: MAC: 15, PHY: 12, PBA No: FFFFFF-0FF
[ 8.679506] pci 10000:80:05.0: PTM enabled (root), 2ns granularity
[ 8.686065] pci 10000:80:07.0: [8086:352d] type 01 class 0x060400
[ 8.692486] pci 10000:80:07.0: reg 0x10: [mem 0x00000000-0x0001ffff 64bit]
[ 8.699691] pci 10000:80:07.0: enabling Extended Tags
[ 8.705086] pci 10000:80:07.0: PME# supported from D0 D3hot D3cold
[ 8.711579] pci 10000:80:07.0: PTM enabled (root), 2ns granularity
[ 8.718123] pci 10000:81:00.0: [1179:0116] type 00 class 0x010802
[ 8.724515] pci 10000:81:00.0: reg 0x10: [mem 0x00000000-0x00003fff 64bit]
[ 8.731817] pci 10000:80:01.0: ASPM: current common clock configuration is inconsistent, reconfiguring
[ 8.741248] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[ 8.753241] pci 10000:80:01.0: PCI bridge to [bus 81]
[ 8.758575] pci 10000:80:01.0: bridge window [io 0x0000-0x1fff]
[ 8.765044] pci 10000:82:00.0: [1179:0116] type 00 class 0x010802
[ 8.771418] pci 10000:82:00.0: reg 0x10: [mem 0x00000000-0x00003fff 64bit]
[ 8.778696] pci 10000:80:03.0: ASPM: current common clock configuration is inconsistent, reconfiguring
[ 8.797281] pci 10000:80:03.0: PCI bridge to [bus 82]
[ 8.802618] pci 10000:80:03.0: bridge window [io 0x0000-0x1fff]
[ 8.809103] pci 10000:83:00.0: [1179:0116] type 00 class 0x010802
[ 8.815482] pci 10000:83:00.0: reg 0x10: [mem 0x00000000-0x00003fff 64bit]
[ 8.822779] pci 10000:80:05.0: ASPM: current common clock configuration is inconsistent, reconfiguring
[ 8.841292] pci 10000:80:05.0: PCI bridge to [bus 83]
[ 8.846629] pci 10000:80:05.0: bridge window [io 0x0000-0x1fff]
[ 8.853121] pci 10000:84:00.0: [1179:0116] type 00 class 0x010802
[ 8.859504] pci 10000:84:00.0: reg 0x10: [mem 0x00000000-0x00003fff 64bit]
[ 8.866803] pci 10000:80:07.0: ASPM: current common clock configuration is inconsistent, reconfiguring
[ 8.885283] pci 10000:80:07.0: PCI bridge to [bus 84]
[ 8.890654] pci 10000:80:07.0: bridge window [io 0x0000-0x1fff]
[ 8.901981] usb 1-1: New USB device found, idVendor=0bda, idProduct=5411, bcdDevice= 1.01
[ 8.910461] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 8.917866] usb 1-1: Product: 4-Port USB 2.1 Hub
[ 8.922755] usb 1-1: Manufacturer: Generic
[ 8.928530] hub 1-1:1.0: USB hub found
[ 8.933115] hub 1-1:1.0: 4 ports detected
[ 8.975925] ata7: SATA link down (SStatus 4 SControl 300)
[ 8.981665] ata4: SATA link down (SStatus 4 SControl 300)
[ 8.987373] ata1: SATA link down (SStatus 4 SControl 300)
[ 8.993091] ata5: SATA link down (SStatus 4 SControl 300)
[ 8.998809] ata8: SATA link down (SStatus 4 SControl 300)
[ 9.004504] ata2: SATA link down (SStatus 4 SControl 300)
[ 9.010218] ata6: SATA link down (SStatus 4 SControl 300)
[ 9.015926] ata3: SATA link down (SStatus 4 SControl 300)
[ 9.021589] usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
[ 9.029312] e1000e 0000:00:1f.6 enp0s31f6: renamed from eth0
[ 9.049363] pci 10000:80:01.0: BAR 14: assigned [mem 0x98000000-0x980fffff]
[ 9.054480] usb 2-1: New USB device found, idVendor=0bda, idProduct=0411, bcdDevice= 1.01
[ 9.056364] pci 10000:80:03.0: BAR 14: assigned [mem 0x98100000-0x981fffff]
[ 9.064568] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 9.071556] pci 10000:80:05.0: BAR 14: assigned [mem 0x98200000-0x982fffff]
[ 9.078714] usb 2-1: Product: 4-Port USB 3.1 Hub
[ 9.085699] pci 10000:80:07.0: BAR 14: assigned [mem 0x98300000-0x983fffff]
[ 9.090343] usb 2-1: Manufacturer: Generic
[ 9.097329] pci 10000:80:01.0: BAR 0: assigned [mem 0x202ffe020000-0x202ffe03ffff 64bit]
[ 9.105330] hub 2-1:1.0: USB hub found
[ 9.109576] pci 10000:80:03.0: BAR 0: assigned [mem 0x202ffe040000-0x202ffe05ffff 64bit]
[ 9.114175] hub 2-1:1.0: 4 ports detected
[ 9.121471] pci 10000:80:05.0: BAR 0: assigned [mem 0x202ffe060000-0x202ffe07ffff 64bit]
[ 9.126549] usb: port power management may be unreliable
[ 9.133626] pci 10000:80:07.0: BAR 0: assigned [mem 0x202ffe080000-0x202ffe09ffff 64bit]
[ 9.151172] pci 10000:80:01.0: BAR 13: no space for [io size 0x2000]
[ 9.157922] pci 10000:80:01.0: BAR 13: failed to assign [io size 0x2000]
[ 9.165011] pci 10000:80:03.0: BAR 13: no space for [io size 0x2000]
[ 9.171761] pci 10000:80:03.0: BAR 13: failed to assign [io size 0x2000]
[ 9.177280] usb 1-6: new low-speed USB device number 3 using xhci_hcd
[ 9.178581] pci 10000:80:05.0: BAR 13: no space for [io size 0x2000]
[ 9.192358] pci 10000:80:05.0: BAR 13: failed to assign [io size 0x2000]
[ 9.199456] pci 10000:80:07.0: BAR 13: no space for [io size 0x2000]
[ 9.206198] pci 10000:80:07.0: BAR 13: failed to assign [io size 0x2000]
[ 9.213330] pci 10000:81:00.0: BAR 0: assigned [mem 0x98000000-0x98003fff 64bit]
[ 9.221033] pci 10000:80:01.0: PCI bridge to [bus 81]
[ 9.226502] pci 10000:80:01.0: bridge window [mem 0x98000000-0x980fffff]
[ 9.233801] pci 10000:82:00.0: BAR 0: assigned [mem 0x98100000-0x98103fff 64bit]
[ 9.241619] pci 10000:80:03.0: PCI bridge to [bus 82]
[ 9.246971] pci 10000:80:03.0: bridge window [mem 0x98100000-0x981fffff]
[ 9.254151] pci 10000:83:00.0: BAR 0: assigned [mem 0x98200000-0x98203fff 64bit]
[ 9.261844] pci 10000:80:05.0: PCI bridge to [bus 83]
[ 9.267188] pci 10000:80:05.0: bridge window [mem 0x98200000-0x982fffff]
[ 9.274361] pci 10000:84:00.0: BAR 0: assigned [mem 0x98300000-0x98303fff 64bit]
[ 9.282041] pci 10000:80:07.0: PCI bridge to [bus 84]
[ 9.287365] pci 10000:80:07.0: bridge window [mem 0x98300000-0x983fffff]
[ 9.294538] pcieport 10000:80:01.0: can't derive routing for PCI INT A
[ 9.301376] pcieport 10000:80:01.0: PCI INT A: no GSI
[ 9.306754] pcieport 10000:80:01.0: PME: Signaling with IRQ 66
[ 9.312905] pcieport 10000:80:03.0: can't derive routing for PCI INT A
[ 9.319713] pcieport 10000:80:03.0: PCI INT A: no GSI
[ 9.325068] pcieport 10000:80:03.0: PME: Signaling with IRQ 67
[ 9.331206] pcieport 10000:80:05.0: can't derive routing for PCI INT A
[ 9.338006] pcieport 10000:80:05.0: PCI INT A: no GSI
[ 9.340995] usb 1-6: New USB device found, idVendor=04ca, idProduct=004b, bcdDevice= 1.09
[ 9.343118] pcieport 10000:80:05.0: PME: Signaling with IRQ 68
[ 9.351308] usb 1-6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 9.351309] usb 1-6: Product: USB Keyboard
[ 9.351310] usb 1-6: Manufacturer: Lite-On Technology Corp.
[ 9.357210] pcieport 10000:80:07.0: can't derive routing for PCI INT A
[ 9.382266] pcieport 10000:80:07.0: PCI INT A: no GSI
[ 9.387609] pcieport 10000:80:07.0: PME: Signaling with IRQ 69
[ 9.393754] vmd 0000:33:00.5: Bound to PCI domain 10000
[ 9.399515] vmd 0000:51:00.5: PCI host bridge to bus 10001:80
[ 9.405553] pci_bus 10001:80: root bus resource [bus 80-9f]
[ 9.411404] pci_bus 10001:80: root bus resource [mem 0xa4000000-0xa7ffffff]
[ 9.418633] pci_bus 10001:80: root bus resource [mem 0x203ffe002010-0x203ffe1fffff 64bit]
[ 9.427077] pci 10001:80:01.0: [8086:352a] type 01 class 0x060400
[ 9.433514] pci 10001:80:01.0: reg 0x10: [mem 0x00000000-0x0001ffff 64bit]
[ 9.440668] pci 10001:80:01.0: enabling Extended Tags
[ 9.446026] pci 10001:80:01.0: PME# supported from D0 D3hot D3cold
[ 9.452503] pci 10001:80:01.0: PTM enabled (root), 2ns granularity
[ 9.459028] pci 10001:80:03.0: [8086:352b] type 01 class 0x060400
[ 9.465456] pci 10001:80:03.0: reg 0x10: [mem 0x00000000-0x0001ffff 64bit]
[ 9.472615] pci 10001:80:03.0: enabling Extended Tags
[ 9.477973] pci 10001:80:03.0: PME# supported from D0 D3hot D3cold
[ 9.484449] pci 10001:80:03.0: PTM enabled (root), 2ns granularity
[ 9.490949] pci 10001:80:05.0: [8086:352c] type 01 class 0x060400
[ 9.493276] usb 1-12: new full-speed USB device number 4 using xhci_hcd
[ 9.497083] pci 10001:80:05.0: reg 0x10: [mem 0x00000000-0x0001ffff 64bit]
[ 9.511340] pci 10001:80:05.0: enabling Extended Tags
[ 9.516693] pci 10001:80:05.0: PME# supported from D0 D3hot D3cold
[ 9.523165] pci 10001:80:05.0: PTM enabled (root), 2ns granularity
[ 9.529657] pci 10001:80:07.0: [8086:352d] type 01 class 0x060400
[ 9.536022] pci 10001:80:07.0: reg 0x10: [mem 0x00000000-0x0001ffff 64bit]
[ 9.543169] pci 10001:80:07.0: enabling Extended Tags
[ 9.548513] pci 10001:80:07.0: PME# supported from D0 D3hot D3cold
[ 9.554975] pci 10001:80:07.0: PTM enabled (root), 2ns granularity
[ 9.561522] pci 10001:80:01.0: PCI bridge to [bus 81]
[ 9.566830] pci 10001:80:01.0: bridge window [io 0x0000-0x2fff]
[ 9.573298] pci 10001:80:03.0: PCI bridge to [bus 82]
[ 9.578602] pci 10001:80:03.0: bridge window [io 0x0000-0x2fff]
[ 9.585048] pci 10001:80:05.0: PCI bridge to [bus 83]
[ 9.590349] pci 10001:80:05.0: bridge window [io 0x0000-0x2fff]
[ 9.596795] pci 10001:80:07.0: PCI bridge to [bus 84]
[ 9.602096] pci 10001:80:07.0: bridge window [io 0x0000-0x2fff]
[ 9.608952] pci 10001:80:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 81] add_size 200000 add_align 100000
[ 9.620766] pci 10001:80:01.0: bridge window [mem 0x00100000-0x000fffff] to [bus 81] add_size 200000 add_align 100000
[ 9.631625] pci 10001:80:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 82] add_size 200000 add_align 100000
[ 9.643430] pci 10001:80:03.0: bridge window [mem 0x00100000-0x000fffff] to [bus 82] add_size 200000 add_align 100000
[ 9.649830] usb 1-12: New USB device found, idVendor=0489, idProduct=e0e3, bcdDevice= 0.01
[ 9.654062] pci 10001:80:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 83] add_size 200000 add_align 100000
[ 9.662348] usb 1-12: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 9.682518] pci 10001:80:05.0: bridge window [mem 0x00100000-0x000fffff] to [bus 83] add_size 200000 add_align 100000
[ 9.682612] hid: raw HID events driver (C) Jiri Kosina
[ 9.693149] pci 10001:80:07.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 84] add_size 200000 add_align 100000
[ 9.710763] pci 10001:80:07.0: bridge window [mem 0x00100000-0x000fffff] to [bus 84] add_size 200000 add_align 100000
[ 9.721752] pci 10001:80:01.0: BAR 14: assigned [mem 0xa4000000-0xa41fffff]
[ 9.729128] pci 10001:80:01.0: BAR 15: assigned [mem 0xa4200000-0xa43fffff 64bit pref]
[ 9.737467] pci 10001:80:03.0: BAR 14: assigned [mem 0xa4400000-0xa45fffff]
[ 9.742503] usbcore: registered new interface driver usbhid
[ 9.744455] pci 10001:80:03.0: BAR 15: assigned [mem 0xa4600000-0xa47fffff 64bit pref]
[ 9.750052] usbhid: USB HID core driver
[ 9.757992] pci 10001:80:05.0: BAR 14: assigned [mem 0xa4800000-0xa49fffff]
[ 9.771193] pci 10001:80:05.0: BAR 15: assigned [mem 0xa4a00000-0xa4bfffff 64bit pref]
[ 9.779651] pci 10001:80:07.0: BAR 14: assigned [mem 0xa4c00000-0xa4dfffff]
[ 9.787151] pci 10001:80:07.0: BAR 15: assigned [mem 0xa4e00000-0xa4ffffff 64bit pref]
[ 9.787576] input: Lite-On Technology Corp. USB Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.0/0003:04CA:004B.0001/input/input3
[ 9.795095] pci 10001:80:01.0: BAR 0: assigned [mem 0x203ffe020000-0x203ffe03ffff 64bit]
[ 9.816875] pci 10001:80:03.0: BAR 0: assigned [mem 0x203ffe040000-0x203ffe05ffff 64bit]
[ 9.825307] pci 10001:80:05.0: BAR 0: assigned [mem 0x203ffe060000-0x203ffe07ffff 64bit]
[ 9.833715] pci 10001:80:07.0: BAR 0: assigned [mem 0x203ffe080000-0x203ffe09ffff 64bit]
[ 9.842120] pci 10001:80:01.0: BAR 13: no space for [io size 0x3000]
[ 9.848882] pci 10001:80:01.0: BAR 13: failed to assign [io size 0x3000]
[ 9.855987] pci 10001:80:03.0: BAR 13: no space for [io size 0x3000]
[ 9.862746] pci 10001:80:03.0: BAR 13: failed to assign [io size 0x3000]
[ 9.869373] hid-generic 0003:04CA:004B.0001: input,hidraw0: USB HID v1.10 Keyboard [Lite-On Technology Corp. USB Keyboard] on usb-0000:00:14.0-6/input0
[ 9.869574] pci 10001:80:05.0: BAR 13: no space for [io size 0x3000]
[ 9.883354] input: Lite-On Technology Corp. USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.1/0003:04CA:004B.0002/input/input4
[ 9.889605] pci 10001:80:05.0: BAR 13: failed to assign [io size 0x3000]
[ 9.889606] pci 10001:80:07.0: BAR 13: no space for [io size 0x3000]
[ 9.889607] pci 10001:80:07.0: BAR 13: failed to assign [io size 0x3000]
[ 9.889611] pci 10001:80:01.0: BAR 13: no space for [io size 0x3000]
[ 9.889612] pci 10001:80:01.0: BAR 13: failed to assign [io size 0x3000]
[ 9.889613] pci 10001:80:03.0: BAR 13: no space for [io size 0x3000]
[ 9.889614] pci 10001:80:03.0: BAR 13: failed to assign [io size 0x3000]
[ 9.889614] pci 10001:80:05.0: BAR 13: no space for [io size 0x3000]
[ 9.889615] pci 10001:80:05.0: BAR 13: failed to assign [io size 0x3000]
[ 9.889616] pci 10001:80:07.0: BAR 13: no space for [io size 0x3000]
[ 9.889617] pci 10001:80:07.0: BAR 13: failed to assign [io size 0x3000]
[ 9.889618] pci 10001:80:01.0: PCI bridge to [bus 81]
[ 9.961507] input: Lite-On Technology Corp. USB Keyboard System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.1/0003:04CA:004B.0002/input/input5
[ 9.966294] pci 10001:80:01.0: bridge window [mem 0xa4000000-0xa41fffff]
[ 9.972967] hid-generic 0003:04CA:004B.0002: input,hidraw1: USB HID v1.10 Device [Lite-On Technology Corp. USB Keyboard] on usb-0000:00:14.0-6/input1
[ 9.979573] pci 10001:80:01.0: bridge window [mem 0xa4200000-0xa43fffff 64bit pref]
[ 9.979578] pci 10001:80:03.0: PCI bridge to [bus 82]
[ 10.036021] pci 10001:80:03.0: bridge window [mem 0xa4400000-0xa45fffff]
[ 10.043243] pci 10001:80:03.0: bridge window [mem 0xa4600000-0xa47fffff 64bit pref]
[ 10.051418] pci 10001:80:05.0: PCI bridge to [bus 83]
[ 10.056815] pci 10001:80:05.0: bridge window [mem 0xa4800000-0xa49fffff]
[ 10.064036] pci 10001:80:05.0: bridge window [mem 0xa4a00000-0xa4bfffff 64bit pref]
[ 10.072211] pci 10001:80:07.0: PCI bridge to [bus 84]
[ 10.077606] pci 10001:80:07.0: bridge window [mem 0xa4c00000-0xa4dfffff]
[ 10.084828] pci 10001:80:07.0: bridge window [mem 0xa4e00000-0xa4ffffff 64bit pref]
[ 10.093035] pcieport 10001:80:01.0: can't derive routing for PCI INT A
[ 10.099908] pcieport 10001:80:01.0: PCI INT A: no GSI
[ 10.105401] pcieport 10001:80:01.0: PME: Signaling with IRQ 70
[ 10.111625] pcieport 10001:80:01.0: pciehp: Slot #97 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
[ 10.128173] pcieport 10001:80:03.0: can't derive routing for PCI INT A
[ 10.135215] pcieport 10001:80:03.0: PCI INT A: no GSI
[ 10.140824] pcieport 10001:80:03.0: PME: Signaling with IRQ 71
[ 10.147054] pcieport 10001:80:03.0: pciehp: Slot #99 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
[ 10.163618] pcieport 10001:80:05.0: can't derive routing for PCI INT A
[ 10.170521] pcieport 10001:80:05.0: PCI INT A: no GSI
[ 10.175988] pcieport 10001:80:05.0: PME: Signaling with IRQ 72
[ 10.182195] pcieport 10001:80:05.0: pciehp: Slot #101 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
[ 10.198850] pcieport 10001:80:07.0: can't derive routing for PCI INT A
[ 10.205765] pcieport 10001:80:07.0: PCI INT A: no GSI
[ 10.211237] pcieport 10001:80:07.0: PME: Signaling with IRQ 73
[ 10.217502] pcieport 10001:80:07.0: pciehp: Slot #103 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
[ 10.234132] vmd 0000:51:00.5: Bound to PCI domain 10001
[ 10.239946] vmd 0000:6f:00.5: PCI host bridge to bus 10002:80
[ 10.246057] pci_bus 10002:80: root bus resource [bus 80-9f]
[ 10.251983] pci_bus 10002:80: root bus resource [mem 0xb0000000-0xb3ffffff]
[ 10.259289] pci_bus 10002:80: root bus resource [mem 0x204ffe002010-0x204ffe1fffff 64bit]
[ 10.267820] pci 10002:80:01.0: [8086:352a] type 01 class 0x060400
[ 10.274271] pci 10002:80:01.0: reg 0x10: [mem 0x00000000-0x0001ffff 64bit]
[ 10.281588] pci 10002:80:01.0: enabling Extended Tags
[ 10.287014] pci 10002:80:01.0: PME# supported from D0 D3hot D3cold
[ 10.293653] pci 10002:80:01.0: PTM enabled (root), 2ns granularity
[ 10.300236] pci 10002:80:03.0: [8086:352b] type 01 class 0x060400
[ 10.306683] pci 10002:80:03.0: reg 0x10: [mem 0x00000000-0x0001ffff 64bit]
[ 10.313913] pci 10002:80:03.0: enabling Extended Tags
[ 10.319342] pci 10002:80:03.0: PME# supported from D0 D3hot D3cold
[ 10.325877] pci 10002:80:03.0: PTM enabled (root), 2ns granularity
[ 10.332431] pci 10002:80:05.0: [8086:352c] type 01 class 0x060400
[ 10.338866] pci 10002:80:05.0: reg 0x10: [mem 0x00000000-0x0001ffff 64bit]
[ 10.346085] pci 10002:80:05.0: enabling Extended Tags
[ 10.351504] pci 10002:80:05.0: PME# supported from D0 D3hot D3cold
[ 10.358037] pci 10002:80:05.0: PTM enabled (root), 2ns granularity
[ 10.364596] pci 10002:80:07.0: [8086:352d] type 01 class 0x060400
[ 10.371032] pci 10002:80:07.0: reg 0x10: [mem 0x00000000-0x0001ffff 64bit]
[ 10.378250] pci 10002:80:07.0: enabling Extended Tags
[ 10.383657] pci 10002:80:07.0: PME# supported from D0 D3hot D3cold
[ 10.390179] pci 10002:80:07.0: PTM enabled (root), 2ns granularity
[ 10.396729] pci 10002:80:01.0: PCI bridge to [bus 81]
[ 10.402097] pci 10002:80:01.0: bridge window [io 0x0000-0x3fff]
[ 10.408605] pci 10002:80:03.0: PCI bridge to [bus 82]
[ 10.413980] pci 10002:80:03.0: bridge window [io 0x0000-0x3fff]
[ 10.420493] pci 10002:80:05.0: PCI bridge to [bus 83]
[ 10.425862] pci 10002:80:05.0: bridge window [io 0x0000-0x3fff]
[ 10.432376] pci 10002:84:00.0: [1c5c:1959] type 00 class 0x010802
[ 10.438792] pci 10002:84:00.0: reg 0x10: [mem 0x00000000-0x00003fff 64bit]
[ 10.446113] pci 10002:80:07.0: ASPM: current common clock configuration is inconsistent, reconfiguring
[ 10.465286] pci 10002:80:07.0: PCI bridge to [bus 84]
[ 10.470672] pci 10002:80:07.0: bridge window [io 0x0000-0x3fff]
[ 10.673328] pci 10002:80:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 81] add_size 200000 add_align 100000
[ 10.685339] pci 10002:80:01.0: bridge window [mem 0x00100000-0x000fffff] to [bus 81] add_size 200000 add_align 100000
[ 10.696348] pci 10002:80:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 82] add_size 200000 add_align 100000
[ 10.708309] pci 10002:80:03.0: bridge window [mem 0x00100000-0x000fffff] to [bus 82] add_size 200000 add_align 100000
[ 10.719313] pci 10002:80:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 83] add_size 200000 add_align 100000
[ 10.731262] pci 10002:80:05.0: bridge window [mem 0x00100000-0x000fffff] to [bus 83] add_size 200000 add_align 100000
[ 10.742256] pci 10002:80:07.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 84] add_size 200000 add_align 100000
[ 10.754209] pci 10002:80:07.0: bridge window [mem 0x00100000-0x001fffff] to [bus 84] add_size 100000 add_align 100000
[ 10.765212] pci 10002:80:01.0: BAR 14: assigned [mem 0xb0000000-0xb01fffff]
[ 10.772574] pci 10002:80:01.0: BAR 15: assigned [mem 0xb0200000-0xb03fffff 64bit pref]
[ 10.780890] pci 10002:80:03.0: BAR 14: assigned [mem 0xb0400000-0xb05fffff]
[ 10.788256] pci 10002:80:03.0: BAR 15: assigned [mem 0xb0600000-0xb07fffff 64bit pref]
[ 10.796576] pci 10002:80:05.0: BAR 14: assigned [mem 0xb0800000-0xb09fffff]
[ 10.803940] pci 10002:80:05.0: BAR 15: assigned [mem 0xb0a00000-0xb0bfffff 64bit pref]
[ 10.812259] pci 10002:80:07.0: BAR 14: assigned [mem 0xb0c00000-0xb0dfffff]
[ 10.819625] pci 10002:80:07.0: BAR 15: assigned [mem 0xb0e00000-0xb0ffffff 64bit pref]
[ 10.827945] pci 10002:80:01.0: BAR 0: assigned [mem 0x204ffe020000-0x204ffe03ffff 64bit]
[ 10.836447] pci 10002:80:03.0: BAR 0: assigned [mem 0x204ffe040000-0x204ffe05ffff 64bit]
[ 10.844945] pci 10002:80:05.0: BAR 0: assigned [mem 0x204ffe060000-0x204ffe07ffff 64bit]
[ 10.853456] pci 10002:80:07.0: BAR 0: assigned [mem 0x204ffe080000-0x204ffe09ffff 64bit]
[ 10.861940] pci 10002:80:01.0: BAR 13: no space for [io size 0x4000]
[ 10.868775] pci 10002:80:01.0: BAR 13: failed to assign [io size 0x4000]
[ 10.875946] pci 10002:80:03.0: BAR 13: no space for [io size 0x4000]
[ 10.882767] pci 10002:80:03.0: BAR 13: failed to assign [io size 0x4000]
[ 10.889928] pci 10002:80:05.0: BAR 13: no space for [io size 0x4000]
[ 10.896749] pci 10002:80:05.0: BAR 13: failed to assign [io size 0x4000]
[ 10.903901] pci 10002:80:07.0: BAR 13: no space for [io size 0x4000]
[ 10.910698] pci 10002:80:07.0: BAR 13: failed to assign [io size 0x4000]
[ 10.917837] pci 10002:80:01.0: BAR 13: no space for [io size 0x4000]
[ 10.924631] pci 10002:80:01.0: BAR 13: failed to assign [io size 0x4000]
[ 10.931755] pci 10002:80:03.0: BAR 13: no space for [io size 0x4000]
[ 10.938530] pci 10002:80:03.0: BAR 13: failed to assign [io size 0x4000]
[ 10.945655] pci 10002:80:05.0: BAR 13: no space for [io size 0x4000]
[ 10.952425] pci 10002:80:05.0: BAR 13: failed to assign [io size 0x4000]
[ 10.959535] pci 10002:80:07.0: BAR 13: no space for [io size 0x4000]
[ 10.966305] pci 10002:80:07.0: BAR 13: failed to assign [io size 0x4000]
[ 10.973438] pci 10002:80:01.0: PCI bridge to [bus 81]
[ 10.978821] pci 10002:80:01.0: bridge window [mem 0xb0000000-0xb01fffff]
[ 10.986020] pci 10002:80:01.0: bridge window [mem 0xb0200000-0xb03fffff 64bit pref]
[ 10.994174] pci 10002:80:03.0: PCI bridge to [bus 82]
[ 10.999554] pci 10002:80:03.0: bridge window [mem 0xb0400000-0xb05fffff]
[ 11.006752] pci 10002:80:03.0: bridge window [mem 0xb0600000-0xb07fffff 64bit pref]
[ 11.014907] pci 10002:80:05.0: PCI bridge to [bus 83]
[ 11.020283] pci 10002:80:05.0: bridge window [mem 0xb0800000-0xb09fffff]
[ 11.027480] pci 10002:80:05.0: bridge window [mem 0xb0a00000-0xb0bfffff 64bit pref]
[ 11.035649] pci 10002:84:00.0: BAR 0: assigned [mem 0xb0c00000-0xb0c03fff 64bit]
[ 11.043372] pci 10002:80:07.0: PCI bridge to [bus 84]
[ 11.048749] pci 10002:80:07.0: bridge window [mem 0xb0c00000-0xb0dfffff]
[ 11.055949] pci 10002:80:07.0: bridge window [mem 0xb0e00000-0xb0ffffff 64bit pref]
[ 11.064125] pcieport 10002:80:01.0: can't derive routing for PCI INT A
[ 11.070976] pcieport 10002:80:01.0: PCI INT A: no GSI
[ 11.076424] pcieport 10002:80:01.0: PME: Signaling with IRQ 74
[ 11.082597] pcieport 10002:80:01.0: pciehp: Slot #105 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
[ 11.099251] pcieport 10002:80:03.0: can't derive routing for PCI INT A
[ 11.106141] pcieport 10002:80:03.0: PCI INT A: no GSI
[ 11.111603] pcieport 10002:80:03.0: PME: Signaling with IRQ 75
[ 11.117796] pcieport 10002:80:03.0: pciehp: Slot #107 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
[ 11.134415] pcieport 10002:80:05.0: can't derive routing for PCI INT A
[ 11.141345] pcieport 10002:80:05.0: PCI INT A: no GSI
[ 11.146821] pcieport 10002:80:05.0: PME: Signaling with IRQ 76
[ 11.153028] pcieport 10002:80:05.0: pciehp: Slot #109 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
[ 11.169753] pcieport 10002:80:07.0: can't derive routing for PCI INT A
[ 11.176681] pcieport 10002:80:07.0: PCI INT A: no GSI
[ 11.182179] pcieport 10002:80:07.0: PME: Signaling with IRQ 77
[ 11.188400] pcieport 10002:80:07.0: pciehp: Slot #111 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
[ 11.205099] vmd 0000:6f:00.5: Bound to PCI domain 10002
[ 11.210947] vmd 0000:ab:00.5: PCI host bridge to bus 10003:00
[ 11.217084] pci_bus 10003:00: root bus resource [bus 00-1f]
[ 11.223034] pci_bus 10003:00: root bus resource [mem 0xc8000000-0xcbffffff]
[ 11.230371] pci_bus 10003:00: root bus resource [mem 0x206ffe002010-0x206ffe1fffff 64bit]
[ 11.238917] pci 10003:00:01.0: [8086:352a] type 01 class 0x060400
[ 11.245416] pci 10003:00:01.0: reg 0x10: [mem 0x00000000-0x0001ffff 64bit]
[ 11.252668] pci 10003:00:01.0: enabling Extended Tags
[ 11.258116] pci 10003:00:01.0: PME# supported from D0 D3hot D3cold
[ 11.264684] pci 10003:00:01.0: PTM enabled (root), 2ns granularity
[ 11.271283] pci 10003:00:03.0: [8086:352b] type 01 class 0x060400
[ 11.277744] pci 10003:00:03.0: reg 0x10: [mem 0x00000000-0x0001ffff 64bit]
[ 11.284986] pci 10003:00:03.0: enabling Extended Tags
[ 11.290427] pci 10003:00:03.0: PME# supported from D0 D3hot D3cold
[ 11.296987] pci 10003:00:03.0: PTM enabled (root), 2ns granularity
[ 11.303571] pci 10003:00:05.0: [8086:352c] type 01 class 0x060400
[ 11.310018] pci 10003:00:05.0: reg 0x10: [mem 0x00000000-0x0001ffff 64bit]
[ 11.317247] pci 10003:00:05.0: enabling Extended Tags
[ 11.322672] pci 10003:00:05.0: PME# supported from D0 D3hot D3cold
[ 11.329209] pci 10003:00:05.0: PTM enabled (root), 2ns granularity
[ 11.335771] pci 10003:00:07.0: [8086:352d] type 01 class 0x060400
[ 11.342201] pci 10003:00:07.0: reg 0x10: [mem 0x00000000-0x0001ffff 64bit]
[ 11.349440] pci 10003:00:07.0: enabling Extended Tags
[ 11.354845] pci 10003:00:07.0: PME# supported from D0 D3hot D3cold
[ 11.361395] pci 10003:00:07.0: PTM enabled (root), 2ns granularity
[ 11.367956] pci 10003:00:01.0: PCI bridge to [bus 01]
[ 11.373353] pci 10003:00:01.0: bridge window [io 0x0000-0x5fff]
[ 11.379878] pci 10003:00:03.0: PCI bridge to [bus 02]
[ 11.385265] pci 10003:00:03.0: bridge window [io 0x0000-0x5fff]
[ 11.391796] pci 10003:03:00.0: [144d:a804] type 00 class 0x010802
[ 11.398234] pci 10003:03:00.0: reg 0x10: [mem 0x00000000-0x00003fff 64bit]
[ 11.405627] pci 10003:00:05.0: ASPM: current common clock configuration is inconsistent, reconfiguring
[ 11.425295] pci 10003:00:05.0: PCI bridge to [bus 03]
[ 11.430708] pci 10003:00:05.0: bridge window [io 0x0000-0x5fff]
[ 11.437277] pci 10003:04:00.0: [144d:a804] type 00 class 0x010802
[ 11.443734] pci 10003:04:00.0: reg 0x10: [mem 0x00000000-0x00003fff 64bit]
[ 11.451135] pci 10003:00:07.0: ASPM: current common clock configuration is inconsistent, reconfiguring
[ 11.469295] pci 10003:00:07.0: PCI bridge to [bus 04]
[ 11.474716] pci 10003:00:07.0: bridge window [io 0x0000-0x5fff]
[ 11.629363] pci 10003:00:05.0: BAR 14: assigned [mem 0xc8000000-0xc80fffff]
[ 11.636830] pci 10003:00:07.0: BAR 14: assigned [mem 0xc8100000-0xc81fffff]
[ 11.644269] pci 10003:00:01.0: BAR 0: assigned [mem 0x206ffe020000-0x206ffe03ffff 64bit]
[ 11.652846] pci 10003:00:03.0: BAR 0: assigned [mem 0x206ffe040000-0x206ffe05ffff 64bit]
[ 11.661436] pci 10003:00:05.0: BAR 0: assigned [mem 0x206ffe060000-0x206ffe07ffff 64bit]
[ 11.670007] pci 10003:00:07.0: BAR 0: assigned [mem 0x206ffe080000-0x206ffe09ffff 64bit]
[ 11.678577] pci 10003:00:01.0: BAR 13: no space for [io size 0x6000]
[ 11.685511] pci 10003:00:01.0: BAR 13: failed to assign [io size 0x6000]
[ 11.692771] pci 10003:00:03.0: BAR 13: no space for [io size 0x6000]
[ 11.699687] pci 10003:00:03.0: BAR 13: failed to assign [io size 0x6000]
[ 11.706946] pci 10003:00:05.0: BAR 13: no space for [io size 0x6000]
[ 11.713866] pci 10003:00:05.0: BAR 13: failed to assign [io size 0x6000]
[ 11.721125] pci 10003:00:07.0: BAR 13: no space for [io size 0x6000]
[ 11.728039] pci 10003:00:07.0: BAR 13: failed to assign [io size 0x6000]
[ 11.735295] pci 10003:00:01.0: PCI bridge to [bus 01]
[ 11.740810] pci 10003:00:03.0: PCI bridge to [bus 02]
[ 11.746311] pci 10003:03:00.0: BAR 0: assigned [mem 0xc8000000-0xc8003fff 64bit]
[ 11.754128] pci 10003:00:05.0: PCI bridge to [bus 03]
[ 11.759595] pci 10003:00:05.0: bridge window [mem 0xc8000000-0xc80fffff]
[ 11.766884] pci 10003:04:00.0: BAR 0: assigned [mem 0xc8100000-0xc8103fff 64bit]
[ 11.774679] pci 10003:00:07.0: PCI bridge to [bus 04]
[ 11.780129] pci 10003:00:07.0: bridge window [mem 0xc8100000-0xc81fffff]
[ 11.787433] pcieport 10003:00:01.0: can't derive routing for PCI INT A
[ 11.794348] pcieport 10003:00:01.0: PCI INT A: no GSI
[ 11.799850] pcieport 10003:00:01.0: PME: Signaling with IRQ 78
[ 11.806120] pcieport 10003:00:03.0: can't derive routing for PCI INT A
[ 11.813002] pcieport 10003:00:03.0: PCI INT A: no GSI
[ 11.818445] pcieport 10003:00:03.0: PME: Signaling with IRQ 79
[ 11.824659] pcieport 10003:00:05.0: can't derive routing for PCI INT A
[ 11.831514] pcieport 10003:00:05.0: PCI INT A: no GSI
[ 11.836920] pcieport 10003:00:05.0: PME: Signaling with IRQ 80
[ 11.843126] pcieport 10003:00:07.0: can't derive routing for PCI INT A
[ 11.849981] pcieport 10003:00:07.0: PCI INT A: no GSI
[ 11.855395] pcieport 10003:00:07.0: PME: Signaling with IRQ 81
[ 11.861593] vmd 0000:ab:00.5: Bound to PCI domain 10003
[ 11.867434] vmd 0000:c9:00.5: PCI host bridge to bus 10004:00
[ 11.873562] pci_bus 10004:00: root bus resource [bus 00-1f]
[ 11.879448] pci_bus 10004:00: root bus resource [mem 0xd4000000-0xd7ffffff]
[ 11.886715] pci_bus 10004:00: root bus resource [mem 0x207ffe002010-0x207ffe1fffff 64bit]
[ 11.895204] pci 10004:00:01.0: [8086:352a] type 01 class 0x060400
[ 11.901621] pci 10004:00:01.0: reg 0x10: [mem 0x00000000-0x0001ffff 64bit]
[ 11.908816] pci 10004:00:01.0: enabling Extended Tags
[ 11.914212] pci 10004:00:01.0: PME# supported from D0 D3hot D3cold
[ 11.920730] pci 10004:00:01.0: PTM enabled (root), 2ns granularity
[ 11.927294] pci 10004:00:03.0: [8086:352b] type 01 class 0x060400
[ 11.933713] pci 10004:00:03.0: reg 0x10: [mem 0x00000000-0x0001ffff 64bit]
[ 11.940907] pci 10004:00:03.0: enabling Extended Tags
[ 11.946343] pci 10004:00:03.0: PME# supported from D0 D3hot D3cold
[ 11.952894] pci 10004:00:03.0: PTM enabled (root), 2ns granularity
[ 11.959443] pci 10004:00:05.0: [8086:352c] type 01 class 0x060400
[ 11.965860] pci 10004:00:05.0: reg 0x10: [mem 0x00000000-0x0001ffff 64bit]
[ 11.973056] pci 10004:00:05.0: enabling Extended Tags
[ 11.978457] pci 10004:00:05.0: PME# supported from D0 D3hot D3cold
[ 11.984969] pci 10004:00:05.0: PTM enabled (root), 2ns granularity
[ 11.991508] pci 10004:00:07.0: [8086:352d] type 01 class 0x060400
[ 11.997923] pci 10004:00:07.0: reg 0x10: [mem 0x00000000-0x0001ffff 64bit]
[ 12.005126] pci 10004:00:07.0: enabling Extended Tags
[ 12.010526] pci 10004:00:07.0: PME# supported from D0 D3hot D3cold
[ 12.017041] pci 10004:00:07.0: PTM enabled (root), 2ns granularity
[ 12.023604] pci 10004:01:00.0: [1e0f:0010] type 00 class 0x010802
[ 12.030019] pci 10004:01:00.0: reg 0x10: [mem 0x00000000-0x00003fff 64bit]
[ 12.037356] pci 10004:00:01.0: ASPM: current common clock configuration is inconsistent, reconfiguring
[ 12.057303] pci 10004:00:01.0: PCI bridge to [bus 01]
[ 12.062700] pci 10004:00:01.0: bridge window [io 0x0000-0x6fff]
[ 12.069255] pci 10004:02:00.0: [1e0f:0010] type 00 class 0x010802
[ 12.075687] pci 10004:02:00.0: reg 0x10: [mem 0x00000000-0x00003fff 64bit]
[ 12.083058] pci 10004:00:03.0: ASPM: current common clock configuration is inconsistent, reconfiguring
[ 12.101339] pci 10004:00:03.0: PCI bridge to [bus 02]
[ 12.106760] pci 10004:00:03.0: bridge window [io 0x0000-0x6fff]
[ 12.113352] pci 10004:03:00.0: [15b7:5011] type 00 class 0x010802
[ 12.119808] pci 10004:03:00.0: reg 0x10: [mem 0x00000000-0x00003fff 64bit]
[ 12.127211] pci 10004:00:05.0: ASPM: current common clock configuration is inconsistent, reconfiguring
[ 12.145290] pci 10004:00:05.0: PCI bridge to [bus 03]
[ 12.150739] pci 10004:00:05.0: bridge window [io 0x0000-0x6fff]
[ 12.157360] pci 10004:04:00.0: [15b7:5011] type 00 class 0x010802
[ 12.163849] pci 10004:04:00.0: reg 0x10: [mem 0x00000000-0x00003fff 64bit]
[ 12.171296] pci 10004:00:07.0: ASPM: current common clock configuration is inconsistent, reconfiguring
[ 12.189271] pci 10004:00:07.0: PCI bridge to [bus 04]
[ 12.194754] pci 10004:00:07.0: bridge window [io 0x0000-0x6fff]
[ 12.397363] pci 10004:00:01.0: BAR 14: assigned [mem 0xd4000000-0xd40fffff]
[ 12.404839] pci 10004:00:03.0: BAR 14: assigned [mem 0xd4100000-0xd41fffff]
[ 12.412286] pci 10004:00:05.0: BAR 14: assigned [mem 0xd4200000-0xd42fffff]
[ 12.419732] pci 10004:00:07.0: BAR 14: assigned [mem 0xd4300000-0xd43fffff]
[ 12.427169] pci 10004:00:01.0: BAR 0: assigned [mem 0x207ffe020000-0x207ffe03ffff 64bit]
[ 12.435747] pci 10004:00:03.0: BAR 0: assigned [mem 0x207ffe040000-0x207ffe05ffff 64bit]
[ 12.444320] pci 10004:00:05.0: BAR 0: assigned [mem 0x207ffe060000-0x207ffe07ffff 64bit]
[ 12.452892] pci 10004:00:07.0: BAR 0: assigned [mem 0x207ffe080000-0x207ffe09ffff 64bit]
[ 12.461471] pci 10004:00:01.0: BAR 13: no space for [io size 0x7000]
[ 12.468399] pci 10004:00:01.0: BAR 13: failed to assign [io size 0x7000]
[ 12.475666] pci 10004:00:03.0: BAR 13: no space for [io size 0x7000]
[ 12.482585] pci 10004:00:03.0: BAR 13: failed to assign [io size 0x7000]
[ 12.489841] pci 10004:00:05.0: BAR 13: no space for [io size 0x7000]
[ 12.496752] pci 10004:00:05.0: BAR 13: failed to assign [io size 0x7000]
[ 12.504002] pci 10004:00:07.0: BAR 13: no space for [io size 0x7000]
[ 12.510901] pci 10004:00:07.0: BAR 13: failed to assign [io size 0x7000]
[ 12.518152] pci 10004:01:00.0: BAR 0: assigned [mem 0xd4000000-0xd4003fff 64bit]
[ 12.526021] pci 10004:00:01.0: PCI bridge to [bus 01]
[ 12.531541] pci 10004:00:01.0: bridge window [mem 0xd4000000-0xd40fffff]
[ 12.538886] pci 10004:02:00.0: BAR 0: assigned [mem 0xd4100000-0xd4103fff 64bit]
[ 12.546747] pci 10004:00:03.0: PCI bridge to [bus 02]
[ 12.552268] pci 10004:00:03.0: bridge window [mem 0xd4100000-0xd41fffff]
[ 12.559615] pci 10004:03:00.0: BAR 0: assigned [mem 0xd4200000-0xd4203fff 64bit]
[ 12.567476] pci 10004:00:05.0: PCI bridge to [bus 03]
[ 12.572998] pci 10004:00:05.0: bridge window [mem 0xd4200000-0xd42fffff]
[ 12.580350] pci 10004:04:00.0: BAR 0: assigned [mem 0xd4300000-0xd4303fff 64bit]
[ 12.588219] pci 10004:00:07.0: PCI bridge to [bus 04]
[ 12.593738] pci 10004:00:07.0: bridge window [mem 0xd4300000-0xd43fffff]
[ 12.601118] pcieport 10004:00:01.0: can't derive routing for PCI INT A
[ 12.608109] pcieport 10004:00:01.0: PCI INT A: no GSI
[ 12.613746] pcieport 10004:00:01.0: PME: Signaling with IRQ 82
[ 12.620089] pcieport 10004:00:03.0: can't derive routing for PCI INT A
[ 12.627048] pcieport 10004:00:03.0: PCI INT A: no GSI
[ 12.632580] pcieport 10004:00:03.0: PME: Signaling with IRQ 83
[ 12.638902] pcieport 10004:00:05.0: can't derive routing for PCI INT A
[ 12.645833] pcieport 10004:00:05.0: PCI INT A: no GSI
[ 12.651328] pcieport 10004:00:05.0: PME: Signaling with IRQ 84
[ 12.657643] pcieport 10004:00:07.0: can't derive routing for PCI INT A
[ 12.664588] pcieport 10004:00:07.0: PCI INT A: no GSI
[ 12.670085] pcieport 10004:00:07.0: PME: Signaling with IRQ 85
[ 12.676394] vmd 0000:c9:00.5: Bound to PCI domain 10004
[ 12.691468] nvme nvme5: pci function 10003:03:00.0
[ 12.696684] pcieport 10003:00:05.0: can't derive routing for PCI INT A
[ 12.703617] nvme 10003:03:00.0: PCI INT A: not connected
[ 12.709394] nvme nvme3: pci function 10000:84:00.0
[ 12.714595] pcieport 10000:80:07.0: can't derive routing for PCI INT A
[ 12.721578] nvme 10000:84:00.0: PCI INT A: no GSI
[ 12.726722] nvme nvme6: pci function 10003:04:00.0
[ 12.731980] pcieport 10003:00:07.0: can't derive routing for PCI INT A
[ 12.738905] nvme 10003:04:00.0: PCI INT A: not connected
[ 12.744628] nvme nvme4: pci function 10002:84:00.0
[ 12.749818] pcieport 10002:80:07.0: can't derive routing for PCI INT A
[ 12.756705] nvme 10002:84:00.0: PCI INT A: not connected
[ 12.762396] nvme nvme7: pci function 10004:01:00.0
[ 12.767531] pcieport 10004:00:01.0: can't derive routing for PCI INT A
[ 12.774397] nvme 10004:01:00.0: PCI INT A: no GSI
[ 12.779548] nvme nvme2: pci function 10000:83:00.0
[ 12.784702] pcieport 10000:80:05.0: can't derive routing for PCI INT A
[ 12.791556] nvme 10000:83:00.0: PCI INT A: no GSI
[ 12.796601] nvme nvme1: pci function 10000:82:00.0
[ 12.801719] pcieport 10000:80:03.0: can't derive routing for PCI INT A
[ 12.808563] nvme 10000:82:00.0: PCI INT A: no GSI
[ 12.813595] nvme nvme0: pci function 10000:81:00.0
[ 12.818706] pcieport 10000:80:01.0: can't derive routing for PCI INT A
[ 12.825548] nvme 10000:81:00.0: PCI INT A: no GSI
[ 12.830898] nvme nvme8: pci function 10004:02:00.0
[ 12.836019] pcieport 10004:00:03.0: can't derive routing for PCI INT A
[ 12.842866] nvme 10004:02:00.0: PCI INT A: no GSI
[ 12.848041] nvme nvme9: pci function 10004:03:00.0
[ 12.853149] pcieport 10004:00:05.0: can't derive routing for PCI INT A
[ 12.859993] nvme 10004:03:00.0: PCI INT A: no GSI
[ 12.865375] nvme nvme10: pci function 10004:04:00.0
[ 12.870573] pcieport 10004:00:07.0: can't derive routing for PCI INT A
[ 12.877464] nvme 10004:04:00.0: PCI INT A: no GSI
[ 12.886881] nvme nvme7: 32/0/0 default/read/poll queues
[ 12.893480] nvme nvme3: 8/0/0 default/read/poll queues
[ 12.899558] nvme nvme2: 8/0/0 default/read/poll queues
[ 12.905560] nvme nvme6: 8/0/0 default/read/poll queues
[ 12.912302] nvme nvme1: 8/0/0 default/read/poll queues
[ 12.919736] nvme nvme4: 32/0/0 default/read/poll queues
[ 12.927892] nvme nvme0: 8/0/0 default/read/poll queues
[ 12.936089] nvme nvme8: 32/0/0 default/read/poll queues
[ 12.936475] nvme4n1: p1 p2 p3
[ 12.948073] nvme nvme5: 8/0/0 default/read/poll queues
[ 12.960949] nvme nvme9: 32/0/0 default/read/poll queues
[ 12.968436] nvme nvme10: 32/0/0 default/read/poll queues
[ 12.992870] block device autoloading is deprecated and will be removed.
[ 13.016037] block device autoloading is deprecated and will be removed.
[ 13.042032] block device autoloading is deprecated and will be removed.
[ 13.086746] block device autoloading is deprecated and will be removed.
[ 13.096323] md124: detected capacity change from 0 to 1900396544
[ 13.139454] block device autoloading is deprecated and will be removed.
[ 13.152799] md/raid10:md123: active with 4 out of 4 devices
[ 13.158687] md123: detected capacity change from 0 to 1900396544
[ 13.203503] block device autoloading is deprecated and will be removed.
[ 13.212991] md122: detected capacity change from 0 to 1900417024
[ 13.221794] md122: p1 p2 p3
[ 13.449236] raid6: avx512x4 gen() 39066 MB/s
[ 13.521238] raid6: avx512x2 gen() 28620 MB/s
[ 13.593240] raid6: avx512x1 gen() 20940 MB/s
[ 13.665239] raid6: avx2x4 gen() 17318 MB/s
[ 13.737240] raid6: avx2x2 gen() 16790 MB/s
[ 13.809240] raid6: avx2x1 gen() 13296 MB/s
[ 13.814011] raid6: using algorithm avx512x4 gen() 39066 MB/s
[ 13.885241] raid6: .... xor() 2732 MB/s, rmw enabled
[ 13.890579] raid6: using avx512x2 recovery algorithm
[ 13.898686] xor: measuring software checksum speed
[ 13.904174] prefetch64-sse : 45619 MB/sec
[ 13.909180] generic_sse : 40286 MB/sec
[ 13.913917] xor: using function: prefetch64-sse (45619 MB/sec)
[ 13.921171] async_tx: api initialized (async)
[ 13.989894] EXT4-fs (md122p3): mounted filesystem 6d53dc8e-3f45-4efa-bc0e-4af477fac217 ro with ordered data mode. Quota mode: none.
[ 14.087026] systemd[1]: Inserted module 'autofs4'
[ 14.100408] systemd[1]: systemd 251.4-1ubuntu7.4~cyrustest2 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[ 14.134613] systemd[1]: Detected architecture x86-64.
[ 14.140216] systemd[1]: Detected initialized system, this is not the first boot.
[ 14.148083] systemd[1]: Kernel version 6.5.0-rc7706a74159504-dirty, our baseline is 4.15

Welcome to Ubuntu 22.10!

[ 14.169727] systemd[1]: Hostname set to <u-Precision-7960-Tower>.
[ 14.176441] systemd[1]: Successfully added address 127.0.0.1 to loopback interface
[ 14.184366] systemd[1]: Successfully added address ::1 to loopback interface
[ 14.191731] systemd[1]: Successfully brought loopback interface up
[ 14.198241] systemd[1]: Setting '/proc/sys/fs/file-max' to '9223372036854775807
[ 14.205844] systemd[1]: '
[ 14.208812] systemd[1]: No credentials passed via fw_cfg.
[ 14.214999] systemd[1]: Found cgroup2 on /sys/fs/cgroup/, full unified hierarchy
[ 14.222697] systemd[1]: Unified cgroup hierarchy is located at /sys/fs/cgroup.
[ 14.250084] systemd[1]: bpf-firewall: Got EBADF when using BPF_F_ALLOW_MULTI, which indicates it is supported. Yay!
[ 14.260837] systemd[1]: Controller 'cpu' supported: yes
[ 14.266364] systemd[1]: Controller 'cpuacct' supported: no
[ 14.272145] systemd[1]: Controller 'cpuset' supported: yes
[ 14.277921] systemd[1]: Controller 'io' supported: yes
[ 14.283353] systemd[1]: Controller 'blkio' supported: no
[ 14.288956] systemd[1]: Controller 'memory' supported: yes
[ 14.294723] systemd[1]: Controller 'devices' supported: no
[ 14.300495] systemd[1]: Controller 'pids' supported: yes
[ 14.306088] systemd[1]: Controller 'bpf-firewall' supported: yes
[ 14.312368] systemd[1]: Controller 'bpf-devices' supported: yes
[ 14.318565] systemd[1]: Controller 'bpf-foreign' supported: yes
[ 14.324755] systemd[1]: Controller 'bpf-socket-bind' supported: no
[ 14.331204] systemd[1]: Controller 'bpf-restrict-network-interfaces' supported: no
[ 14.339045] systemd[1]: Set up TFD_TIMER_CANCEL_ON_SET timerfd.
[ 14.345665] systemd[1]: Enabling (yes) showing of status (commandline).
[ 14.352855] memfd_create() without MFD_EXEC nor MFD_NOEXEC_SEAL, pid=1 'systemd'
[ 14.360585] systemd[1]: Serializing system-environment-generators to memfd.
[ 14.367925] systemd[1]: Successfully forked off '(sd-executor)' as PID 571.
[ 14.375119] systemd[571]: Serializing snapd-env-generator to memfd.
[ 14.381795] systemd[571]: Successfully forked off '(direxec)' as PID 572.
[ 14.388861] systemd[571]: /usr/lib/systemd/system-environment-generators/snapd-env-generator succeeded.
[ 14.398732] systemd[1]: (sd-executor) succeeded.
[ 14.403802] systemd[1]: Successfully forked off '(sd-executor)' as PID 573.
[ 14.411866] systemd[573]: Successfully forked off '(direxec)' as PID 574.
[ 14.419088] systemd[573]: Successfully forked off '(direxec)' as PID 576.
[ 14.426261] systemd[573]: Successfully forked off '(direxec)' as PID 577.
[ 14.433492] systemd[573]: Successfully forked off '(direxec)' as PID 580.
[ 14.440683] systemd[573]: Successfully forked off '(direxec)' as PID 581.
[ 14.447851] systemd[573]: Successfully forked off '(direxec)' as PID 582.
[ 14.455014] systemd[573]: Successfully forked off '(direxec)' as PID 583.
[ 14.456982] systemd-fstab-generator[583]: Parsing /etc/fstab...
[ 14.461930] systemd[573]: Successfully forked off '(direxec)' as PID 584.
[ 14.467797] systemd-fstab-generator[583]: Found entry what=/dev/disk/by-uuid/6d53dc8e-3f45-4efa-bc0e-4af477fac217 where=/ type=ext4 makefs=no growfs=no noauto=no nofail=no
[ 14.474697] systemd[573]: Successfully forked off '(direxec)' as PID 585.
[ 14.478467] systemd-gpt-auto-generator[585]: Disabling root partition auto-detection, root= is defined.
[ 14.478496] systemd-gpt-auto-generator[585]: Failed to chase block device, ignoring: No such file or directory
[ 14.478619] systemd-gpt-auto-generator[585]: md122p3: Root device /dev/md122.
[ 14.481823] block md122: the capability attribute has been deprecated.
[ 14.481867] systemd-gpt-auto-generator[585]: Kernel was quicker than us in adding partition 1.
[ 14.481873] systemd-gpt-auto-generator[585]: Kernel was quicker than us in adding partition 2.
[ 14.481877] systemd-gpt-auto-generator[585]: Kernel was quicker than us in adding partition 3.
[ 14.482473] systemd-gpt-auto-generator[585]: "/boot" already populated, ignoring.
[ 14.490137] systemd-fstab-generator[583]: SELinux enabled state cached to: disabled
[ 14.496806] systemd[573]: Successfully forked off '(direxec)' as PID 586.
[ 14.499059] systemd-hibernate-resume-generator[586]: Not running in an initrd, quitting.
[ 14.506241] systemd-fstab-generator[583]: Found entry what=/dev/disk/by-uuid/5CF5-C8C8 where=/boot/efi type=vfat makefs=no growfs=no noauto=no nofail=no
[ 14.516238] systemd[573]: Successfully forked off '(direxec)' as PID 587.
[ 14.523328] systemd-fstab-generator[583]: Found entry what=/swapfile where=none type=swap makefs=no growfs=no noauto=no nofail=no
[ 14.529979] systemd[573]: Successfully forked off '(direxec)' as PID 588.
[ 14.533364] systemd-rc-local-generator[588]: /etc/rc.local does not exist, skipping.
[ 14.638527] systemd[573]: Successfully forked off '(direxec)' as PID 589.
[ 14.638571] systemd-getty-generator[584]: Automatically adding serial getty for /dev/ttyS0.
[ 14.645454] systemd[573]: Successfully forked off '(direxec)' as PID 590.
[ 14.653759] systemd-getty-generator[584]: SELinux enabled state cached to: disabled
[ 14.660628] systemd[573]: Successfully forked off '(direxec)' as PID 591.
[ 14.668615] systemd-sysv-generator[591]: Native unit for ufw.service already exists, skipping.
[ 14.675111] systemd[573]: Successfully forked off '(direxec)' as PID 592.
[ 14.684142] systemd-sysv-generator[591]: Cannot find unit speech-dispatcher.service.
[ 14.690491] systemd[573]: /usr/lib/systemd/system-generators/systemd-getty-generator succeeded.
[ 14.698263] systemd-sysv-generator[591]: SysV service '/etc/init.d/speech-dispatcher' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[ 14.706990] systemd[573]: /usr/lib/systemd/system-generators/systemd-fstab-generator succeeded.
[ 14.731998] systemd-sysv-generator[591]: Native unit for gdm3.service already exists, skipping.
[ 14.740287] systemd[573]: /usr/lib/systemd/system-generators/systemd-system-update-generator succeeded.
[ 14.749170] systemd-sysv-generator[591]: Native unit for kerneloops.service already exists, skipping.
[ 14.758426] systemd[573]: /usr/lib/systemd/system-generators/snapd-generator succeeded.
[ 14.775930] systemd-sysv-generator[591]: Native unit for dbus.service already exists, skipping.
[ 14.776001] systemd[573]: /usr/lib/systemd/system-generators/friendly-recovery succeeded.
[ 14.785025] systemd-sysv-generator[591]: Native unit for spice-vdagent.service already exists, skipping.
[ 14.792935] systemd[573]: /usr/lib/systemd/system-generators/systemd-gpt-auto-generator succeeded.
[ 14.802486] systemd-sysv-generator[591]: Native unit for uuidd.service already exists, skipping.
[ 14.811407] systemd[573]: /usr/lib/systemd/system-generators/systemd-veritysetup-generator succeeded.
[ 14.820269] systemd-sysv-generator[591]: Native unit for cups-browsed.service already exists, skipping.
[ 14.829446] systemd[573]: /usr/lib/systemd/system-generators/systemd-hibernate-resume-generator succeeded.
[ 14.838865] systemd-sysv-generator[591]: Linked unit file: /etc/systemd/system/samba-ad-dc.service â?? /dev/null
[ 14.848534] systemd[573]: /usr/lib/systemd/system-generators/netplan succeeded.
[ 14.858724] systemd-sysv-generator[591]: Native unit for samba-ad-dc.service already exists, skipping.
[ 14.866066] systemd[573]: /usr/lib/systemd/system-generators/systemd-debug-generator succeeded.
[ 14.875408] systemd-sysv-generator[591]: Linked unit file: /lib/systemd/system/hwclock.service â?? /dev/null
[ 14.884119] systemd[573]: /usr/lib/systemd/system-generators/systemd-cryptsetup-generator succeeded.
[ 14.893964] systemd-sysv-generator[591]: Native unit for hwclock.service already exists, skipping.
[ 14.903119] systemd[573]: /usr/lib/systemd/system-generators/openvpn-generator succeeded.
[ 14.912446] systemd-sysv-generator[591]: Native unit for avahi-daemon.service already exists, skipping.
[ 14.920300] systemd[573]: /usr/lib/systemd/system-generators/systemd-run-generator succeeded.
[ 14.929913] systemd-sysv-generator[591]: Linked unit file: /lib/systemd/system/pulseaudio-enable-autospawn.service â?? /dev/null
[ 14.962087] systemd-sysv-generator[591]: Native unit for pulseaudio-enable-autospawn.service already exists, skipping.
[ 14.973566] systemd-sysv-generator[591]: Native unit for apparmor.service already exists, skipping.
[ 14.983039] systemd-sysv-generator[591]: Linked unit file: /etc/systemd/system/smbd.service â?? /dev/null
[ 14.992996] systemd-sysv-generator[591]: Native unit for smbd.service already exists, skipping.
[ 15.002095] systemd-sysv-generator[591]: Cannot find unit apport.service.
[ 15.009292] systemd-sysv-generator[591]: SysV service '/etc/init.d/apport' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[ 15.034272] systemd-sysv-generator[591]: Native unit for sssd.service already exists, skipping.
[ 15.043910] systemd-sysv-generator[591]: Native unit for plymouth-log.service already exists, skipping.
[ 15.053819] systemd-sysv-generator[591]: Native unit for keyboard-setup.service already exists, skipping.
[ 15.063896] systemd-sysv-generator[591]: Native unit for rsync.service already exists, skipping.
[ 15.073189] systemd-sysv-generator[591]: Native unit for lvm2-lvmpolld.service already exists, skipping.
[ 15.083135] systemd-sysv-generator[591]: Cannot find unit openipmi.service.
[ 15.090560] systemd-sysv-generator[591]: SysV service '/etc/init.d/openipmi' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[ 15.115322] systemd-sysv-generator[591]: Native unit for console-setup.service already exists, skipping.
[ 15.125348] systemd-sysv-generator[591]: Native unit for ledmon.service already exists, skipping.
[ 15.134757] systemd-sysv-generator[591]: Native unit for whoopsie.service already exists, skipping.
[ 15.144342] systemd-sysv-generator[591]: Native unit for bluetooth.service already exists, skipping.
[ 15.154012] systemd-sysv-generator[591]: Native unit for cups.service already exists, skipping.
[ 15.163240] systemd-sysv-generator[591]: Native unit for openvpn.service already exists, skipping.
[ 15.172936] systemd-sysv-generator[591]: Linked unit file: /etc/systemd/system/acpid.service â?? /dev/null
[ 15.183103] systemd-sysv-generator[591]: Native unit for acpid.service already exists, skipping.
[ 15.192567] systemd-sysv-generator[591]: Native unit for anacron.service already exists, skipping.
[ 15.202349] systemd-sysv-generator[591]: Linked unit file: /lib/systemd/system/lvm2.service â?? /dev/null
[ 15.212397] systemd-sysv-generator[591]: Native unit for lvm2.service already exists, skipping.
[ 15.221700] systemd-sysv-generator[591]: Native unit for cron.service already exists, skipping.
[ 15.230923] systemd-sysv-generator[591]: Native unit for grub-common.service already exists, skipping.
[ 15.240701] systemd-sysv-generator[591]: Linked unit file: /etc/systemd/system/nmbd.service â?? /dev/null
[ 15.250729] systemd-sysv-generator[591]: Native unit for nmbd.service already exists, skipping.
[ 15.260172] systemd-sysv-generator[591]: Native unit for plymouth.service already exists, skipping.
[ 15.269695] systemd-sysv-generator[591]: Linked unit file: /lib/systemd/system/x11-common.service â?? /dev/null
[ 15.280236] systemd-sysv-generator[591]: Native unit for x11-common.service already exists, skipping.
[ 15.289975] systemd-sysv-generator[591]: Native unit for unattended-upgrades.service already exists, skipping.
[ 15.300447] systemd-sysv-generator[591]: Linked unit file: /lib/systemd/system/saned.service â?? /dev/null
[ 15.310555] systemd-sysv-generator[591]: Native unit for saned.service already exists, skipping.
[ 15.319913] systemd-sysv-generator[591]: Native unit for udev.service already exists, skipping.
[ 15.329189] systemd-sysv-generator[591]: Native unit for kmod.service already exists, skipping.
[ 15.338462] systemd-sysv-generator[591]: Native unit for procps.service already exists, skipping.
[ 15.347797] systemd-sysv-generator[591]: Linked unit file: /lib/systemd/system/alsa-utils.service â?? /dev/null
[ 15.358331] systemd-sysv-generator[591]: Native unit for alsa-utils.service already exists, skipping.
[ 15.368215] systemd-sysv-generator[591]: Native unit for ssh.service already exists, skipping.
[ 15.377305] systemd-sysv-generator[591]: Native unit for irqbalance.service already exists, skipping.
[ 15.387112] systemd-sysv-generator[591]: Ignoring S01uuidd symlink in rc2.d, not generating uuidd.service.
[ 15.397212] systemd-sysv-generator[591]: Ignoring S01console-setup.sh symlink in rc2.d, not generating console-setup.service.
[ 15.408949] systemd-sysv-generator[591]: Ignoring S01spice-vdagent symlink in rc2.d, not generating spice-vdagent.service.
[ 15.420404] systemd-sysv-generator[591]: Ignoring S01lvm2-lvmpolld symlink in rc2.d, not generating lvm2-lvmpolld.service.
[ 15.431852] systemd-sysv-generator[591]: Ignoring S01saned symlink in rc2.d, not generating saned.service.
[ 15.441915] systemd-sysv-generator[591]: Ignoring S01grub-common symlink in rc2.d, not generating grub-common.service.
[ 15.453019] systemd-sysv-generator[591]: Ignoring S01dbus symlink in rc2.d, not generating dbus.service.
[ 15.462909] systemd-sysv-generator[591]: Ignoring S01kerneloops symlink in rc2.d, not generating kerneloops.service.
[ 15.473839] systemd-sysv-generator[591]: Ignoring S01samba-ad-dc symlink in rc2.d, not generating samba-ad-dc.service.
[ 15.484938] systemd-sysv-generator[591]: Ignoring S01bluetooth symlink in rc2.d, not generating bluetooth.service.
[ 15.495695] systemd-sysv-generator[591]: Ignoring S01openvpn symlink in rc2.d, not generating openvpn.service.
[ 15.506104] systemd-sysv-generator[591]: Ignoring S01ledmon symlink in rc2.d, not generating ledmon.service.
[ 15.516332] systemd-sysv-generator[591]: Ignoring S01irqbalance symlink in rc2.d, not generating irqbalance.service.
[ 15.527249] systemd-sysv-generator[591]: Ignoring S01pulseaudio-enable-autospawn symlink in rc2.d, not generating pulseaudio-enable-autospawn.service.
[ 15.541126] systemd-sysv-generator[591]: Ignoring S01sssd symlink in rc2.d, not generating sssd.service.
[ 15.551011] systemd-sysv-generator[591]: Ignoring S01cups-browsed symlink in rc2.d, not generating cups-browsed.service.
[ 15.562278] systemd-sysv-generator[591]: Ignoring S01cups symlink in rc2.d, not generating cups.service.
[ 15.572161] systemd-sysv-generator[591]: Ignoring S01smbd symlink in rc2.d, not generating smbd.service.
[ 15.582038] systemd-sysv-generator[591]: Ignoring S01anacron symlink in rc2.d, not generating anacron.service.
[ 15.592435] systemd-sysv-generator[591]: Ignoring S01avahi-daemon symlink in rc2.d, not generating avahi-daemon.service.
[ 15.603700] systemd-sysv-generator[591]: Ignoring S01cron symlink in rc2.d, not generating cron.service.
[ 15.613644] systemd-sysv-generator[591]: Ignoring S01nmbd symlink in rc2.d, not generating nmbd.service.
[ 15.623517] systemd-sysv-generator[591]: Ignoring S01plymouth symlink in rc2.d, not generating plymouth.service.
[ 15.634081] systemd-sysv-generator[591]: Ignoring S01gdm3 symlink in rc2.d, not generating gdm3.service.
[ 15.643951] systemd-sysv-generator[591]: Ignoring S01rsync symlink in rc2.d, not generating rsync.service.
[ 15.653993] systemd-sysv-generator[591]: Ignoring S01unattended-upgrades symlink in rc2.d, not generating unattended-upgrades.service.
[ 15.666460] systemd-sysv-generator[591]: Ignoring S01whoopsie symlink in rc2.d, not generating whoopsie.service.
[ 15.677026] systemd-sysv-generator[591]: Ignoring S01acpid symlink in rc2.d, not generating acpid.service.
[ 15.687304] systemd-sysv-generator[591]: Ignoring S01uuidd symlink in rc3.d, not generating uuidd.service.
[ 15.697363] systemd-sysv-generator[591]: Ignoring S01console-setup.sh symlink in rc3.d, not generating console-setup.service.
[ 15.709026] systemd-sysv-generator[591]: Ignoring S01spice-vdagent symlink in rc3.d, not generating spice-vdagent.service.
[ 15.720425] systemd-sysv-generator[591]: Ignoring S01lvm2-lvmpolld symlink in rc3.d, not generating lvm2-lvmpolld.service.
[ 15.731820] systemd-sysv-generator[591]: Ignoring S01saned symlink in rc3.d, not generating saned.service.
[ 15.741830] systemd-sysv-generator[591]: Ignoring S01grub-common symlink in rc3.d, not generating grub-common.service.
[ 15.752887] systemd-sysv-generator[591]: Ignoring S01dbus symlink in rc3.d, not generating dbus.service.
[ 15.762724] systemd-sysv-generator[591]: Ignoring S01kerneloops symlink in rc3.d, not generating kerneloops.service.
[ 15.773594] systemd-sysv-generator[591]: Ignoring S01samba-ad-dc symlink in rc3.d, not generating samba-ad-dc.service.
[ 15.784624] systemd-sysv-generator[591]: Ignoring S01bluetooth symlink in rc3.d, not generating bluetooth.service.
[ 15.795299] systemd-sysv-generator[591]: Ignoring S01openvpn symlink in rc3.d, not generating openvpn.service.
[ 15.805620] systemd-sysv-generator[591]: Ignoring S01ledmon symlink in rc3.d, not generating ledmon.service.
[ 15.815768] systemd-sysv-generator[591]: Ignoring S01irqbalance symlink in rc3.d, not generating irqbalance.service.
[ 15.826601] systemd-sysv-generator[591]: Ignoring S01pulseaudio-enable-autospawn symlink in rc3.d, not generating pulseaudio-enable-autospawn.service.
[ 15.840395] systemd-sysv-generator[591]: Ignoring S01sssd symlink in rc3.d, not generating sssd.service.
[ 15.850193] systemd-sysv-generator[591]: Ignoring S01cups-browsed symlink in rc3.d, not generating cups-browsed.service.
[ 15.861418] systemd-sysv-generator[591]: Ignoring S01cups symlink in rc3.d, not generating cups.service.
[ 15.871219] systemd-sysv-generator[591]: Ignoring S01smbd symlink in rc3.d, not generating smbd.service.
[ 15.881016] systemd-sysv-generator[591]: Ignoring S01anacron symlink in rc3.d, not generating anacron.service.
[ 15.891338] systemd-sysv-generator[591]: Ignoring S01avahi-daemon symlink in rc3.d, not generating avahi-daemon.service.
[ 15.902527] systemd-sysv-generator[591]: Ignoring S01cron symlink in rc3.d, not generating cron.service.
[ 15.912329] systemd-sysv-generator[591]: Ignoring S01nmbd symlink in rc3.d, not generating nmbd.service.
[ 15.922130] systemd-sysv-generator[591]: Ignoring S01plymouth symlink in rc3.d, not generating plymouth.service.
[ 15.932629] systemd-sysv-generator[591]: Ignoring S01gdm3 symlink in rc3.d, not generating gdm3.service.
[ 15.942436] systemd-sysv-generator[591]: Ignoring S01rsync symlink in rc3.d, not generating rsync.service.
[ 15.952416] systemd-sysv-generator[591]: Ignoring S01unattended-upgrades symlink in rc3.d, not generating unattended-upgrades.service.
[ 15.964817] systemd-sysv-generator[591]: Ignoring S01whoopsie symlink in rc3.d, not generating whoopsie.service.
[ 15.975318] systemd-sysv-generator[591]: Ignoring S01acpid symlink in rc3.d, not generating acpid.service.
[ 15.985427] systemd-sysv-generator[591]: Ignoring S01uuidd symlink in rc4.d, not generating uuidd.service.
[ 15.995407] systemd-sysv-generator[591]: Ignoring S01console-setup.sh symlink in rc4.d, not generating console-setup.service.
[ 16.007044] systemd-sysv-generator[591]: Ignoring S01spice-vdagent symlink in rc4.d, not generating spice-vdagent.service.
[ 16.018414] systemd-sysv-generator[591]: Ignoring S01lvm2-lvmpolld symlink in rc4.d, not generating lvm2-lvmpolld.service.
[ 16.029786] systemd-sysv-generator[591]: Ignoring S01saned symlink in rc4.d, not generating saned.service.
[ 16.039772] systemd-sysv-generator[591]: Ignoring S01grub-common symlink in rc4.d, not generating grub-common.service.
[ 16.050795] systemd-sysv-generator[591]: Ignoring S01dbus symlink in rc4.d, not generating dbus.service.
[ 16.060602] systemd-sysv-generator[591]: Ignoring S01kerneloops symlink in rc4.d, not generating kerneloops.service.
[ 16.071452] systemd-sysv-generator[591]: Ignoring S01samba-ad-dc symlink in rc4.d, not generating samba-ad-dc.service.
[ 16.082474] systemd-sysv-generator[591]: Ignoring S01bluetooth symlink in rc4.d, not generating bluetooth.service.
[ 16.093149] systemd-sysv-generator[591]: Ignoring S01openvpn symlink in rc4.d, not generating openvpn.service.
[ 16.103480] systemd-sysv-generator[591]: Ignoring S01ledmon symlink in rc4.d, not generating ledmon.service.
[ 16.113640] systemd-sysv-generator[591]: Ignoring S01irqbalance symlink in rc4.d, not generating irqbalance.service.
[ 16.124488] systemd-sysv-generator[591]: Ignoring S01pulseaudio-enable-autospawn symlink in rc4.d, not generating pulseaudio-enable-autospawn.service.
[ 16.138284] systemd-sysv-generator[591]: Ignoring S01sssd symlink in rc4.d, not generating sssd.service.
[ 16.148095] systemd-sysv-generator[591]: Ignoring S01cups-browsed symlink in rc4.d, not generating cups-browsed.service.
[ 16.159290] systemd-sysv-generator[591]: Ignoring S01cups symlink in rc4.d, not generating cups.service.
[ 16.169101] systemd-sysv-generator[591]: Ignoring S01smbd symlink in rc4.d, not generating smbd.service.
[ 16.178910] systemd-sysv-generator[591]: Ignoring S01anacron symlink in rc4.d, not generating anacron.service.
[ 16.189243] systemd-sysv-generator[591]: Ignoring S01avahi-daemon symlink in rc4.d, not generating avahi-daemon.service.
[ 16.200435] systemd-sysv-generator[591]: Ignoring S01cron symlink in rc4.d, not generating cron.service.
[ 16.210247] systemd-sysv-generator[591]: Ignoring S01nmbd symlink in rc4.d, not generating nmbd.service.
[ 16.220055] systemd-sysv-generator[591]: Ignoring S01plymouth symlink in rc4.d, not generating plymouth.service.
[ 16.230557] systemd-sysv-generator[591]: Ignoring S01gdm3 symlink in rc4.d, not generating gdm3.service.
[ 16.240369] systemd-sysv-generator[591]: Ignoring S01rsync symlink in rc4.d, not generating rsync.service.
[ 16.250351] systemd-sysv-generator[591]: Ignoring S01unattended-upgrades symlink in rc4.d, not generating unattended-upgrades.service.
[ 16.262755] systemd-sysv-generator[591]: Ignoring S01whoopsie symlink in rc4.d, not generating whoopsie.service.
[ 16.273268] systemd-sysv-generator[591]: Ignoring S01acpid symlink in rc4.d, not generating acpid.service.
[ 16.283505] systemd-sysv-generator[591]: Ignoring S01uuidd symlink in rc5.d, not generating uuidd.service.
[ 16.293561] systemd-sysv-generator[591]: Ignoring S01console-setup.sh symlink in rc5.d, not generating console-setup.service.
[ 16.305190] systemd-sysv-generator[591]: Ignoring S01spice-vdagent symlink in rc5.d, not generating spice-vdagent.service.
[ 16.316564] systemd-sysv-generator[591]: Ignoring S01lvm2-lvmpolld symlink in rc5.d, not generating lvm2-lvmpolld.service.
[ 16.327936] systemd-sysv-generator[591]: Ignoring S01saned symlink in rc5.d, not generating saned.service.
[ 16.337926] systemd-sysv-generator[591]: Ignoring S01grub-common symlink in rc5.d, not generating grub-common.service.
[ 16.348951] systemd-sysv-generator[591]: Ignoring S01dbus symlink in rc5.d, not generating dbus.service.
[ 16.358767] systemd-sysv-generator[591]: Ignoring S01kerneloops symlink in rc5.d, not generating kerneloops.service.
[ 16.369621] systemd-sysv-generator[591]: Ignoring S01samba-ad-dc symlink in rc5.d, not generating samba-ad-dc.service.
[ 16.380646] systemd-sysv-generator[591]: Ignoring S01bluetooth symlink in rc5.d, not generating bluetooth.service.
[ 16.391332] systemd-sysv-generator[591]: Ignoring S01openvpn symlink in rc5.d, not generating openvpn.service.
[ 16.401669] systemd-sysv-generator[591]: Ignoring S01ledmon symlink in rc5.d, not generating ledmon.service.
[ 16.411838] systemd-sysv-generator[591]: Ignoring S01irqbalance symlink in rc5.d, not generating irqbalance.service.
[ 16.422688] systemd-sysv-generator[591]: Ignoring S01pulseaudio-enable-autospawn symlink in rc5.d, not generating pulseaudio-enable-autospawn.service.
[ 16.436497] systemd-sysv-generator[591]: Ignoring S01sssd symlink in rc5.d, not generating sssd.service.
[ 16.446312] systemd-sysv-generator[591]: Ignoring S01cups-browsed symlink in rc5.d, not generating cups-browsed.service.
[ 16.457577] systemd-sysv-generator[591]: Ignoring S01cups symlink in rc5.d, not generating cups.service.
[ 16.467388] systemd-sysv-generator[591]: Ignoring S01smbd symlink in rc5.d, not generating smbd.service.
[ 16.477194] systemd-sysv-generator[591]: Ignoring S01anacron symlink in rc5.d, not generating anacron.service.
[ 16.487526] systemd-sysv-generator[591]: Ignoring S01avahi-daemon symlink in rc5.d, not generating avahi-daemon.service.
[ 16.498723] systemd-sysv-generator[591]: Ignoring S01cron symlink in rc5.d, not generating cron.service.
[ 16.508535] systemd-sysv-generator[591]: Ignoring S01nmbd symlink in rc5.d, not generating nmbd.service.
[ 16.518344] systemd-sysv-generator[591]: Ignoring S01plymouth symlink in rc5.d, not generating plymouth.service.
[ 16.528849] systemd-sysv-generator[591]: Ignoring S01gdm3 symlink in rc5.d, not generating gdm3.service.
[ 16.538663] systemd-sysv-generator[591]: Ignoring S01rsync symlink in rc5.d, not generating rsync.service.
[ 16.548645] systemd-sysv-generator[591]: Ignoring S01unattended-upgrades symlink in rc5.d, not generating unattended-upgrades.service.
[ 16.561051] systemd-sysv-generator[591]: Ignoring S01whoopsie symlink in rc5.d, not generating whoopsie.service.
[ 16.571550] systemd-sysv-generator[591]: Ignoring S01acpid symlink in rc5.d, not generating acpid.service.
[ 16.581549] systemd-sysv-generator[591]: Loading SysV script /etc/init.d/openipmi
[ 16.589659] systemd-sysv-generator[591]: Adding Provides: alias 'ipmidrv.service' for 'openipmi.service'
[ 16.599697] systemd-sysv-generator[591]: Loading SysV script /etc/init.d/apport
[ 16.607600] systemd-sysv-generator[591]: Loading SysV script /etc/init.d/speech-dispatcher
[ 16.616428] systemd-sysv-generator[591]: SELinux enabled state cached to: disabled
[ 16.624602] systemd[573]: /usr/lib/systemd/system-generators/systemd-sysv-generator succeeded.
[ 16.633564] systemd[573]: /usr/lib/systemd/system-generators/systemd-rc-local-generator succeeded.
[ 16.642851] systemd[573]: /usr/lib/systemd/system-generators/systemd-integritysetup-generator succeeded.
[ 16.652822] systemd[1]: (sd-executor) succeeded.
[ 16.657842] systemd[1]: Looking for unit files in (higher priority first):
[ 16.665044] systemd[1]: /etc/systemd/system.control
[ 16.670338] systemd[1]: /run/systemd/system.control
[ 16.675627] systemd[1]: /run/systemd/transient
[ 16.680483] systemd[1]: /run/systemd/generator.early
[ 16.685852] systemd[1]: /etc/systemd/system
[ 16.690436] systemd[1]: /etc/systemd/system.attached
[ 16.695796] systemd[1]: /run/systemd/system
[ 16.700366] systemd[1]: /run/systemd/system.attached
[ 16.705707] systemd[1]: /run/systemd/generator
[ 16.710532] systemd[1]: /usr/local/lib/systemd/system
[ 16.715963] systemd[1]: /lib/systemd/system
[ 16.720526] systemd[1]: /usr/lib/systemd/system
[ 16.725494] systemd[1]: /run/systemd/generator.late
[ 16.731027] systemd[1]: Modification times have changed, need to update cache.
[ 16.738819] systemd[1]: unit_file_build_name_map: normal unit file: /etc/systemd/system/snap-snapd-19457.mount
[ 16.749095] systemd[1]: unit_file_build_name_map: normal unit file: /etc/systemd/system/snap-snapd-19993.mount
[ 16.759372] systemd[1]: Linked unit file: /etc/systemd/system/acpid.service â?? /dev/null
[ 16.767820] systemd[1]: unit_file_build_name_map: normal unit file: /etc/systemd/system/snap-gnome\x2d3\x2d38\x2d2004-140.mount
[ 16.779566] systemd[1]: unit_file_build_name_map: normal unit file: /etc/systemd/system/snap-core20-1974.mount
[ 16.789844] systemd[1]: Linked unit file: /etc/systemd/system/samba-ad-dc.service â?? /dev/null
[ 16.798820] systemd[1]: Linked unit file: /etc/systemd/system/nmbd.service â?? /dev/null
[ 16.807216] systemd[1]: Linked unit file: /etc/systemd/system/acpid.path â?? /dev/null
[ 16.815833] systemd[1]: Linked unit file: /etc/systemd/system/acpid.socket â?? /dev/null
[ 16.824213] systemd[1]: unit_file_build_name_map: normal unit file: /etc/systemd/system/snap-snap\x2dstore-959.mount
[ 16.834996] systemd[1]: unit_file_build_name_map: normal unit file: /etc/systemd/system/var-snap-firefox-common-host\x2dhunspell.mount
[ 16.847342] systemd[1]: unit_file_build_name_map: normal unit file: /etc/systemd/system/snap-core20-2015.mount
[ 16.857612] systemd[1]: unit_file_build_name_map: normal unit file: /etc/systemd/system/snap-core22-817.mount
[ 16.867785] systemd[1]: unit_file_build_name_map: normal unit file: /etc/systemd/system/snap-core22-858.mount
[ 16.877958] systemd[1]: unit_file_build_name_map: normal unit file: /etc/systemd/system/snap-gnome\x2d42\x2d2204-120.mount
[ 16.889271] systemd[1]: unit_file_build_name_map: normal unit file: /etc/systemd/system/snap-gnome\x2d3\x2d38\x2d2004-143.mount
[ 16.901009] systemd[1]: unit_file_build_name_map: normal unit file: /etc/systemd/system/snap-firefox-3026.mount
[ 16.911352] systemd[1]: unit_file_build_name_map: normal unit file: /etc/systemd/system/snap-firefox-2987.mount
[ 16.921873] systemd[1]: unit_file_build_name_map: normal unit file: /etc/systemd/system/snap-bare-5.mount
[ 16.931699] systemd[1]: unit_file_build_name_map: normal unit file: /etc/systemd/system/snap-gtk\x2dcommon\x2dthemes-1535.mount
[ 16.943437] systemd[1]: Linked unit file: /etc/systemd/system/sudo.service â?? /dev/null
[ 16.951814] systemd[1]: unit_file_build_name_map: normal unit file: /etc/systemd/system/snap-snapd\x2ddesktop\x2dintegration-83.mount
[ 16.964068] systemd[1]: unit_file_build_name_map: normal unit file: /etc/systemd/system/snap-gnome\x2d42\x2d2204-126.mount
[ 16.975367] systemd[1]: Linked unit file: /etc/systemd/system/smbd.service â?? /dev/null
[ 16.983742] systemd[1]: unit_file_build_name_map: normal unit file: /run/systemd/system/netplan-ovs-cleanup.service
[ 16.994437] systemd[1]: unit_file_build_name_map: normal unit file: /run/systemd/generator/swapfile.swap
[ 17.004169] systemd[1]: unit_file_build_name_map: normal unit file: /run/systemd/generator/boot-efi.mount
[ 17.013992] systemd[1]: unit_file_build_name_map: normal unit file: /run/systemd/generator/-.mount
[ 17.023273] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/fprintd.service
[ 17.032906] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/mdcheck_continue.timer
[ 17.043168] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/initrd-switch-root.target
[ 17.053831] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/secureboot-db.service
[ 17.064011] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/systemd-tmpfiles-setup-dev.service
[ 17.075299] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/halt.target
[ 17.084586] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/systemd-networkd.socket
[ 17.094915] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/saned.socket
[ 17.104292] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/initrd-cleanup.service
[ 17.114522] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/dm-event.service
[ 17.124236] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/esm-cache.service
[ 17.134027] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/mdmonitor.service
[ 17.143828] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/suspend.target
[ 17.153405] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/shutdown.target
[ 17.163030] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/nvidia-resume.service
[ 17.173165] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/getty@.service
[ 17.182699] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/sssd-pam-priv.socket
[ 17.192750] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/basic.target
[ 17.202101] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/hibernate.target
[ 17.211800] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/systemd-boot-check-no-failures.service
[ 17.223420] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/apt-news.service
[ 17.233114] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/systemd-machine-id-commit.service
[ 17.244286] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/sigpwr.target
[ 17.253722] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/initrd-usr-fs.target
[ 17.263763] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/systemd-udevd-kernel.socket
[ 17.274410] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/systemd-rfkill.socket
[ 17.284535] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/paths.target
[ 17.293881] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/systemd-logind.service
[ 17.304096] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/sssd-autofs.service
[ 17.314049] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/sssd-nss.service
[ 17.323775] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/systemd-ask-password-wall.service
[ 17.334947] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/systemd-user-sessions.service
[ 17.345774] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/sssd-ssh.socket
[ 17.355381] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/systemd-update-utmp.service
[ 17.366033] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/system-update-pre.target
[ 17.376422] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/remote-veritysetup.target
[ 17.386895] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/thermald.service
[ 17.396591] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/systemd-quotacheck.service
[ 17.407153] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/ubuntu-advantage-desktop-daemon.service
[ 17.418842] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/apport-autoreport.path
[ 17.429068] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/ssh.socket
[ 17.438239] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/uuidd.socket
[ 17.447579] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/mdadm-last-resort@.service
[ 17.458132] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/cryptsetup-pre.target
[ 17.468259] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/packagekit.service
[ 17.478124] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/wpa_supplicant-nl80211@.service
[ 17.489106] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/plymouth-read-write.service
[ 17.499748] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/snapd.snap-repair.timer
[ 17.510041] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/systemd-timedated.service
[ 17.520507] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/systemd-suspend-then-hibernate.service
[ 17.532094] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/fwupd.service
[ 17.541512] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/ssh.service
[ 17.550769] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/snapd.service
[ 17.560197] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/grub-common.service
[ 17.570143] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/rsyslog.service
[ 17.579733] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/whoopsie.path
[ 17.589160] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/apparmor.service
[ 17.598842] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/apt-daily-upgrade.service
[ 17.609325] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/proc-sys-fs-binfmt_misc.mount
[ 17.620132] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/sssd-pam.socket
[ 17.629718] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/dpkg-db-backup.timer
[ 17.639746] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/system-update.target
[ 17.649773] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/systemd-tmpfiles-clean.timer
[ 17.660481] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/logrotate.timer
[ 17.670063] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/gpu-manager.service
[ 17.679993] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/packagekit-offline-update.service
[ 17.691146] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/systemd-poweroff.service
[ 17.701511] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/sssd-sudo.socket
[ 17.711185] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/cups.service
[ 17.720516] systemd[1]: Linked unit file: /lib/systemd/system/pulseaudio-enable-autospawn.service â?? /dev/null
[ 17.730794] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/man-db.timer
[ 17.740123] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/systemd-time-wait-sync.service
[ 17.751027] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/accounts-daemon.service
[ 17.761348] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/rsync.service
[ 17.770769] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/ua-timer.service
[ 17.780449] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/e2scrub_all.timer
[ 17.790216] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/NetworkManager-dispatcher.service
[ 17.801408] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/NetworkManager-wait-online.service
[ 17.812648] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/casper-md5check.service
[ 17.822935] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/rtkit-daemon.service
[ 17.832966] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/udisks2.service
[ 17.842558] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/systemd-backlight@.service
[ 17.853102] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/cron.service
[ 17.862435] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/systemd-hostnamed.service
[ 17.872899] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/systemd-reboot.service
[ 17.883104] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/snapd.socket
[ 17.892433] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/sssd.service
[ 17.901786] systemd[1]: Linked unit file: /lib/systemd/system/rc.service â?? /dev/null
[ 17.909905] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/apt-daily.service
[ 17.919669] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/ModemManager.service
[ 17.929701] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/e2scrub_all.service
[ 17.939638] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/systemd-update-utmp-runlevel.service
[ 17.951055] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/sys-kernel-config.mount
[ 17.961375] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/boot-complete.target
[ 17.971406] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/systemd-udev-trigger.service
[ 17.982128] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/kmod-static-nodes.service
[ 17.992589] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/switcheroo-control.service
[ 18.003144] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/motd-news.service
[ 18.012911] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/systemd-remount-fs.service
[ 18.023463] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/dev-hugepages.mount
[ 18.033448] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/systemd-hibernate-resume@.service
[ 18.044606] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/systemd-pstore.service
[ 18.054838] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/polkit.service
[ 18.064349] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/systemd-network-generator.service
[ 18.075507] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/apport-forward@.service
[ 18.085803] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/update-notifier-motd.timer
[ 18.096351] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/colord.service
[ 18.105863] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/console-setup.service
[ 18.116000] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/plymouth-start.service
[ 18.126209] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/systemd-journal-flush.service
[ 18.137022] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/whoopsie.service
[ 18.146710] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/systemd-ask-password-wall.path
[ 18.157607] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/umount.target
[ 18.167034] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/plymouth-quit-wait.service
[ 18.177585] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/mdadm-last-resort@.timer
[ 18.187962] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/wpa_supplicant@.service
[ 18.198267] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/systemd-oomd.service
[ 18.208306] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/sys-kernel-debug.mount
[ 18.218508] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/sssd-nss.socket
[ 18.228108] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/remote-cryptsetup.target
[ 18.238488] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/keyboard-setup.service
[ 18.248692] systemd[1]: unit_file_build_name_map: normal unit file: /lib/systemd/system/user.slice
[ OK ] Created slice Slice /system/modprobe.
[ OK ] Created slice Slice /system/serial-getty.
[ OK ] Created slice Slice /system/systemd-fsck.
[ OK ] Created slice User and Session Slice.
[ OK ] Started Forward Password Râ?¦uests to Wall Directory Watch.
[ OK ] Set up automount Arbitraryâ?¦s File System Automount Point.
[ OK ] Reached target Local Integrity Protected Volumes.
[ OK ] Reached target Remote File Systems.
[ OK ] Reached target Slice Units.
[ OK ] Reached target Mounting snaps.
[ OK ] Reached target Local Verity Protected Volumes.
[ OK ] Listening on Device-mapper event daemon FIFOs.
[ OK ] Listening on LVM2 poll daemon socket.
[ OK ] Listening on Syslog Socket.
[ OK ] Listening on fsck to fsckd communication Socket.
[ OK ] Listening on initctl Compatibility Named Pipe.
[ OK ] Listening on Journal Audit Socket.
[ OK ] Listening on Journal Socket (/dev/log).
[ OK ] Listening on Journal Socket.
[ OK ] Listening on Userspace Out-Of-Memory (OOM) Killer Socket.
[ OK ] Listening on udev Control Socket.
[ OK ] 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 Journal Service...
[ 18.782058] systemd-journald[597]: SELinux enabled state cached to: disabled
[ 18.789405] systemd-journald[597]: Auditing in kernel turned off.
[ OK 18.796497] systemd-journald[597]: Fixed min_use=16.0M max_use=634.5M max_size=79.3M min_size=512.0K keep_free=317.2M n_max_files=100
0m] Finished 18.809527] systemd-journald[597]: Reserving 333 entries in field hash table.
;1;39mAvailability of block devi[ 18.819612] systemd-journald[597]: Reserving 144405 entries in data hash table.
ces.
[ 18.828895] systemd-journald[597]: Journal effective settings seal=no keyed_hash=yes compress=yes compress_threshold_bytes=512B
[ 18.840650] systemd-journald[597]: Vacuuming...
[ 18.845495] systemd-journald[597]: Vacuuming done, freed 0B of archived journals from /run/log/journal/a5639bb90061be5a4df8aeae64a5284e.
[ 18.858017] systemd-journald[597]: Flushing /dev/kmsg...
Starting Set the console keyboard layout...
Starting Create List of Static Device Nodes...
Starting Load Kernel Module chromeos_pstore...
[ 18.906187] systemd-journald[597]: systemd-journald running as PID 597 for the system.
[ 18.914414] systemd-journald[597]: Sent READY=1 notification.
[ 18.920433] systemd-journald[597]: Sent WATCHDOG=1 notification.
Startin[ 18.926868] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Load [ 18.937189] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
Kernel Module co[ 18.947303] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
nfigfs...
[ 18.957482] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 18.967434] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 18.976515] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
Startin[ 18.985575] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Load [ 18.996963] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
Kernel Module dr[ 19.006269] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
m...
[ 19.016846] ACPI: bus type drm_connector registered
Startin[ 19.026150] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Load [ 19.037252] pstore: backend 'erst' already in use: ignoring 'efi_pstore'
Kernel Module efi_pstore...
Startin[ 19.059590] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Load Kernel Module fuse...
[ 19.087035] systemd[1]: modprobe@pstore_blk.service: Changed dead -> start
[ 19.087710] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 19.093959] systemd[1]: Starting Load Kernel Module pstore_blk...
Starting Load Kernel Module pstore_blk...
[ 19.125544] systemd[1]: modprobe@pstore_zone.service: ConditionCapability=CAP_SYS_MODULE succeeded.
[ 19.134878] systemd[1]: modprobe@pstore_zone.service: Will spawn child (service_enter_start): /sbin/modprobe
[ 19.145155] systemd[1]: Failed to read pids.max attribute of root cgroup, ignoring: No data available
[ 19.154666] systemd[1]: modprobe@pstore_zone.service: Passing 0 fds to service
[ 19.162247] systemd[1]: modprobe@pstore_zone.service: About to execute /sbin/modprobe -abq pstore_zone
[ 19.171978] systemd[1]: modprobe@pstore_zone.service: Forked /sbin/modprobe as 617
[ 19.209531] systemd[1]: modprobe@pstore_zone.service: Changed dead -> start
[ 19.210075] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 19.216538] systemd[1]: Starting Load Kernel Module pstore_zone...
Starting Load Kernel Module pstore_zone...
[ 19.249548] systemd[1]: modprobe@ramoops.service: ConditionCapability=CAP_SYS_MODULE succeeded.
[ 19.258542] systemd[1]: modprobe@ramoops.service: Will spawn child (service_enter_start): /sbin/modprobe
[ 19.268524] systemd[1]: Failed to read pids.max attribute of root cgroup, ignoring: No data available
[ 19.278051] systemd[1]: modprobe@ramoops.service: Passing 0 fds to service
[ 19.285197] systemd[1]: modprobe@ramoops.service: About to execute /sbin/modprobe -abq ramoops
[ 19.294207] systemd[1]: modprobe@ramoops.service: Forked /sbin/modprobe as 618
[ 19.317433] systemd[1]: modprobe@ramoops.service: Changed dead -> start
[ 19.317696] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 19.324091] systemd[1]: Starting Load Kernel Module ramoops...
Starting Load Kernel Module ramoops...
[ 19.353299] systemd[1]: networkd-dispatcher.service: starting held back, waiting for: basic.target
[ 19.362543] systemd[1]: openipmi.service: starting held back, waiting for: basic.target
[ 19.370865] systemd[1]: openvpn.service: starting held back, waiting for: sysinit.target
[ 19.379224] systemd[1]: plymouth-quit-wait.service: starting held back, waiting for: plymouth-start.service
[ 19.389241] systemd[1]: plymouth-read-write.service: starting held back, waiting for: local-fs.target
[ 19.398735] systemd[1]: plymouth-start.service: starting held back, waiting for: keyboard-setup.service
[ 19.408403] systemd[1]: polkit.service: starting held back, waiting for: dbus.socket
[ 19.416420] systemd[1]: power-profiles-daemon.service: starting held back, waiting for: dbus.socket
[ 19.425742] systemd[1]: rsyslog.service: starting held back, waiting for: basic.target
[ 19.433938] systemd[1]: secureboot-db.service: starting held back, waiting for: basic.target
[ 19.442657] systemd[1]: serial-getty@ttyS0.service: starting held back, waiting for: systemd-user-sessions.service
[ 19.453309] systemd[1]: setvtrgb.service: starting held back, waiting for: systemd-user-sessions.service
[ 19.463071] systemd[1]: snapd.aa-prompt-listener.service: starting held back, waiting for: basic.target
[ 19.472753] systemd[1]: snapd.apparmor.service: starting held back, waiting for: apparmor.service
[ 19.481913] systemd[1]: snapd.autoimport.service: starting held back, waiting for: snapd.socket
[ 19.490918] systemd[1]: snapd.core-fixup.service: starting held back, waiting for: sysinit.target
[ 19.500078] systemd[1]: snapd.recovery-chooser-trigger.service: starting held back, waiting for: basic.target
[ 19.510281] systemd[1]: snapd.seeded.service: starting held back, waiting for: basic.target
[ 19.518924] systemd[1]: snapd.service: starting held back, waiting for: snapd.mounts.target
[ 19.527571] systemd[1]: sssd.service: starting held back, waiting for: basic.target
[ 19.535527] systemd[1]: switcheroo-control.service: starting held back, waiting for: basic.target
[ 19.544695] systemd[1]: systemd-binfmt.service: starting held back, waiting for: local-fs.target
[ 19.553785] systemd[1]: systemd-fsck-root.service: ConditionPathExists=!/run/initramfs/fsck-root failed.
[ 19.563558] systemd[1]: systemd-fsck-root.service: Starting requested but condition failed. Not starting unit.
[ 19.573853] systemd[1]: systemd-fsck-root.service: Job 59 systemd-fsck-root.service/start finished, result=done
[ 19.584236] systemd[1]: File System Check on Root Device was skipped because of a failed condition check (ConditionPathExists=!/run/initramfs/fsck-root).
[ 19.598269] systemd[1]: local-fs.target: starting held back, waiting for: snap-core22-858.mount
[ 19.607268] systemd[1]: systemd-fsck@dev-disk-by\x2duuid-5CF5\x2dC8C8.service: starting held back, waiting for: local-fs-pre.target
[ 19.619388] systemd[1]: systemd-journal-flush.service: starting held back, waiting for: systemd-journald.service
[ 19.629855] systemd[1]: systemd-logind.service: starting held back, waiting for: nss-user-lookup.target
[ 19.639547] systemd[1]: systemd-machine-id-commit.service: starting held back, waiting for: local-fs.target
[ 19.649600] systemd[1]: systemd-modules-load.service: ConditionKernelCommandLine=|rd.modules-load failed.
[ 19.659462] systemd[1]: systemd-modules-load.service: ConditionKernelCommandLine=|modules-load failed.
[ 19.669067] systemd[1]: systemd-modules-load.service: ConditionDirectoryNotEmpty=|/run/modules-load.d failed.
[ 19.679455] systemd[1]: systemd-modules-load.service: ConditionDirectoryNotEmpty=|/etc/modules-load.d succeeded.
[ 19.690104] systemd[1]: systemd-modules-load.service: ConditionDirectoryNotEmpty=|/usr/local/lib/modules-load.d failed.
[ 19.701303] systemd[1]: systemd-modules-load.service: ConditionDirectoryNotEmpty=|/usr/lib/modules-load.d succeeded.
[ 19.712124] systemd[1]: systemd-modules-load.service: ConditionDirectoryNotEmpty=|/lib/modules-load.d succeeded.
[ 19.722598] systemd[1]: systemd-modules-load.service: ConditionVirtualization=!container succeeded.
[ 19.731976] systemd[1]: systemd-modules-load.service: ConditionCapability=CAP_SYS_MODULE succeeded.
[ 19.741381] systemd[1]: systemd-modules-load.service: Will spawn child (service_enter_start): /lib/systemd/systemd-modules-load
[ 19.753329] systemd[1]: Failed to read pids.max attribute of root cgroup, ignoring: No data available
[ 19.762899] systemd[1]: systemd-modules-load.service: Passing 0 fds to service
[ 19.770433] systemd[1]: systemd-modules-load.service: About to execute /lib/systemd/systemd-modules-load
[ 19.780345] systemd[1]: systemd-modules-load.service: Forked /lib/systemd/systemd-modules-load as 619
[ 19.821531] systemd[1]: systemd-modules-load.service: Changed dead -> start
[ 19.821612] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 19.828541] systemd[1]: Starting Load Kernel Modules...
Starting Load Kernel Modules...
[ 19.848953] lp: driver loaded but no devices found
[ 19.856303] ppdev: user-space parallel port driver
[ 19.861166] systemd[1]: systemd-oomd.service: starting held back, waiting for: systemd-tmpfiles-setup.service
[ 19.871963] systemd[1]: systemd-pstore.service: starting held back, waiting for: systemd-remount-fs.service
[ 19.882112] systemd[1]: systemd-random-seed.service: starting held back, waiting for: systemd-remount-fs.service
[ 19.892816] systemd[1]: systemd-remount-fs.service: Will spawn child (service_enter_start): /lib/systemd/systemd-remount-fs
[ 19.904617] systemd[1]: Failed to read pids.max attribute of root cgroup, ignoring: No data available
[ 19.914318] systemd[1]: systemd-remount-fs.service: Passing 0 fds to service
[ 19.921870] systemd[1]: systemd-remount-fs.service: About to execute /lib/systemd/systemd-remount-fs
[ 19.931653] systemd[1]: systemd-remount-fs.service: Forked /lib/systemd/systemd-remount-fs as 623
[ 19.931992] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 19.940628] EXT4-fs (md122p3): re-mounted 6d53dc8e-3f45-4efa-bc0e-4af477fac217 r/w. Quota mode: none.
[ 19.940661] systemd[1]: systemd-remount-fs.service: Changed dead -> start
[ 19.940667] systemd[1]: Starting Remount Root and Kernel File Systems...
Starting Remount Root and Kernel File Systems...
[ 19.989432] systemd[1]: systemd-repart.service: ConditionDirectoryNotEmpty=|/sysusr/usr/local/lib/repart.d failed.
[ 20.000128] systemd[1]: systemd-repart.service: ConditionDirectoryNotEmpty=|/sysusr/usr/lib/repart.d failed.
[ 20.010452] systemd[1]: systemd-repart.service: ConditionDirectoryNotEmpty=|/sysroot/etc/repart.d failed.
[ 20.020479] systemd[1]: systemd-repart.service: ConditionDirectoryNotEmpty=|/sysroot/usr/local/lib/repart.d failed.
[ 20.031237] systemd[1]: systemd-repart.service: ConditionDirectoryNotEmpty=|/sysroot/usr/lib/repart.d failed.
[ 20.041555] systemd[1]: systemd-repart.service: ConditionDirectoryNotEmpty=|/run/repart.d failed.
[ 20.050749] systemd[1]: systemd-repart.service: ConditionDirectoryNotEmpty=|/etc/repart.d failed.
[ 20.059945] systemd[1]: systemd-repart.service: ConditionDirectoryNotEmpty=|/usr/local/lib/repart.d failed.
[ 20.069997] systemd[1]: systemd-repart.service: ConditionDirectoryNotEmpty=|/usr/lib/repart.d failed.
[ 20.079522] systemd[1]: systemd-repart.service: ConditionVirtualization=!container succeeded.
[ 20.088356] systemd[1]: systemd-repart.service: Starting requested but condition failed. Not starting unit.
[ 20.098403] systemd[1]: systemd-repart.service: Job 45 systemd-repart.service/start finished, result=done
[ 20.108274] systemd[1]: Repartition Root Disk was skipped because all trigger condition checks failed.
[ 20.117899] systemd[1]: systemd-resolved.service: starting held back, waiting for: systemd-tmpfiles-setup.service
[ 20.128472] systemd[1]: systemd-sysctl.service: starting held back, waiting for: systemd-modules-load.service
[ 20.138698] systemd[1]: systemd-sysusers.service: starting held back, waiting for: systemd-remount-fs.service
[ 20.148923] systemd[1]: systemd-timesyncd.service: starting held back, waiting for: systemd-remount-fs.service
[ 20.159229] systemd[1]: systemd-tmpfiles-setup-dev.service: starting held back, waiting for: kmod-static-nodes.service
[ 20.170232] systemd[1]: systemd-tmpfiles-setup.service: starting held back, waiting for: local-fs.target
[ 20.180021] systemd[1]: systemd-udev-trigger.service: ConditionPathIsReadWrite=/sys succeeded.
[ 20.188957] systemd[1]: systemd-udev-trigger.service: Will spawn child (service_enter_start): udevadm
[ 20.198640] systemd[1]: Failed to read pids.max attribute of root cgroup, ignoring: No data available
[ 20.208206] systemd[1]: systemd-udev-trigger.service: Passing 0 fds to service
[ 20.215745] systemd[1]: systemd-udev-trigger.service: About to execute udevadm trigger --type=all --action=add --prioritized-subsystem=module,block,tpmrm,tty,net
[ 20.230611] systemd[1]: systemd-udev-trigger.service: Forked udevadm as 626
[ 20.231564] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 20.237646] systemd[1]: systemd-udev-trigger.service: Changed dead -> start
[ 20.254443] systemd[1]: Starting Coldplug All udev Devices...
Starting Coldplug All udev Devices...
[ 20.273292] systemd[1]: systemd-udevd.service: starting held back, waiting for: systemd-tmpfiles-setup-dev.service
[ 20.283972] systemd[1]: systemd-update-utmp-runlevel.service: starting held back, waiting for: systemd-update-utmp.service
[ 20.295317] systemd[1]: systemd-update-utmp.service: starting held back, waiting for: systemd-remount-fs.service
[ 20.305785] systemd[1]: systemd-user-sessions.service: starting held back, waiting for: network.target
[ 20.315392] systemd[1]: thermald.service: starting held back, waiting for: sysinit.target
[ 20.323868] systemd[1]: ua-reboot-cmds.service: starting held back, waiting for: sysinit.target
[ 20.332867] systemd[1]: ubuntu-advantage.service: starting held back, waiting for: network-online.target
[ 20.342645] systemd[1]: udisks2.service: starting held back, waiting for: sysinit.target
[ 20.351037] systemd[1]: ufw.service: starting held back, waiting for: local-fs.target
[ 20.359168] systemd[1]: unattended-upgrades.service: starting held back, waiting for: basic.target
[ 20.368424] systemd[1]: wpa_supplicant.service: starting held back, waiting for: basic.target
[ 20.377894] systemd[1]: sys-kernel-tracing.mount: Changed mounting -> mounting-done
[ 20.385866] systemd[1]: sys-kernel-debug.mount: Changed mounting -> mounting-done
[ 20.393672] systemd[1]: dev-mqueue.mount: Changed mounting -> mounting-done
[ 20.400938] systemd[1]: dev-hugepages.mount: Changed mounting -> mounting-done
[ 20.408746] systemd[1]: systemd-journald.service: Got notification message from PID 597 (READY=1, STATUS=Processing requests...)
[ 20.420621] systemd[1]: systemd-journald.service: Changed start -> running
[ 20.427813] systemd[1]: systemd-journald.service: Job 22 systemd-journald.service/start finished, result=done
[ 20.438033] systemd[1]: Started Journal Service.
[ OK ] Started Journal Service.
[ 20.457404] systemd[1]: systemd-journald-audit.socket: Changed listening -> running
[ 20.465460] systemd[1]: systemd-journald.socket: Changed listening -> running
[ OK ] Mounted Huge Pages File System.
[ OK ] Mounted POSIX Message Queue File System.
[ OK ] Mounted Kernel Debug File System.
[ OK ] Mounted Kernel Trace File System.
[ OK ] Finished Set the console keyboard layout.
[ OK ] Finished Create List of Static Device Nodes.
[ OK ] Finished Load Kernel Module chromeos_pstore.
[ OK ] Finished Load Kernel Module configfs.
[ OK ] Finished Load Kernel Module drm.
[ OK ] Finished Load Kernel Module efi_pstore.
[ OK ] Finished Load Kernel Module fuse.
[ OK ] Finished Load Kernel Module pstore_blk.
[ OK ] Finished Load Kernel Module pstore_zone.
[ OK ] Finished Load Kernel Module ramoops.
[ OK ] Finished Load Kernel Modules.
[ OK ] Finished Remount Root and Kernel File Systems.
[ OK ] Finished Coldplug All udev Devices.
Activat[ 20.817873] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 20.821818] Adding 2097148k swap on /swapfile. Priority:-2 extents:16 across:534904832k SSFS
ing swap /swapfile...
Mountin[ 20.851890] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g FUSE Control File System...
Mountin[ 20.879858] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Kernel Configuration File System...
Startin[ 20.911939] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Flush[ 20.921853] systemd-journald[597]: varlink: New incoming connection.
Journal to Pers[ 20.929641] systemd-journald[597]: varlink-19: Setting state idle-server
istent Storage 20.937822] systemd-journald[597]: varlink-19: New incoming message: {"method":"io.systemd.Journal.FlushToVar","parameters":{}}
0m...
[ 20.950647] systemd-journald[597]: varlink-19: Changing state idle-server â?? processing-method
[ 20.959970] systemd-journald[597]: Received client request to flush runtime journal.
Starting Load/[ 20.971386] systemd-journald[597]: Fixed min_use=16.0M max_use=4.0G max_size=128.0M min_size=512.0K keep_free=4.0G n_max_files=100
Save Random Seed...
[ 20.988787] systemd-journald[597]: Flushing to /var/log/journal/a5639bb90061be5a4df8aeae64a5284e...
[ 20.998224] systemd-journald[597]: Considering root directory '/run/log/journal'.
[ 21.006161] systemd-journald[597]: Root directory /run/log/journal added.
Startin[ 21.013357] systemd-journald[597]: Considering directory '/run/log/journal/a5639bb90061be5a4df8aeae64a5284e'.
g Apply[ 21.024718] systemd-journald[597]: Directory /run/log/journal/a5639bb90061be5a4df8aeae64a5284e added.
Kernel Variable[ 21.035360] systemd-journald[597]: Journal effective settings seal=no keyed_hash=yes compress=yes compress_threshold_bytes=8B
s...
[ 21.048083] systemd-journald[597]: File /run/log/journal/a5639bb90061be5a4df8aeae64a5284e/system.journal added.
[ 21.059082] systemd-journald[597]: Considering root directory '/var/log/journal'.
[ 21.066940] systemd-journald[597]: Considering root directory '/var/log/journal/remote'.
Starting Create System Users...
[ OK ] Activated swap /swapfile.
[ OK ] Mounted FUSE Control File System.
[ OK ] Mounted Kernel Configuration File System.
[ OK ] Finished Load/Save Random Seed.
[ OK ] Finished 21.168334] systemd-journald[597]: Root directory /run/log/journal removed.
;1;39mApply Kern[ 21.175909] systemd-journald[597]: Directory /run/log/journal/a5639bb90061be5a4df8aeae64a5284e removed.
el Variables[ 21.186729] systemd-journald[597]: mmap cache statistics: 156955 context cache hit, 3 window list hit, 1 miss
.
[ 21.198154] systemd-journald[597]: Vacuuming...
[ OK ] Reached target Swaps.
[ OK ] Finished Create System Users.
[ 21.244859] systemd-journald[597]: Vacuuming done, freed 0B of archived journals from /var/log/journal/a5639bb90061be5a4df8aeae64a5284e.
[ 21.259844] systemd-journald[597]: varlink-19: Sending message: {"parameters":{}}
[ 21.267780] systemd-journald[597]: varlink-19: Changing state processing-method â?? processed-method
[ 21.277298] systemd-journald[597]: varlink-19: Changing state processed-method â?? idle-server
Startin[ 21.286710] systemd-journald[597]: varlink-19: Got POLLHUP from socket.
g Creat[ 21.294694] systemd-journald[597]: varlink-19: Changing state idle-server â?? pending-disconnect
e Static Device [ 21.304920] systemd-journald[597]: varlink-19: Changing state pending-disconnect â?? processing-disconnect
Nodes in /dev 21.315965] systemd-journald[597]: varlink-19: Changing state processing-disconnect â?? disconnected
m...
[ 21.326656] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 21.335848] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 21.344899] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 21.353972] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ OK ] Finished Flush Journal to Persistent Storage.
[ OK ] Finished Create Static Device Nodes in /dev.
[ OK ] Reached target Preparation for Local File Systems.
Mountin[ 21.429684] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 21.431460] loop0: detected capacity change from 0 to 8
g Mount unit for bare, revision 5...
Mounting Mount[ 21.461908] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 21.463376] loop1: detected capacity change from 0 to 129944
unit for core20, revision 1974...
Mountin[ 21.491838] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 21.494090] loop2: detected capacity change from 0 to 129976
g Mount unit for core20, revision 2015...
Mountin[ 21.527500] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 21.529502] loop3: detected capacity change from 0 to 151256
g Mount unit for core22, revision 817...
Mountin[ 21.574093] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 21.576153] loop4: detected capacity change from 0 to 151296
g Mount unit for core22, revision 858...
Mountin[ 21.607982] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 21.609686] loop5: detected capacity change from 0 to 485800
g Mount unit for firefox, revision 2987...
Mountin[ 21.644234] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 21.645645] loop6: detected capacity change from 0 to 485808
g Mount unit for firefox, revision 3026...
Mountin[ 21.676044] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 21.678651] loop7: detected capacity change from 0 to 716168
g Mount unit for gnome-3-38-2004, revision 140...
Mountin[ 21.712251] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 21.714763] loop8: detected capacity change from 0 to 716176
g Mount unit for gnome-3-38-2004, revision 143...
Mountin[ 21.743820] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 21.747391] loop9: detected capacity change from 0 to 994336
g Mount unit for gnome-42-2204, revision 120...
Mountin[ 21.798295] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 21.801326] loop10: detected capacity change from 0 to 994336
g Mount unit for gnome-42-2204, revision 126...
Mountin[ 21.831456] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 21.833476] loop11: detected capacity change from 0 to 187776
g Mount unit for gtâ?¦ommon-themes, revision 1535...
Mountin[ 21.870002] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 21.872379] loop12: detected capacity change from 0 to 25240
g Mount unit for snap-store, revision 959...
Mountin[ 21.903635] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 21.906224] loop13: detected capacity change from 0 to 109072
g Mount unit for snapd, revision 19457...
Mountin[ 21.936269] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 21.938655] loop14: detected capacity change from 0 to 83648
g Mount unit for snapd, revision 19993...
Mountin[ 21.967918] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 21.970792] loop15: detected capacity change from 0 to 904
g Mount unit for snâ?¦op-integration, revision 83...
Mountin[ 22.005727] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Mount unit for fiâ?¦sion 2667 via mount-control...
Startin[ 22.032707] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Rule-based Manageâ?¦for Device Events and Files...
[ OK ] Mounted Mount unit for bare, revision 5.
[ OK ] Mounted Mount unit for core20, revision 1974.
[ OK ] Started Rule-based Manager for Device Events and Files.
[ OK ] Mounted Mount unit for core20, revision 2015.
[ OK ] Mounted Mount unit for core22, revision 817.
[ OK ] Mounted Mount unit for core22, revision 858.
[ 22.152032] nvme0n1:mdadm bd_prepare_to_claim return -16
[ 22.158642] nvme0n1:mdadm blkdev_get_by_dev return -16
[ 22.164469] nvme3n1:mdadm bd_prepare_to_claim return -16
[ 22.170169] nvme3n1:mdadm blkdev_get_by_dev return -16
[ 22.170236] nvme2n1:mdadm bd_prepare_to_claim return -16
[ OK 22.181473] nvme2n1:mdadm blkdev_get_by_dev return -16
0m] Mounted 22.187807] nvme1n1:mdadm bd_prepare_to_claim return -16
1;39mMount unit [ 22.194442] nvme1n1:mdadm blkdev_get_by_dev return -16
for firefox, rev[ 22.201093] nvme7n1:mdadm bd_prepare_to_claim return -16
ision 2987.[ 22.207767] nvme7n1:mdadm blkdev_get_by_dev return -16

[ 22.214445] nvme8n1:mdadm bd_prepare_to_claim return -16
[ 22.220129] nvme8n1:mdadm blkdev_get_by_dev return -16
[ 22.225693] nvme9n1:mdadm bd_prepare_to_claim return -16
[ 22.231382] nvme9n1:mdadm blkdev_get_by_dev return -16
[ 22.231461] nvme5n1:mdadm bd_prepare_to_claim return -16
[ OK 22.242755] nvme5n1:mdadm blkdev_get_by_dev return -16
0m] Mounted 22.249082] nvme10n1:mdadm bd_prepare_to_claim return -16
1;39mMount unit [ 22.255716] nvme10n1:mdadm blkdev_get_by_dev return -16
for firefox, rev[ 22.262491] nvme6n1:mdadm bd_prepare_to_claim return -16
ision 3026.[ 22.269126] nvme6n1:mdadm blkdev_get_by_dev return -16

[ OK ] Mounted Mount unit for gnome-3-38-2004, revision 140.
[ OK ] Mounted Mount unit for gnome-3-38-2004, revision 143.
[ 22.326037] wmi_bus wmi_bus-PNP0C14:02: WQBC data block query control method not found
[ OK ] Mounted Mount unit for gnome-42-2204, revision 120.
[ 22.342745] spi-nor spi0.0: gd25q128 (16384 Kbytes)
[ OK ] Mounted Mount unit for gnome-42-2204, revision 126.
[ OK ] Mounted Mount unit for gtk-common-themes, revision 1535.
[ 22.385345] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 22.394091] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ OK 22.394376] intel_vsec 0000:e7:03.1: enabling device (0144 -> 0146)
0m] Mounted Mount unit [ 22.408602] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.4)
[ 22.408623] Bluetooth: Core ver 2.22
for snap-store, [ 22.408643] NET: Registered PF_BLUETOOTH protocol family
revision 959[ 22.408644] Bluetooth: HCI device and connection manager initialized
.
[ 22.408651] Bluetooth: HCI socket layer initialized
[ 22.408652] Bluetooth: L2CAP socket layer initialized
[ 22.408657] Bluetooth: SCO socket layer initialized
[ 22.410060] ACPI: battery: new extension: Dell DDV Battery Extension
[ 22.410071] Creating 1 MTD partitions on "0000:00:1f.5":
[ 22.410074] 0x000000000000-0x000003000000 : "BIOS"
[ 22.410075] mtd: partition "BIOS" extends beyond the end of device "0000:00:1f.5" -- size truncated to 0x1000000
[ 22.412216] spi-nor spi0.1: gd25q256 (32768 Kbytes)
[ OK ] Mounted Mount unit [ 22.494106] idxd 0000:e7:01.0: enabling device (0144 -> 0146)
for snapd, revision 19457.
[ 22.501553] idxd 0000:e7:01.0: Unable to turn on user SVA feature.
[ 22.510218] idxd 0000:e7:01.0: Intel(R) Accelerator Device (v100)
[ OK ] Mounted Mount unit for snapd, revision 19993.
[ OK ] Mounted Mount unit for snaâ?¦ktop-integration, revision 83.
[ OK ] Mounted Mount unit for firâ?¦vision 2667 via mount-control.
[ OK ] Found device /dev/ttyS0.
[ OK ] Found device /dev/disk/by-uuid/5CF5-C8C8.
[ OK ] Created slice Slice[ 22.668501] usbcore: registered new interface driver btusb
/system/mdmon 22.668561] input: Dell Privacy Driver as /devices/platform/PNP0C14:02/wmi_bus/wmi_bus-PNP0C14:02/6932965F-1671-4CEB-B988-D3AB0A901919/input/input6
0m.
[ 22.673293] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 655360 ms ovfl timer
[ 22.673295] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 22.673296] RAPL PMU: hw unit of domain dram 2^-14 Joules
[ 22.673297] RAPL PMU: hw unit of domain psys 2^-0 Joules
[ 22.693666] Bluetooth: hci0: using rampatch file: qca/rampatch_usb_00130201.bin
[ 22.701815] input: Dell WMI hotkeys as /devices/platform/PNP0C14:02/wmi_bus/wmi_bus-PNP0C14:02/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input7
[ 22.706245] Bluetooth: hci0: QCA: patch rome 0x130201 build 0x5073, firmware rome 0x130201 build 0x38e6
[ 22.749677] cryptd: max_cpu_qlen set to 1000
[ OK ] Reached target Mounted snaps.
[ OK ] Listening on Load/Save RF â?¦itch Status /dev/rfkill Watch.
[ 22.794788] AVX2 version of gcm_enc/dec engaged.
[ 22.799980] AES CTR mode by8 optimization enabled
[ 22.811776] snd_hda_intel 0000:00:1f.3: enabling device (0140 -> 0142)
[ 22.819463] snd_hda_intel 0000:16:00.1: enabling device (0140 -> 0142)
[ 22.826817] snd_hda_intel 0000:16:00.1: Disabling MSI
[ 22.832541] snd_hda_intel 0000:16:00.1: Handle vga_switcheroo audio client
[ 22.833742] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
Starting MD Metadata Monitor on /dev/md127...
[ OK 22.866737] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
0m] Started MD array monitor.
Startin[ 22.890440] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Load Kernel Module chromeos_pstore...
[ 22.909258] ath11k_pci 0000:01:00.0: BAR 0: assigned [mem 0x80a00000-0x80bfffff 64bit]
[ 22.917671] ath11k_pci 0000:01:00.0: enabling device (0140 -> 0142)
[ 22.918431] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 22.933748] ath11k_pci 0000:01:00.0: MSI vectors: 32
[ 22.939851] ath11k_pci 0000:01:00.0: wcn6855 hw2.1
Startin[ 22.945715] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC3246: line_outs=1 (0x1b/0x0/0x0/0x0/0x0) type:line
g Load [ 22.957241] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=1 (0x14/0x0/0x0/0x0/0x0)
Kernel Module ef[ 22.966576] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
i_pstore...[ 22.975793] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0

[ 22.983714] snd_hda_codec_realtek hdaudioC0D0: inputs:
[ 22.989527] snd_hda_codec_realtek hdaudioC0D0: Headset Mic=0x19
[ 22.996464] snd_hda_codec_realtek hdaudioC0D0: Headphone Mic=0x1a
[ 22.997562] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
Starting Load Kernel Module pstore_blk...
[ 23.018234] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:15/0000:15:01.0/0000:16:00.1/sound/card1/input8
[ 23.029331] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:15/0000:15:01.0/0000:16:00.1/sound/card1/input9
[ 23.030373] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 23.039617] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:15/0000:15:01.0/0000:16:00.1/sound/card1/input10
[ 23.060926] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:15/0000:15:01.0/0000:16:00.1/sound/card1/input11
Startin[ 23.071957] NET: Registered PF_QIPCRTR protocol family
g Load Kernel Module pstore_zone...
Startin[ 23.094105] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Load Kernel Module ramoops...
[ OK ] Started Dispatch Password â?¦ts to Console Directory Watch.
[ OK ] Reached target Local Encrypted Volumes.
Startin[ 23.150288] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g File System Checkâ?¦/dev/disk/by-uuid/5CF5-C8C8...
[ OK ] Started MD Metadata Monitor on /dev/md127.
[ OK ][ 23.187155] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
Finished 23.197357] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
39mLoad Kernel M[ 23.207297] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
odule chromeos_pstore.
[ OK ] Finished Load Kernel Module efi_pstore.
[ [ 23.226662] Bluetooth: hci0: using NVM file: qca/nvm_usb_00130201_gf.bin
OK ] Finished Load[ 23.236279] input: HDA Intel PCH Headphone Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input12
Kernel Module p[ 23.246509] mhi mhi0: Requested to power ON
store_blk.
[ 23.251646] mhi mhi0: Power on setup success
[ OK 23.257601] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1f.3/sound/card0/input13
0m] Finished Load Kernel Module pstore_zone.
[ OK ] Finished 23.274868] EDAC i10nm: No hbm memory
mLoad Kernel Mod[ 23.279785] EDAC MC0: Giving out device to module i10nm_edac controller Intel_10nm Socket#0 IMC#0: DEV 0000:fe:0c.0 (INTERRUPT)
ule ramoops.[ 23.292674] EDAC MC1: Giving out device to module i10nm_edac controller Intel_10nm Socket#0 IMC#1: DEV 0000:fe:0d.0 (INTERRUPT)

Start[ 23.305673] EDAC MC2: Giving out device to module i10nm_edac controller Intel_10nm Socket#0 IMC#2: DEV 0000:fe:0e.0 (INTERRUPT)
ing Loa[ 23.323529] EDAC MC3: Giving out device to module i10nm_edac controller Intel_10nm Socket#0 IMC#3: DEV 0000:fe:0f.0 (INTERRUPT)
d Kernel Module [ 23.336521] EDAC i10nm: v0.0.6
chromeos_pstore...
Starting Load Kernel Module efi_pstore[ 23.346605] intel_rapl_common: Found RAPL domain package
...
[ 23.353322] intel_rapl_common: Found RAPL domain dram
[ 23.361269] mhi mhi0: Wait for device to enter SBL or Mission mode
Starting Load Kernel Module pstore_blk...
[ 23.381308] Bluetooth: hci0: HCI Enhanced Setup Synchronous Connection command is advertised, but not supported.
Startin[ 23.446004] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Load Kernel Module pstore_zone...
Startin[ 23.476212] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Load Kernel Module ramoops...
[ OK 23.504549] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
0m] Started File System Check Daemon to report status.
Startin[ 23.532463] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Load/Save RF Kill Switch Status...
[ OK ] Started Load/Save RF Kill Switch Status.
[ OK ] Finished File System Checkâ?¦n /dev/disk/by-uuid/5CF5-C8C8.
[ OK ] Finished Load Kernel Module chromeos_pstore.
[ OK ] Finished Load Kernel Module efi_pstore.
[ OK ] Finished Load Kernel Module pstore_blk.
[ OK ] Finished Load Kernel Module pstore_zone.
[ OK ] Finished Load Kernel Module ramoops.
Mountin[ 23.734019] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g /boot/efi...
Startin[ 23.760345] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Load Kernel Module chromeos_pstore...
Startin[ 23.788272] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Load Kernel Module efi_pstore...
Startin[ 23.815650] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Load Kernel Module pstore_blk...
Startin[ 23.844623] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Load Kernel Module pstore_zone...
Startin[ 23.876544] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Load Kernel Module ramoops...
[ OK ] Mounted /boot/efi.
[ OK ] Finished Load Kernel Module chromeos_pstore.
[ OK ] Finished Load Kernel Module efi_pstore.
[ OK ] Finished Load Kernel Module pstore_blk.
[ OK ] Finished Load Kernel Module pstore_zone.
[ OK ] Finished Load Kernel Module ramoops.
[ OK 23.995589] ath11k_pci 0000:01:00.0: chip_id 0x12 chip_family 0xb board_id 0xff soc_id 0x400c1211
0m] Reached targ[ 24.005110] ath11k_pci 0000:01:00.0: fw_version 0x110b196e fw_build_timestamp 2022-12-22 12:54 fw_build_id WLAN.HSP.1.1-03125-QCAHSPSWPL_V1_V2_SILICONZ_LITE-3.6510.23
et Local File Systems.
Startin[ 24.081642] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Load AppArmor profiles...
[ 24.103825] audit: type=1400 audit(1693276681.160:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-xpdfimport" pid=975 comm="apparmor_parser"
[ 24.120110] audit: type=1400 audit(1693276681.160:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-senddoc" pid=973 comm="apparmor_parser"
[ 24.120956] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 24.135767] audit: type=1400 audit(1693276681.160:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=966 comm="apparmor_parser"
[ 24.135770] audit: type=1400 audit(1693276681.160:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=967 comm="apparmor_parser"
[ 24.175982] audit: type=1400 audit(1693276681.160:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=967 comm="apparmor_parser"
Startin[ 24.192157] audit: type=1400 audit(1693276681.160:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-oosplash" pid=972 comm="apparmor_parser"
g Set c[ 24.209365] audit: type=1400 audit(1693276681.160:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=970 comm="apparmor_parser"
onsole font and [ 24.225778] audit: type=1400 audit(1693276681.160:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=970 comm="apparmor_parser"
keymap...
[ 24.242066] audit: type=1400 audit(1693276681.160:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=970 comm="apparmor_parser"
[ 24.258264] audit: type=1400 audit(1693276681.160:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=976 comm="apparmor_parser"
[ 24.260596] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
Starting Create final runtâ?¦dir for shutdown pivot root...
Startin[ 24.303273] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Tell Plymouth To Write Out Runtime Data...
Startin[ 24.331829] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Create Volatile Files and Directories...
Startin[ 24.358629] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Uncomplicated firewall...
[ OK ] Finished Load AppArmor profiles.
[ OK 24.402527] ath11k_pci 0000:01:00.0 wlp1s0: renamed from wlan0
0m] Finished Set console font and keymap.
[ OK ] Finished Create final runtâ?¦e dir for shutdown pivot root.
[ OK ] Finished Tell Plymouth To Write Out Runtime Data.
[ OK ] Finished Create Volatile Files and Directories.
[ OK ] Finished Uncomplicated firewall.
[ OK ] Reached target Preparation for Network.
Startin[ 24.530169] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Load AppArmor proâ?¦managed internally by snapd...
Starting Userspace Out-Of-Memory (OOM) Killer...
Starting Network Name Resolution...
Starting Network Time Synchronization...
Startin[ 24.619415] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Record System Boot/Shutdown in UTMP...
[ 24.644421] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
Mountin[ 24.653847] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Arbit[ 24.664196] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
rary Executable [ 24.674333] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
File Formats File System...
[ OK ] Finished Record System Boot/Shutdown in UTMP.
[ OK ] Mounted Arbitrary Executable File Formats File System.
[ OK ] Started Userspace Out-Of-Memory (OOM) Killer.
[ OK ] Started Network Time Synchronization.
[ OK ] Started Network Name Resolution.
[ OK ] Reached target Host and Network Name Lookups.
[ OK ] Reached target System Time Set.
[ OK ] Finished Load AppArmor proâ?¦s managed internally by snapd.
[ OK ] Reached target System Initialization.
[ OK ] Started CUPS Scheduler.
[ OK ] Started Start whoopsie on â?¦n of the /var/crash directory.
[ OK ] Started Trigger anacron every hour.
[ OK ] Started Daily apt download activities.
[ OK ] Started Daily apt upgrade and clean activities.
[ OK ] Started Daily dpkg database backup timer.
[ OK ] Started Periodic ext4 Onliâ?¦ata Check for All Filesystems.
[ OK ] Started Discard unused blocks once a week.
[ OK ] Started Refresh fwupd metadata regularly.
[ OK ] Started Daily rotation of log files.
[ OK ] Started Daily man-db regeneration.
[ OK ] Started MD array scrubbing - continuation.
[ OK ] Started MD array scrubbing.
[ OK ] Started Reminder for degraded MD arrays.
[ OK ] Started Message of the Day.
[ OK ] Started Daily Cleanup of Temporary Directories.
[ OK ] Reached target Path Units.
[ OK ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[ OK ] Listening on CUPS Scheduler.
[ OK ] Listening on D-Bus System Message Bus Socket.
Starting Socket activation for snappy daemon...
[ OK ] Listening on OpenBSD Secure Shell server socket.
[ OK ] Listening on UUID daemon activation socket.
[ OK ] Listening on Socket activation for snappy daemon.
[ OK ] Reached target Socket Units.
[ OK ] Reached target Basic System.
[ OK 25.354318] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
0m] Started Run anacron jobs.
Startin[ 25.380093] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g LSB: automatic crash report generation...
Startin[ 25.408749] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Avahi mDNS/DNS-SD Stack...
Startin[ 25.437287] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Bluetooth service...
Startin[ 25.462894] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g casper-md5check Verify Live ISO checksums...
Startin[ 25.493026] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g D-Bus System Message Bus...
[ OK ] Started 25.524436] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
1;39mSave initia[ 25.531385] Bluetooth: BNEP filters: protocol multicast
l kernel message[ 25.538015] Bluetooth: BNEP socket layer initialized
s after boot.
[ 25.546283] Bluetooth: MGMT ver 1.22
[ 25.555244] NET: Registered PF_ALG protocol family
Startin[ 25.564456] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Remove Stale Onliâ?¦t4 Metadata Check Snapshots...
Starting Detect the availaâ?¦eal with any system changes...
Startin[ 25.615333] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Record successful boot for GRUB...
[ OK 25.643986] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
0m] Started irqbalance daemon.
[ OK 25.668162] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
0m] Started Enclosure LED Utilities.
Starting LSB: [ 25.698187] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
OpenIPMI Driver init script...
Startin[ 25.723844] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Authorization Manager...
Startin[ 25.747057] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Power Profiles daemon...
Starting System Logging Service...
Startin[ 25.791002] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Secure Boot updates for DB and DBX...
[ OK ] Reached target Preparation for Logins.
Startin[ 25.831914] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Snap Daemon...
[ OK ] Reached target User and Group Name Lookups.
[DEPEND] Dependency failed for SSSD NSS Service responder socket.
[DEPEND] Dependency failed for SSSDâ?¦toFS Service responder socket.
[DEPEND] Dependency failed for SSSD PAC Service responder socket.
[DEPEND] Dependency failed for SSSDâ?¦vice responder private socket.
[DEPEND] Dependency failed for SSSD PAM Service responder socket.
[DEPEND] Dependency failed for SSSD SSH Service responder socket.
[DEPEND] Dependency failed for SSSD Sudo Service responder socket.
[ 26.045624] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
Starting Accounts Service...
[ OK 26.070883] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
0m] Started Regular background program processing daemon.
Startin[ 26.102920] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Switcheroo Control Proxy service...
Startin[ 26.130903] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g User Login Management...
Startin[ 26.154478] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Thermal Daemon Service...
Startin[ 26.178198] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Disk Manager...
[ OK ] Started D-Bus System Message Bus.
[FAILED] Failed to start casper-md5â?¦eck Verify Live ISO checksums.
See 'systemctl status casper-md5check.service' for details.
[ OK ] Finished Remove Stale Onliâ?¦ext4 Metadata Check Snapshots.
[ 26.313621] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ OK 26.322680] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
0m] Started Thermal Daemon Service.
[ 26.346479] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ OK 26.355719] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 26.362592] loop16: detected capacity change from 0 to 8
0m] Finished 26.366189] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
;1;39mRecord successful boot for GRUB.
[ OK ] Finished Secure Boot updates for DB and DBX.
[ OK ] Started System Logging Service.
[ OK ] Started Authorization Manager.
[ 26.447295] IPMI message handler: version 39.2
[ 26.453078] ipmi device interface
[ OK ] Started LSB: automatic crash report generation.
[FAILED] Failed to start LSB: OpenIPMI Driver init script.
See 'systemctl status openipmi.service' for details.
[ OK ] Started User Login Management.
[ OK ] Started Switcheroo Control Proxy service.
[ OK ] Started Bluetooth service.
[ OK ] Started Snap Daemon.
[ OK ] Started Disk Manager.
[ OK ] Started Power Profiles daemon.
[ OK ] Started Avahi mDNS/DNS-SD Stack.
[ OK ] Started Accounts Service.
[ OK ] Reached target Bluetooth Support.
[ 26.709930] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
Starting Modem Manager...
Startin[ 26.735101] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Network Manager...
Startin[ 26.759293] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Save/Restore Sound Card State...
Startin[ 26.787144] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g GRUB failed boot detection...
Startin[ 26.815128] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Load Kernel Module drm...
Startin[ 26.840083] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Wait until snapd is fully seeded...
Startin[ 26.868515] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Hostname Service...
Startin[ 26.894498] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Time & Date Service...
Startin[ 26.922253] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g WPA supplicant...
[ 26.952136] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ OK 26.961173] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
0m] Finished Load Kernel Module drm.
[ OK ] Finished Save/Restore Sound Card State.
[ OK ] Finished GRUB failed boot detection.
[ OK ] Started Modem Manager.
[ OK ] Started Network Manager.
[ OK ] Started Hostname Service.
[ OK ] Started WPA supplicant.
[ OK ] Started Time & Date Service.
[ OK ] Reached target Network.
[ OK ] Reached target Sound Card.
[ 27.201503] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
Starting Network Manager Script Dispatcher Service...
Startin[ 27.230857] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Network Manager Wait Online...
[ 27.258654] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
Starting CUPS Scheduler...
[ 27.287877] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
Starting OpenVPN service...
Startin[ 27.310993] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Permit User Sessions...
[ OK 27.334593] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
0m] Started Unattended Upgrades Shutdown.
[ OK ] Started CUPS Scheduler.
[ OK ] Finished Wait until snapd is fully seeded.
[ OK ] Finished OpenVPN service.
[ OK ] Finished Permit User Sessions.
[ OK ] Started Network Manager Script Dispatcher Service.
[ 27.485963] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
Starting Hold until boot process finishes up...
[ OK ] Finished Hold until boot process finishes up.
[ OK ] Started Serial Getty on ttyS0.
[ OK ] Reached target Login Prompts.
[ 27.581990] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
Starting Set console scheme...
[ OK ] Finished Set console scheme.
[ OK ] Created slice Slice /system/getty.
[ 30.667935] e1000e 0000:00:1f.6 enp0s31f6: NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None

Ubuntu 22.10 u-Precision-7960-Tower ttyS0

u-Precision-7960-Tower login: [ 33.834184] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 33.843423] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 33.852611] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 33.861705] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 34.333309] atlantic 0000:02:00.0 enp2s0: atlantic: link change old 0 new 1000
[ 35.718064] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 35.756311] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 35.768182] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 45.893970] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 45.903016] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 46.010091] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 46.028452] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 46.039549] systemd-journald[597]: Fixed min_use=4.0G max_use=4.0G max_size=128.0M min_size=512.0K keep_free=4.0G n_max_files=100
[ 46.062451] systemd-journald[597]: Journal effective settings seal=no keyed_hash=yes compress=yes compress_threshold_bytes=512B
[ 46.169876] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 46.180540] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 46.190107] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 46.199352] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 46.208995] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 46.218626] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 46.227731] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 46.237429] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 46.246725] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 46.253340] systemd[1]: varlink-114: Sending message: {"error":"io.systemd.UserDatabase.NoRecordFound","parameters":{}}
[ 46.255651] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 46.275817] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 46.281328] systemd[1]: varlink-114: Changing state processing-method-more â?? processed-method
[ 46.290476] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 46.312831] kauditd_printk_skb: 38 callbacks suppressed
[ 46.312834] audit: type=1400 audit(1693276703.368:50): apparmor="DENIED" operation="capable" class="cap" profile="/snap/snapd/19993/usr/lib/snapd/snap-confine" pid=1403 comm="snap-confine" capability=12 capname="net_admin"
[ 46.320344] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 46.338347] audit: type=1400 audit(1693276703.368:51): apparmor="DENIED" operation="capable" class="cap" profile="/snap/snapd/19993/usr/lib/snapd/snap-confine" pid=1403 comm="snap-confine" capability=38 capname="perfmon"
[ 46.396502] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 46.441723] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 46.451180] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 46.460405] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 46.511226] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 46.520367] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 46.566236] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 46.583818] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 46.598778] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 46.617746] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 49.586629] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 49.622674] audit: type=1400 audit(1693276706.680:52): apparmor="DENIED" operation="capable" class="cap" profile="/snap/snapd/19993/usr/lib/snapd/snap-confine" pid=1615 comm="snap-confine" capability=12 capname="net_admin"
[ 49.642857] audit: type=1400 audit(1693276706.680:53): apparmor="DENIED" operation="capable" class="cap" profile="/snap/snapd/19993/usr/lib/snapd/snap-confine" pid=1615 comm="snap-confine" capability=38 capname="perfmon"
[ 51.830538] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 51.866169] audit: type=1400 audit(1693276708.924:54): apparmor="DENIED" operation="capable" class="cap" profile="/snap/snapd/19993/usr/lib/snapd/snap-confine" pid=1693 comm="snap-confine" capability=12 capname="net_admin"
[ 51.886416] audit: type=1400 audit(1693276708.924:55): apparmor="DENIED" operation="capable" class="cap" profile="/snap/snapd/19993/usr/lib/snapd/snap-confine" pid=1693 comm="snap-confine" capability=38 capname="perfmon"
[ 54.094467] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 56.320080] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 56.337505] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 56.346378] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 56.354465] audit: type=1400 audit(1693276713.423:56): apparmor="DENIED" operation="capable" class="cap" profile="/snap/snapd/19993/usr/lib/snapd/snap-confine" pid=1850 comm="snap-confine" capability=12 capname="net_admin"
[ 56.374942] audit: type=1400 audit(1693276713.427:57): apparmor="DENIED" operation="capable" class="cap" profile="/snap/snapd/19993/usr/lib/snapd/snap-confine" pid=1850 comm="snap-confine" capability=38 capname="perfmon"
[ 56.727862] Bluetooth: RFCOMM TTY layer initialized
[ 56.732794] Bluetooth: RFCOMM socket layer initialized
[ 56.737986] Bluetooth: RFCOMM ver 1.11
[ 57.018214] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 57.099099] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 57.296435] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 57.305281] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 57.314547] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 57.323392] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 57.332310] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 57.341279] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 57.350076] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 57.359211] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 57.368316] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 57.377184] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 57.386049] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 57.394881] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 57.403757] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 57.412758] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 57.421642] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 57.430522] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 57.439365] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 57.448205] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 57.457042] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 57.465965] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 57.474805] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 57.483647] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 57.492939] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 57.501787] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 57.510680] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 57.519503] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.023641] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.032409] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.055767] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.064586] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.110536] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.145846] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.156647] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.187352] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.213413] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.273439] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.285180] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.294096] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.337163] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.345997] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.355405] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.396355] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.405635] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.414760] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.424029] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.433506] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.442982] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.452529] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.454708] systemd[1]: varlink-166: Sending message: {"error":"io.systemd.UserDatabase.NoRecordFound","parameters":{}}
[ 58.461556] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.481088] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.485792] systemd[1]: varlink-166: Changing state processing-method-more â?? processed-method
[ 58.490413] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.507938] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.512988] systemd[1]: varlink-166: Changing state processed-method â?? idle-server
[ 58.516941] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.533360] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.540215] systemd[1]: systemd-journald.service: Got notification message from PID 597 (FDSTORE=1)
[ 58.542226] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.559958] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.563591] systemd[1]: systemd-journald.service: Added fd 167 (n/a) to fd store.
[ 58.568785] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.585013] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.593805] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.594655] systemd[1]: systemd-journald.service: Got notification message from PID 597 (FDSTORE=1)
[ 58.602629] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.620443] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.625739] systemd[1]: systemd-journald.service: Added fd 168 (n/a) to fd store.
[ 58.629269] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.645493] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.649089] systemd[1]: systemd-journald.service: Got notification message from PID 597 (FDSTORE=1)
[ 58.654306] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.672352] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.676228] systemd[1]: systemd-journald.service: Added fd 169 (n/a) to fd store.
[ 58.681158] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.697564] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.703458] systemd[1]: systemd-journald.service: Got notification message from PID 597 (FDSTORE=1)
[ 58.706423] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.724204] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.733133] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.734482] systemd[1]: systemd-journald.service: Added fd 170 (n/a) to fd store.
[ 58.741946] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.758298] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.761741] systemd[1]: systemd-journald.service: Got notification message from PID 597 (FDSTORE=1)
[ 58.767093] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.784964] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.788943] systemd[1]: systemd-journald.service: Added fd 171 (n/a) to fd store.
[ 58.793789] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.810499] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.820007] systemd[1]: systemd-journald.service: Got notification message from PID 597 (FDSTORE=1)
[ 58.820104] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.838384] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.847729] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.856707] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.862816] systemd[1]: systemd-journald.service: Got notification message from PID 597 (FDSTORE=1)
[ 58.865733] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.883342] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.890114] systemd[1]: systemd-journald.service: Added fd 173 (n/a) to fd store.
[ 58.892155] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.909081] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.917410] systemd[1]: systemd-journald.service: Got notification message from PID 597 (FDSTORE=1)
[ 58.918917] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.936096] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.944642] systemd[1]: systemd-journald.service: Added fd 174 (n/a) to fd store.
[ 58.945335] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.961610] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.968055] systemd[1]: systemd-journald.service: Got notification message from PID 597 (FDSTORE=1)
[ 58.970600] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.988412] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 58.991502] systemd[1]: systemd-journald.service: Added fd 175 (n/a) to fd store.
[ 59.000879] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 59.013995] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 59.018803] systemd[1]: systemd-journald.service: Got notification message from PID 597 (FDSTORE=1)
[ 59.077881] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 59.087119] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 59.101636] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 59.117332] audit: type=1400 audit(1693276716.277:58): apparmor="DENIED" operation="capable" class="cap" profile="/snap/snapd/19993/usr/lib/snapd/snap-confine" pid=2647 comm="snap-confine" capability=12 capname="net_admin"
[ 59.134040] rfkill: input handler disabled
[ 59.137192] audit: type=1400 audit(1693276716.277:59): apparmor="DENIED" operation="capable" class="cap" profile="/snap/snapd/19993/usr/lib/snapd/snap-confine" pid=2647 comm="snap-confine" capability=38 capname="perfmon"
[ 59.639928] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 59.648722] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 59.657881] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 59.666663] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 59.760899] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 114.756498] systemd-journald[597]: Sent WATCHDOG=1 notification.
[ 118.742336] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 118.751148] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 118.760204] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 118.769829] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 118.801875] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 118.810962] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 178.740648] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 178.749466] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 178.768018] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 205.002836] systemd-journald[597]: Sent WATCHDOG=1 notification.
[ 290.097138] systemd-journald[597]: Sent WATCHDOG=1 notification.
[ 298.704015] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 298.713196] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 326.285849] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 327.141322] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 385.251443] systemd-journald[597]: Sent WATCHDOG=1 notification.
[ 475.248675] systemd-journald[597]: Sent WATCHDOG=1 notification.
[ 559.502945] systemd-journald[597]: Sent WATCHDOG=1 notification.
[ 655.499613] systemd-journald[597]: Sent WATCHDOG=1 notification.
[ 745.249104] systemd-journald[597]: Sent WATCHDOG=1 notification.
[ 835.747300] systemd-journald[597]: Sent WATCHDOG=1 notification.
[ 905.275301] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 905.289251] systemd-journald[597]: Data hash table of /var/log/journal/a5639bb90061be5a4df8aeae64a5284e/system.journal has a fill level at 75.0 (174763 of 233016 items, 134217728 file size, 767 bytes per hash table item), suggesting rotation.
[ 905.311051] systemd-journald[597]: /var/log/journal/a5639bb90061be5a4df8aeae64a5284e/system.journal: Journal header limits reached or header out-of-date, rotating.
[ 905.325814] systemd-journald[597]: Rotating...
[ 905.335095] systemd-journald[597]: Reserving 333 entries in field hash table.
[ 905.342796] systemd-journald[597]: Reserving 233016 entries in data hash table.
[ 905.680610] systemd-journald[597]: Reserving 333 entries in field hash table.
[ 905.688170] systemd-journald[597]: Reserving 233016 entries in data hash table.
[ 905.698477] systemd-journald[597]: Failed to parse UID from file name 'user-1001@15334163cc6d4c99a0c9456aacf16f46-0000000000d07f94-000603f1f6a23212.journal', ignoring: Invalid argument
[ 905.714923] systemd-journald[597]: Failed to parse UID from file name 'user-1001@c9ee10b4dacc4af7bd104ea78ebd9cf6-0000000000a89e8b-000603b6b6415ffe.journal', ignoring: Invalid argument
[ 905.731377] systemd-journald[597]: Failed to parse UID from file name 'user-1001@c9ee10b4dacc4af7bd104ea78ebd9cf6-0000000000aa57ca-000603b7030a1617.journal', ignoring: Invalid argument
[ 905.747829] systemd-journald[597]: Failed to parse UID from file name 'user-1001@59d6959c574c48e6aa163d5d71554dfa-0000000000b7aa78-000603bbe3d8b577.journal', ignoring: Invalid argument
[ 905.764283] systemd-journald[597]: Failed to parse UID from file name 'user-1001@514a6e0cfaaf41daa8070bee105d2fce-00000000009dd2ab-000603a51380553a.journal', ignoring: Invalid argument
[ 905.780733] systemd-journald[597]: Failed to parse UID from file name 'user-1001@f7db231a6c7d47afbeef9ae3298c3b6d-00000000009f911f-000603a768d1fbb5.journal', ignoring: Invalid argument
[ 905.797185] systemd-journald[597]: Failed to parse UID from file name 'user-1001@49e52c7fdf144acca08c3c31c745d71d-0000000000c4ab5a-000603cf42ac98ba.journal', ignoring: Invalid argument
[ 905.813635] systemd-journald[597]: Failed to parse UID from file name 'user-1001@49e52c7fdf144acca08c3c31c745d71d-0000000000c02ee2-000603c12fd0443d.journal', ignoring: Invalid argument
[ 905.830085] systemd-journald[597]: Failed to parse UID from file name 'user-1001@ba0f6c67ee434275a2292d4c2cd5961f-0000000000b9f235-000603bc70c7442f.journal', ignoring: Invalid argument
[ 905.846538] systemd-journald[597]: Failed to parse UID from file name 'user-1001@49e52c7fdf144acca08c3c31c745d71d-0000000000c25c48-000603ca69af58ea.journal', ignoring: Invalid argument
[ 905.862991] systemd-journald[597]: Failed to parse UID from file name 'user-1001@05cf2ea26034443ab546e044f50ffc6b-0000000000d79231-000603f82dabb9e6.journal', ignoring: Invalid argument
[ 905.879441] systemd-journald[597]: Failed to parse UID from file name 'user-1001@49e52c7fdf144acca08c3c31c745d71d-0000000000c7b891-000603d1da048956.journal', ignoring: Invalid argument
[ 905.895890] systemd-journald[597]: Failed to parse UID from file name 'user-1001@514a6e0cfaaf41daa8070bee105d2fce-00000000009c2008-00060391c182b7b0.journal', ignoring: Invalid argument
[ 905.912340] systemd-journald[597]: Failed to parse UID from file name 'user-1001@f4dc3a8432754ec8aaaab31fd18a3f0a-0000000000b1e998-000603ba6b858960.journal', ignoring: Invalid argument
[ 905.928787] systemd-journald[597]: Failed to parse UID from file name 'user-1001@f798b2dd4f304d07afb79039be05a655-0000000000d53ad4-000603f684dbe970.journal', ignoring: Invalid argument
[ 905.945244] systemd-journald[597]: Failed to parse UID from file name 'user-1001@c9ee10b4dacc4af7bd104ea78ebd9cf6-0000000000a72604-000603b6566bb322.journal', ignoring: Invalid argument
[ 905.961683] systemd-journald[597]: Failed to parse UID from file name 'user-1001@05cf2ea26034443ab546e044f50ffc6b-0000000000dc1284-0006040580f33f4b.journal', ignoring: Invalid argument
[ 905.978133] systemd-journald[597]: Failed to parse UID from file name 'user-1001@49e52c7fdf144acca08c3c31c745d71d-0000000000c9b5f4-000603e13642411a.journal', ignoring: Invalid argument
[ 905.994584] systemd-journald[597]: Failed to parse UID from file name 'user-1001@59d6959c574c48e6aa163d5d71554dfa-0000000000b5f002-000603bb46eed654.journal', ignoring: Invalid argument
[ 906.011033] systemd-journald[597]: Failed to parse UID from file name 'user-1001@49e52c7fdf144acca08c3c31c745d71d-0000000000be96c1-000603bfd6c498e8.journal', ignoring: Invalid argument
[ 906.027480] systemd-journald[597]: Failed to parse UID from file name 'user-1001@3b1347c2dbe547a6adff7f181f27c37b-0000000000ce4344-000603e42415f30c.journal', ignoring: Invalid argument
[ 906.043929] systemd-journald[597]: Failed to parse UID from file name 'user-1001@05cf2ea26034443ab546e044f50ffc6b-0000000000d78742-000603f82d1fee45.journal', ignoring: Invalid argument
[ 906.060381] systemd-journald[597]: Failed to parse UID from file name 'user-1001@f4dc3a8432754ec8aaaab31fd18a3f0a-0000000000afa3ac-000603b9bcd3bd97.journal', ignoring: Invalid argument
[ 906.076835] systemd-journald[597]: Failed to parse UID from file name 'user-1001@47e73407cfa24bdf8187fc1af5080afd-0000000000d2d493-000603f3b671af52.journal', ignoring: Invalid argument
[ 906.093288] systemd-journald[597]: Failed to parse UID from file name 'user-1001@c9ee10b4dacc4af7bd104ea78ebd9cf6-0000000000ac2d84-000603b7613fb540.journal', ignoring: Invalid argument
[ 906.109739] systemd-journald[597]: Failed to parse UID from file name 'user-1001@1b4ac62e48c14c3c862e80a679d4c017-0000000000a1e994-000603a7dae746a2.journal', ignoring: Invalid argument
[ 906.126187] systemd-journald[597]: Failed to parse UID from file name 'user-1001@f4dc3a8432754ec8aaaab31fd18a3f0a-0000000000b33cbf-000603baad35c084.journal', ignoring: Invalid argument
[ 906.142639] systemd-journald[597]: Failed to parse UID from file name 'user-1001@49e52c7fdf144acca08c3c31c745d71d-0000000000cbc489-000603e296ca6337.journal', ignoring: Invalid argument
[ 906.159090] systemd-journald[597]: Failed to parse UID from file name 'user-1001@3b1347c2dbe547a6adff7f181f27c37b-0000000000ce4e4e-000603e424a60d32.journal', ignoring: Invalid argument
[ 906.175543] systemd-journald[597]: Failed to parse UID from file name 'user-1001@05cf2ea26034443ab546e044f50ffc6b-0000000000d9bc99-000603f94c827247.journal', ignoring: Invalid argument
[ 906.191987] systemd-journald[597]: Failed to parse UID from file name 'user-1001@ba0f6c67ee434275a2292d4c2cd5961f-0000000000bc17cf-000603bf77846fa1.journal', ignoring: Invalid argument
[ 906.208424] systemd-journald[597]: Failed to parse UID from file name 'user-1001@49e52c7fdf144acca08c3c31c745d71d-0000000000c6c145-000603d1c87daa03.journal', ignoring: Invalid argument
[ 906.224875] systemd-journald[597]: Failed to parse UID from file name 'user-1001@c9ee10b4dacc4af7bd104ea78ebd9cf6-0000000000a42aa3-000603a83543a769.journal', ignoring: Invalid argument
[ 906.241323] systemd-journald[597]: Failed to parse UID from file name 'user-1001@c9ee10b4dacc4af7bd104ea78ebd9cf6-0000000000ad55f7-000603b77fd98045.journal', ignoring: Invalid argument
[ 906.258201] systemd-journald[597]: Vacuuming...
[ 906.263642] systemd-journald[597]: Deleted archived journal /var/log/journal/a5639bb90061be5a4df8aeae64a5284e/user-1001@514a6e0cfaaf41daa8070bee105d2fce-00000000009c2008-00060391c182b7b0.journal (17.5M).
[ 906.282446] systemd-journald[597]: Deleted archived journal /var/log/journal/a5639bb90061be5a4df8aeae64a5284e/system@f72f0a11c3464f8f85563392ec3f7d3b-00000000009d899c-0006039de7f9df21.journal (114.2M).
[ 906.300386] systemd-journald[597]: Vacuuming done, freed 131.8M of archived journals from /var/log/journal/a5639bb90061be5a4df8aeae64a5284e.
[ 920.464345] systemd-journald[597]: Sent WATCHDOG=1 notification.
[ 1015.992420] systemd-journald[597]: Sent WATCHDOG=1 notification.
[ 1081.896525] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 1081.918046] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 1089.282099] md: requested-resync of RAID array md123
[ 1091.841038] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 1101.722243] systemd-journald[597]: Sent WATCHDOG=1 notification.
[ 1196.745596] systemd-journald[597]: Sent WATCHDOG=1 notification.
[ 1275.244522] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
Stopping Session 1 of User u...
Stopping Session 3 of User u...
[ OK ] Removed slice Slice /system/getty.
[ OK ] Removed slice Slice /system/modprobe.
[ OK ] Stopped target Bluetooth Support.
[ OK 1277.359361] systemd[1]: accounts-daemon.service: Changed running -> stop-sigterm
m] Stopped target Graphical Interface.
[ OK ] Stopped target Multi-User System.
[ OK ] Stopped target Login Prompts.
[ OK ] Stopped target Sound Card.
[ OK ] Stopped target 1277.392980] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
9mTimer Units.
[ OK[ 1277.404890] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 1277.413843] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
] Stopped Trigger[ 1277.425028] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
anacron every h[ 1277.434312] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 1277.444431] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 1277.453252] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
our.
[ 1277.462163] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 1277.472256] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 1277.475368] systemd[1]: Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/systemd1/unit/bluetooth_2eservice interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=1361 reply_cookie=0 signature=sa{sv}as error-name=n/a error-message=n/a
[ 1277.497681] rfkill: input handler enabled
2m OK ] St[ 1277.501526] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 1277.501924] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
opped D[ 1277.502615] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 1277.503082] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 1277.503704] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 1277.504239] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 1277.516775] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
aily apt upgrade[ 1277.573519] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
and clean activ[ 1277.583640] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
ities.
[ OK ] [ 1277.595465] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
Stopped OK ] Stopped Wait until snapd is fully seeded.
Stopping Snap Daemon...
Stopping OpenBSD Secure Shell server...
Stoppin[ 1277.658179] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g Load/Save Random Seed...
Stopping Disk Manager...
Stopping Daemon for power management...
[ OK ] Unmounted /run/user/1001/gvfs.
[ OK ] Unmounted /boot/efi.
[ OK ] Stopped Bluetooth service.
[ OK ] Stopped irqbalance daemon.
[ OK ] Stopped Enclosure LED Utilities.
[ OK ] Stopped Power Profiles daemon.
[ OK ] Stopped System Logging Service.
[ OK ] Stopped Snap Daemon.
[ OK ] Stopped Accounts Service.
[ OK ] Stopped Regular background program processing daemon.
[ OK ] Stopped Disk Manager.
[ OK ] Stopped Modem Manager.
[ OK ] Stopped Serial Getty on ttyS0.
[ OK ] Stopped RealtimeKit Scheduling Policy Service.
[ OK ] Stopped Daemon for power management.
[ OK ] Stopped PackageKit Daemon.
[ OK ] Stopped Manage, Install and Generate Color Profiles.
[ OK ] Stopped OpenBSD Secure Shell server.
[ OK ] Stopped Save/Restore Sound Card State.
[ OK ] Stopped Create final runtime dir for shutdown pivot root.
[ OK ] Stopped Load/Save Random Seed.
[ OK ] Stopped Tool to automaticaâ?¦ubmit kernel crash signatures.
[ OK ] Stopped Session 3 of User u.
[ OK ] Removed slice Slice /system/serial-getty.
[ OK ] Stopped target Preparation for Logins.
[ OK ] Stopped target Host and Network Name Lookups.
[ OK ] Stopped target System Time Set.
[ OK ] Stopped Hold until boot process finishes up.
Stopping Authorization Manager...
[ OK ] Stopped File System Check on /dev/disk/by-uuid/5CF5-C8C8.
[ OK ] Removed slice Slice /system/systemd-fsck.
[ OK ] Stopped Authorization Manager.
[ OK ] Stopped Make remote CUPS printers available locally.
[ OK ] Stopped GNOME Display Manager.
[ OK ] Stopped LSB: automatic crash report generation.
[ OK ] Stopped target Network is Online.
[ OK ] Stopped Network Manager Wait Online.
Stopping Avahi mDNS/DNS-SD Stack...
Stopping CUPS Scheduler...
[ 1278.460136] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
Starting Tell Plymouth To Jump To initramfs...
[ 1278.484025] systemd-journald[597]: Sent WATCHDOG=1 notification.
Stopping Switcheroo Control Proxy service...
[ OK ] Stopped Avahi mDNS/DNS-SD Stack.
[ OK ] Stopped Switcheroo Control Proxy service.
[ OK ] Stopped CUPS Scheduler.
[ 1278.580247] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ OK ] Finished Tell Plymouth To Jump To initramfs.
[ OK ] Stopped Session 1 of User u.
Stopping User Login Management...
Stopping User Manager for UID 1001...
[ 1279.008415] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 1279.053467] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 1279.062354] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
[ 1279.072585] systemd-journald[597]: Compressed data object 515 -> 243 using ZSTD
[ OK ] Stopped User Manager for UID 1001.
Stopping Userspace Out-Of-Memory (OOM) Killer...
Stoppin[ 1279.172217] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
g User Runtime Directory /run/user/1001...
[ OK ] Unmounted /run/user/1001/doc.
[ OK ] Unmounted /run/user/1001.
[ OK ] Stopped Userspace Out-Of-Memory (OOM) Killer.
[ OK ] Stopped User Login Management.
[ OK ] Stopped User Runtime Directory /run/user/1001.
[ OK ] Removed slice User Slice of UID 1001.
[ 1279.339992] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
Stopping Permit User Sessions...
[ OK ] Stopped Permit User Sessions.
[ OK ] Stopped target Network.
[ OK ] Stopped target User and Group Name Lookups.
[ OK ] Stopped target Remote File Systems.
Stopping Network Manager...
Stopping WPA supplicant...
[ OK ] Stopped WPA supplicant.
[ OK ] Stopped Network Manager.
[ OK ] Stopped target Basic System.
[ OK ] Stopped target Preparation for Network.
[ OK ] Stopped target Path Units.
[ OK ] Stopped CUPS Scheduler.
[ OK ] Stopped Start whoopsie on â?¦n of the /var/crash directory.
[ OK ] Stopped target Slice Units.
[ OK ] Removed slice User and Session Slice.
[ OK ] Stopped target Socket Units.
[ OK ] Closed Avahi mDNS/DNS-SD Stack Activation Socket.
[ OK ] Closed CUPS Scheduler.
[ OK ] Closed Socket activation for snappy daemon.
[ OK ] Closed OpenBSD Secure Shell server socket.
[ 1279.895959] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1279.904030] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1279.904035] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1279.904091] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1279.928244] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1279.936302] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ OK ] Closed Syslog Socket.
[ 1279.959801] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1279.967876] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1279.967945] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1279.984036] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1279.992088] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ OK ] Closed UUID daemon activation socket.
[ 1280.015651] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.023722] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.031844] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.039896] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ OK ] Stopped target System Initialization.
[ 1280.063754] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.071881] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ OK 1280.079975] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.089408] systemd-journald[597]: Failed to forward syslog message: Connection refused
0m] Unset automount Arbitrary â?¦s File System Automount Point.
[ OK 1280.111702] systemd-journald[597]: Failed to forward syslog message: Connection refused
0m] Stopped targ[ 1280.121117] systemd-journald[597]: Failed to forward syslog message: Connection refused
et Loca[ 1280.130579] systemd-journald[597]: Failed to forward syslog message: Connection refused
l Encrypted Volumes.
[ 1280.151746] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.159891] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.167950] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ OK 1280.176006] systemd-journald[597]: Failed to forward syslog message: Connection refused
0m] Stopped Dispatch Password â?¦ts to Console Directory Watch.
[ 1280.199801] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.207938] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.215987] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ OK 1280.224043] systemd-journald[597]: Failed to forward syslog message: Connection refused
0m] Stopped Forward Password Râ?¦uests to Wall Directory Watch.
[ 1280.251704] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ OK 1280.259786] systemd-journald[597]: Failed to forward syslog message: Connection refused
0m] Stopped targ[ 1280.269267] systemd-journald[597]: Failed to forward syslog message: Connection refused
et Local Integrity Protected Volumes.
[ 1280.291696] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ OK 1280.299780] systemd-journald[597]: Failed to forward syslog message: Connection refused
0m] Stopped targ[ 1280.309333] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.318647] systemd-journald[597]: Failed to forward syslog message: Connection refused
et Loca[ 1280.326700] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.336107] systemd-journald[597]: Failed to forward syslog message: Connection refused
l Verity Protected Volumes.
[ 1280.355691] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.363776] systemd-journald[597]: Failed to forward syslog message: Connection refused
Stoppin[ 1280.371935] systemd-journald[597]: Failed to forward syslog message: Connection refused
g Netwo[ 1280.381387] systemd-journald[597]: Failed to forward syslog message: Connection refused
rk Name Resoluti[ 1280.390843] systemd-journald[597]: Failed to forward syslog message: Connection refused
on...
[ 1280.400214] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.409208] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.417276] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.425336] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.433410] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ OK 1280.441466] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.450873] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.458935] systemd-journald[597]: Failed to forward syslog message: Connection refused
0m] Stopped Apply Kernel Variables.
[ 1280.479711] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.487787] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ OK 1280.495909] systemd-journald[597]: Failed to forward syslog message: Connection refused
0m] Stopped 1280.505334] systemd-journald[597]: Failed to forward syslog message: Connection refused
1;39mLoad Kernel[ 1280.514772] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.524189] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.532240] systemd-journald[597]: Failed to forward syslog message: Connection refused
Modules.
[ 1280.551652] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.559741] systemd-journald[597]: Failed to forward syslog message: Connection refused
Stoppin[ 1280.568034] systemd-journald[597]: Failed to forward syslog message: Connection refused
g Netwo[ 1280.577491] systemd-journald[597]: Failed to forward syslog message: Connection refused
rk Time Synchron[ 1280.586881] systemd-journald[597]: Failed to forward syslog message: Connection refused
ization...
[ 1280.596315] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.605616] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.613776] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.621902] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.630026] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.638150] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.646288] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.654427] systemd-journald[597]: Failed to forward syslog message: Connection refused
Stoppin[ 1280.687923] systemd-journald[597]: Failed to forward syslog message: Connection refused
g Recor[ 1280.697587] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
d System Boot/Sh[ 1280.707724] systemd-journald[597]: Failed to forward syslog message: Connection refused
utdown in UTMP 1280.717392] systemd-journald[597]: Failed to forward syslog message: Connection refused
0m...
[ 1280.726525] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.735111] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.743354] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.751562] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.751587] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ OK 1280.751610] systemd-journald[597]: Failed to forward syslog message: Connection refused
0m] Stopped 1280.751616] systemd-journald[597]: Failed to forward syslog message: Connection refused
1;39mNetwork Nam[ 1280.787014] systemd-journald[597]: Failed to forward syslog message: Connection refused
e Resolution[ 1280.796282] systemd-journald[597]: Failed to forward syslog message: Connection refused
.
[ 1280.805650] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.813911] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.822090] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.830278] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.830283] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.830288] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ OK 1280.830292] systemd-journald[597]: Failed to forward syslog message: Connection refused
0m] Stopped 1280.830297] systemd-journald[597]: Failed to forward syslog message: Connection refused
1;39mNetwork Tim[ 1280.830302] systemd-journald[597]: Failed to forward syslog message: Connection refused
e Synchronizatio[ 1280.830306] systemd-journald[597]: Failed to forward syslog message: Connection refused
n.
[ 1280.830323] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.830327] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.830332] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.830336] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.830355] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.830360] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.830365] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.950404] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.950409] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1280.950413] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ OK 1280.950418] systemd-journald[597]: Failed to forward syslog message: Connection refused
0m] Stopped 1280.950438] systemd-journald[597]: Failed to forward syslog message: Connection refused
1;39mRecord Syst[ 1280.950444] systemd-journald[597]: Failed to forward syslog message: Connection refused
em Boot/Shutdown[ 1281.003488] systemd-journald[597]: Failed to forward syslog message: Connection refused
in UTMP.
[ 1281.012806] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.022116] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.030291] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.030296] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ OK 1281.030300] systemd-journald[597]: Failed to forward syslog message: Connection refused
0m] Stopped 1281.030305] systemd-journald[597]: Failed to forward syslog message: Connection refused
1;39mCreate Vola[ 1281.030310] systemd-journald[597]: Failed to forward syslog message: Connection refused
tile Files and D[ 1281.030314] systemd-journald[597]: Failed to forward syslog message: Connection refused
irectories.[ 1281.030319] systemd-journald[597]: Failed to forward syslog message: Connection refused

[ 1281.030323] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.030327] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.030332] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.030336] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.030340] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.030344] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.030348] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.030353] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.030357] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.030362] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.030366] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.030370] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.030375] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.030381] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ OK 1281.209260] systemd-journald[597]: Failed to forward syslog message: Connection refused
0m] Stopped targ[ 1281.218840] systemd-journald[597]: Failed to forward syslog message: Connection refused
et Loca[ 1281.228157] systemd-journald[597]: Failed to forward syslog message: Connection refused
l File Systems 1281.237571] systemd-journald[597]: Failed to forward syslog message: Connection refused
0m.
[ 1281.247001] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.255485] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.263669] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ OK 1281.271832] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.281294] systemd-journald[597]: Failed to forward syslog message: Connection refused
0m] Stopped targ[ 1281.289443] systemd-journald[597]: Failed to forward syslog message: Connection refused
et Moun[ 1281.298843] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.308286] systemd-journald[597]: Failed to forward syslog message: Connection refused
ted snaps.
[ 1281.316441] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.325921] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.351590] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.359798] systemd-journald[597]: Failed to forward syslog message: Connection refused
Unmount[ 1281.368001] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
ing /ru[ 1281.378113] systemd-journald[597]: Failed to forward syslog message: Connection refused
n/credentials/sy[ 1281.387546] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.397026] systemd-journald[597]: Failed to forward syslog message: Connection refused
stemd-sysusers.s[ 1281.405166] systemd-journald[597]: Failed to forward syslog message: Connection refused
ervice...
[ 1281.414623] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.423952] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.432106] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.432119] systemd-journald[597]: Failed to forward syslog message: Connection refused
Unmount[ 1281.448484] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
ing /ru[ 1281.458608] systemd-journald[597]: Failed to forward syslog message: Connection refused
n/snapd/ns/snapd[ 1281.468059] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.477488] systemd-journald[597]: Failed to forward syslog message: Connection refused
-desktop-integra[ 1281.485640] systemd-journald[597]: Failed to forward syslog message: Connection refused
tion.mnt...[ 1281.495068] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.504491] systemd-journald[597]: Failed to forward syslog message: Connection refused

[ 1281.512647] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.520799] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.528946] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.537100] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.537123] systemd-journald[597]: Failed to forward syslog message: Connection refused
Unmount[ 1281.553394] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
ing Mou[ 1281.563567] systemd-journald[597]: Failed to forward syslog message: Connection refused
nt unit for bare[ 1281.572973] systemd-journald[597]: Failed to forward syslog message: Connection refused
, revision 5[ 1281.582370] systemd-journald[597]: Failed to forward syslog message: Connection refused
...
[ 1281.591861] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.600407] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.608560] systemd-journald[597]: Failed to forward syslog message: Connection refused
Unmount[ 1281.616785] systemd-journald[597]: Failed to forward syslog message: Connection refused
ing Mou[ 1281.626337] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
nt unit for core[ 1281.636366] systemd-journald[597]: Failed to forward syslog message: Connection refused
20, revision 197[ 1281.645800] systemd-journald[597]: Failed to forward syslog message: Connection refused
4...
[ 1281.655228] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.664143] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.672301] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.672338] systemd-journald[597]: Failed to forward syslog message: Connection refused
Unmount[ 1281.689003] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
ing Mou[ 1281.698953] systemd-journald[597]: Failed to forward syslog message: Connection refused
nt unit for core[ 1281.708256] systemd-journald[597]: Failed to forward syslog message: Connection refused
20, revision 201[ 1281.717657] systemd-journald[597]: Failed to forward syslog message: Connection refused
5...
[ 1281.727096] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.736014] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.744180] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.744339] systemd-journald[597]: Failed to forward syslog message: Connection refused
Unmount[ 1281.760653] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
ing Mou[ 1281.770558] systemd-journald[597]: Failed to forward syslog message: Connection refused
nt unit for core[ 1281.779986] systemd-journald[597]: Failed to forward syslog message: Connection refused
22, revision 817[ 1281.789411] systemd-journald[597]: Failed to forward syslog message: Connection refused
...
[ 1281.798843] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.807679] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.839608] systemd-journald[597]: Failed to forward syslog message: Connection refused
Unmount[ 1281.847881] systemd-journald[597]: Failed to forward syslog message: Connection refused
ing Mou[ 1281.857341] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
nt unit for core[ 1281.867486] systemd-journald[597]: Failed to forward syslog message: Connection refused
22, revision 858[ 1281.876968] systemd-journald[597]: Failed to forward syslog message: Connection refused
...
[ 1281.886346] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.895083] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.903392] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.911645] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.911692] systemd-journald[597]: Failed to forward syslog message: Connection refused
Unmount[ 1281.928175] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
ing Mou[ 1281.938156] systemd-journald[597]: Failed to forward syslog message: Connection refused
nt unit for fire[ 1281.947624] systemd-journald[597]: Failed to forward syslog message: Connection refused
fox, revision 29[ 1281.957057] systemd-journald[597]: Failed to forward syslog message: Connection refused
87...
[ 1281.966479] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.975404] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.983685] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1281.983705] systemd-journald[597]: Failed to forward syslog message: Connection refused
Unmount[ 1281.983732] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
ing Mou[ 1282.010462] systemd-journald[597]: Failed to forward syslog message: Connection refused
nt unit for fire[ 1282.019762] systemd-journald[597]: Failed to forward syslog message: Connection refused
fox, revision 30[ 1282.029187] systemd-journald[597]: Failed to forward syslog message: Connection refused
26...
[ 1282.038620] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1282.047546] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1282.055815] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1282.064082] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1282.064099] systemd-journald[597]: Failed to forward syslog message: Connection refused
Unmount[ 1282.064127] systemd-journald[597]: Successfully sent stream file descriptor to service manager.
ing Mou[ 1282.064133] systemd-journald[597]: Failed to forward syslog message: Connection refused
nt unit for â?¦o[ 1282.064149] systemd-journald[597]: Failed to forward syslog message: Connection refused
me-3-38-2004, re[ 1282.064167] systemd-journald[597]: Failed to forward syslog message: Connection refused
vision 140..[ 1282.119338] systemd-journald[597]: Failed to forward syslog message: Connection refused
.
Unmounting Mount unit for â?¦ome-3-38-2004, revision 143...
Unmounting Mount unit for gnome-42-2204, revision 120...
Unmounting Mount unit for gnome-42-2204, revision 126...
Unmounting Mount unit for â?¦ommon-themes, revision 1535...
Unmounting Mount unit for snap-store, revision 959...
Unmounting Mount unit for snapd, revision 19457...
Unmounting Mount unit for snapd, revision 19993...
Unmounting Mount unit for â?¦op-integration, revision 83...
Unmounting Mount unit for â?¦sion 2667 via mount-control...
[ OK ] Unmounted /run/credentials/systemd-sysusers.service.
[ OK ] Unmounted /run/snapd/ns/snapd-desktop-integration.mnt.
[ OK ] Unmounted Mount unit for bare, revision 5.
[ OK ] Unmounted Mount unit for core20, revision 1974.
[ OK ] Unmounted Mount unit for core20, revision 2015.
[ OK ] Unmounted Mount unit for core22, revision 817.
[ OK ] Unmounted Mount unit for core22, revision 858.
[ OK ] Unmounted Mount unit for firefox, revision 2987.
[ OK ] Unmounted Mount unit for firefox, revision 3026.
[ OK ] Unmounted Mount unit for gnome-3-38-2004, revision 140.
[ OK ] Unmounted Mount unit for gnome-3-38-2004, revision 143.
[ OK ] Unmounted Mount unit for gnome-42-2204, revision 120.
[ OK ] Unmounted Mount unit for gnome-42-2204, revision 126.
[ OK ] Unmounted Mount unit for gâ?¦-common-themes, revision 1535.
[ OK ] Unmounted Mount unit for snap-store, revision 959.
[ OK ] Unmounted Mount unit for snapd, revision 19457.
[ OK ] Unmounted Mount unit for snapd, revision 19993.
[ OK ] Unmounted Mount unit for sâ?¦ktop-integration, revision 83.
[ OK ] Unmounted Mount unit for fâ?¦vision 2667 via mount-control.
[ OK ] Stopped target Mounting snaps.
Unmounting /run/snapd/ns...
[ OK ] Unmounted /run/snapd/ns.
[ OK ] Stopped target Preparation for Local File Systems.
[ OK ] Stopped target Swaps.
Deactivating swap /swapfile...
[ OK ] Stopped Create Static Device Nodes in /dev.
[ OK ] Stopped Create System Users.
[ OK ] Deactivated swap /swapfile.
[ OK ] Reached target Unmount All Filesystems.
[ OK ] Stopped Remount Root and Kernel File Systems.
[ **] A stop job is running for Availabilâ?¦y of block devices (7s / 1min 30s)
[ ***] A stop job is running for Availabilâ?¦y of block devices (8s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦y of block devices (8s / 1min 30s)
[ 1286.246319] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1286.254819] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1286.263208] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1286.271533] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1286.279851] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1286.288152] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1286.296441] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ *** ] A stop job is running for Availabilâ?¦y of block devices (9s / 1min 30s)
[*** ] A stop job is running for Availabilâ?¦y of block devices (9s / 1min 30s)
[** ] A stop job is running for Availabilâ?¦ of block devices (10s / 1min 30s)
[* ] A stop job is running for Availabilâ?¦ of block devices (10s / 1min 30s)
[** ] A stop job is running for Availabilâ?¦ of block devices (11s / 1min 30s)
[*** ] A stop job is running for Availabilâ?¦ of block devices (11s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦ of block devices (12s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦ of block devices (12s / 1min 30s)
[ ***] A stop job is running for Availabilâ?¦ of block devices (13s / 1min 30s)
[ **] A stop job is running for Availabilâ?¦ of block devices (13s / 1min 30s)
[ *] A stop job is running for Availabilâ?¦ of block devices (14s / 1min 30s)
[ **] A stop job is running for Availabilâ?¦ of block devices (14s / 1min 30s)
[ ***] A stop job is running for Availabilâ?¦ of block devices (15s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦ of block devices (15s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦ of block devices (16s / 1min 30s)
[*** ] A stop job is running for Availabilâ?¦ of block devices (16s / 1min 30s)
[** ] A stop job is running for Availabilâ?¦ of block devices (17s / 1min 30s)
[* ] A stop job is running for Availabilâ?¦ of block devices (17s / 1min 30s)
[** ] A stop job is running for Availabilâ?¦ of block devices (18s / 1min 30s)
[*** ] A stop job is running for Availabilâ?¦ of block devices (18s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦ of block devices (19s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦ of block devices (19s / 1min 30s)
[ ***] A stop job is running for Availabilâ?¦ of block devices (20s / 1min 30s)
[ **] A stop job is running for Availabilâ?¦ of block devices (20s / 1min 30s)
[ *] A stop job is running for Availabilâ?¦ of block devices (21s / 1min 30s)
[ **] A stop job is running for Availabilâ?¦ of block devices (21s / 1min 30s)
[ ***] A stop job is running for Availabilâ?¦ of block devices (22s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦ of block devices (22s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦ of block devices (23s / 1min 30s)
[*** ] A stop job is running for Availabilâ?¦ of block devices (23s / 1min 30s)
[** ] A stop job is running for Availabilâ?¦ of block devices (24s / 1min 30s)
[* ] A stop job is running for Availabilâ?¦ of block devices (24s / 1min 30s)
[** ] A stop job is running for Availabilâ?¦ of block devices (25s / 1min 30s)
[*** ] A stop job is running for Availabilâ?¦ of block devices (25s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦ of block devices (26s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦ of block devices (26s / 1min 30s)
[ ***] A stop job is running for Availabilâ?¦ of block devices (27s / 1min 30s)
[ **] A stop job is running for Availabilâ?¦ of block devices (27s / 1min 30s)
[ *] A stop job is running for Availabilâ?¦ of block devices (28s / 1min 30s)
[ **] A stop job is running for Availabilâ?¦ of block devices (28s / 1min 30s)
[ ***] A stop job is running for Availabilâ?¦ of block devices (29s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦ of block devices (29s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦ of block devices (30s / 1min 30s)
[*** ] A stop job is running for Availabilâ?¦ of block devices (30s / 1min 30s)
[** ] A stop job is running for Availabilâ?¦ of block devices (31s / 1min 30s)
[* ] A stop job is running for Availabilâ?¦ of block devices (31s / 1min 30s)
[** ] A stop job is running for Availabilâ?¦ of block devices (32s / 1min 30s)
[*** ] A stop job is running for Availabilâ?¦ of block devices (32s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦ of block devices (33s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦ of block devices (33s / 1min 30s)
[ ***] A stop job is running for Availabilâ?¦ of block devices (34s / 1min 30s)
[ **] A stop job is running for Availabilâ?¦ of block devices (34s / 1min 30s)
[ *] A stop job is running for Availabilâ?¦ of block devices (35s / 1min 30s)
[ **] A stop job is running for Availabilâ?¦ of block devices (35s / 1min 30s)
[ ***] A stop job is running for Availabilâ?¦ of block devices (36s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦ of block devices (36s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦ of block devices (37s / 1min 30s)
[*** ] A stop job is running for Availabilâ?¦ of block devices (37s / 1min 30s)
[** ] A stop job is running for Availabilâ?¦ of block devices (38s / 1min 30s)
[* ] A stop job is running for Availabilâ?¦ of block devices (38s / 1min 30s)
[** ] A stop job is running for Availabilâ?¦ of block devices (39s / 1min 30s)
[*** ] A stop job is running for Availabilâ?¦ of block devices (39s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦ of block devices (40s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦ of block devices (40s / 1min 30s)
[ ***] A stop job is running for Availabilâ?¦ of block devices (41s / 1min 30s)
[ **] A stop job is running for Availabilâ?¦ of block devices (41s / 1min 30s)
[ *] A stop job is running for Availabilâ?¦ of block devices (42s / 1min 30s)
[ **] A stop job is running for Availabilâ?¦ of block devices (42s / 1min 30s)
[ ***] A stop job is running for Availabilâ?¦ of block devices (43s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦ of block devices (43s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦ of block devices (44s / 1min 30s)
[*** ] A stop job is running for Availabilâ?¦ of block devices (44s / 1min 30s)
[** ] A stop job is running for Availabilâ?¦ of block devices (45s / 1min 30s)
[* ] A stop job is running for Availabilâ?¦ of block devices (45s / 1min 30s)
[** ] A stop job is running for Availabilâ?¦ of block devices (46s / 1min 30s)
[*** ] A stop job is running for Availabilâ?¦ of block devices (46s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦ of block devices (47s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦ of block devices (47s / 1min 30s)
[ ***] A stop job is running for Availabilâ?¦ of block devices (48s / 1min 30s)
[ **] A stop job is running for Availabilâ?¦ of block devices (48s / 1min 30s)
[ *] A stop job is running for Availabilâ?¦ of block devices (49s / 1min 30s)
[ **] A stop job is running for Availabilâ?¦ of block devices (49s / 1min 30s)
[ ***] A stop job is running for Availabilâ?¦ of block devices (50s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦ of block devices (50s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦ of block devices (51s / 1min 30s)
[*** ] A stop job is running for Availabilâ?¦ of block devices (51s / 1min 30s)
[** ] A stop job is running for Availabilâ?¦ of block devices (52s / 1min 30s)
[* ] A stop job is running for Availabilâ?¦ of block devices (52s / 1min 30s)
[** ] A stop job is running for Availabilâ?¦ of block devices (53s / 1min 30s)
[*** ] A stop job is running for Availabilâ?¦ of block devices (53s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦ of block devices (54s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦ of block devices (54s / 1min 30s)
[ ***] A stop job is running for Availabilâ?¦ of block devices (55s / 1min 30s)
[ **] A stop job is running for Availabilâ?¦ of block devices (55s / 1min 30s)
[ *] A stop job is running for Availabilâ?¦ of block devices (56s / 1min 30s)
[ **] A stop job is running for Availabilâ?¦ of block devices (56s / 1min 30s)
[ ***] A stop job is running for Availabilâ?¦ of block devices (57s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦ of block devices (57s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦ of block devices (58s / 1min 30s)
[*** ] A stop job is running for Availabilâ?¦ of block devices (58s / 1min 30s)
[** ] A stop job is running for Availabilâ?¦ of block devices (59s / 1min 30s)
[* ] A stop job is running for Availabilâ?¦ of block devices (59s / 1min 30s)
[** ] A stop job is running for Availabilâ?¦of block devices (1min / 1min 30s)
[*** ] A stop job is running for Availabilâ?¦of block devices (1min / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦block devices (1min 1s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦block devices (1min 1s / 1min 30s)
[ ***] A stop job is running for Availabilâ?¦block devices (1min 2s / 1min 30s)
[ **] A stop job is running for Availabilâ?¦block devices (1min 2s / 1min 30s)
[ *] A stop job is running for Availabilâ?¦block devices (1min 3s / 1min 30s)
[ **] A stop job is running for Availabilâ?¦block devices (1min 3s / 1min 30s)
[ ***] A stop job is running for Availabilâ?¦block devices (1min 4s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦block devices (1min 4s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦block devices (1min 5s / 1min 30s)
[*** ] A stop job is running for Availabilâ?¦block devices (1min 5s / 1min 30s)
[** ] A stop job is running for Availabilâ?¦block devices (1min 6s / 1min 30s)
[* ] A stop job is running for Availabilâ?¦block devices (1min 6s / 1min 30s)
[** ] A stop job is running for Availabilâ?¦block devices (1min 7s / 1min 30s)
[*** ] A stop job is running for Availabilâ?¦block devices (1min 7s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦block devices (1min 8s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦block devices (1min 8s / 1min 30s)
[ ***] A stop job is running for Availabilâ?¦block devices (1min 9s / 1min 30s)
[ **] A stop job is running for Availabilâ?¦block devices (1min 9s / 1min 30s)
[ *] A stop job is running for Availabilâ?¦lock devices (1min 10s / 1min 30s)
[ **] A stop job is running for Availabilâ?¦lock devices (1min 10s / 1min 30s)
[ ***] A stop job is running for Availabilâ?¦lock devices (1min 11s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦lock devices (1min 11s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦lock devices (1min 12s / 1min 30s)
[*** ] A stop job is running for Availabilâ?¦lock devices (1min 12s / 1min 30s)
[** ] A stop job is running for Availabilâ?¦lock devices (1min 13s / 1min 30s)
[* ] A stop job is running for Availabilâ?¦lock devices (1min 13s / 1min 30s)
[** ] A stop job is running for Availabilâ?¦lock devices (1min 14s / 1min 30s)
[*** ] A stop job is running for Availabilâ?¦lock devices (1min 14s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦lock devices (1min 15s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦lock devices (1min 15s / 1min 30s)
[ ***] A stop job is running for Availabilâ?¦lock devices (1min 16s / 1min 30s)
[ **] A stop job is running for Availabilâ?¦lock devices (1min 16s / 1min 30s)
[ *] A stop job is running for Availabilâ?¦lock devices (1min 17s / 1min 30s)
[ **] A stop job is running for Availabilâ?¦lock devices (1min 17s / 1min 30s)
[ ***] A stop job is running for Availabilâ?¦lock devices (1min 18s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦lock devices (1min 18s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦lock devices (1min 19s / 1min 30s)
[*** ] A stop job is running for Availabilâ?¦lock devices (1min 19s / 1min 30s)
[** ] A stop job is running for Availabilâ?¦lock devices (1min 20s / 1min 30s)
[* ] A stop job is running for Availabilâ?¦lock devices (1min 20s / 1min 30s)
[** ] A stop job is running for Availabilâ?¦lock devices (1min 21s / 1min 30s)
[*** ] A stop job is running for Availabilâ?¦lock devices (1min 21s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦lock devices (1min 22s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦lock devices (1min 22s / 1min 30s)
[ ***] A stop job is running for Availabilâ?¦lock devices (1min 23s / 1min 30s)
[ **] A stop job is running for Availabilâ?¦lock devices (1min 23s / 1min 30s)
[ *] A stop job is running for Availabilâ?¦lock devices (1min 24s / 1min 30s)
[ **] A stop job is running for Availabilâ?¦lock devices (1min 24s / 1min 30s)
[ ***] A stop job is running for Availabilâ?¦lock devices (1min 25s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦lock devices (1min 25s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦lock devices (1min 26s / 1min 30s)
[*** ] A stop job is running for Availabilâ?¦lock devices (1min 26s / 1min 30s)
[** ] A stop job is running for Availabilâ?¦lock devices (1min 27s / 1min 30s)
[* ] A stop job is running for Availabilâ?¦lock devices (1min 27s / 1min 30s)
[** ] A stop job is running for Availabilâ?¦lock devices (1min 28s / 1min 30s)
[*** ] A stop job is running for Availabilâ?¦lock devices (1min 28s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦lock devices (1min 29s / 1min 30s)
[ *** ] A stop job is running for Availabilâ?¦lock devices (1min 29s / 1min 30s)
[ ***] A stop job is running for Availabilâ?¦lock devices (1min 30s / 1min 30s)
[ 1367.516098] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ [ 1367.524889] systemd-journald[597]: Failed to forward syslog message: Connection refused
OK ] Stoppe[ 1367.534475] systemd-journald[597]: Failed to forward syslog message: Connection refused
d Avail[ 1367.543758] systemd-journald[597]: Failed to forward syslog message: Connection refused
ability of block[ 1367.553214] systemd-journald[597]: Failed to forward syslog message: Connection refused
devices.
1367.562634] systemd-journald[597]: Failed to forward syslog message: Connection refused
[K[ 1367.572123] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1367.580446] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1367.589006] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ OK 1367.597316] systemd-journald[597]: Failed to forward syslog message: Connection refused
0m] Reached targ[ 1367.606729] systemd-journald[597]: Failed to forward syslog message: Connection refused
et Syst[ 1367.616158] systemd-journald[597]: Failed to forward syslog message: Connection refused
em Shutdown.[ 1367.625600] systemd-journald[597]: Failed to forward syslog message: Connection refused

[ 1367.635031] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1367.643255] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1367.651842] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1367.660093] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1367.668318] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1367.676523] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1367.684733] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1367.692935] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1367.701143] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1367.709345] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1367.717545] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1367.725739] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1367.733935] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1367.742133] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1367.750333] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1367.779630] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1367.787961] systemd-journald[597]: Failed to forward syslog message: Connection refused
Startin[ 1367.796166] systemd-journald[597]: Failed to forward syslog message: Connection refused
g Shuts[ 1367.805565] systemd-journald[597]: Failed to forward syslog message: Connection refused
down the "lâ?¦preinstalled system cleanly...
[ 1367.831651] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ OK 1367.839913] systemd-journald[597]: Failed to forward syslog message: Connection refused
0m] Finished 1367.849889] systemd-journald[597]: Failed to forward syslog message: Connection refused
;1;39mShuts down[ 1367.859515] systemd-journald[597]: Failed to forward syslog message: Connection refused
the "lâ?¦" prei[ 1367.868980] systemd-journald[597]: Failed to forward syslog message: Connection refused
nstalled system [ 1367.878312] systemd-journald[597]: Failed to forward syslog message: Connection refused
cleanly.
[ 1367.887802] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1367.896960] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1367.905123] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1367.913285] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ OK 1367.921648] systemd-journald[597]: Failed to forward syslog message: Connection refused
0m] Reached targ[ 1367.931066] systemd-journald[597]: Failed to forward syslog message: Connection refused
et Late[ 1367.940590] systemd-journald[597]: Failed to forward syslog message: Connection refused
Shutdown Servic[ 1367.950118] systemd-journald[597]: Failed to forward syslog message: Connection refused
es.
[ 1367.959591] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1367.968368] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1367.976530] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1367.984686] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ OK 1367.993040] systemd-journald[597]: Failed to forward syslog message: Connection refused
0m] Finished 1368.002446] systemd-journald[597]: Failed to forward syslog message: Connection refused
;1;39mSystem Reb[ 1368.011969] systemd-journald[597]: Failed to forward syslog message: Connection refused
oot.
[ 1368.021444] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1368.031524] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ OK 1368.039976] systemd-journald[597]: Failed to forward syslog message: Connection refused
0m] Reached targ[ 1368.049314] systemd-journald[597]: Failed to forward syslog message: Connection refused
et Syst[ 1368.058813] systemd-journald[597]: Failed to forward syslog message: Connection refused
em Reboot.
[ 1368.079496] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1368.087700] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1368.095884] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1368.104055] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1368.112192] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1368.120326] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1368.128452] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1368.130291] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1368.136514] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1368.147742] systemd-shutdown[1]: Successfully forked off '(sd-sync)' as PID 3461.
[ 1368.155031] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1368.162502] systemd-shutdown[1]: Syncing filesystems and block devices.
[ 1368.170542] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1368.185938] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1368.194124] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1368.202313] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1368.210658] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1368.218962] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1368.227177] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1368.235760] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1368.243957] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1368.252155] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1368.260362] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1368.268557] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1368.276790] systemd-journald[597]: Failed to forward syslog message: Connection refused
[ 1368.293597] systemd-shutdown[1]: binfmt_misc is not mounted, not detaching entries.
[ 1368.301454] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
[ 1368.311490] systemd-journald[597]: Received SIGTERM from PID 1 (systemd-shutdow).
[ 1368.319253] systemd-journald[597]: Exit event sources are now pending.
[ 1368.325999] systemd-journald[597]: systemd-journald stopped as PID 597 for the system.
[ 1368.343644] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
[ 1368.352769] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1368.363716] systemd-shutdown[1]: Unmounting file systems.
[ 1368.369545] systemd-shutdown[1]: Successfully forked off '(sd-remount)' as PID 3462.
[ 1368.369926] [3462]: Remounting '/' read-only with options 'errors=remount-ro,stripe=128'.
[ 1368.396287] EXT4-fs (md122p3): re-mounted 6d53dc8e-3f45-4efa-bc0e-4af477fac217 ro. Quota mode: none.
[ 1368.406842] systemd-shutdown[1]: All filesystems unmounted.
[ 1368.412613] systemd-shutdown[1]: Deactivating swaps.
[ 1368.417784] systemd-shutdown[1]: All swaps deactivated.
[ 1368.423189] systemd-shutdown[1]: Detaching loop devices.
[ 1368.428682] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1368.435227] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1368.442131] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1368.449572] systemd-shutdown[1]: All loop devices detached.
[ 1368.455388] systemd-shutdown[1]: Stopping MD devices.
[ 1368.460629] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1368.467173] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1368.474073] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1368.481826] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1368.491853] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1368.501876] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1368.511919] systemd-shutdown[1]: Stopping MD /dev/md124 (9:124).
[ 1368.523621] md124: detected capacity change from 1900396544 to 0
[ 1368.529845] md: md124 stopped.
[ 1368.595453] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1368.667322] md: md123: requested-resync interrupted.
[ 1368.711648] md123: detected capacity change from 1900396544 to 0
[ 1368.717887] md: md123 stopped.
[ 1368.803418] md: md123 stopped.
[ 1368.803450] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1368.812952] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1368.819189] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1368.825256] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1368.833406] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1368.839999] systemd-shutdown[1]: Detaching DM devices.
[ 1368.845383] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1368.851997] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1368.858957] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1368.866104] systemd-shutdown[1]: All DM devices detached.
[ 1368.871746] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1368.879999] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1368.890897] systemd-shutdown[1]: Stopping MD devices.
[ 1368.896208] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1368.902826] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1368.909792] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1368.917430] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1368.927513] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1368.937584] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1368.947670] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1368.953927] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1368.963660] md: md123 stopped.
[ 1368.966980] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1368.973246] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1368.979520] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1368.985754] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1368.993946] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1369.000574] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1369.008851] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1369.019587] systemd-shutdown[1]: Stopping MD devices.
[ 1369.024927] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1369.031568] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1369.038572] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1369.046207] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1369.056323] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1369.066437] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1369.076565] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1369.082859] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1369.092622] md: md123 stopped.
[ 1369.095976] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1369.102271] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1369.108563] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1369.114684] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1369.122888] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1369.129530] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1369.137826] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1369.148565] systemd-shutdown[1]: Stopping MD devices.
[ 1369.153911] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1369.160562] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1369.167566] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1369.175203] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1369.185331] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1369.195501] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1369.205636] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1369.211951] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1369.221763] md: md123 stopped.
[ 1369.225132] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1369.231489] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1369.237792] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1369.243919] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1369.252134] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1369.258786] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1369.267097] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1369.277856] systemd-shutdown[1]: Stopping MD devices.
[ 1369.283222] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1369.289879] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1369.296901] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1369.304540] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1369.314684] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1369.324822] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1369.334958] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1369.341274] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1369.351051] md: md123 stopped.
[ 1369.354415] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1369.360737] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1369.367059] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1369.373216] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1369.381453] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1369.388126] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1369.396441] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1369.407209] systemd-shutdown[1]: Stopping MD devices.
[ 1369.412585] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1369.419268] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1369.426298] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1369.433883] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1369.444035] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1369.454181] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1369.464330] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1369.470653] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1369.480463] md: md123 stopped.
[ 1369.483841] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1369.490163] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1369.496477] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1369.502627] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1369.510863] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1369.517538] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1369.525856] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1369.536635] systemd-shutdown[1]: Stopping MD devices.
[ 1369.541999] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1369.548691] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1369.555725] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1369.563346] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1369.573496] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1369.583634] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1369.593778] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1369.600102] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1369.609890] md: md123 stopped.
[ 1369.613268] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1369.619598] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1369.625920] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1369.632076] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1369.640310] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1369.646994] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1369.655304] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1369.666068] systemd-shutdown[1]: Stopping MD devices.
[ 1369.671482] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1369.678146] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1369.685173] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1369.692770] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1369.702922] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1369.713069] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1369.723213] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1369.729537] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1369.739326] md: md123 stopped.
[ 1369.742688] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1369.749015] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1369.755360] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1369.761508] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1369.769740] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1369.776398] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1369.784715] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1369.795525] systemd-shutdown[1]: Stopping MD devices.
[ 1369.800899] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1369.807567] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1369.814598] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1369.822233] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1369.832377] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1369.842508] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1369.852662] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1369.858973] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1369.868761] md: md123 stopped.
[ 1369.872152] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1369.878479] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1369.884808] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1369.890951] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1369.899185] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1369.905844] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1369.914165] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1369.924934] systemd-shutdown[1]: Stopping MD devices.
[ 1369.930305] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1369.936984] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1369.944017] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1369.951612] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1369.961764] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1369.971913] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1369.982060] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1369.988383] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1369.998171] md: md123 stopped.
[ 1370.001541] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1370.007869] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.014198] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.020348] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1370.028585] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1370.035246] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1370.043629] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1370.054382] systemd-shutdown[1]: Stopping MD devices.
[ 1370.059753] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1370.066422] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1370.073451] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1370.081081] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1370.091235] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1370.101367] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1370.111583] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1370.117909] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1370.127707] md: md123 stopped.
[ 1370.131077] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1370.137414] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.143747] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.149906] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1370.158144] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1370.164819] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1370.173141] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1370.183912] systemd-shutdown[1]: Stopping MD devices.
[ 1370.189290] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1370.195971] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1370.202991] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1370.210634] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1370.220778] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1370.230908] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1370.241058] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1370.247392] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1370.257184] md: md123 stopped.
[ 1370.260563] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1370.266890] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.273214] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.279404] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1370.287673] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1370.294345] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1370.302669] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1370.313433] systemd-shutdown[1]: Stopping MD devices.
[ 1370.318808] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1370.325487] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1370.332519] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1370.340224] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1370.350368] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1370.360495] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1370.370646] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1370.376955] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1370.386755] md: md123 stopped.
[ 1370.390136] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1370.396463] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.402787] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.409368] md: md123 stopped.
[ 1370.412747] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.419069] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.425650] md: md123 stopped.
[ 1370.429025] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.435368] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.441955] md: md123 stopped.
[ 1370.445327] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.451643] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.458225] md: md123 stopped.
[ 1370.461588] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.467902] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.474488] md: md123 stopped.
[ 1370.477842] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.484151] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.490724] md: md123 stopped.
[ 1370.494077] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.500374] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.506964] md: md123 stopped.
[ 1370.510310] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.516604] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.523178] md: md123 stopped.
[ 1370.526525] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.532826] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.539404] md: md123 stopped.
[ 1370.542750] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.549049] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.555627] md: md123 stopped.
[ 1370.558968] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.565262] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.571848] md: md123 stopped.
[ 1370.575185] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.581474] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.588041] md: md123 stopped.
[ 1370.591401] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.597685] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.604235] md: md123 stopped.
[ 1370.607576] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.613868] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.620454] md: md123 stopped.
[ 1370.623803] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.630089] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.636676] md: md123 stopped.
[ 1370.640021] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.646296] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.652856] md: md123 stopped.
[ 1370.656182] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.662456] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.669007] md: md123 stopped.
[ 1370.672332] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.678603] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.685140] md: md123 stopped.
[ 1370.688463] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.694730] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.701304] md: md123 stopped.
[ 1370.704630] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.710904] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.717482] md: md123 stopped.
[ 1370.720807] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.727079] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.733649] md: md123 stopped.
[ 1370.736972] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.743230] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.749761] md: md123 stopped.
[ 1370.753094] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.759374] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.765905] md: md123 stopped.
[ 1370.769211] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.775531] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.782049] md: md123 stopped.
[ 1370.785358] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.791621] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.798152] md: md123 stopped.
[ 1370.801459] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.807714] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.814260] md: md123 stopped.
[ 1370.817578] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.823832] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.830361] md: md123 stopped.
[ 1370.833671] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.839931] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.846450] md: md123 stopped.
[ 1370.849772] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.856023] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.862547] md: md123 stopped.
[ 1370.865860] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.872112] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.878650] md: md123 stopped.
[ 1370.881972] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.888235] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.894803] md: md123 stopped.
[ 1370.898120] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.904384] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.910963] md: md123 stopped.
[ 1370.914295] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.920557] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.927127] md: md123 stopped.
[ 1370.930445] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.936696] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.943228] md: md123 stopped.
[ 1370.946537] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.952795] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.959329] md: md123 stopped.
[ 1370.962634] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.968895] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.975469] md: md123 stopped.
[ 1370.978784] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1370.985050] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1370.991624] md: md123 stopped.
[ 1370.994937] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.001197] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.007763] md: md123 stopped.
[ 1371.011079] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.017344] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.023967] md: md123 stopped.
[ 1371.027311] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.033570] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.040104] md: md123 stopped.
[ 1371.043448] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.049700] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.056227] md: md123 stopped.
[ 1371.059536] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.065792] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.072343] md: md123 stopped.
[ 1371.075662] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.081921] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.088489] md: md123 stopped.
[ 1371.091806] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.098067] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.104629] md: md123 stopped.
[ 1371.107960] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.114224] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.120789] md: md123 stopped.
[ 1371.124119] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.130382] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.136945] md: md123 stopped.
[ 1371.140257] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.146517] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.153048] md: md123 stopped.
[ 1371.156356] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.162613] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.169140] md: md123 stopped.
[ 1371.172460] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.178718] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.185293] md: md123 stopped.
[ 1371.188611] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.194869] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.201444] md: md123 stopped.
[ 1371.204761] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.211011] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.217589] md: md123 stopped.
[ 1371.220920] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.227169] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.233689] md: md123 stopped.
[ 1371.237007] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.243258] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.249788] md: md123 stopped.
[ 1371.253107] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.259383] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.265911] md: md123 stopped.
[ 1371.269229] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.275550] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.282114] md: md123 stopped.
[ 1371.285442] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.291703] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.298262] md: md123 stopped.
[ 1371.301581] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.307844] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.314417] md: md123 stopped.
[ 1371.317743] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.324004] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.330572] md: md123 stopped.
[ 1371.333890] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.340151] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.346683] md: md123 stopped.
[ 1371.349990] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.356251] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.362841] md: md123 stopped.
[ 1371.366160] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.372413] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.378981] md: md123 stopped.
[ 1371.382290] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.388550] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.395129] md: md123 stopped.
[ 1371.398458] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.404718] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.411289] md: md123 stopped.
[ 1371.414593] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.420849] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.427379] md: md123 stopped.
[ 1371.430682] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.436929] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.443468] md: md123 stopped.
[ 1371.446769] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.453028] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.459566] md: md123 stopped.
[ 1371.462871] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.469130] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.475706] md: md123 stopped.
[ 1371.479008] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.485261] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.491863] md: md123 stopped.
[ 1371.495177] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.501438] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.508022] md: md123 stopped.
[ 1371.511378] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.517638] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.524234] md: md123 stopped.
[ 1371.527553] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.533810] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.540343] md: md123 stopped.
[ 1371.543660] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.549913] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.556432] md: md123 stopped.
[ 1371.559741] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.565995] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.572532] md: md123 stopped.
[ 1371.575861] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.582123] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.588707] md: md123 stopped.
[ 1371.592023] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.598283] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.604868] md: md123 stopped.
[ 1371.608190] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.614450] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.621048] md: md123 stopped.
[ 1371.624356] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.630608] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.637138] md: md123 stopped.
[ 1371.640446] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.646697] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.653240] md: md123 stopped.
[ 1371.656549] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.662810] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.669341] md: md123 stopped.
[ 1371.672663] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.678925] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.685488] md: md123 stopped.
[ 1371.688807] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.695065] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.701633] md: md123 stopped.
[ 1371.704944] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.711206] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.717756] md: md123 stopped.
[ 1371.721078] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.727362] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.733892] md: md123 stopped.
[ 1371.737214] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.743523] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.750047] md: md123 stopped.
[ 1371.753365] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.759618] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.766146] md: md123 stopped.
[ 1371.769466] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.775727] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.782293] md: md123 stopped.
[ 1371.785614] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.791874] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.798440] md: md123 stopped.
[ 1371.801745] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.808006] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.814574] md: md123 stopped.
[ 1371.817893] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.824152] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.830715] md: md123 stopped.
[ 1371.834034] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.840294] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.846845] md: md123 stopped.
[ 1371.850155] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.856411] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.862941] md: md123 stopped.
[ 1371.866250] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.872502] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.879035] md: md123 stopped.
[ 1371.882345] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.888613] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.895185] md: md123 stopped.
[ 1371.898493] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.904756] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.911325] md: md123 stopped.
[ 1371.914632] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.920901] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.927471] md: md123 stopped.
[ 1371.930786] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.937051] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.943620] md: md123 stopped.
[ 1371.946924] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.953194] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.959767] md: md123 stopped.
[ 1371.963069] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.969333] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.975904] md: md123 stopped.
[ 1371.979211] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1371.985479] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1371.992051] md: md123 stopped.
[ 1371.995394] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.001654] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.008240] md: md123 stopped.
[ 1372.011547] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.017808] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.024385] md: md123 stopped.
[ 1372.027694] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.033957] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.040514] md: md123 stopped.
[ 1372.043818] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.050077] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.056657] md: md123 stopped.
[ 1372.059965] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.066227] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.072760] md: md123 stopped.
[ 1372.076103] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.082364] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.088933] md: md123 stopped.
[ 1372.092265] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.098525] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.105088] md: md123 stopped.
[ 1372.108396] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.114659] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.121252] md: md123 stopped.
[ 1372.124571] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.130831] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.137394] md: md123 stopped.
[ 1372.140705] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.146964] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.153505] md: md123 stopped.
[ 1372.156813] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.163066] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.169616] md: md123 stopped.
[ 1372.172927] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.179186] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.185738] md: md123 stopped.
[ 1372.189046] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.195318] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.201864] md: md123 stopped.
[ 1372.205175] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.211487] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.218023] md: md123 stopped.
[ 1372.221332] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.227595] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.234149] md: md123 stopped.
[ 1372.237459] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.243722] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.250242] md: md123 stopped.
[ 1372.253551] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.259811] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.266336] md: md123 stopped.
[ 1372.269645] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.275904] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.282442] md: md123 stopped.
[ 1372.285772] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.292022] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.298599] md: md123 stopped.
[ 1372.301908] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.308175] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.314746] md: md123 stopped.
[ 1372.318052] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.324312] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.330880] md: md123 stopped.
[ 1372.334209] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.340477] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.347011] md: md123 stopped.
[ 1372.350317] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.356575] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.363109] md: md123 stopped.
[ 1372.366417] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.372665] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.379237] md: md123 stopped.
[ 1372.382543] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.388803] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.395384] md: md123 stopped.
[ 1372.398686] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.404954] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.411540] md: md123 stopped.
[ 1372.414846] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.421102] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.427665] md: md123 stopped.
[ 1372.430970] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.437237] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.443814] md: md123 stopped.
[ 1372.447119] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.453369] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.459959] md: md123 stopped.
[ 1372.463267] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.469517] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.476053] md: md123 stopped.
[ 1372.479395] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.485645] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.492199] md: md123 stopped.
[ 1372.495514] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.501774] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.508346] md: md123 stopped.
[ 1372.511663] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.517921] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.524483] md: md123 stopped.
[ 1372.527810] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.534070] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.540641] md: md123 stopped.
[ 1372.543975] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.550230] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.556807] md: md123 stopped.
[ 1372.560126] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.566373] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.572902] md: md123 stopped.
[ 1372.576208] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.582467] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.589066] md: md123 stopped.
[ 1372.592383] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.598642] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.605207] md: md123 stopped.
[ 1372.608527] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.614789] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.621353] md: md123 stopped.
[ 1372.624669] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.630919] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.637524] md: md123 stopped.
[ 1372.640849] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.647110] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.653678] md: md123 stopped.
[ 1372.656997] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.663254] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.669785] md: md123 stopped.
[ 1372.673108] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.679384] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.685909] md: md123 stopped.
[ 1372.689240] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.695501] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.702068] md: md123 stopped.
[ 1372.705397] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.711657] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.718220] md: md123 stopped.
[ 1372.721539] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.727796] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.734357] md: md123 stopped.
[ 1372.737678] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.743938] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.750502] md: md123 stopped.
[ 1372.753821] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.760078] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.766622] md: md123 stopped.
[ 1372.769930] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.776188] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.782762] md: md123 stopped.
[ 1372.786069] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.792331] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.798888] md: md123 stopped.
[ 1372.802196] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.808455] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.815022] md: md123 stopped.
[ 1372.818353] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.824614] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.831180] md: md123 stopped.
[ 1372.834490] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.840751] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.847319] md: md123 stopped.
[ 1372.850624] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.856893] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.863435] md: md123 stopped.
[ 1372.866742] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.872994] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.879540] md: md123 stopped.
[ 1372.882845] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.889100] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.895646] md: md123 stopped.
[ 1372.898954] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.905217] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.911751] md: md123 stopped.
[ 1372.915056] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.921317] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.927888] md: md123 stopped.
[ 1372.931196] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.937454] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.944024] md: md123 stopped.
[ 1372.947347] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.953604] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.960177] md: md123 stopped.
[ 1372.963486] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.969745] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.976290] md: md123 stopped.
[ 1372.979597] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1372.985858] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1372.992397] md: md123 stopped.
[ 1372.995706] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1373.001968] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1373.008492] md: md123 stopped.
[ 1373.011799] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1373.018061] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1373.024589] md: md123 stopped.
[ 1373.027899] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1373.034158] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1373.040703] md: md123 stopped.
[ 1373.044009] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1373.050272] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1373.056792] md: md123 stopped.
[ 1373.060103] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1373.066367] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1373.072898] md: md123 stopped.
[ 1373.076207] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1373.082470] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1373.089016] md: md123 stopped.
[ 1373.092321] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1373.098573] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1373.105109] md: md123 stopped.
[ 1373.108421] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1373.114683] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1373.121205] md: md123 stopped.
[ 1373.124513] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1373.130775] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1373.136866] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1373.145031] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1373.151669] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1373.159933] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1373.170628] systemd-shutdown[1]: Stopping MD devices.
[ 1373.175936] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1373.182549] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1373.189510] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1373.197053] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1373.207137] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1373.217221] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1373.227317] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1373.233581] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1373.243332] md: md123 stopped.
[ 1373.246653] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1373.252923] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1373.259197] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1373.265290] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1373.273475] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1373.280098] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1373.288366] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1373.299085] systemd-shutdown[1]: Stopping MD devices.
[ 1373.304410] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1373.311039] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1373.318022] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1373.325573] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1373.335669] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1373.345761] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1373.355882] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1373.362162] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1373.371939] md: md123 stopped.
[ 1373.375294] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1373.381581] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1373.387864] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1373.393975] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1373.402169] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1373.408823] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1373.417121] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1373.427856] systemd-shutdown[1]: Stopping MD devices.
[ 1373.433201] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1373.439845] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1373.446842] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1373.454407] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1373.464523] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1373.474627] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1373.484743] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1373.491040] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1373.500810] md: md123 stopped.
[ 1373.504166] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1373.510478] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1373.516791] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1373.522919] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1373.531133] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1373.537786] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1373.546086] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1373.556837] systemd-shutdown[1]: Stopping MD devices.
[ 1373.562206] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1373.568898] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1373.575909] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1373.583506] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1373.593639] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1373.603770] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1373.613913] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1373.620227] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1373.630010] md: md123 stopped.
[ 1373.633381] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1373.639710] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1373.646025] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1373.652167] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1373.660392] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1373.667056] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1373.675386] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1373.686142] systemd-shutdown[1]: Stopping MD devices.
[ 1373.691564] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1373.698236] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1373.705260] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1373.712853] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1373.722989] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1373.733122] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1373.743270] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1373.749595] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1373.759416] md: md123 stopped.
[ 1373.762784] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1373.769115] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1373.775486] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1373.781625] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1373.789854] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1373.796518] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1373.804823] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1373.815581] systemd-shutdown[1]: Stopping MD devices.
[ 1373.820942] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1373.827610] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1373.834628] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1373.842222] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1373.852365] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1373.862500] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1373.872644] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1373.878958] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1373.888741] md: md123 stopped.
[ 1373.892112] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1373.898443] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1373.904769] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1373.910910] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1373.919133] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1373.925796] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1373.934100] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1373.944858] systemd-shutdown[1]: Stopping MD devices.
[ 1373.950222] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1373.956891] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1373.963914] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1373.971518] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1373.981676] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1373.991814] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1374.001959] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1374.008272] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1374.018054] md: md123 stopped.
[ 1374.021425] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1374.027757] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1374.034070] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1374.040207] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1374.048432] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1374.055094] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1374.063431] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1374.074188] systemd-shutdown[1]: Stopping MD devices.
[ 1374.079549] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1374.086221] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1374.093240] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1374.100840] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1374.110985] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1374.121123] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1374.131287] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1374.137604] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1374.147417] md: md123 stopped.
[ 1374.150784] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1374.157114] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1374.163473] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1374.169636] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1374.177875] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1374.184548] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1374.192853] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1374.203611] systemd-shutdown[1]: Stopping MD devices.
[ 1374.208974] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1374.215645] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1374.222658] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1374.230249] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1374.240384] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1374.250521] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1374.260667] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1374.266994] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1374.276778] md: md123 stopped.
[ 1374.280170] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1374.286530] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1374.292870] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1374.299030] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1374.307311] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1374.313973] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1374.322279] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1374.333036] systemd-shutdown[1]: Stopping MD devices.
[ 1374.338398] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1374.345077] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1374.352095] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1374.359696] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1374.369836] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1374.379983] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1374.390129] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1374.396444] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1374.406228] md: md123 stopped.
[ 1374.409600] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1374.415927] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1374.422238] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1374.428377] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1374.436622] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1374.443304] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1374.451609] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1374.462357] systemd-shutdown[1]: Stopping MD devices.
[ 1374.467721] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1374.474391] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1374.481413] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1374.489009] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1374.499147] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1374.509274] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1374.519451] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1374.525764] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1374.535546] md: md123 stopped.
[ 1374.538914] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1374.545244] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1374.551556] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1374.557694] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1374.565916] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1374.572577] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1374.580884] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1374.591668] systemd-shutdown[1]: Stopping MD devices.
[ 1374.597045] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1374.603723] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1374.610743] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1374.618330] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1374.628474] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1374.638614] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1374.648753] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1374.655065] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1374.664845] md: md123 stopped.
[ 1374.668212] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1374.674539] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1374.680872] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1374.687026] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1374.695274] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1374.701950] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1374.710256] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1374.721011] systemd-shutdown[1]: Stopping MD devices.
[ 1374.726373] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1374.733041] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1374.740062] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1374.747673] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1374.757807] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1374.767942] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1374.778086] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1374.784397] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1374.794182] md: md123 stopped.
[ 1374.797561] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1374.803876] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1374.810189] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1374.816328] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1374.824553] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1374.831215] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1374.839582] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1374.850329] systemd-shutdown[1]: Stopping MD devices.
[ 1374.855691] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1374.862359] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1374.869378] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1374.876976] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1374.887109] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1374.897242] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1374.907407] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1374.913719] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1374.923572] md: md123 stopped.
[ 1374.926951] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1374.933296] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1374.939610] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1374.945748] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1374.953973] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1374.960633] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1374.968938] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1374.980114] md: md123 stopped.
[ 1374.983559] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1374.989894] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1374.996488] md: md123 stopped.
[ 1374.999877] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.006210] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.012807] md: md123 stopped.
[ 1375.016192] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.022520] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.029101] md: md123 stopped.
[ 1375.032480] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.038802] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.045390] md: md123 stopped.
[ 1375.048755] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.055076] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.061662] md: md123 stopped.
[ 1375.065022] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.071353] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.077931] md: md123 stopped.
[ 1375.081295] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.087606] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.094191] md: md123 stopped.
[ 1375.097555] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.103866] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.110444] md: md123 stopped.
[ 1375.113799] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.120113] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.126682] md: md123 stopped.
[ 1375.130047] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.136351] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.142918] md: md123 stopped.
[ 1375.146267] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.152565] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.159129] md: md123 stopped.
[ 1375.162475] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.168785] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.175390] md: md123 stopped.
[ 1375.178741] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.185038] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.191602] md: md123 stopped.
[ 1375.194943] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.201248] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.207879] md: md123 stopped.
[ 1375.211222] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.217523] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.224131] md: md123 stopped.
[ 1375.227537] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.233832] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.240427] md: md123 stopped.
[ 1375.243771] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.250063] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.256665] md: md123 stopped.
[ 1375.260007] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.266300] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.272895] md: md123 stopped.
[ 1375.276238] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.282529] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.289126] md: md123 stopped.
[ 1375.292466] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.298753] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.305445] md: md123 stopped.
[ 1375.308786] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.315076] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.321673] md: md123 stopped.
[ 1375.325021] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.331300] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.337840] md: md123 stopped.
[ 1375.341172] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.347480] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.354005] md: md123 stopped.
[ 1375.357315] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.363569] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.370110] md: md123 stopped.
[ 1375.373428] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.379681] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.386207] md: md123 stopped.
[ 1375.389517] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.395771] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.402304] md: md123 stopped.
[ 1375.405611] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.411873] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.418450] md: md123 stopped.
[ 1375.421786] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.428042] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.434574] md: md123 stopped.
[ 1375.437901] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.444162] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.450730] md: md123 stopped.
[ 1375.454047] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.460317] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.466851] md: md123 stopped.
[ 1375.470160] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.476414] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.482939] md: md123 stopped.
[ 1375.486247] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.492502] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.499034] md: md123 stopped.
[ 1375.502345] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.508599] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.515129] md: md123 stopped.
[ 1375.518438] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.524692] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.531286] md: md123 stopped.
[ 1375.534604] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.540863] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.547388] md: md123 stopped.
[ 1375.550697] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.556957] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.563545] md: md123 stopped.
[ 1375.566858] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.573128] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.579703] md: md123 stopped.
[ 1375.583017] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.589279] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.595830] md: md123 stopped.
[ 1375.599132] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.605386] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.611944] md: md123 stopped.
[ 1375.615273] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.621529] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.628053] md: md123 stopped.
[ 1375.631388] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.637640] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.644173] md: md123 stopped.
[ 1375.647481] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.653736] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.660310] md: md123 stopped.
[ 1375.663629] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.669879] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.676416] md: md123 stopped.
[ 1375.679725] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.685973] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.692507] md: md123 stopped.
[ 1375.695811] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.702061] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.708596] md: md123 stopped.
[ 1375.711905] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.718164] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.724731] md: md123 stopped.
[ 1375.728049] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.734301] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.740834] md: md123 stopped.
[ 1375.744142] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.750394] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.756925] md: md123 stopped.
[ 1375.760231] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.766488] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.773024] md: md123 stopped.
[ 1375.776345] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.782597] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.789114] md: md123 stopped.
[ 1375.792435] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.798686] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.805205] md: md123 stopped.
[ 1375.808524] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.814775] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.821297] md: md123 stopped.
[ 1375.824627] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.830880] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.837400] md: md123 stopped.
[ 1375.840707] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.846957] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.853478] md: md123 stopped.
[ 1375.856797] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.863046] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.869573] md: md123 stopped.
[ 1375.872893] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.879144] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.885666] md: md123 stopped.
[ 1375.888985] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.895238] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.901761] md: md123 stopped.
[ 1375.905078] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.911360] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.917879] md: md123 stopped.
[ 1375.921199] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.927521] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.934042] md: md123 stopped.
[ 1375.937350] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.943607] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.950171] md: md123 stopped.
[ 1375.953495] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.959761] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.966330] md: md123 stopped.
[ 1375.969648] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.975909] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.982433] md: md123 stopped.
[ 1375.985742] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1375.992007] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1375.998536] md: md123 stopped.
[ 1376.001856] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.008117] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.014658] md: md123 stopped.
[ 1376.017968] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.024229] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.030800] md: md123 stopped.
[ 1376.034109] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.040372] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.046887] md: md123 stopped.
[ 1376.050194] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.056459] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.063000] md: md123 stopped.
[ 1376.066319] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.072583] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.079107] md: md123 stopped.
[ 1376.082415] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.088675] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.095193] md: md123 stopped.
[ 1376.098508] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.104756] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.111278] md: md123 stopped.
[ 1376.114579] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.120837] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.127373] md: md123 stopped.
[ 1376.130678] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.136936] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.143515] md: md123 stopped.
[ 1376.146822] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.153089] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.159662] md: md123 stopped.
[ 1376.162964] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.169235] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.175830] md: md123 stopped.
[ 1376.179139] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.185408] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.191973] md: md123 stopped.
[ 1376.195298] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.201562] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.208134] md: md123 stopped.
[ 1376.211490] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.217755] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.224297] md: md123 stopped.
[ 1376.227608] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.233873] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.240435] md: md123 stopped.
[ 1376.243747] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.250009] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.256541] md: md123 stopped.
[ 1376.259850] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.266113] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.272658] md: md123 stopped.
[ 1376.275968] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.282232] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.288758] md: md123 stopped.
[ 1376.292068] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.298329] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.304865] md: md123 stopped.
[ 1376.308175] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.314438] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.320983] md: md123 stopped.
[ 1376.324294] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.330558] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.337084] md: md123 stopped.
[ 1376.340395] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.346655] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.353198] md: md123 stopped.
[ 1376.356533] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.362785] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.369316] md: md123 stopped.
[ 1376.372626] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.378892] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.385413] md: md123 stopped.
[ 1376.388723] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.394985] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.401512] md: md123 stopped.
[ 1376.404822] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.411084] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.417631] md: md123 stopped.
[ 1376.420938] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.427200] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.433735] md: md123 stopped.
[ 1376.437049] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.443331] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.449868] md: md123 stopped.
[ 1376.453173] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.459488] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.466023] md: md123 stopped.
[ 1376.469330] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.475589] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.482118] md: md123 stopped.
[ 1376.485423] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.491685] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.498224] md: md123 stopped.
[ 1376.501533] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.507801] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.514345] md: md123 stopped.
[ 1376.517649] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.523914] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.530432] md: md123 stopped.
[ 1376.533738] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.539997] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.546541] md: md123 stopped.
[ 1376.549850] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.556107] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.562639] md: md123 stopped.
[ 1376.565946] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.572206] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.578734] md: md123 stopped.
[ 1376.582042] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.588299] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.594834] md: md123 stopped.
[ 1376.598140] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.604400] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.610941] md: md123 stopped.
[ 1376.614249] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.620511] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.627027] md: md123 stopped.
[ 1376.630334] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.636593] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.643192] md: md123 stopped.
[ 1376.646512] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.652775] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.659326] md: md123 stopped.
[ 1376.662631] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.668901] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.675429] md: md123 stopped.
[ 1376.678733] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.684997] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.691525] md: md123 stopped.
[ 1376.694831] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.701092] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.707620] md: md123 stopped.
[ 1376.710926] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.717195] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.723730] md: md123 stopped.
[ 1376.727034] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.733306] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.739867] md: md123 stopped.
[ 1376.743175] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.749458] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.755990] md: md123 stopped.
[ 1376.759332] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.765600] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.772127] md: md123 stopped.
[ 1376.775504] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.781769] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.788288] md: md123 stopped.
[ 1376.791596] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.797859] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.804397] md: md123 stopped.
[ 1376.807708] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.813958] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.820493] md: md123 stopped.
[ 1376.823802] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.830065] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.836584] md: md123 stopped.
[ 1376.839895] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.846162] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.852721] md: md123 stopped.
[ 1376.856043] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.862304] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.868833] md: md123 stopped.
[ 1376.872142] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.878403] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.884936] md: md123 stopped.
[ 1376.888245] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.894507] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.901046] md: md123 stopped.
[ 1376.904355] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.910617] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.917143] md: md123 stopped.
[ 1376.920452] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.926716] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.933247] md: md123 stopped.
[ 1376.936555] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.942817] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.949369] md: md123 stopped.
[ 1376.952676] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.958938] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.965462] md: md123 stopped.
[ 1376.968783] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.975033] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.981591] md: md123 stopped.
[ 1376.984899] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1376.991158] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1376.997734] md: md123 stopped.
[ 1377.001054] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.007330] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.013861] md: md123 stopped.
[ 1377.017181] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.023504] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.030028] md: md123 stopped.
[ 1377.033348] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.039611] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.046133] md: md123 stopped.
[ 1377.049455] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.055709] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.062231] md: md123 stopped.
[ 1377.065540] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.071807] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.078339] md: md123 stopped.
[ 1377.081656] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.087914] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.094429] md: md123 stopped.
[ 1377.097738] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.104001] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.110534] md: md123 stopped.
[ 1377.113842] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.120111] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.126648] md: md123 stopped.
[ 1377.129964] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.136223] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.142746] md: md123 stopped.
[ 1377.146053] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.152316] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.158853] md: md123 stopped.
[ 1377.162160] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.168432] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.174961] md: md123 stopped.
[ 1377.178279] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.184538] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.191053] md: md123 stopped.
[ 1377.194360] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.200621] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.207163] md: md123 stopped.
[ 1377.210470] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.216738] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.223286] md: md123 stopped.
[ 1377.226600] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.232864] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.239397] md: md123 stopped.
[ 1377.242702] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.248969] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.255527] md: md123 stopped.
[ 1377.258843] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.265109] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.271679] md: md123 stopped.
[ 1377.274994] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.281244] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.287784] md: md123 stopped.
[ 1377.291086] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.297350] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.303974] md: md123 stopped.
[ 1377.307305] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.313566] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.320141] md: md123 stopped.
[ 1377.323529] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.329777] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.336311] md: md123 stopped.
[ 1377.339617] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.345868] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.352390] md: md123 stopped.
[ 1377.355700] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.361951] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.368490] md: md123 stopped.
[ 1377.371809] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.378061] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.384583] md: md123 stopped.
[ 1377.387890] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.394144] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.400675] md: md123 stopped.
[ 1377.403984] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.410240] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.416815] md: md123 stopped.
[ 1377.420131] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.426382] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.432907] md: md123 stopped.
[ 1377.436217] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.442469] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.449001] md: md123 stopped.
[ 1377.452334] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.458588] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.465129] md: md123 stopped.
[ 1377.468437] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.474687] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.481208] md: md123 stopped.
[ 1377.484516] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.490766] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.497294] md: md123 stopped.
[ 1377.500600] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.506867] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.513441] md: md123 stopped.
[ 1377.516751] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.523010] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.529580] md: md123 stopped.
[ 1377.532899] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.539149] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.545666] md: md123 stopped.
[ 1377.548972] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.555222] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.561761] md: md123 stopped.
[ 1377.565069] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.571348] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.577930] md: md123 stopped.
[ 1377.581246] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.587496] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.594063] md: md123 stopped.
[ 1377.597384] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.603640] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.610169] md: md123 stopped.
[ 1377.613485] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.619744] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.626329] md: md123 stopped.
[ 1377.629647] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.635897] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.642467] md: md123 stopped.
[ 1377.645787] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.652043] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.658614] md: md123 stopped.
[ 1377.661933] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.668195] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.674794] md: md123 stopped.
[ 1377.678113] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.684363] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.690886] md: md123 stopped.
[ 1377.694193] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.700444] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.706983] md: md123 stopped.
[ 1377.710310] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.716559] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.723081] md: md123 stopped.
[ 1377.726387] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.732638] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.739176] md: md123 stopped.
[ 1377.742481] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.748738] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.755276] md: md123 stopped.
[ 1377.758581] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.764837] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.771365] md: md123 stopped.
[ 1377.774671] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.780928] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.787497] md: md123 stopped.
[ 1377.790810] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.797058] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.803588] md: md123 stopped.
[ 1377.806893] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.813152] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.819720] md: md123 stopped.
[ 1377.823037] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.829304] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.835925] md: md123 stopped.
[ 1377.839243] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.845504] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.852092] md: md123 stopped.
[ 1377.855453] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.861712] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.868278] md: md123 stopped.
[ 1377.871595] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.877856] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.884459] md: md123 stopped.
[ 1377.887782] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.894042] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.900605] md: md123 stopped.
[ 1377.903922] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.910174] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.916742] md: md123 stopped.
[ 1377.920061] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.926312] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.932916] md: md123 stopped.
[ 1377.936237] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.942492] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.949063] md: md123 stopped.
[ 1377.952386] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.958640] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.965209] md: md123 stopped.
[ 1377.968528] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.974784] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.981384] md: md123 stopped.
[ 1377.984703] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1377.990958] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1377.997526] md: md123 stopped.
[ 1378.000846] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1378.007101] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1378.013687] md: md123 stopped.
[ 1378.017007] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1378.023275] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1378.029849] md: md123 stopped.
[ 1378.033172] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1378.039497] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1378.046081] md: md123 stopped.
[ 1378.049401] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1378.055666] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1378.062236] md: md123 stopped.
[ 1378.065554] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1378.071821] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1378.078358] md: md123 stopped.
[ 1378.081682] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1378.087935] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1378.094499] md: md123 stopped.
[ 1378.097818] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1378.104080] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1378.110639] md: md123 stopped.
[ 1378.113948] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1378.120210] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1378.126783] md: md123 stopped.
[ 1378.130103] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1378.136363] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1378.142452] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1378.150628] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1378.157240] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1378.165503] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1378.176200] systemd-shutdown[1]: Stopping MD devices.
[ 1378.181511] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1378.188133] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1378.195096] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1378.202675] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1378.212748] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1378.222832] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1378.232933] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1378.239207] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1378.248953] md: md123 stopped.
[ 1378.252285] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1378.258554] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1378.264833] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1378.270939] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1378.279134] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1378.285793] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1378.294060] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1378.304824] systemd-shutdown[1]: Stopping MD devices.
[ 1378.310168] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1378.316807] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1378.323789] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1378.331386] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1378.341510] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1378.351617] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1378.361741] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1378.368029] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1378.377793] md: md123 stopped.
[ 1378.381142] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1378.387475] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1378.393769] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1378.399890] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1378.408100] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1378.414747] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1378.423028] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1378.433763] systemd-shutdown[1]: Stopping MD devices.
[ 1378.439101] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1378.445758] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1378.452751] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1378.460354] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1378.470466] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1378.480587] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1378.490716] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1378.497025] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1378.506804] md: md123 stopped.
[ 1378.510169] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1378.516467] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1378.522781] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1378.528934] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1378.537161] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1378.543824] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1378.552143] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1378.562893] systemd-shutdown[1]: Stopping MD devices.
[ 1378.568260] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1378.574931] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1378.581944] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1378.589585] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1378.599725] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1378.609853] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1378.620005] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1378.626320] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1378.636114] md: md123 stopped.
[ 1378.639535] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1378.645865] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1378.652191] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1378.658329] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1378.666576] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1378.673248] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1378.681567] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1378.692356] systemd-shutdown[1]: Stopping MD devices.
[ 1378.697731] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1378.704413] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1378.711491] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1378.719125] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1378.729275] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1378.739440] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1378.749593] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1378.755904] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1378.765696] md: md123 stopped.
[ 1378.769074] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1378.775443] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1378.781770] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1378.787907] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1378.796141] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1378.802803] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1378.811122] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1378.821882] systemd-shutdown[1]: Stopping MD devices.
[ 1378.827262] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1378.833929] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1378.840958] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1378.848598] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1378.858748] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1378.868879] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1378.879036] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1378.885346] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1378.895137] md: md123 stopped.
[ 1378.898515] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1378.904855] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1378.911184] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1378.917326] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1378.925560] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1378.932220] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1378.940536] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1378.951304] systemd-shutdown[1]: Stopping MD devices.
[ 1378.956674] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1378.963363] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1378.970389] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1378.977998] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1378.988145] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1378.998272] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1379.008426] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1379.014738] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1379.024524] md: md123 stopped.
[ 1379.027887] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1379.034212] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1379.040533] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1379.046667] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1379.054898] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1379.061554] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1379.069876] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1379.080640] systemd-shutdown[1]: Stopping MD devices.
[ 1379.086012] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1379.092678] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1379.099707] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1379.107342] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1379.117507] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1379.127665] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1379.137807] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1379.144129] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1379.153906] md: md123 stopped.
[ 1379.157271] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1379.163598] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1379.169916] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1379.176064] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1379.184297] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1379.190953] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1379.199278] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1379.210042] systemd-shutdown[1]: Stopping MD devices.
[ 1379.215461] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1379.222126] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1379.229156] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1379.236755] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1379.246901] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1379.257047] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1379.267191] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1379.273511] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1379.283303] md: md123 stopped.
[ 1379.286666] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1379.292995] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1379.299322] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1379.305469] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1379.313703] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1379.320373] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1379.328687] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1379.339503] systemd-shutdown[1]: Stopping MD devices.
[ 1379.344873] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1379.351553] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1379.358584] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1379.366173] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1379.376321] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1379.386464] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1379.396608] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1379.402928] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1379.412706] md: md123 stopped.
[ 1379.416098] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1379.422425] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1379.428744] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1379.434900] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1379.443125] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1379.449798] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1379.458104] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1379.468873] systemd-shutdown[1]: Stopping MD devices.
[ 1379.474234] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1379.480915] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1379.487946] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1379.495565] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1379.505707] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1379.515853] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1379.525998] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1379.532327] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1379.542108] md: md123 stopped.
[ 1379.545488] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1379.551820] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1379.558147] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1379.564297] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1379.572514] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1379.579189] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1379.587555] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1379.598323] systemd-shutdown[1]: Stopping MD devices.
[ 1379.603682] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1379.610361] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1379.617395] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1379.625028] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1379.635178] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1379.645324] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1379.655521] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1379.661845] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1379.671638] md: md123 stopped.
[ 1379.675006] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1379.681334] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1379.687665] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1379.693823] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1379.702043] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1379.708716] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1379.717053] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1379.727818] systemd-shutdown[1]: Stopping MD devices.
[ 1379.733194] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1379.739875] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1379.746893] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1379.754530] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1379.764671] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1379.774805] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1379.784961] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1379.791299] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1379.801086] md: md123 stopped.
[ 1379.804467] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1379.810797] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1379.817123] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1379.823283] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1379.831528] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1379.838202] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1379.846508] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1379.857274] systemd-shutdown[1]: Stopping MD devices.
[ 1379.862636] systemd-shutdown[1]: sd-device-enumerator: Scan all dirs
[ 1379.869318] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/bus
[ 1379.876337] systemd-shutdown[1]: sd-device-enumerator: Scanning /sys/class
[ 1379.883969] systemd-shutdown[1]: md125: Skipping MD device '/dev/md125' because it is a container MD device.
[ 1379.894109] systemd-shutdown[1]: md126: Skipping MD device '/dev/md126' because it is a container MD device.
[ 1379.904247] systemd-shutdown[1]: md127: Skipping MD device '/dev/md127' because it is a container MD device.
[ 1379.914402] systemd-shutdown[1]: Stopping MD /dev/md123 (9:123).
[ 1379.920724] systemd-shutdown[1]: Failed to sync MD block device /dev/md123, ignoring: Input/output error
[ 1379.930515] md: md123 stopped.
[ 1379.933909] systemd-shutdown[1]: Stopping MD /dev/md122 (9:122).
[ 1379.940239] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1379.946566] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1379.952716] systemd-shutdown[1]: Could not stop MD /dev/md122: Device or resource busy
[ 1379.960967] systemd-shutdown[1]: Not all MD devices stopped, 1 left.
[ 1379.967639] systemd-shutdown[1]: Couldn't finalize remaining MD devices, trying again.
[ 1379.975955] systemd-shutdown[1]: Failed to open watchdog device /dev/watchdog0, ignoring: No such file or directory
[ 1379.987140] md: md123 stopped.
[ 1379.990516] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1379.996849] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.003441] md: md123 stopped.
[ 1380.006813] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.013153] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.019758] md: md123 stopped.
[ 1380.023131] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.029464] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.036050] md: md123 stopped.
[ 1380.039476] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.045803] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.052391] md: md123 stopped.
[ 1380.055768] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.062086] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.068673] md: md123 stopped.
[ 1380.072069] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.078384] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.084960] md: md123 stopped.
[ 1380.088333] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.094649] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.101223] md: md123 stopped.
[ 1380.104609] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.110927] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.117501] md: md123 stopped.
[ 1380.120867] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.127175] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.133741] md: md123 stopped.
[ 1380.137121] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.143477] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.150073] md: md123 stopped.
[ 1380.153432] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.159738] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.166314] md: md123 stopped.
[ 1380.169672] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.175971] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.182533] md: md123 stopped.
[ 1380.185888] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.192190] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.198767] md: md123 stopped.
[ 1380.202125] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.208431] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.215003] md: md123 stopped.
[ 1380.218340] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.224639] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.231201] md: md123 stopped.
[ 1380.234547] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.240839] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.247417] md: md123 stopped.
[ 1380.250759] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.257043] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.263615] md: md123 stopped.
[ 1380.266950] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.273240] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.279866] md: md123 stopped.
[ 1380.283201] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.289494] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.296079] md: md123 stopped.
[ 1380.299466] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.305750] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.312334] md: md123 stopped.
[ 1380.315668] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.321950] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.328534] md: md123 stopped.
[ 1380.331862] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.338135] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.344715] md: md123 stopped.
[ 1380.348034] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.354305] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.360878] md: md123 stopped.
[ 1380.364198] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.370466] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.377037] md: md123 stopped.
[ 1380.380359] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.386620] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.393253] md: md123 stopped.
[ 1380.396578] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.402849] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.409434] md: md123 stopped.
[ 1380.412753] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.419026] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.425597] md: md123 stopped.
[ 1380.428916] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.435186] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.441756] md: md123 stopped.
[ 1380.445076] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.451375] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.457940] md: md123 stopped.
[ 1380.461261] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.467529] md122:systemd-shutdow blkdev_get_by_dev return -16
[ 1380.474104] md: md123 stopped.
[ 1380.477421] md122:systemd-shutdow bd_prepare_to_claim return -16
[ 1380.483689] md122:systemd-shutdow blkdev_get_by_dev return -16
[