* BTRFS errors following bad SATA connection
[not found] <9443ea9c-08dc-4d08-81a6-cb91940e791e@gmail.com>
@ 2025-01-01 18:25 ` Victor Banon
2025-01-01 23:40 ` remi
0 siblings, 1 reply; 13+ messages in thread
From: Victor Banon @ 2025-01-01 18:25 UTC (permalink / raw)
To: linux-btrfs
[-- Attachment #1: Type: text/plain, Size: 5420 bytes --]
Hi everyone, I've unfortunately run into some troubles on my file system
(4x12 TB, btrfs over mdadm RAID5). Critical files are backed up, but I
do have a large amount of data that I had chosen not to back up, and I'm
wondering if there's any hope of salvaging the filesystem without
reformatting or without transferring everything to a separate file
system (I do not have the available storage for that). I'm able to mount
the file system and access/copy files - I have not manually found any
obviously corrupted files yet but there's clearly a lot of issues.
Information about the system:
$ uname -a
Linux margserver 6.1.0-28-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.119-1
(2024-11-22) x86_64 GNU/Linux
$ btrfs --version
btrfs-progs v6.2
$ sudo btrfs fi show
Label: none uuid: b0f4bc38-95b9-4f0c-b982-c700614c84f6
Total devices 1 FS bytes used 23.94TiB
devid 1 size 32.74TiB used 24.80TiB path /dev/md0
$ btrfs fi df /media/raid/
Data, single: total=24.73TiB, used=23.91TiB
System, DUP: total=40.00MiB, used=2.61MiB
Metadata, DUP: total=37.00GiB, used=34.25GiB
GlobalReserve, single: total=512.00MiB, used=0.00B
$ cat /proc/mdstat
Personalities : [raid6] [raid5] [raid4] [linear] [multipath] [raid0]
[raid1] [raid10]
md0 : active raid5 sdb[4] sde[0] sdc[2] sda[3]
35156259840 blocks super 1.2 level 5, 512k chunk, algorithm 2
[4/4] [UUUU]
bitmap: 0/88 pages [0KB], 65536KB chunk
unused devices: <none>
I believe the corruption started because of a faulty SATA cable or a
faulty connection:
$ sudo dmesg -T
[Thu Dec 19 20:51:59 2024] ata5.00: exception Emask 0x10 SAct 0x2000000
SErr 0x4090000 action 0xe frozen
[Thu Dec 19 20:51:59 2024] ata5.00: irq_stat 0x00400040, connection
status changed
[Thu Dec 19 20:51:59 2024] ata5: SError: { PHYRdyChg 10B8B DevExch }
[Thu Dec 19 20:51:59 2024] ata5.00: failed command: READ FPDMA QUEUED
[Thu Dec 19 20:51:59 2024] ata5.00: cmd
60/20:c8:20:9d:46/00:00:fb:01:00/40 tag 25 ncq dma 16384 in
[Thu Dec 19 20:51:59 2024] ata5.00: status: { DRDY }
[Thu Dec 19 20:51:59 2024] ata5: hard resetting link
[Thu Dec 19 20:52:05 2024] ata5: link is slow to respond, please be
patient (ready=0)
[Thu Dec 19 20:52:09 2024] ata5: COMRESET failed (errno=-16)
[Thu Dec 19 20:52:09 2024] ata5: hard resetting link
But those issues are fixed and I no longer have any ata / SATA related
errors in dmesg.
The drives themselves look fine, I've run SMART tests. I'd be happy to
provide more logs related to that if you deem it useful though.
Scrubs cannot complete:
$ sudo btrfs scrub start -Bd /media/raid
ERROR: scrubbing /media/raid failed for device id 1: ret=-1, errno=5
(Input/output error)
Scrub device /dev/md0 (id 1) canceled
Scrub started: Wed Jan 1 14:46:49 2025
Status: aborted
Duration: 3:20:56
Total to scrub: 24.80TiB
Rate: 459.58MiB/s
Error summary: verify=42
Corrected: 0
Uncorrectable: 42
Unverified: 0
But I still manage to find problematic files by resolving the logical
IDs found in logs. I've deleted hundreds of files hoping it would help:
$ sudo dmesg -T | grep -i btrfs | grep -oe "logical [0-9]*" | sort
--unique | cut -c9- | xargs -I % sudo btrfs inspect-internal dump-tree
-t 7 -b % /dev/md0 2> /dev/null | grep -oE "EXTENT_CSUM [0-9]+" | cut
-c13- | xargs -I % sudo btrfs inspect-internal logical-resolve -o %
/media/raid 2> /dev/null | sort --unique
I have also found a different type of problematic files with the
following command:
$ find . -type f -exec cat {} >/dev/null +
cat: ./[REDACTED]: Input/output error
cat: ./[REDACTED]: Input/output error
(...)
And specifically, one file that I cannot remove in my trash folder. The
filename has been redacted, but it does include "(???)" - I'm including
this information in the off chance the unusual characters could be
contributing to the issue:
$ ls -lahi /media/raid/.Trash-1000/info/
ls: cannot access '/media/raid/.Trash-1000/info/filename
(???).trashinfo': Input/output error
total 0
69953745 drwx--S---+ 1 victor users 76 Dec 28 11:25 .
69953740 drwx--S---+ 1 victor users 8 Dec 30 15:25 ..
? -?????????? ? ? ? ? ? 'filename
(???).trashinfo'
I've been trying to complete a scrub, but it always aborts after
encountering an i/o error. I've done run partial scrub -> find bad files
-> delete bad files -> run partial scrub a few times but it seems
endless, and I don't think I should keep doing that.
`echo check > /sys/block/mdX/md/sync_action` identified some mismatches
(I believe around 1000-1300). I ran `echo repair >
/sys/block/mdX/md/sync_action` afterwards as I believed the command for
identifying files based on logical IDs found in dmesg had helped me
delete the offending files. I have not ran a check or repair since.
I have not run btrfs check --repair. The most dangerous commands I've
run are `btrfs rescue zero-log /dev/md0` and `echo repair >
/sys/block/mdX/md/sync_action` . I've tried a btrfs check as well but I
haven't saved the logs - I could always try that again if that might be
useful. I also used the `usebackuproot` mount option a few times.
I've attached the dmesg logs. As you can see it does not look great.
What are my options? I would appreciate any advice. Thank you very much.
Victor
[-- Attachment #2: dmesg.log --]
[-- Type: text/x-log, Size: 130407 bytes --]
[ 0.884365] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst
[ 0.888351] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[ 0.888431] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01
[ 0.888434] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.888435] usb usb1: Product: EHCI Host Controller
[ 0.888436] usb usb1: Manufacturer: Linux 6.1.0-28-amd64 ehci_hcd
[ 0.888437] usb usb1: SerialNumber: 0000:00:1a.0
[ 0.888638] hub 1-0:1.0: USB hub found
[ 0.888645] hub 1-0:1.0: 2 ports detected
[ 0.888817] ehci-pci 0000:00:1d.0: EHCI Host Controller
[ 0.888821] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 0.888830] ehci-pci 0000:00:1d.0: debug port 2
[ 0.892758] ehci-pci 0000:00:1d.0: irq 23, io mem 0xfb822000
[ 0.908333] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[ 0.908438] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01
[ 0.908442] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.908445] usb usb2: Product: EHCI Host Controller
[ 0.908446] usb usb2: Manufacturer: Linux 6.1.0-28-amd64 ehci_hcd
[ 0.908448] usb usb2: SerialNumber: 0000:00:1d.0
[ 0.908576] hub 2-0:1.0: USB hub found
[ 0.908581] hub 2-0:1.0: 2 ports detected
[ 0.932961] scsi host1: ahci
[ 0.933281] scsi host2: ahci
[ 0.933464] scsi host3: ahci
[ 0.933614] scsi host4: ahci
[ 0.933715] scsi host5: ahci
[ 0.933806] scsi host6: ahci
[ 0.933849] ata1: DUMMY
[ 0.933852] ata2: SATA max UDMA/133 abar m2048@0xfb821000 port 0xfb821180 irq 28
[ 0.933856] ata3: SATA max UDMA/133 abar m2048@0xfb821000 port 0xfb821200 irq 28
[ 0.933859] ata4: SATA max UDMA/133 abar m2048@0xfb821000 port 0xfb821280 irq 28
[ 0.933862] ata5: SATA max UDMA/133 abar m2048@0xfb821000 port 0xfb821300 irq 28
[ 0.933865] ata6: SATA max UDMA/133 abar m2048@0xfb821000 port 0xfb821380 irq 28
[ 0.962269] e1000e 0000:00:19.0 0000:00:19.0 (uninitialized): registered PHC clock
[ 1.008281] mpt2sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[ 1.008296] mpt2sas_cm0: MSI-X vectors supported: 1
[ 1.008297] no of cores: 8, max_msix_vectors: -1
[ 1.008298] mpt2sas_cm0: 0 1 1
[ 1.008339] mpt2sas_cm0: High IOPs queues : disabled
[ 1.008340] mpt2sas0-msix0: PCI-MSI-X enabled: IRQ 29
[ 1.008341] mpt2sas_cm0: iomem(0x00000000fb600000), mapped(0x(____ptrval____)), size(16384)
[ 1.008343] mpt2sas_cm0: ioport(0x000000000000e000), size(256)
[ 1.072862] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 00:25:90:56:90:2b
[ 1.072865] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
[ 1.072905] e1000e 0000:00:19.0 eth0: MAC: 10, PHY: 11, PBA No: FFFFFF-0FF
[ 1.073120] e1000e 0000:03:00.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[ 1.107656] mpt2sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[ 1.107663] mpt2sas_cm0: sending message unit reset !!
[ 1.108886] mpt2sas_cm0: message unit reset: SUCCESS
[ 1.136528] mpt2sas_cm0: scatter gather: sge_in_main_msg(1), sge_per_chain(9), sge_per_io(128), chains_per_io(15)
[ 1.136630] mpt2sas_cm0: request pool(0x(____ptrval____)) - dma(0x10b000000): depth(3776), frame_size(128), pool_size(472 kB)
[ 1.139219] e1000e 0000:03:00.0 0000:03:00.0 (uninitialized): registered PHC clock
[ 1.147707] mpt2sas_cm0: sense pool(0x(____ptrval____)) - dma(0x140c00000): depth(3643), element_size(96), pool_size (341 kB)
[ 1.147771] mpt2sas_cm0: reply pool(0x(____ptrval____)) - dma(0x140c80000): depth(3840), frame_size(128), pool_size(480 kB)
[ 1.147776] mpt2sas_cm0: config page(0x(____ptrval____)) - dma(0x112396000): size(512)
[ 1.147777] mpt2sas_cm0: Allocated physical memory: size(8199 kB)
[ 1.147778] mpt2sas_cm0: Current Controller Queue Depth(3640),Max Controller Queue Depth(3712)
[ 1.147778] mpt2sas_cm0: Scatter Gather Elements per IO(128)
[ 1.148865] usb 1-1: new high-speed USB device number 2 using ehci-pci
[ 1.164888] usb 2-1: new high-speed USB device number 2 using ehci-pci
[ 1.184852] tsc: Refined TSC clocksource calibration: 3392.288 MHz
[ 1.184864] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x30e5d97ec2f, max_idle_ns: 440795243626 ns
[ 1.185825] clocksource: Switched to clocksource tsc
[ 1.190319] e1000e 0000:03:00.0 eth1: (PCI Express:2.5GT/s:Width x1) 00:25:90:56:90:2a
[ 1.190326] e1000e 0000:03:00.0 eth1: Intel(R) PRO/1000 Network Connection
[ 1.190412] e1000e 0000:03:00.0 eth1: MAC: 3, PHY: 8, PBA No: FFFFFF-0FF
[ 1.193235] mpt2sas_cm0: LSISAS2008: FWVersion(11.00.00.00), ChipRevision(0x03), BiosVersion(07.11.00.00)
[ 1.193244] mpt2sas_cm0: Protocol=(Initiator,Target), Capabilities=(TLR,EEDP,Snapshot Buffer,Diag Trace Buffer,Task Set Full,NCQ)
[ 1.193325] scsi host0: Fusion MPT SAS Host
[ 1.194773] mpt2sas_cm0: sending port enable !!
[ 1.195453] mpt2sas_cm0: hba_port entry: (____ptrval____), port: 255 is added to hba_port list
[ 1.197183] mpt2sas_cm0: host_add: handle(0x0001), sas_addr(0x500605b005502eb0), phys(8)
[ 1.216847] mpt2sas_cm0: port enable: SUCCESS
[ 1.251951] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 1.251980] ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 1.252005] ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 1.252030] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 1.252288] ata4.00: ATA-10: KINGSTON SA400S37120G, 03150010, max UDMA/133
[ 1.252559] ata5.00: supports DRM functions and may not be fully accessible
[ 1.252564] ata5.00: ATA-9: WDC WD120EDBZ-11B1HA0, 85.00A85, max UDMA/133
[ 1.255879] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 1.258563] ata2.00: supports DRM functions and may not be fully accessible
[ 1.258569] ata2.00: ATA-9: WDC WD120EDBZ-11B1HA0, 85.00A85, max UDMA/133
[ 1.261626] ata6.00: supports DRM functions and may not be fully accessible
[ 1.261632] ata6.00: ATA-9: WDC WD120EDBZ-11B1HA0, 85.00A85, max UDMA/133
[ 1.262279] ata4.00: 234441648 sectors, multi 1: LBA48 NCQ (depth 32), AA
[ 1.262847] ata5.00: 23437770752 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 1.263515] ata3.00: supports DRM functions and may not be fully accessible
[ 1.263520] ata3.00: ATA-9: WDC WD120EDBZ-11B1HA0, 85.00A85, max UDMA/133
[ 1.264533] ata5.00: Features: Trust NCQ-sndrcv NCQ-prio
[ 1.266717] ata2.00: 23437770752 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 1.268247] ata2.00: Features: Trust NCQ-sndrcv NCQ-prio
[ 1.268486] ata6.00: 23437770752 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 1.269946] ata6.00: Features: Trust NCQ-sndrcv NCQ-prio
[ 1.271673] ata2.00: supports DRM functions and may not be fully accessible
[ 1.273613] ata5.00: supports DRM functions and may not be fully accessible
[ 1.277112] ata3.00: 23437770752 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 1.277709] ata4.00: configured for UDMA/133
[ 1.278591] ata3.00: Features: Trust NCQ-sndrcv NCQ-prio
[ 1.281929] ata3.00: supports DRM functions and may not be fully accessible
[ 1.284383] ata5.00: configured for UDMA/133
[ 1.286039] ata2.00: configured for UDMA/133
[ 1.286226] ata6.00: supports DRM functions and may not be fully accessible
[ 1.286348] scsi 2:0:0:0: Direct-Access ATA WDC WD120EDBZ-11 0A85 PQ: 0 ANSI: 5
[ 1.292936] ata3.00: configured for UDMA/133
[ 1.293261] scsi 3:0:0:0: Direct-Access ATA WDC WD120EDBZ-11 0A85 PQ: 0 ANSI: 5
[ 1.294407] scsi 4:0:0:0: Direct-Access ATA KINGSTON SA400S3 0010 PQ: 0 ANSI: 5
[ 1.295004] scsi 5:0:0:0: Direct-Access ATA WDC WD120EDBZ-11 0A85 PQ: 0 ANSI: 5
[ 1.296205] ata6.00: configured for UDMA/133
[ 1.296366] scsi 6:0:0:0: Direct-Access ATA WDC WD120EDBZ-11 0A85 PQ: 0 ANSI: 5
[ 1.305252] usb 1-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[ 1.305258] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.305567] hub 1-1:1.0: USB hub found
[ 1.305733] hub 1-1:1.0: 6 ports detected
[ 1.311403] sd 2:0:0:0: [sdb] 23437770752 512-byte logical blocks: (12.0 TB/10.9 TiB)
[ 1.311403] sd 5:0:0:0: [sda] 23437770752 512-byte logical blocks: (12.0 TB/10.9 TiB)
[ 1.311406] sd 5:0:0:0: [sda] 4096-byte physical blocks
[ 1.311407] sd 2:0:0:0: [sdb] 4096-byte physical blocks
[ 1.311411] sd 6:0:0:0: [sdc] 23437770752 512-byte logical blocks: (12.0 TB/10.9 TiB)
[ 1.311414] sd 6:0:0:0: [sdc] 4096-byte physical blocks
[ 1.311414] sd 4:0:0:0: [sdd] 234441648 512-byte logical blocks: (120 GB/112 GiB)
[ 1.311420] sd 5:0:0:0: [sda] Write Protect is off
[ 1.311420] sd 2:0:0:0: [sdb] Write Protect is off
[ 1.311422] sd 5:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 1.311422] sd 2:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 1.311425] sd 3:0:0:0: [sde] 23437770752 512-byte logical blocks: (12.0 TB/10.9 TiB)
[ 1.311426] sd 4:0:0:0: [sdd] Write Protect is off
[ 1.311426] sd 6:0:0:0: [sdc] Write Protect is off
[ 1.311429] sd 6:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[ 1.311429] sd 4:0:0:0: [sdd] Mode Sense: 00 3a 00 00
[ 1.311430] sd 3:0:0:0: [sde] 4096-byte physical blocks
[ 1.311444] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.311444] sd 5:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.311444] sd 3:0:0:0: [sde] Write Protect is off
[ 1.311448] sd 3:0:0:0: [sde] Mode Sense: 00 3a 00 00
[ 1.311448] sd 4:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.311450] sd 6:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.311471] sd 3:0:0:0: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.311476] sd 4:0:0:0: [sdd] Preferred minimum I/O size 512 bytes
[ 1.311487] sd 5:0:0:0: [sda] Preferred minimum I/O size 4096 bytes
[ 1.311487] sd 2:0:0:0: [sdb] Preferred minimum I/O size 4096 bytes
[ 1.311493] sd 6:0:0:0: [sdc] Preferred minimum I/O size 4096 bytes
[ 1.311518] sd 3:0:0:0: [sde] Preferred minimum I/O size 4096 bytes
[ 1.312501] sdd: sdd1 sdd2 < sdd5 >
[ 1.312604] sd 4:0:0:0: [sdd] Attached SCSI disk
[ 1.321614] usb 2-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[ 1.321618] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.322169] hub 2-1:1.0: USB hub found
[ 1.322497] hub 2-1:1.0: 6 ports detected
[ 1.324900] e1000e 0000:03:00.0 enp3s0: renamed from eth1
[ 1.331494] sd 5:0:0:0: [sda] Attached SCSI disk
[ 1.337851] sd 6:0:0:0: [sdc] Attached SCSI disk
[ 1.341296] sd 3:0:0:0: [sde] Attached SCSI disk
[ 1.341814] sd 2:0:0:0: [sdb] Attached SCSI disk
[ 1.448832] raid6: sse2x4 gen() 16556 MB/s
[ 1.516832] raid6: sse2x2 gen() 18393 MB/s
[ 1.584833] raid6: sse2x1 gen() 14690 MB/s
[ 1.584835] raid6: using algorithm sse2x2 gen() 18393 MB/s
[ 1.652833] raid6: .... xor() 10156 MB/s, rmw enabled
[ 1.652835] raid6: using ssse3x2 recovery algorithm
[ 1.653899] xor: automatically using best checksumming function avx
[ 1.654437] async_tx: api initialized (async)
[ 1.660874] e1000e 0000:00:19.0 eno1: renamed from eth0
[ 1.664314] md/raid:md0: device sdb operational as raid disk 3
[ 1.664316] md/raid:md0: device sde operational as raid disk 0
[ 1.664317] md/raid:md0: device sdc operational as raid disk 2
[ 1.664318] md/raid:md0: device sda operational as raid disk 1
[ 1.664782] md/raid:md0: raid level 5 active with 4 out of 4 devices, algorithm 2
[ 1.678884] md0: detected capacity change from 0 to 70312519680
[ 1.836901] usb 1-1.2: new full-speed USB device number 3 using ehci-pci
[ 1.946509] usb 1-1.2: New USB device found, idVendor=0557, idProduct=2221, bcdDevice= 0.01
[ 1.946519] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.946523] usb 1-1.2: Product: Hermon USB hidmouse Device
[ 1.946525] usb 1-1.2: Manufacturer: Winbond Electronics Corp
[ 1.954950] hid: raw HID events driver (C) Jiri Kosina
[ 1.959023] usbcore: registered new interface driver usbhid
[ 1.959033] usbhid: USB HID core driver
[ 1.960751] input: Winbond Electronics Corp Hermon USB hidmouse Device as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:0557:2221.0001/input/input3
[ 1.960838] hid-generic 0003:0557:2221.0001: input,hidraw0: USB HID v1.00 Mouse [Winbond Electronics Corp Hermon USB hidmouse Device] on usb-0000:00:1a.0-1.2/input0
[ 1.961004] input: Winbond Electronics Corp Hermon USB hidmouse Device as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.1/0003:0557:2221.0002/input/input4
[ 2.144936] hid-generic 0003:0557:2221.0002: input,hidraw1: USB HID v1.00 Keyboard [Winbond Electronics Corp Hermon USB hidmouse Device] on usb-0000:00:1a.0-1.2/input1
[ 2.155375] Btrfs loaded, crc32c=crc32c-intel, zoned=yes, fsverity=yes
[ 2.207572] BTRFS: device fsid b0f4bc38-95b9-4f0c-b982-c700614c84f6 devid 1 transid 1230922 /dev/md0 scanned by btrfs (261)
[ 2.237010] PM: Image not found (code -22)
[ 2.358783] EXT4-fs (sdd1): mounted filesystem with ordered data mode. Quota mode: none.
[ 2.421771] Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
[ 2.545237] systemd[1]: Inserted module 'autofs4'
[ 2.567835] systemd[1]: systemd 252.31-1~deb12u1 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)
[ 2.567841] systemd[1]: Detected architecture x86-64.
[ 2.569343] systemd[1]: Hostname set to <server>.
[ 3.160833] random: crng init done
[ 3.311813] systemd[1]: Queued start job for default target graphical.target.
[ 3.326546] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[ 3.326953] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[ 3.327320] systemd[1]: Created slice system-postfix.slice - Slice /system/postfix.
[ 3.327688] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[ 3.327972] systemd[1]: Created slice user.slice - User and Session Slice.
[ 3.328038] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[ 3.328088] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[ 3.328262] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[ 3.328284] systemd[1]: Expecting device dev-disk-by\x2duuid-7e559b13\x2d82d1\x2d475d\x2d8780\x2dc36d95a5de36.device - /dev/disk/by-uuid/7e559b13-82d1-475d-8780-c36d95a5de36...
[ 3.328293] systemd[1]: Expecting device dev-disk-by\x2duuid-a51459e2\x2d578b\x2d452d\x2d84b1\x2deb4316dee495.device - /dev/disk/by-uuid/a51459e2-578b-452d-84b1-eb4316dee495...
[ 3.328302] systemd[1]: Expecting device dev-disk-by\x2duuid-b0f4bc38\x2d95b9\x2d4f0c\x2db982\x2dc700614c84f6.device - /dev/disk/by-uuid/b0f4bc38-95b9-4f0c-b982-c700614c84f6...
[ 3.328317] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
[ 3.328340] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[ 3.328370] systemd[1]: Reached target paths.target - Path Units.
[ 3.328402] systemd[1]: Reached target slices.target - Slice Units.
[ 3.328426] systemd[1]: Reached target time-set.target - System Time Set.
[ 3.328471] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[ 3.328543] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[ 3.328651] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[ 3.332776] systemd[1]: Listening on rpcbind.socket - RPCbind Server Activation Socket.
[ 3.332939] systemd[1]: Listening on syslog.socket - Syslog Socket.
[ 3.333050] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[ 3.333113] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[ 3.333505] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
[ 3.333601] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[ 3.333716] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[ 3.333877] systemd[1]: Listening on systemd-networkd.socket - Network Service Netlink Socket.
[ 3.334009] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[ 3.334102] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[ 3.334918] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[ 3.335743] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[ 3.336473] systemd[1]: Mounting proc-fs-nfsd.mount - NFSD configuration filesystem...
[ 3.337336] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[ 3.338320] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[ 3.338407] systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
[ 3.338501] systemd[1]: Finished blk-availability.service - Availability of block devices.
[ 3.339688] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[ 3.340530] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[ 3.341416] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[ 3.342369] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[ 3.343332] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[ 3.344144] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[ 3.345049] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[ 3.346038] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[ 3.346826] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
[ 3.352915] systemd[1]: netplan-ovs-cleanup.service - OpenVSwitch configuration for cleanup was skipped because of an unmet condition check (ConditionFileIsExecutable=/usr/bin/ovs-vsctl).
[ 3.353117] systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).
[ 3.354635] systemd[1]: Starting systemd-journald.service - Journal Service...
[ 3.362113] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[ 3.363287] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[ 3.363710] loop: module loaded
[ 3.364245] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[ 3.366038] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[ 3.366156] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[ 3.366248] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[ 3.366339] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[ 3.366560] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[ 3.366866] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 3.366989] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[ 3.367254] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[ 3.367376] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[ 3.367636] systemd[1]: modprobe@loop.service: Deactivated successfully.
[ 3.367750] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.
[ 3.368900] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[ 3.371405] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[ 3.376762] fuse: init (API version 7.38)
[ 3.378253] EXT4-fs (sdd1): re-mounted. Quota mode: none.
[ 3.378808] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[ 3.378842] device-mapper: uevent: version 1.0.3
[ 3.378910] device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
[ 3.379847] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[ 3.380000] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[ 3.380304] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 3.380421] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[ 3.380675] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[ 3.382023] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[ 3.385663] systemd[1]: Starting quota.service - Initial Check File System Quotas...
[ 3.385721] systemd[1]: systemd-firstboot.service - First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
[ 3.385833] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[ 3.386732] systemd[1]: Starting systemd-random-seed.service - Load/Save Random Seed...
[ 3.386846] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
[ 3.387509] softdog: initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout=0)
[ 3.387511] softdog: soft_reboot_cmd=<not set> soft_active_on_boot=0
[ 3.388265] systemd[1]: Starting systemd-sysusers.service - Create System Users...
[ 3.388305] systemd[1]: Using hardware watchdog 'Software Watchdog', version 0, device /dev/watchdog0
[ 3.388316] systemd[1]: Watchdog running with a hardware timeout of 5min.
[ 3.391197] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[ 3.391560] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[ 3.393216] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
[ 3.423897] systemd[1]: Finished systemd-random-seed.service - Load/Save Random Seed.
[ 3.424044] systemd[1]: first-boot-complete.target - First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
[ 3.426363] systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables.
[ 3.428503] RPC: Registered named UNIX socket transport module.
[ 3.428506] RPC: Registered udp transport module.
[ 3.428508] RPC: Registered tcp transport module.
[ 3.428509] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 3.430959] systemd[1]: Started systemd-journald.service - Journal Service.
[ 3.431973] ACPI: bus type drm_connector registered
[ 3.441913] systemd-journald[348]: Received client request to flush runtime journal.
[ 3.717547] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input5
[ 3.731088] EDAC MC0: Giving out device to module ie31200_edac controller IE31200: DEV 0000:00:00.0 (POLLED)
[ 3.731618] iTCO_vendor_support: vendor-support=0
[ 3.732862] ACPI: button: Power Button [PWRB]
[ 3.732923] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input6
[ 3.732954] ACPI: button: Power Button [PWRF]
[ 3.741953] input: PC Speaker as /devices/platform/pcspkr/input/input7
[ 3.746866] at24 0-0050: supply vcc not found, using dummy regulator
[ 3.749803] sd 2:0:0:0: Attached scsi generic sg0 type 0
[ 3.757477] IPMI message handler: version 39.2
[ 3.761761] iTCO_wdt iTCO_wdt.1.auto: Found a Cougar Point TCO device (Version=2, TCOBASE=0x0460)
[ 3.761993] iTCO_wdt iTCO_wdt.1.auto: initialized. heartbeat=30 sec (nowayout=0)
[ 3.761995] sd 3:0:0:0: Attached scsi generic sg1 type 0
[ 3.764482] ipmi device interface
[ 3.764536] sd 4:0:0:0: Attached scsi generic sg2 type 0
[ 3.764874] sd 5:0:0:0: Attached scsi generic sg3 type 0
[ 3.765204] at24 0-0050: 256 byte spd EEPROM, read-only
[ 3.765240] at24 0-0051: supply vcc not found, using dummy regulator
[ 3.765966] sd 6:0:0:0: Attached scsi generic sg4 type 0
[ 3.771115] at24 0-0051: 256 byte spd EEPROM, read-only
[ 3.772598] at24 0-0052: supply vcc not found, using dummy regulator
[ 3.775263] ipmi_si: IPMI System Interface driver
[ 3.776305] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
[ 3.776309] ipmi_platform: ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
[ 3.776313] ipmi_si: Adding SMBIOS-specified kcs state machine
[ 3.777031] at24 0-0052: 256 byte spd EEPROM, read-only
[ 3.777547] at24 0-0053: supply vcc not found, using dummy regulator
[ 3.778924] ipmi_si: Trying SMBIOS-specified kcs state machine at i/o address 0xca2, slave address 0x20, irq 0
[ 3.780630] at24 0-0053: 256 byte spd EEPROM, read-only
[ 3.913590] Adding 998396k swap on /dev/sdd5. Priority:-2 extents:1 across:998396k SSFS
[ 3.921776] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
[ 3.921779] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[ 3.921780] RAPL PMU: hw unit of domain package 2^-16 Joules
[ 3.929015] mgag200 0000:04:03.0: vgaarb: deactivate vga console
[ 3.929835] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 3.930193] cfg80211: Loaded X.509 cert 'benh@debian.org: 577e021cb980e0e820821ba7b54b4961b8b4fadf'
[ 3.930402] Console: switching to colour dummy device 80x25
[ 3.930506] cfg80211: Loaded X.509 cert 'romain.perier@gmail.com: 3abbc6ec146e09d1b6016ab9d6cf71dd233f0328'
[ 3.930828] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 3.931145] cfg80211: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[ 3.933384] platform regulatory.0: firmware: direct-loading firmware regulatory.db
[ 3.934290] platform regulatory.0: firmware: direct-loading firmware regulatory.db.p7s
[ 3.936720] [drm] Initialized mgag200 1.0.0 20110418 for 0000:04:03.0 on minor 0
[ 3.938415] fbcon: mgag200drmfb (fb0) is primary device
[ 3.944566] cryptd: max_cpu_qlen set to 1000
[ 3.968995] ipmi_si dmi-ipmi-si.0: The BMC does not support clearing the recv irq bit, compensating, but the BMC needs to be fixed.
[ 4.039158] ipmi_si dmi-ipmi-si.0: IPMI message handler: Found new BMC (man_id: 0x002a7c, prod_id: 0x0624, dev_id: 0x20)
[ 4.077346] ipmi_si dmi-ipmi-si.0: IPMI kcs interface initialized
[ 4.315029] Console: switching to colour frame buffer device 128x48
[ 4.389248] mgag200 0000:04:03.0: [drm] fb0: mgag200drmfb frame buffer device
[ 4.452201] BTRFS info (device md0): first mount of filesystem b0f4bc38-95b9-4f0c-b982-c700614c84f6
[ 4.452213] BTRFS info (device md0): using crc32c (crc32c-intel) checksum algorithm
[ 4.452219] BTRFS info (device md0): disk space caching is enabled
[ 4.525867] intel_rapl_common: Found RAPL domain package
[ 4.525870] intel_rapl_common: Found RAPL domain core
[ 4.525874] intel_rapl_common: RAPL package-0 domain package locked by BIOS
[ 5.922471] BTRFS info (device md0): bdev /dev/md0 errs: wr 0, rd 0, flush 0, corrupt 0, gen 26
[ 7.206824] e1000e 0000:00:19.0 eno1: NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
[ 7.206889] IPv6: ADDRCONF(NETDEV_CHANGE): eno1: link becomes ready
[ 14.580095] Initializing XFRM netlink socket
[ 14.624506] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[ 15.414042] br-a6957b9da503: port 1(veth3824a90) entered blocking state
[ 15.414047] br-a6957b9da503: port 1(veth3824a90) entered disabled state
[ 15.414089] device veth3824a90 entered promiscuous mode
[ 15.414211] br-a6957b9da503: port 1(veth3824a90) entered blocking state
[ 15.414215] br-a6957b9da503: port 1(veth3824a90) entered forwarding state
[ 15.414243] IPv6: ADDRCONF(NETDEV_CHANGE): br-a6957b9da503: link becomes ready
[ 15.414304] br-a6957b9da503: port 1(veth3824a90) entered disabled state
[ 15.472854] br-a080e023d935: port 1(veth302575a) entered blocking state
[ 15.472860] br-a080e023d935: port 1(veth302575a) entered disabled state
[ 15.472922] device veth302575a entered promiscuous mode
[ 15.473061] br-a080e023d935: port 1(veth302575a) entered blocking state
[ 15.473063] br-a080e023d935: port 1(veth302575a) entered forwarding state
[ 15.473079] IPv6: ADDRCONF(NETDEV_CHANGE): br-a080e023d935: link becomes ready
[ 15.473159] br-a080e023d935: port 1(veth302575a) entered disabled state
[ 15.776966] eth0: renamed from vetha3ec587
[ 15.809329] IPv6: ADDRCONF(NETDEV_CHANGE): veth3824a90: link becomes ready
[ 15.809394] br-a6957b9da503: port 1(veth3824a90) entered blocking state
[ 15.809405] br-a6957b9da503: port 1(veth3824a90) entered forwarding state
[ 15.860976] eth1: renamed from veth20ba5bc
[ 15.909156] IPv6: ADDRCONF(NETDEV_CHANGE): veth302575a: link becomes ready
[ 15.909196] br-a080e023d935: port 1(veth302575a) entered blocking state
[ 15.909200] br-a080e023d935: port 1(veth302575a) entered forwarding state
[ 114.596766] /dev/disk/by-uuid/7e559b13-82d1-475d-8780-c36d95a5de36: Can't open blockdev
[ 124.071525] BTRFS error (device md0): open_ctree failed
[ 124.094721] BTRFS info (device md0): first mount of filesystem b0f4bc38-95b9-4f0c-b982-c700614c84f6
[ 124.094738] BTRFS info (device md0): using crc32c (crc32c-intel) checksum algorithm
[ 124.094749] BTRFS info (device md0): disk space caching is enabled
[ 125.436112] BTRFS info (device md0): bdev /dev/md0 errs: wr 0, rd 0, flush 0, corrupt 0, gen 26
[ 184.268401] /dev/disk/by-uuid/7e559b13-82d1-475d-8780-c36d95a5de36: Can't open blockdev
[ 248.406110] br-a6957b9da503: port 1(veth3824a90) entered disabled state
[ 248.406678] vetha3ec587: renamed from eth0
[ 248.504090] br-a6957b9da503: port 1(veth3824a90) entered disabled state
[ 248.504846] device veth3824a90 left promiscuous mode
[ 248.504852] br-a6957b9da503: port 1(veth3824a90) entered disabled state
[ 248.801433] br-a080e023d935: port 1(veth302575a) entered disabled state
[ 248.801868] veth20ba5bc: renamed from eth1
[ 248.866223] br-a080e023d935: port 1(veth302575a) entered disabled state
[ 248.866806] device veth302575a left promiscuous mode
[ 248.866813] br-a080e023d935: port 1(veth302575a) entered disabled state
[ 249.118486] br-a080e023d935: port 1(vethd3b1d35) entered blocking state
[ 249.118498] br-a080e023d935: port 1(vethd3b1d35) entered disabled state
[ 249.118624] device vethd3b1d35 entered promiscuous mode
[ 249.118895] br-a080e023d935: port 1(vethd3b1d35) entered blocking state
[ 249.118903] br-a080e023d935: port 1(vethd3b1d35) entered forwarding state
[ 249.188423] br-a6957b9da503: port 1(veth8c66a36) entered blocking state
[ 249.188432] br-a6957b9da503: port 1(veth8c66a36) entered disabled state
[ 249.188530] device veth8c66a36 entered promiscuous mode
[ 249.188705] br-a6957b9da503: port 1(veth8c66a36) entered blocking state
[ 249.188711] br-a6957b9da503: port 1(veth8c66a36) entered forwarding state
[ 249.435271] br-a080e023d935: port 1(vethd3b1d35) entered disabled state
[ 249.435380] br-a6957b9da503: port 1(veth8c66a36) entered disabled state
[ 249.759720] eth0: renamed from vethfe238be
[ 249.791886] IPv6: ADDRCONF(NETDEV_CHANGE): veth8c66a36: link becomes ready
[ 249.791939] br-a6957b9da503: port 1(veth8c66a36) entered blocking state
[ 249.791945] br-a6957b9da503: port 1(veth8c66a36) entered forwarding state
[ 249.839580] eth1: renamed from veth6851a27
[ 249.859837] IPv6: ADDRCONF(NETDEV_CHANGE): vethd3b1d35: link becomes ready
[ 249.859908] br-a080e023d935: port 1(vethd3b1d35) entered blocking state
[ 249.859916] br-a080e023d935: port 1(vethd3b1d35) entered forwarding state
[ 256.045108] BTRFS info (device md0): scrub: started on devid 1
[ 286.132746] BTRFS warning (device md0): block group 18294510714880 has wrong amount of free space
[ 286.132757] BTRFS warning (device md0): failed to load free space cache for block group 18294510714880, rebuilding it now
[ 1175.757872] BTRFS warning (device md0): tree block 24388894654464 mirror 1 has bad generation, has 1217829 want 1217832
[ 1175.757975] BTRFS warning (device md0): tree block 24388894687232 mirror 1 has bad generation, has 1217829 want 1217832
[ 1175.765542] BTRFS warning (device md0): tree block 24388894687232 mirror 0 has bad generation, has 1217829 want 1217832
[ 1175.765564] BTRFS warning (device md0): checksum/header error at logical 24388894687232 on dev /dev/md0, physical 470028877824: metadata leaf (level 0) in tree 5
[ 1175.765571] BTRFS warning (device md0): checksum/header error at logical 24388894687232 on dev /dev/md0, physical 470028877824: metadata leaf (level 0) in tree 5
[ 1175.765577] BTRFS error (device md0): bdev /dev/md0 errs: wr 0, rd 0, flush 0, corrupt 0, gen 27
[ 1175.766038] BTRFS warning (device md0): tree block 24388894654464 mirror 0 has bad generation, has 1217829 want 1217832
[ 1175.766053] BTRFS warning (device md0): checksum/header error at logical 24388894654464 on dev /dev/md0, physical 470028845056: metadata leaf (level 0) in tree 5
[ 1175.766059] BTRFS warning (device md0): checksum/header error at logical 24388894654464 on dev /dev/md0, physical 470028845056: metadata leaf (level 0) in tree 5
[ 1175.766065] BTRFS error (device md0): bdev /dev/md0 errs: wr 0, rd 0, flush 0, corrupt 0, gen 28
[ 1175.796180] BTRFS warning (device md0): tree block 24388894687232 mirror 1 has bad generation, has 1217829 want 1217832
[ 1175.796192] BTRFS error (device md0): unable to fixup (regular) error at logical 24388894687232 on dev /dev/md0
[ 1175.796829] BTRFS warning (device md0): tree block 24388894654464 mirror 1 has bad generation, has 1217829 want 1217832
[ 1175.796839] BTRFS error (device md0): unable to fixup (regular) error at logical 24388894654464 on dev /dev/md0
[ 1175.876057] BTRFS warning (device md0): tree block 24388929912832 mirror 1 has bad generation, has 1217702 want 1217832
[ 1175.877542] BTRFS warning (device md0): tree block 24388929912832 mirror 0 has bad generation, has 1217702 want 1217832
[ 1175.877565] BTRFS warning (device md0): checksum/header error at logical 24388929912832 on dev /dev/md0, physical 470064103424: metadata leaf (level 0) in tree 5
[ 1175.877571] BTRFS warning (device md0): checksum/header error at logical 24388929912832 on dev /dev/md0, physical 470064103424: metadata leaf (level 0) in tree 5
[ 1175.877577] BTRFS error (device md0): bdev /dev/md0 errs: wr 0, rd 0, flush 0, corrupt 0, gen 29
[ 1175.884802] BTRFS warning (device md0): tree block 24388929912832 mirror 1 has bad generation, has 1217702 want 1217832
[ 1175.884813] BTRFS error (device md0): unable to fixup (regular) error at logical 24388929912832 on dev /dev/md0
[ 1175.892429] BTRFS warning (device md0): tree block 24388936564736 mirror 1 has bad generation, has 1217717 want 1217832
[ 1175.901588] BTRFS warning (device md0): checksum/header error at logical 24388936564736 on dev /dev/md0, physical 470070755328: metadata leaf (level 0) in tree 5
[ 1175.901596] BTRFS warning (device md0): checksum/header error at logical 24388936564736 on dev /dev/md0, physical 470070755328: metadata leaf (level 0) in tree 5
[ 1175.901602] BTRFS error (device md0): bdev /dev/md0 errs: wr 0, rd 0, flush 0, corrupt 0, gen 30
[ 1175.904432] BTRFS warning (device md0): checksum/header error at logical 24388940627968 on dev /dev/md0, physical 470074818560: metadata leaf (level 0) in tree 5
[ 1175.904442] BTRFS warning (device md0): checksum/header error at logical 24388940627968 on dev /dev/md0, physical 470074818560: metadata leaf (level 0) in tree 5
[ 1175.904450] BTRFS warning (device md0): checksum/header error at logical 24388938678272 on dev /dev/md0, physical 470072868864: metadata leaf (level 0) in tree 5
[ 1175.904460] BTRFS error (device md0): bdev /dev/md0 errs: wr 0, rd 0, flush 0, corrupt 0, gen 31
[ 1175.904461] BTRFS warning (device md0): checksum/header error at logical 24388938678272 on dev /dev/md0, physical 470072868864: metadata leaf (level 0) in tree 5
[ 1175.904461] BTRFS warning (device md0): checksum/header error at logical 24388940660736 on dev /dev/md0, physical 470074851328: metadata leaf (level 0) in tree 5
[ 1175.904468] BTRFS error (device md0): bdev /dev/md0 errs: wr 0, rd 0, flush 0, corrupt 0, gen 32
[ 1175.904528] BTRFS warning (device md0): checksum/header error at logical 24388940660736 on dev /dev/md0, physical 470074851328: metadata leaf (level 0) in tree 5
[ 1175.904536] BTRFS error (device md0): bdev /dev/md0 errs: wr 0, rd 0, flush 0, corrupt 0, gen 33
[ 1175.904808] BTRFS warning (device md0): checksum/header error at logical 24388940693504 on dev /dev/md0, physical 470074884096: metadata leaf (level 0) in tree 5
[ 1175.904816] BTRFS warning (device md0): checksum/header error at logical 24388940693504 on dev /dev/md0, physical 470074884096: metadata leaf (level 0) in tree 5
[ 1175.904820] BTRFS error (device md0): bdev /dev/md0 errs: wr 0, rd 0, flush 0, corrupt 0, gen 34
[ 1175.925457] BTRFS error (device md0): unable to fixup (regular) error at logical 24388940693504 on dev /dev/md0
[ 1175.926260] BTRFS error (device md0): unable to fixup (regular) error at logical 24388936564736 on dev /dev/md0
[ 1175.927157] BTRFS error (device md0): unable to fixup (regular) error at logical 24388940627968 on dev /dev/md0
[ 1175.927173] BTRFS error (device md0): unable to fixup (regular) error at logical 24388938678272 on dev /dev/md0
[ 1175.927173] BTRFS error (device md0): unable to fixup (regular) error at logical 24388940660736 on dev /dev/md0
[ 1175.964022] BTRFS warning (device md0): checksum/header error at logical 24388944986112 on dev /dev/md0, physical 470079176704: metadata leaf (level 0) in tree 5
[ 1175.964035] BTRFS warning (device md0): checksum/header error at logical 24388944986112 on dev /dev/md0, physical 470079176704: metadata leaf (level 0) in tree 5
[ 1175.964041] BTRFS error (device md0): bdev /dev/md0 errs: wr 0, rd 0, flush 0, corrupt 0, gen 35
[ 1175.966251] BTRFS warning (device md0): checksum/header error at logical 24388944871424 on dev /dev/md0, physical 470079062016: metadata leaf (level 0) in tree 5
[ 1175.966266] BTRFS warning (device md0): checksum/header error at logical 24388944871424 on dev /dev/md0, physical 470079062016: metadata leaf (level 0) in tree 5
[ 1175.966277] BTRFS error (device md0): bdev /dev/md0 errs: wr 0, rd 0, flush 0, corrupt 0, gen 36
[ 1175.968132] BTRFS error (device md0): unable to fixup (regular) error at logical 24388944986112 on dev /dev/md0
[ 1175.969868] BTRFS error (device md0): unable to fixup (regular) error at logical 24388944953344 on dev /dev/md0
[ 1446.334899] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1446.341765] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1446.342910] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1446.350249] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1448.659897] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1448.667083] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1449.071328] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1449.080639] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1449.639841] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1449.641664] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1450.225023] BTRFS error (device md0): error loading props for ino 70116905 (root 5): -5
[ 1451.403065] verify_parent_transid: 22 callbacks suppressed
[ 1451.403072] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1451.405161] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1452.204669] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1452.206600] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1452.956009] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1452.959803] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1452.962414] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1452.964781] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1452.968255] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1452.970870] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1456.968050] verify_parent_transid: 16 callbacks suppressed
[ 1456.968058] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1456.975173] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1500.908303] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1500.915261] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1500.918465] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1500.949609] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1509.024765] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1509.056862] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1509.191837] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1509.194629] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1509.593343] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1509.599918] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1510.419512] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1510.432684] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1704.844388] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1704.851476] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1704.877945] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1704.885961] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1704.894390] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1704.910855] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1704.919365] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1704.927364] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1706.969430] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1707.009984] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1727.658455] BTRFS error (device md0): parent transid verify failed on logical 27849410068480 mirror 1 wanted 1230326 found 1228614
[ 1727.724161] BTRFS error (device md0): parent transid verify failed on logical 27849410068480 mirror 2 wanted 1230326 found 1228614
[ 1728.206918] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1728.214852] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1733.615096] BTRFS error (device md0): parent transid verify failed on logical 24388894654464 mirror 1 wanted 1217832 found 1217829
[ 1733.622538] BTRFS error (device md0): parent transid verify failed on logical 24388894654464 mirror 2 wanted 1217832 found 1217829
[ 1733.760607] BTRFS error (device md0): parent transid verify failed on logical 24388936564736 mirror 1 wanted 1217832 found 1217717
[ 1733.771094] BTRFS error (device md0): parent transid verify failed on logical 24388936564736 mirror 2 wanted 1217832 found 1217717
[ 1733.774535] BTRFS error (device md0): parent transid verify failed on logical 24388936564736 mirror 1 wanted 1217832 found 1217717
[ 1733.813318] BTRFS error (device md0): parent transid verify failed on logical 24388936564736 mirror 2 wanted 1217832 found 1217717
[ 1735.964345] BTRFS error (device md0): parent transid verify failed on logical 27849399566336 mirror 1 wanted 1230326 found 1228601
[ 1735.969615] BTRFS error (device md0): parent transid verify failed on logical 27849399566336 mirror 2 wanted 1230326 found 1228601
[ 1739.418249] BTRFS error (device md0): parent transid verify failed on logical 24388942708736 mirror 1 wanted 1217832 found 1217717
[ 1739.478857] BTRFS error (device md0): parent transid verify failed on logical 24388942708736 mirror 2 wanted 1217832 found 1217717
[ 1758.924273] BTRFS error (device md0): parent transid verify failed on logical 27849410068480 mirror 1 wanted 1230326 found 1228614
[ 1758.956341] BTRFS error (device md0): parent transid verify failed on logical 27849410068480 mirror 2 wanted 1230326 found 1228614
[ 1758.959798] BTRFS error (device md0): parent transid verify failed on logical 27849410068480 mirror 1 wanted 1230326 found 1228614
[ 1758.963031] BTRFS error (device md0): parent transid verify failed on logical 27849410068480 mirror 2 wanted 1230326 found 1228614
[ 1762.599571] BTRFS error (device md0): parent transid verify failed on logical 27849410150400 mirror 1 wanted 1230326 found 1228612
[ 1762.606595] BTRFS error (device md0): parent transid verify failed on logical 27849410150400 mirror 2 wanted 1230326 found 1228612
[ 1762.665039] BTRFS error (device md0): parent transid verify failed on logical 27849410150400 mirror 1 wanted 1230326 found 1228612
[ 1762.668405] BTRFS error (device md0): parent transid verify failed on logical 27849410150400 mirror 2 wanted 1230326 found 1228612
[ 1770.134247] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1770.141336] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1770.144538] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1770.184848] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1770.203085] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1770.211542] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1770.219778] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1770.227461] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1777.105650] BTRFS error (device md0): parent transid verify failed on logical 24388894654464 mirror 1 wanted 1217832 found 1217829
[ 1777.112776] BTRFS error (device md0): parent transid verify failed on logical 24388894654464 mirror 2 wanted 1217832 found 1217829
[ 1780.663972] BTRFS error (device md0): parent transid verify failed on logical 24388894654464 mirror 1 wanted 1217832 found 1217829
[ 1780.671085] BTRFS error (device md0): parent transid verify failed on logical 24388894654464 mirror 2 wanted 1217832 found 1217829
[ 1781.471687] BTRFS error (device md0): parent transid verify failed on logical 24388944871424 mirror 1 wanted 1217832 found 1217717
[ 1781.480090] BTRFS error (device md0): parent transid verify failed on logical 24388944871424 mirror 2 wanted 1217832 found 1217717
[ 1781.934962] BTRFS error (device md0): parent transid verify failed on logical 24388944871424 mirror 1 wanted 1217832 found 1217717
[ 1781.937770] BTRFS error (device md0): parent transid verify failed on logical 24388944871424 mirror 2 wanted 1217832 found 1217717
[ 1783.031787] BTRFS error (device md0): parent transid verify failed on logical 27849410052096 mirror 1 wanted 1230326 found 1228612
[ 1783.097175] BTRFS error (device md0): parent transid verify failed on logical 27849410052096 mirror 2 wanted 1230326 found 1228612
[ 1783.175234] BTRFS error (device md0): parent transid verify failed on logical 27849410052096 mirror 1 wanted 1230326 found 1228612
[ 1783.183850] BTRFS error (device md0): parent transid verify failed on logical 27849410052096 mirror 2 wanted 1230326 found 1228612
[ 1783.192047] BTRFS error (device md0): parent transid verify failed on logical 27849410052096 mirror 1 wanted 1230326 found 1228612
[ 1783.200034] BTRFS error (device md0): parent transid verify failed on logical 27849410052096 mirror 2 wanted 1230326 found 1228612
[ 1796.215237] BTRFS error (device md0): parent transid verify failed on logical 27849410150400 mirror 1 wanted 1230326 found 1228612
[ 1796.222535] BTRFS error (device md0): parent transid verify failed on logical 27849410150400 mirror 2 wanted 1230326 found 1228612
[ 1802.006834] BTRFS error (device md0): parent transid verify failed on logical 27849410150400 mirror 1 wanted 1230326 found 1228612
[ 1802.014208] BTRFS error (device md0): parent transid verify failed on logical 27849410150400 mirror 2 wanted 1230326 found 1228612
[ 1810.899781] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1810.932135] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1811.181110] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1811.188007] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1811.191316] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1811.198280] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1811.206798] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1811.215211] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1818.416222] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1818.423172] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1818.426496] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1818.459475] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1823.357752] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1823.389769] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1823.393997] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1823.403587] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1823.620882] BTRFS error (device md0): parent transid verify failed on logical 24388944986112 mirror 1 wanted 1217832 found 1217717
[ 1823.637171] BTRFS error (device md0): parent transid verify failed on logical 24388944986112 mirror 2 wanted 1217832 found 1217717
[ 1823.663047] BTRFS error (device md0): parent transid verify failed on logical 24388894687232 mirror 1 wanted 1217832 found 1217829
[ 1823.678250] BTRFS error (device md0): parent transid verify failed on logical 24388894687232 mirror 2 wanted 1217832 found 1217829
[ 1824.212569] BTRFS error (device md0): parent transid verify failed on logical 24388938678272 mirror 1 wanted 1217832 found 1217717
[ 1824.228959] BTRFS error (device md0): parent transid verify failed on logical 24388938678272 mirror 2 wanted 1217832 found 1217717
[ 1824.839167] BTRFS error (device md0): parent transid verify failed on logical 24388940693504 mirror 1 wanted 1217832 found 1217717
[ 1824.865883] BTRFS error (device md0): parent transid verify failed on logical 24388940693504 mirror 2 wanted 1217832 found 1217717
[ 1825.045584] BTRFS error (device md0): parent transid verify failed on logical 24388944871424 mirror 1 wanted 1217832 found 1217717
[ 1825.053623] BTRFS error (device md0): parent transid verify failed on logical 24388944871424 mirror 2 wanted 1217832 found 1217717
[ 1830.289977] verify_parent_transid: 2 callbacks suppressed
[ 1830.289985] BTRFS error (device md0): parent transid verify failed on logical 24388929912832 mirror 1 wanted 1217832 found 1217702
[ 1830.516563] BTRFS error (device md0): parent transid verify failed on logical 24388929912832 mirror 2 wanted 1217832 found 1217702
[ 1833.029152] BTRFS error (device md0): parent transid verify failed on logical 24388894654464 mirror 1 wanted 1217832 found 1217829
[ 1833.045298] BTRFS error (device md0): parent transid verify failed on logical 24388894654464 mirror 2 wanted 1217832 found 1217829
[ 1833.069883] BTRFS error (device md0): parent transid verify failed on logical 24388894654464 mirror 1 wanted 1217832 found 1217829
[ 1833.090996] BTRFS error (device md0): parent transid verify failed on logical 24388894654464 mirror 2 wanted 1217832 found 1217829
[ 1833.767193] BTRFS error (device md0): parent transid verify failed on logical 3347871547392 mirror 1 wanted 1230326 found 1228704
[ 1833.817548] BTRFS error (device md0): parent transid verify failed on logical 3347871547392 mirror 2 wanted 1230326 found 1228704
[ 1834.974395] BTRFS error (device md0): parent transid verify failed on logical 3347875971072 mirror 1 wanted 1230326 found 1229278
[ 1835.000088] BTRFS error (device md0): parent transid verify failed on logical 3347875971072 mirror 2 wanted 1230326 found 1229278
[ 1837.157776] BTRFS error (device md0): parent transid verify failed on logical 24388936564736 mirror 1 wanted 1217832 found 1217717
[ 1837.176869] BTRFS error (device md0): parent transid verify failed on logical 24388936564736 mirror 2 wanted 1217832 found 1217717
[ 1838.896857] BTRFS error (device md0): parent transid verify failed on logical 24388940627968 mirror 1 wanted 1217832 found 1217717
[ 1838.915309] BTRFS error (device md0): parent transid verify failed on logical 24388940627968 mirror 2 wanted 1217832 found 1217717
[ 1838.985428] BTRFS error (device md0): parent transid verify failed on logical 24388942708736 mirror 1 wanted 1217832 found 1217717
[ 1838.992083] BTRFS error (device md0): parent transid verify failed on logical 24388942708736 mirror 2 wanted 1217832 found 1217717
[ 1849.828533] BTRFS error (device md0): parent transid verify failed on logical 24388938678272 mirror 1 wanted 1217832 found 1217717
[ 1849.837159] BTRFS error (device md0): parent transid verify failed on logical 24388938678272 mirror 2 wanted 1217832 found 1217717
[ 1853.365272] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1853.413945] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1853.417496] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1853.420642] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1853.423715] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1853.426801] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1860.272913] BTRFS error (device md0): parent transid verify failed on logical 27849401729024 mirror 1 wanted 1230326 found 1228604
[ 1860.280264] BTRFS error (device md0): parent transid verify failed on logical 27849401729024 mirror 2 wanted 1230326 found 1228604
[ 1864.081677] BTRFS error (device md0): parent transid verify failed on logical 27849414459392 mirror 1 wanted 1230326 found 1228617
[ 1864.113602] BTRFS error (device md0): parent transid verify failed on logical 27849414459392 mirror 2 wanted 1230326 found 1228617
[ 1864.117053] BTRFS error (device md0): parent transid verify failed on logical 27849414459392 mirror 1 wanted 1230326 found 1228617
[ 1864.120043] BTRFS error (device md0): parent transid verify failed on logical 27849414459392 mirror 2 wanted 1230326 found 1228617
[ 1864.122969] BTRFS error (device md0): parent transid verify failed on logical 27849414459392 mirror 1 wanted 1230326 found 1228617
[ 1864.125808] BTRFS error (device md0): parent transid verify failed on logical 27849414459392 mirror 2 wanted 1230326 found 1228617
[ 1876.737828] BTRFS error (device md0): parent transid verify failed on logical 27849399943168 mirror 1 wanted 1230326 found 1228603
[ 1876.750947] BTRFS error (device md0): parent transid verify failed on logical 27849399943168 mirror 2 wanted 1230326 found 1228603
[ 1876.754589] BTRFS error (device md0): parent transid verify failed on logical 27849399943168 mirror 1 wanted 1230326 found 1228603
[ 1876.811476] BTRFS error (device md0): parent transid verify failed on logical 27849399943168 mirror 2 wanted 1230326 found 1228603
[ 1876.814960] BTRFS error (device md0): parent transid verify failed on logical 27849399943168 mirror 1 wanted 1230326 found 1228603
[ 1876.818043] BTRFS error (device md0): parent transid verify failed on logical 27849399943168 mirror 2 wanted 1230326 found 1228603
[ 1876.820821] BTRFS error (device md0): parent transid verify failed on logical 27849399943168 mirror 1 wanted 1230326 found 1228603
[ 1876.823531] BTRFS error (device md0): parent transid verify failed on logical 27849399943168 mirror 2 wanted 1230326 found 1228603
[ 1877.322191] BTRFS error (device md0): parent transid verify failed on logical 27849399943168 mirror 1 wanted 1230326 found 1228603
[ 1877.327306] BTRFS error (device md0): parent transid verify failed on logical 27849399943168 mirror 2 wanted 1230326 found 1228603
[ 1890.427058] BTRFS error (device md0): parent transid verify failed on logical 27849395601408 mirror 1 wanted 1230326 found 1228598
[ 1890.501724] BTRFS error (device md0): parent transid verify failed on logical 27849395601408 mirror 2 wanted 1230326 found 1228598
[ 1890.575741] BTRFS error (device md0): parent transid verify failed on logical 27849395601408 mirror 1 wanted 1230326 found 1228598
[ 1890.578542] BTRFS error (device md0): parent transid verify failed on logical 27849395601408 mirror 2 wanted 1230326 found 1228598
[ 1890.582026] BTRFS error (device md0): parent transid verify failed on logical 27849395601408 mirror 1 wanted 1230326 found 1228598
[ 1890.600755] BTRFS error (device md0): parent transid verify failed on logical 27849395601408 mirror 2 wanted 1230326 found 1228598
[ 1890.609508] BTRFS error (device md0): parent transid verify failed on logical 27849395601408 mirror 1 wanted 1230326 found 1228598
[ 1890.617473] BTRFS error (device md0): parent transid verify failed on logical 27849395601408 mirror 2 wanted 1230326 found 1228598
[ 1890.625797] BTRFS error (device md0): parent transid verify failed on logical 27849395601408 mirror 1 wanted 1230326 found 1228598
[ 1890.642510] BTRFS error (device md0): parent transid verify failed on logical 27849395601408 mirror 2 wanted 1230326 found 1228598
[ 1896.109905] verify_parent_transid: 46 callbacks suppressed
[ 1896.109913] BTRFS error (device md0): parent transid verify failed on logical 27849395535872 mirror 1 wanted 1230326 found 1228597
[ 1896.184645] BTRFS error (device md0): parent transid verify failed on logical 27849395535872 mirror 2 wanted 1230326 found 1228597
[ 1896.358581] BTRFS error (device md0): parent transid verify failed on logical 27849395306496 mirror 1 wanted 1230326 found 1228597
[ 1896.366991] BTRFS error (device md0): parent transid verify failed on logical 27849395306496 mirror 2 wanted 1230326 found 1228597
[ 1896.745638] BTRFS error (device md0): parent transid verify failed on logical 27849395306496 mirror 1 wanted 1230326 found 1228597
[ 1896.748330] BTRFS error (device md0): parent transid verify failed on logical 27849395306496 mirror 2 wanted 1230326 found 1228597
[ 1896.751793] BTRFS error (device md0): parent transid verify failed on logical 27849395306496 mirror 1 wanted 1230326 found 1228597
[ 1896.755469] BTRFS error (device md0): parent transid verify failed on logical 27849395306496 mirror 2 wanted 1230326 found 1228597
[ 1896.758780] BTRFS error (device md0): parent transid verify failed on logical 27849395306496 mirror 1 wanted 1230326 found 1228597
[ 1896.762008] BTRFS error (device md0): parent transid verify failed on logical 27849395306496 mirror 2 wanted 1230326 found 1228597
[ 1900.810939] BTRFS error (device md0): error loading props for ino 70974377 (root 5): -5
[ 1902.779440] verify_parent_transid: 60 callbacks suppressed
[ 1902.779448] BTRFS error (device md0): parent transid verify failed on logical 27849401630720 mirror 1 wanted 1230326 found 1228602
[ 1902.803618] BTRFS error (device md0): parent transid verify failed on logical 27849401630720 mirror 2 wanted 1230326 found 1228602
[ 1903.104963] BTRFS error (device md0): parent transid verify failed on logical 27849401729024 mirror 1 wanted 1230326 found 1228604
[ 1903.172299] BTRFS error (device md0): parent transid verify failed on logical 27849401729024 mirror 2 wanted 1230326 found 1228604
[ 1904.940119] BTRFS error (device md0): parent transid verify failed on logical 27849406087168 mirror 1 wanted 1230326 found 1228609
[ 1904.985993] BTRFS error (device md0): parent transid verify failed on logical 27849406087168 mirror 2 wanted 1230326 found 1228609
[ 1908.751828] BTRFS error (device md0): parent transid verify failed on logical 27849408266240 mirror 1 wanted 1230326 found 1228610
[ 1908.759262] BTRFS error (device md0): parent transid verify failed on logical 27849408266240 mirror 2 wanted 1230326 found 1228610
[ 1908.767839] BTRFS error (device md0): parent transid verify failed on logical 27849408086016 mirror 1 wanted 1230326 found 1228612
[ 1908.774845] BTRFS error (device md0): parent transid verify failed on logical 27849408086016 mirror 2 wanted 1230326 found 1228612
[ 1908.780475] BTRFS error (device md0): parent transid verify failed on logical 27849408249856 mirror 1 wanted 1230326 found 1228610
[ 1908.783418] BTRFS error (device md0): parent transid verify failed on logical 27849408249856 mirror 2 wanted 1230326 found 1228610
[ 1909.061300] BTRFS error (device md0): parent transid verify failed on logical 27849408249856 mirror 1 wanted 1230326 found 1228610
[ 1909.064139] BTRFS error (device md0): parent transid verify failed on logical 27849408249856 mirror 2 wanted 1230326 found 1228610
[ 1909.133612] BTRFS error (device md0): parent transid verify failed on logical 27849408004096 mirror 1 wanted 1230326 found 1228612
[ 1909.149355] BTRFS error (device md0): parent transid verify failed on logical 27849408004096 mirror 2 wanted 1230326 found 1228612
[ 1910.360369] BTRFS error (device md0): error loading props for ino 70546793 (root 5): -5
[ 1916.700983] verify_parent_transid: 48 callbacks suppressed
[ 1916.700990] BTRFS error (device md0): parent transid verify failed on logical 27849395535872 mirror 1 wanted 1230326 found 1228597
[ 1916.709496] BTRFS error (device md0): parent transid verify failed on logical 27849395535872 mirror 2 wanted 1230326 found 1228597
[ 1916.712583] BTRFS error (device md0): parent transid verify failed on logical 27849395535872 mirror 1 wanted 1230326 found 1228597
[ 1916.717697] BTRFS error (device md0): parent transid verify failed on logical 27849395535872 mirror 2 wanted 1230326 found 1228597
[ 1916.720967] BTRFS error (device md0): parent transid verify failed on logical 27849395535872 mirror 1 wanted 1230326 found 1228597
[ 1916.724210] BTRFS error (device md0): parent transid verify failed on logical 27849395535872 mirror 2 wanted 1230326 found 1228597
[ 1930.019668] BTRFS error (device md0): parent transid verify failed on logical 27849399943168 mirror 1 wanted 1230326 found 1228603
[ 1930.033259] BTRFS error (device md0): parent transid verify failed on logical 27849399943168 mirror 2 wanted 1230326 found 1228603
[ 1930.076790] BTRFS error (device md0): parent transid verify failed on logical 27849399943168 mirror 1 wanted 1230326 found 1228603
[ 1930.093718] BTRFS error (device md0): parent transid verify failed on logical 27849399943168 mirror 2 wanted 1230326 found 1228603
[ 1930.101807] BTRFS error (device md0): parent transid verify failed on logical 27849399943168 mirror 1 wanted 1230326 found 1228603
[ 1930.109514] BTRFS error (device md0): parent transid verify failed on logical 27849399943168 mirror 2 wanted 1230326 found 1228603
[ 1930.117768] BTRFS error (device md0): parent transid verify failed on logical 27849399943168 mirror 1 wanted 1230326 found 1228603
[ 1930.134088] BTRFS error (device md0): parent transid verify failed on logical 27849399943168 mirror 2 wanted 1230326 found 1228603
[ 1930.141974] BTRFS error (device md0): parent transid verify failed on logical 27849399943168 mirror 1 wanted 1230326 found 1228603
[ 1930.150259] BTRFS error (device md0): parent transid verify failed on logical 27849399943168 mirror 2 wanted 1230326 found 1228603
[ 1947.575093] verify_parent_transid: 36 callbacks suppressed
[ 1947.575100] BTRFS error (device md0): parent transid verify failed on logical 27849399566336 mirror 1 wanted 1230326 found 1228601
[ 1947.580153] BTRFS error (device md0): parent transid verify failed on logical 27849399566336 mirror 2 wanted 1230326 found 1228601
[ 1947.583332] BTRFS error (device md0): parent transid verify failed on logical 27849399566336 mirror 1 wanted 1230326 found 1228601
[ 1947.597009] BTRFS error (device md0): parent transid verify failed on logical 27849399566336 mirror 2 wanted 1230326 found 1228601
[ 1956.111769] BTRFS error (device md0): parent transid verify failed on logical 3347869384704 mirror 1 wanted 1230326 found 1228704
[ 1956.120366] BTRFS error (device md0): parent transid verify failed on logical 3347869384704 mirror 2 wanted 1230326 found 1228704
[ 1956.520679] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1956.602607] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1957.798409] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1957.802536] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1957.805557] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1957.808652] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1957.811742] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 1957.817839] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 1963.726841] verify_parent_transid: 6 callbacks suppressed
[ 1963.726849] BTRFS error (device md0): parent transid verify failed on logical 27849410068480 mirror 1 wanted 1230326 found 1228614
[ 1963.733939] BTRFS error (device md0): parent transid verify failed on logical 27849410068480 mirror 2 wanted 1230326 found 1228614
[ 1963.737803] BTRFS error (device md0): parent transid verify failed on logical 27849410068480 mirror 1 wanted 1230326 found 1228614
[ 1963.741493] BTRFS error (device md0): parent transid verify failed on logical 27849410068480 mirror 2 wanted 1230326 found 1228614
[ 1963.744790] BTRFS error (device md0): parent transid verify failed on logical 27849410068480 mirror 1 wanted 1230326 found 1228614
[ 1963.748143] BTRFS error (device md0): parent transid verify failed on logical 27849410068480 mirror 2 wanted 1230326 found 1228614
[ 1964.630417] BTRFS error (device md0): parent transid verify failed on logical 27849410068480 mirror 1 wanted 1230326 found 1228614
[ 1964.633045] BTRFS error (device md0): parent transid verify failed on logical 27849410068480 mirror 2 wanted 1230326 found 1228614
[ 1964.636250] BTRFS error (device md0): parent transid verify failed on logical 27849410068480 mirror 1 wanted 1230326 found 1228614
[ 1964.639774] BTRFS error (device md0): parent transid verify failed on logical 27849410068480 mirror 2 wanted 1230326 found 1228614
[ 1977.803594] verify_parent_transid: 42 callbacks suppressed
[ 1977.803602] BTRFS error (device md0): parent transid verify failed on logical 27849414459392 mirror 1 wanted 1230326 found 1228617
[ 1977.840364] BTRFS error (device md0): parent transid verify failed on logical 27849414459392 mirror 2 wanted 1230326 found 1228617
[ 1996.725222] BTRFS error (device md0): parent transid verify failed on logical 27849410002944 mirror 1 wanted 1230326 found 1228614
[ 1996.732731] BTRFS error (device md0): parent transid verify failed on logical 27849410002944 mirror 2 wanted 1230326 found 1228614
[ 1996.735748] BTRFS error (device md0): parent transid verify failed on logical 27849410002944 mirror 1 wanted 1230326 found 1228614
[ 1996.740936] BTRFS error (device md0): parent transid verify failed on logical 27849410002944 mirror 2 wanted 1230326 found 1228614
[ 1997.265990] BTRFS error (device md0): parent transid verify failed on logical 27849399681024 mirror 1 wanted 1230326 found 1228601
[ 1997.345964] BTRFS error (device md0): parent transid verify failed on logical 27849399681024 mirror 2 wanted 1230326 found 1228601
[ 1997.348885] BTRFS error (device md0): parent transid verify failed on logical 27849399681024 mirror 1 wanted 1230326 found 1228601
[ 1997.351762] BTRFS error (device md0): parent transid verify failed on logical 27849399681024 mirror 2 wanted 1230326 found 1228601
[ 1997.354792] BTRFS error (device md0): parent transid verify failed on logical 27849399681024 mirror 1 wanted 1230326 found 1228601
[ 1997.357783] BTRFS error (device md0): parent transid verify failed on logical 27849399681024 mirror 2 wanted 1230326 found 1228601
[ 2020.362412] verify_parent_transid: 18 callbacks suppressed
[ 2020.362421] BTRFS error (device md0): parent transid verify failed on logical 3347877920768 mirror 1 wanted 1230326 found 1229278
[ 2020.371490] BTRFS error (device md0): parent transid verify failed on logical 3347877920768 mirror 2 wanted 1230326 found 1229278
[ 2030.598656] BTRFS error (device md0): parent transid verify failed on logical 24388944953344 mirror 1 wanted 1217832 found 1217702
[ 2030.615165] BTRFS error (device md0): parent transid verify failed on logical 24388944953344 mirror 2 wanted 1217832 found 1217702
[ 2030.618515] BTRFS error (device md0): parent transid verify failed on logical 24388944953344 mirror 1 wanted 1217832 found 1217702
[ 2030.621592] BTRFS error (device md0): parent transid verify failed on logical 24388944953344 mirror 2 wanted 1217832 found 1217702
[ 2030.624633] BTRFS error (device md0): parent transid verify failed on logical 24388944953344 mirror 1 wanted 1217832 found 1217702
[ 2030.636895] BTRFS error (device md0): parent transid verify failed on logical 24388944953344 mirror 2 wanted 1217832 found 1217702
[ 2030.641616] BTRFS error (device md0): parent transid verify failed on logical 24388944953344 mirror 1 wanted 1217832 found 1217702
[ 2030.681916] BTRFS error (device md0): parent transid verify failed on logical 24388944953344 mirror 2 wanted 1217832 found 1217702
[ 2030.685626] BTRFS error (device md0): parent transid verify failed on logical 24388944953344 mirror 1 wanted 1217832 found 1217702
[ 2030.688590] BTRFS error (device md0): parent transid verify failed on logical 24388944953344 mirror 2 wanted 1217832 found 1217702
[ 2116.929627] verify_parent_transid: 2 callbacks suppressed
[ 2116.929634] BTRFS error (device md0): parent transid verify failed on logical 24388938678272 mirror 1 wanted 1217832 found 1217717
[ 2116.937602] BTRFS error (device md0): parent transid verify failed on logical 24388938678272 mirror 2 wanted 1217832 found 1217717
[ 2122.065333] BTRFS error (device md0): parent transid verify failed on logical 24388929912832 mirror 1 wanted 1217832 found 1217702
[ 2122.108857] BTRFS error (device md0): parent transid verify failed on logical 24388929912832 mirror 2 wanted 1217832 found 1217702
[ 2131.399239] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2131.406145] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2131.409364] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2131.414604] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2131.425630] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2131.428605] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2131.431561] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2131.465192] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2131.474024] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2131.476976] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2136.559541] verify_parent_transid: 54 callbacks suppressed
[ 2136.559549] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2136.566151] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2136.569437] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2136.572556] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2137.236648] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2137.242483] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2138.702904] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2138.705605] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2138.708594] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2138.711599] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2142.622232] verify_parent_transid: 20 callbacks suppressed
[ 2142.622239] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2142.647490] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2143.220646] BTRFS error (device md0): parent transid verify failed on logical 24388944986112 mirror 1 wanted 1217832 found 1217717
[ 2143.228625] BTRFS error (device md0): parent transid verify failed on logical 24388944986112 mirror 2 wanted 1217832 found 1217717
[ 2143.232669] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2143.239126] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2143.339417] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2143.342290] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2144.779137] BTRFS error (device md0): parent transid verify failed on logical 24388894687232 mirror 1 wanted 1217832 found 1217829
[ 2144.786218] BTRFS error (device md0): parent transid verify failed on logical 24388894687232 mirror 2 wanted 1217832 found 1217829
[ 2147.823790] verify_parent_transid: 30 callbacks suppressed
[ 2147.823797] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2147.826676] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2147.832287] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2147.835931] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2147.839160] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2147.842264] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2147.845292] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2147.848088] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2149.323862] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2149.328584] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2153.282042] verify_parent_transid: 14 callbacks suppressed
[ 2153.282049] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2153.284883] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2154.327973] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2154.330667] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2154.381962] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2154.386776] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2154.390043] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2154.393261] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2154.396259] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2154.399221] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2163.990066] verify_parent_transid: 26 callbacks suppressed
[ 2163.990072] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2164.030630] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2164.052696] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2164.082754] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2164.110462] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2164.149603] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2164.202656] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2164.220931] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2164.267932] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2164.287554] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2172.106567] verify_parent_transid: 2 callbacks suppressed
[ 2172.106574] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2172.113772] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2172.190594] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2172.193735] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2172.231842] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2172.234891] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2172.584681] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2172.587693] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2172.590881] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2172.594647] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2178.271215] verify_parent_transid: 46 callbacks suppressed
[ 2178.271225] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2178.278628] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2178.282656] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2178.288595] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2178.460777] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2178.471027] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2179.103608] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2179.106528] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2179.469472] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2179.477463] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2184.522824] verify_parent_transid: 12 callbacks suppressed
[ 2184.522831] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2184.538138] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2184.541222] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2184.546504] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2184.549911] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2184.580025] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2202.888890] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2202.904302] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2205.980530] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2206.045760] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2206.065775] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2206.068887] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2206.072060] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2206.075259] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2206.078431] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2206.082316] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2214.921914] verify_parent_transid: 22 callbacks suppressed
[ 2214.921921] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2214.987692] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2214.991464] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2214.995362] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2215.963603] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2215.966473] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2215.972088] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2215.976297] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2215.979418] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2215.982461] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2233.528979] verify_parent_transid: 34 callbacks suppressed
[ 2233.528987] BTRFS error (device md0): parent transid verify failed on logical 3347869384704 mirror 1 wanted 1230326 found 1228704
[ 2233.537555] BTRFS error (device md0): parent transid verify failed on logical 3347869384704 mirror 2 wanted 1230326 found 1228704
[ 2233.540692] BTRFS error (device md0): parent transid verify failed on logical 3347869384704 mirror 1 wanted 1230326 found 1228704
[ 2233.545935] BTRFS error (device md0): parent transid verify failed on logical 3347869384704 mirror 2 wanted 1230326 found 1228704
[ 2233.548975] BTRFS error (device md0): parent transid verify failed on logical 3347869384704 mirror 1 wanted 1230326 found 1228704
[ 2233.551935] BTRFS error (device md0): parent transid verify failed on logical 3347869384704 mirror 2 wanted 1230326 found 1228704
[ 2233.555026] BTRFS error (device md0): parent transid verify failed on logical 3347869384704 mirror 1 wanted 1230326 found 1228704
[ 2233.597120] BTRFS error (device md0): parent transid verify failed on logical 3347869384704 mirror 2 wanted 1230326 found 1228704
[ 2233.600581] BTRFS error (device md0): parent transid verify failed on logical 3347869384704 mirror 1 wanted 1230326 found 1228704
[ 2233.603261] BTRFS error (device md0): parent transid verify failed on logical 3347869384704 mirror 2 wanted 1230326 found 1228704
[ 2247.667389] verify_parent_transid: 22 callbacks suppressed
[ 2247.667396] BTRFS error (device md0): parent transid verify failed on logical 24388944871424 mirror 1 wanted 1217832 found 1217717
[ 2247.708686] BTRFS error (device md0): parent transid verify failed on logical 24388944871424 mirror 2 wanted 1217832 found 1217717
[ 2257.211632] BTRFS error (device md0): parent transid verify failed on logical 24388929912832 mirror 1 wanted 1217832 found 1217702
[ 2257.221731] BTRFS error (device md0): parent transid verify failed on logical 24388929912832 mirror 2 wanted 1217832 found 1217702
[ 2257.225105] BTRFS error (device md0): parent transid verify failed on logical 24388929912832 mirror 1 wanted 1217832 found 1217702
[ 2257.228149] BTRFS error (device md0): parent transid verify failed on logical 24388929912832 mirror 2 wanted 1217832 found 1217702
[ 2257.251289] BTRFS error (device md0): parent transid verify failed on logical 24388929912832 mirror 1 wanted 1217832 found 1217702
[ 2257.256314] BTRFS error (device md0): parent transid verify failed on logical 24388929912832 mirror 2 wanted 1217832 found 1217702
[ 2257.259228] BTRFS error (device md0): parent transid verify failed on logical 24388929912832 mirror 1 wanted 1217832 found 1217702
[ 2257.261903] BTRFS error (device md0): parent transid verify failed on logical 24388929912832 mirror 2 wanted 1217832 found 1217702
[ 2257.264696] BTRFS error (device md0): parent transid verify failed on logical 24388929912832 mirror 1 wanted 1217832 found 1217702
[ 2257.267482] BTRFS error (device md0): parent transid verify failed on logical 24388929912832 mirror 2 wanted 1217832 found 1217702
[ 2285.985846] BTRFS error (device md0): parent transid verify failed on logical 3347869384704 mirror 1 wanted 1230326 found 1228704
[ 2286.003196] BTRFS error (device md0): parent transid verify failed on logical 3347869384704 mirror 2 wanted 1230326 found 1228704
[ 2286.327360] BTRFS error (device md0): parent transid verify failed on logical 3347869351936 mirror 1 wanted 1230326 found 1228704
[ 2286.336094] BTRFS error (device md0): parent transid verify failed on logical 3347869351936 mirror 2 wanted 1230326 found 1228704
[ 2286.387093] BTRFS error (device md0): parent transid verify failed on logical 3347875971072 mirror 1 wanted 1230326 found 1229278
[ 2286.395653] BTRFS error (device md0): parent transid verify failed on logical 3347875971072 mirror 2 wanted 1230326 found 1229278
[ 2286.398192] BTRFS error (device md0): error loading props for ino 70246103 (root 5): -5
[ 2286.472566] BTRFS error (device md0): parent transid verify failed on logical 3347871547392 mirror 1 wanted 1230326 found 1228704
[ 2286.488508] BTRFS error (device md0): parent transid verify failed on logical 3347871547392 mirror 2 wanted 1230326 found 1228704
[ 2286.526512] BTRFS error (device md0): parent transid verify failed on logical 3347875971072 mirror 1 wanted 1230326 found 1229278
[ 2286.534345] BTRFS error (device md0): parent transid verify failed on logical 3347875971072 mirror 2 wanted 1230326 found 1229278
[ 2295.176934] verify_parent_transid: 12 callbacks suppressed
[ 2295.176943] BTRFS error (device md0): parent transid verify failed on logical 3347880329216 mirror 1 wanted 1230326 found 1229278
[ 2295.183352] BTRFS error (device md0): parent transid verify failed on logical 3347880329216 mirror 2 wanted 1230326 found 1229278
[ 2295.187235] BTRFS error (device md0): parent transid verify failed on logical 3347880329216 mirror 1 wanted 1230326 found 1229278
[ 2295.190516] BTRFS error (device md0): parent transid verify failed on logical 3347880329216 mirror 2 wanted 1230326 found 1229278
[ 2299.665858] BTRFS error (device md0): parent transid verify failed on logical 24388944871424 mirror 1 wanted 1217832 found 1217717
[ 2299.715714] BTRFS error (device md0): parent transid verify failed on logical 24388944871424 mirror 2 wanted 1217832 found 1217717
[ 2300.136305] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2300.143308] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2300.174047] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2300.182179] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2300.190733] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2300.215334] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2300.223641] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2300.231876] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2301.030241] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2301.047269] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2301.107936] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2301.110240] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2301.112594] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2305.627750] verify_parent_transid: 17 callbacks suppressed
[ 2305.627758] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2305.726241] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2305.729338] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2305.732289] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2305.735252] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2305.738127] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2305.740937] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2305.743731] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2305.746521] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2305.749193] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2315.335761] verify_parent_transid: 4 callbacks suppressed
[ 2315.335767] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2315.351048] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2315.354249] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2315.369563] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2315.394517] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2315.410678] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2316.684892] BTRFS error (device md0): parent transid verify failed on logical 3347869351936 mirror 1 wanted 1230326 found 1228704
[ 2316.702274] BTRFS error (device md0): parent transid verify failed on logical 3347869351936 mirror 2 wanted 1230326 found 1228704
[ 2320.858861] BTRFS error (device md0): parent transid verify failed on logical 24388940627968 mirror 1 wanted 1217832 found 1217717
[ 2320.868963] BTRFS error (device md0): parent transid verify failed on logical 24388940627968 mirror 2 wanted 1217832 found 1217717
[ 2320.897761] BTRFS error (device md0): parent transid verify failed on logical 24388940627968 mirror 1 wanted 1217832 found 1217717
[ 2320.930495] BTRFS error (device md0): parent transid verify failed on logical 24388940627968 mirror 2 wanted 1217832 found 1217717
[ 2320.960185] BTRFS error (device md0): parent transid verify failed on logical 24388940627968 mirror 1 wanted 1217832 found 1217717
[ 2320.994108] BTRFS error (device md0): parent transid verify failed on logical 24388940627968 mirror 2 wanted 1217832 found 1217717
[ 2324.617647] BTRFS error (device md0): parent transid verify failed on logical 3347880280064 mirror 1 wanted 1230326 found 1229278
[ 2324.648870] BTRFS error (device md0): parent transid verify failed on logical 3347880280064 mirror 2 wanted 1230326 found 1229278
[ 2331.316871] BTRFS error (device md0): parent transid verify failed on logical 24388940627968 mirror 1 wanted 1217832 found 1217717
[ 2331.326790] BTRFS error (device md0): parent transid verify failed on logical 24388940627968 mirror 2 wanted 1217832 found 1217717
[ 2335.118591] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2335.125965] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2335.129383] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2335.134161] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2352.119941] BTRFS error (device md0): parent transid verify failed on logical 3347877920768 mirror 1 wanted 1230326 found 1229278
[ 2352.153698] BTRFS error (device md0): parent transid verify failed on logical 3347877920768 mirror 2 wanted 1230326 found 1229278
[ 2361.314358] BTRFS error (device md0): parent transid verify failed on logical 24388944871424 mirror 1 wanted 1217832 found 1217717
[ 2361.372540] BTRFS error (device md0): parent transid verify failed on logical 24388944871424 mirror 2 wanted 1217832 found 1217717
[ 2364.327722] BTRFS error (device md0): parent transid verify failed on logical 3347884146688 mirror 1 wanted 1230326 found 1229278
[ 2364.336371] BTRFS error (device md0): parent transid verify failed on logical 3347884146688 mirror 2 wanted 1230326 found 1229278
[ 2364.801391] BTRFS error (device md0): parent transid verify failed on logical 3347875971072 mirror 1 wanted 1230326 found 1229278
[ 2364.876674] BTRFS error (device md0): parent transid verify failed on logical 3347875971072 mirror 2 wanted 1230326 found 1229278
[ 2365.264675] BTRFS error (device md0): parent transid verify failed on logical 24388945002496 mirror 1 wanted 1217832 found 1217717
[ 2365.267708] BTRFS error (device md0): parent transid verify failed on logical 24388945002496 mirror 2 wanted 1217832 found 1217717
[ 2365.273133] BTRFS error (device md0): parent transid verify failed on logical 24388945002496 mirror 1 wanted 1217832 found 1217717
[ 2365.276501] BTRFS error (device md0): parent transid verify failed on logical 24388945002496 mirror 2 wanted 1217832 found 1217717
[ 2366.557718] verify_parent_transid: 12 callbacks suppressed
[ 2366.557726] BTRFS error (device md0): parent transid verify failed on logical 3347884146688 mirror 1 wanted 1230326 found 1229278
[ 2366.582279] BTRFS error (device md0): parent transid verify failed on logical 3347884146688 mirror 2 wanted 1230326 found 1229278
[ 2366.590368] BTRFS error (device md0): parent transid verify failed on logical 3347884146688 mirror 1 wanted 1230326 found 1229278
[ 2366.593337] BTRFS error (device md0): parent transid verify failed on logical 3347884146688 mirror 2 wanted 1230326 found 1229278
[ 2366.596571] BTRFS error (device md0): parent transid verify failed on logical 3347884146688 mirror 1 wanted 1230326 found 1229278
[ 2366.602904] BTRFS error (device md0): parent transid verify failed on logical 3347884146688 mirror 2 wanted 1230326 found 1229278
[ 2366.607666] BTRFS error (device md0): parent transid verify failed on logical 3347884146688 mirror 1 wanted 1230326 found 1229278
[ 2366.612158] BTRFS error (device md0): parent transid verify failed on logical 3347884146688 mirror 2 wanted 1230326 found 1229278
[ 2367.150301] BTRFS error (device md0): parent transid verify failed on logical 3347869384704 mirror 1 wanted 1230326 found 1228704
[ 2367.167365] BTRFS error (device md0): parent transid verify failed on logical 3347869384704 mirror 2 wanted 1230326 found 1228704
[ 2374.366248] verify_parent_transid: 2 callbacks suppressed
[ 2374.366256] BTRFS error (device md0): parent transid verify failed on logical 3347880280064 mirror 1 wanted 1230326 found 1229278
[ 2374.372661] BTRFS error (device md0): parent transid verify failed on logical 3347880280064 mirror 2 wanted 1230326 found 1229278
[ 2374.375218] BTRFS error (device md0): error loading props for ino 70377120 (root 5): -5
[ 2374.387138] BTRFS error (device md0): parent transid verify failed on logical 3347880280064 mirror 1 wanted 1230326 found 1229278
[ 2374.394975] BTRFS error (device md0): parent transid verify failed on logical 3347880280064 mirror 2 wanted 1230326 found 1229278
[ 2374.403355] BTRFS error (device md0): parent transid verify failed on logical 3347880280064 mirror 1 wanted 1230326 found 1229278
[ 2374.409338] BTRFS error (device md0): parent transid verify failed on logical 3347880280064 mirror 2 wanted 1230326 found 1229278
[ 2379.598991] BTRFS error (device md0): parent transid verify failed on logical 24388940660736 mirror 1 wanted 1217832 found 1217717
[ 2379.633979] BTRFS error (device md0): parent transid verify failed on logical 24388940660736 mirror 2 wanted 1217832 found 1217717
[ 2380.192269] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2380.290910] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2389.032960] BTRFS error (device md0): parent transid verify failed on logical 3347869384704 mirror 1 wanted 1230326 found 1228704
[ 2389.058497] BTRFS error (device md0): parent transid verify failed on logical 3347869384704 mirror 2 wanted 1230326 found 1228704
[ 2389.767090] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2389.808405] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2391.405505] BTRFS error (device md0): parent transid verify failed on logical 24388938678272 mirror 1 wanted 1217832 found 1217717
[ 2391.421890] BTRFS error (device md0): parent transid verify failed on logical 24388938678272 mirror 2 wanted 1217832 found 1217717
[ 2391.555794] BTRFS error (device md0): parent transid verify failed on logical 24388940627968 mirror 1 wanted 1217832 found 1217717
[ 2391.562243] BTRFS error (device md0): parent transid verify failed on logical 24388940627968 mirror 2 wanted 1217832 found 1217717
[ 2391.566043] BTRFS error (device md0): parent transid verify failed on logical 24388940660736 mirror 1 wanted 1217832 found 1217717
[ 2391.569094] BTRFS error (device md0): parent transid verify failed on logical 24388940660736 mirror 2 wanted 1217832 found 1217717
[ 2397.733489] verify_parent_transid: 6 callbacks suppressed
[ 2397.733497] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2397.740462] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2398.632490] BTRFS error (device md0): parent transid verify failed on logical 3347880329216 mirror 1 wanted 1230326 found 1229278
[ 2398.639029] BTRFS error (device md0): parent transid verify failed on logical 3347880329216 mirror 2 wanted 1230326 found 1229278
[ 2398.643249] BTRFS error (device md0): parent transid verify failed on logical 3347880329216 mirror 1 wanted 1230326 found 1229278
[ 2398.646900] BTRFS error (device md0): parent transid verify failed on logical 3347880329216 mirror 2 wanted 1230326 found 1229278
[ 2398.650492] BTRFS error (device md0): parent transid verify failed on logical 3347880329216 mirror 1 wanted 1230326 found 1229278
[ 2398.659488] BTRFS error (device md0): parent transid verify failed on logical 3347880329216 mirror 2 wanted 1230326 found 1229278
[ 2399.358774] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2399.374632] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2403.041119] verify_parent_transid: 4 callbacks suppressed
[ 2403.041128] BTRFS error (device md0): parent transid verify failed on logical 24388929912832 mirror 1 wanted 1217832 found 1217702
[ 2403.051429] BTRFS error (device md0): parent transid verify failed on logical 24388929912832 mirror 2 wanted 1217832 found 1217702
[ 2403.054830] BTRFS error (device md0): parent transid verify failed on logical 24388929912832 mirror 1 wanted 1217832 found 1217702
[ 2403.059594] BTRFS error (device md0): parent transid verify failed on logical 24388929912832 mirror 2 wanted 1217832 found 1217702
[ 2403.471710] BTRFS error (device md0): parent transid verify failed on logical 24388944953344 mirror 1 wanted 1217832 found 1217702
[ 2403.536155] BTRFS error (device md0): parent transid verify failed on logical 24388944953344 mirror 2 wanted 1217832 found 1217702
[ 2403.542291] BTRFS error (device md0): parent transid verify failed on logical 24388944953344 mirror 1 wanted 1217832 found 1217702
[ 2403.554991] BTRFS error (device md0): parent transid verify failed on logical 24388944953344 mirror 2 wanted 1217832 found 1217702
[ 2404.248883] BTRFS error (device md0): parent transid verify failed on logical 3347880329216 mirror 1 wanted 1230326 found 1229278
[ 2404.263644] BTRFS error (device md0): parent transid verify failed on logical 3347880329216 mirror 2 wanted 1230326 found 1229278
[ 2408.091578] verify_parent_transid: 14 callbacks suppressed
[ 2408.091586] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2408.098719] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2408.102506] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2408.107032] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2408.110547] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2408.113962] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2408.117568] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2408.120723] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2408.124272] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[ 2408.127345] BTRFS error (device md0): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[ 2418.240321] verify_parent_transid: 22 callbacks suppressed
[ 2418.240329] BTRFS error (device md0): parent transid verify failed on logical 3347880329216 mirror 1 wanted 1230326 found 1229278
[ 2418.255045] BTRFS error (device md0): parent transid verify failed on logical 3347880329216 mirror 2 wanted 1230326 found 1229278
[ 2418.258254] BTRFS error (device md0): parent transid verify failed on logical 3347880329216 mirror 1 wanted 1230326 found 1229278
[ 2418.271664] BTRFS error (device md0): parent transid verify failed on logical 3347880329216 mirror 2 wanted 1230326 found 1229278
[ 2418.276221] BTRFS error (device md0): parent transid verify failed on logical 3347880329216 mirror 1 wanted 1230326 found 1229278
[ 2418.279297] BTRFS error (device md0): parent transid verify failed on logical 3347880329216 mirror 2 wanted 1230326 found 1229278
[ 2418.284990] BTRFS error (device md0): parent transid verify failed on logical 3347880329216 mirror 1 wanted 1230326 found 1229278
[ 2418.288056] BTRFS error (device md0): parent transid verify failed on logical 3347880329216 mirror 2 wanted 1230326 found 1229278
[ 2418.291166] BTRFS error (device md0): parent transid verify failed on logical 3347880329216 mirror 1 wanted 1230326 found 1229278
[ 2418.294267] BTRFS error (device md0): parent transid verify failed on logical 3347880329216 mirror 2 wanted 1230326 found 1229278
[ 7082.875288] scrub_checksum_tree_block: 68 callbacks suppressed
[ 7082.875296] BTRFS warning (device md0): tree block 3347871547392 mirror 1 has bad generation, has 1228704 want 1230326
[ 7082.875936] BTRFS warning (device md0): tree block 3347871547392 mirror 0 has bad generation, has 1228704 want 1230326
[ 7082.875942] scrub_handle_errored_block: 16 callbacks suppressed
[ 7082.875955] BTRFS warning (device md0): checksum/header error at logical 3347871547392 on dev /dev/md0, physical 3347879936000: metadata leaf (level 0) in tree 5
[ 7082.875961] BTRFS warning (device md0): checksum/header error at logical 3347871547392 on dev /dev/md0, physical 3347879936000: metadata leaf (level 0) in tree 5
[ 7082.875966] btrfs_dev_stat_inc_and_print: 16 callbacks suppressed
[ 7082.875968] BTRFS error (device md0): bdev /dev/md0 errs: wr 0, rd 0, flush 0, corrupt 0, gen 53
[ 7082.883406] BTRFS warning (device md0): tree block 3347871547392 mirror 1 has bad generation, has 1228704 want 1230326
[ 7082.883419] scrub_handle_errored_block: 16 callbacks suppressed
[ 7082.883421] BTRFS error (device md0): unable to fixup (regular) error at logical 3347871547392 on dev /dev/md0
[ 7082.891562] BTRFS warning (device md0): tree block 3347875971072 mirror 1 has bad generation, has 1229278 want 1230326
[ 7082.893632] BTRFS warning (device md0): tree block 3347877920768 mirror 1 has bad generation, has 1229278 want 1230326
[ 7082.895429] BTRFS warning (device md0): tree block 3347875971072 mirror 0 has bad generation, has 1229278 want 1230326
[ 7082.895452] BTRFS warning (device md0): checksum/header error at logical 3347875971072 on dev /dev/md0, physical 3347884359680: metadata leaf (level 0) in tree 5
[ 7082.895458] BTRFS warning (device md0): checksum/header error at logical 3347875971072 on dev /dev/md0, physical 3347884359680: metadata leaf (level 0) in tree 5
[ 7082.895464] BTRFS error (device md0): bdev /dev/md0 errs: wr 0, rd 0, flush 0, corrupt 0, gen 54
[ 7082.896039] BTRFS warning (device md0): tree block 3347877920768 mirror 0 has bad generation, has 1229278 want 1230326
[ 7082.896756] BTRFS warning (device md0): checksum/header error at logical 3347877920768 on dev /dev/md0, physical 3347886309376: metadata leaf (level 0) in tree 5
[ 7082.896763] BTRFS warning (device md0): checksum/header error at logical 3347877920768 on dev /dev/md0, physical 3347886309376: metadata leaf (level 0) in tree 5
[ 7082.896769] BTRFS error (device md0): bdev /dev/md0 errs: wr 0, rd 0, flush 0, corrupt 0, gen 55
[ 7082.906735] BTRFS warning (device md0): tree block 3347875971072 mirror 1 has bad generation, has 1229278 want 1230326
[ 7082.906747] BTRFS error (device md0): unable to fixup (regular) error at logical 3347875971072 on dev /dev/md0
[ 7082.907753] BTRFS warning (device md0): tree block 3347877920768 mirror 1 has bad generation, has 1229278 want 1230326
[ 7082.907892] BTRFS error (device md0): unable to fixup (regular) error at logical 3347877920768 on dev /dev/md0
[ 7082.913929] BTRFS warning (device md0): tree block 3347869351936 mirror 1 has bad generation, has 1228704 want 1230326
[ 7082.916881] BTRFS warning (device md0): checksum/header error at logical 3347869351936 on dev /dev/md0, physical 3347877740544: metadata leaf (level 0) in tree 5
[ 7082.916888] BTRFS warning (device md0): checksum/header error at logical 3347869351936 on dev /dev/md0, physical 3347877740544: metadata leaf (level 0) in tree 5
[ 7082.916893] BTRFS error (device md0): bdev /dev/md0 errs: wr 0, rd 0, flush 0, corrupt 0, gen 56
[ 7082.932999] BTRFS warning (device md0): checksum/header error at logical 3347880280064 on dev /dev/md0, physical 3347888668672: metadata leaf (level 0) in tree 5
[ 7082.933008] BTRFS warning (device md0): checksum/header error at logical 3347880280064 on dev /dev/md0, physical 3347888668672: metadata leaf (level 0) in tree 5
[ 7082.933012] BTRFS error (device md0): bdev /dev/md0 errs: wr 0, rd 0, flush 0, corrupt 0, gen 57
[ 7082.934182] BTRFS warning (device md0): checksum/header error at logical 3347884146688 on dev /dev/md0, physical 3347892535296: metadata leaf (level 0) in tree 5
[ 7082.934188] BTRFS warning (device md0): checksum/header error at logical 3347884146688 on dev /dev/md0, physical 3347892535296: metadata leaf (level 0) in tree 5
[ 7082.934192] BTRFS error (device md0): bdev /dev/md0 errs: wr 0, rd 0, flush 0, corrupt 0, gen 58
[ 7082.936724] BTRFS error (device md0): unable to fixup (regular) error at logical 3347880280064 on dev /dev/md0
[ 7082.937366] BTRFS error (device md0): unable to fixup (regular) error at logical 3347884146688 on dev /dev/md0
[ 7082.939276] BTRFS error (device md0): unable to fixup (regular) error at logical 3347869351936 on dev /dev/md0
[ 7082.940019] BTRFS warning (device md0): checksum/header error at logical 3347880329216 on dev /dev/md0, physical 3347888717824: metadata leaf (level 0) in tree 5
[ 7082.940214] BTRFS warning (device md0): checksum/header error at logical 3347880329216 on dev /dev/md0, physical 3347888717824: metadata leaf (level 0) in tree 5
[ 7082.940218] BTRFS error (device md0): bdev /dev/md0 errs: wr 0, rd 0, flush 0, corrupt 0, gen 59
[ 7082.942103] BTRFS warning (device md0): checksum/header error at logical 3347869384704 on dev /dev/md0, physical 3347877773312: metadata leaf (level 0) in tree 5
[ 7082.942131] BTRFS warning (device md0): checksum/header error at logical 3347869384704 on dev /dev/md0, physical 3347877773312: metadata leaf (level 0) in tree 5
[ 7082.942138] BTRFS error (device md0): bdev /dev/md0 errs: wr 0, rd 0, flush 0, corrupt 0, gen 60
[ 7082.942776] BTRFS error (device md0): unable to fixup (regular) error at logical 3347880329216 on dev /dev/md0
[ 7082.944089] BTRFS error (device md0): unable to fixup (regular) error at logical 3347869384704 on dev /dev/md0
[ 7085.252891] BTRFS warning (device md0): checksum/header error at logical 3347869351936 on dev /dev/md0, physical 3348951482368: metadata leaf (level 0) in tree 5
[ 7085.252906] BTRFS warning (device md0): checksum/header error at logical 3347869351936 on dev /dev/md0, physical 3348951482368: metadata leaf (level 0) in tree 5
[ 7085.252913] BTRFS error (device md0): bdev /dev/md0 errs: wr 0, rd 0, flush 0, corrupt 0, gen 61
[ 7085.253091] BTRFS warning (device md0): checksum/header error at logical 3347871547392 on dev /dev/md0, physical 3348953677824: metadata leaf (level 0) in tree 5
[ 7085.253893] BTRFS warning (device md0): checksum/header error at logical 3347871547392 on dev /dev/md0, physical 3348953677824: metadata leaf (level 0) in tree 5
[ 7085.253904] BTRFS error (device md0): bdev /dev/md0 errs: wr 0, rd 0, flush 0, corrupt 0, gen 62
[ 7085.256028] BTRFS error (device md0): unable to fixup (regular) error at logical 3347869351936 on dev /dev/md0
[ 7085.257245] BTRFS error (device md0): unable to fixup (regular) error at logical 3347871547392 on dev /dev/md0
[12205.045796] INFO: task btrfs:4789 blocked for more than 120 seconds.
[12205.046703] Not tainted 6.1.0-28-amd64 #1 Debian 6.1.119-1
[12205.047574] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
[12205.048438] task:btrfs state:D stack:0 pid:4789 ppid:4787 flags:0x00004002
[12205.048445] Call Trace:
[12205.048448] <TASK>
[12205.048452] __schedule+0x34d/0x9e0
[12205.048464] schedule+0x5a/0xd0
[12205.048471] wait_for_commit+0x13b/0x1b0 [btrfs]
[12205.048554] ? cpuusage_read+0x10/0x10
[12205.048560] btrfs_wait_for_commit+0x148/0x1c0 [btrfs]
[12205.048630] btrfs_inc_block_group_ro+0x96/0x220 [btrfs]
[12205.048721] scrub_enumerate_chunks+0x271/0x800 [btrfs]
[12205.048811] ? cpuusage_read+0x10/0x10
[12205.048816] btrfs_scrub_dev+0x216/0x680 [btrfs]
[12205.048903] ? btrfs_ioctl+0x6ab/0x2660 [btrfs]
[12205.048985] ? __kmalloc_node_track_caller+0x4a/0x150
[12205.048992] ? __check_object_size+0x1df/0x220
[12205.048996] btrfs_ioctl+0x70a/0x2660 [btrfs]
[12205.049081] __x64_sys_ioctl+0x90/0xd0
[12205.049086] do_syscall_64+0x55/0xb0
[12205.049092] ? exit_to_user_mode_prepare+0x40/0x1e0
[12205.049098] ? syscall_exit_to_user_mode+0x1e/0x40
[12205.049104] ? do_syscall_64+0x61/0xb0
[12205.049108] ? exit_to_user_mode_prepare+0x40/0x1e0
[12205.049112] entry_SYSCALL_64_after_hwframe+0x6e/0xd8
[12205.049118] RIP: 0033:0x7f368a901cdb
[12205.049122] RSP: 002b:00007f368a800c80 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[12205.049126] RAX: ffffffffffffffda RBX: 0000565166f45420 RCX: 00007f368a901cdb
[12205.049129] RDX: 0000565166f45420 RSI: 00000000c400941b RDI: 0000000000000003
[12205.049131] RBP: 0000000000000000 R08: 00007ffd1c5710b7 R09: 0000000000000000
[12205.049134] R10: 0000000000000000 R11: 0000000000000246 R12: fffffffffffffdc0
[12205.049136] R13: 000000000000006b R14: 00007ffd1c570fc0 R15: 00007f368a001000
[12205.049141] </TASK>
[12310.814739] verify_parent_transid: 36 callbacks suppressed
[12310.814745] BTRFS error (device md0): parent transid verify failed on logical 16555322867712 mirror 1 wanted 1217714 found 1217709
[12310.827348] BTRFS error (device md0): parent transid verify failed on logical 16555322867712 mirror 2 wanted 1217714 found 1217709
[12310.842379] BTRFS: error (device md0: state A) in do_free_extent_accounting:2847: errno=-5 IO failure
[12310.850086] BTRFS info (device md0: state EA): forced readonly
[12310.850108] BTRFS error (device md0: state EA): failed to run delayed ref for logical 15888899420160 num_bytes 36864 type 178 action 2 ref_mod 1: -5
[12310.863568] BTRFS: error (device md0: state EA) in btrfs_run_delayed_refs:2150: errno=-5 IO failure
[12311.208327] BTRFS warning (device md0: state EA): failed setting block group ro: -5
[12311.208354] BTRFS info (device md0: state EA): scrub: not finished on devid 1 with status: -5
[13253.640415] BTRFS error (device md0: state EA): parent transid verify failed on logical 16555323113472 mirror 1 wanted 1217714 found 1217709
[13253.653233] BTRFS error (device md0: state EA): parent transid verify failed on logical 16555323113472 mirror 2 wanted 1217714 found 1217709
[13253.720748] BTRFS error (device md0: state EA): parent transid verify failed on logical 16555323113472 mirror 1 wanted 1217714 found 1217709
[13253.722918] BTRFS error (device md0: state EA): parent transid verify failed on logical 16555323113472 mirror 2 wanted 1217714 found 1217709
[13253.725189] BTRFS error (device md0: state EA): parent transid verify failed on logical 16555323113472 mirror 1 wanted 1217714 found 1217709
[13253.727341] BTRFS error (device md0: state EA): parent transid verify failed on logical 16555323113472 mirror 2 wanted 1217714 found 1217709
[13259.348636] BTRFS error (device md0: state EA): parent transid verify failed on logical 16555323113472 mirror 1 wanted 1217714 found 1217709
[13259.361321] BTRFS error (device md0: state EA): parent transid verify failed on logical 16555323113472 mirror 2 wanted 1217714 found 1217709
[13259.363715] BTRFS error (device md0: state EA): parent transid verify failed on logical 16555323113472 mirror 1 wanted 1217714 found 1217709
[13259.369655] BTRFS error (device md0: state EA): parent transid verify failed on logical 16555323113472 mirror 2 wanted 1217714 found 1217709
[13259.381811] BTRFS error (device md0: state EA): parent transid verify failed on logical 16555323113472 mirror 1 wanted 1217714 found 1217709
[13259.384084] BTRFS error (device md0: state EA): parent transid verify failed on logical 16555323113472 mirror 2 wanted 1217714 found 1217709
[13260.152992] BTRFS error (device md0: state EA): parent transid verify failed on logical 16555323113472 mirror 1 wanted 1217714 found 1217709
[13260.157602] BTRFS error (device md0: state EA): parent transid verify failed on logical 16555323113472 mirror 2 wanted 1217714 found 1217709
[13260.160413] BTRFS error (device md0: state EA): parent transid verify failed on logical 16555323113472 mirror 1 wanted 1217714 found 1217709
[13260.163270] BTRFS error (device md0: state EA): parent transid verify failed on logical 16555323113472 mirror 2 wanted 1217714 found 1217709
[13387.811758] verify_parent_transid: 2 callbacks suppressed
[13387.811765] BTRFS error (device md0: state EA): parent transid verify failed on logical 16555323113472 mirror 1 wanted 1217714 found 1217709
[13387.824688] BTRFS error (device md0: state EA): parent transid verify failed on logical 16555323113472 mirror 2 wanted 1217714 found 1217709
[13387.843600] BTRFS error (device md0: state EA): parent transid verify failed on logical 16555323113472 mirror 1 wanted 1217714 found 1217709
[13387.866293] BTRFS error (device md0: state EA): parent transid verify failed on logical 16555323113472 mirror 2 wanted 1217714 found 1217709
[13407.388981] BTRFS error (device md0: state EA): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[13407.395984] BTRFS error (device md0: state EA): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[13415.488768] BTRFS error (device md0: state EA): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[13415.537561] BTRFS error (device md0: state EA): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[13858.862355] BTRFS error (device md0: state EA): parent transid verify failed on logical 23043014868992 mirror 1 wanted 1231277 found 1230913
[13858.871148] BTRFS error (device md0: state EA): parent transid verify failed on logical 23043014868992 mirror 2 wanted 1231277 found 1230913
[13858.895956] BTRFS error (device md0: state EA): parent transid verify failed on logical 23043014868992 mirror 1 wanted 1231277 found 1230913
[13858.921122] BTRFS error (device md0: state EA): parent transid verify failed on logical 23043014868992 mirror 2 wanted 1231277 found 1230913
[13897.454420] BTRFS error (device md0: state EA): parent transid verify failed on logical 24388894654464 mirror 1 wanted 1217832 found 1217829
[13897.461550] BTRFS error (device md0: state EA): parent transid verify failed on logical 24388894654464 mirror 2 wanted 1217832 found 1217829
[13899.813295] BTRFS error (device md0: state EA): parent transid verify failed on logical 27849408266240 mirror 1 wanted 1230326 found 1228610
[13899.829079] BTRFS error (device md0: state EA): parent transid verify failed on logical 27849408266240 mirror 2 wanted 1230326 found 1228610
[13903.813037] BTRFS error (device md0: state EA): parent transid verify failed on logical 27849408249856 mirror 1 wanted 1230326 found 1228610
[13903.828822] BTRFS error (device md0: state EA): parent transid verify failed on logical 27849408249856 mirror 2 wanted 1230326 found 1228610
[13903.832648] BTRFS error (device md0: state EA): parent transid verify failed on logical 27849408249856 mirror 1 wanted 1230326 found 1228610
[13903.837339] BTRFS error (device md0: state EA): parent transid verify failed on logical 27849408249856 mirror 2 wanted 1230326 found 1228610
[13903.840582] BTRFS error (device md0: state EA): parent transid verify failed on logical 27849408249856 mirror 1 wanted 1230326 found 1228610
[13903.843684] BTRFS error (device md0: state EA): parent transid verify failed on logical 27849408249856 mirror 2 wanted 1230326 found 1228610
[13982.074242] BTRFS error (device md0: state EA): parent transid verify failed on logical 27849406087168 mirror 1 wanted 1230326 found 1228609
[13982.087080] BTRFS error (device md0: state EA): parent transid verify failed on logical 27849406087168 mirror 2 wanted 1230326 found 1228609
[14059.450880] BTRFS error (device md0: state EA): parent transid verify failed on logical 16555322867712 mirror 1 wanted 1217714 found 1217709
[14059.463403] BTRFS error (device md0: state EA): parent transid verify failed on logical 16555322867712 mirror 2 wanted 1217714 found 1217709
[14059.466475] BTRFS error (device md0: state EA): parent transid verify failed on logical 16555322867712 mirror 1 wanted 1217714 found 1217709
[14059.471681] BTRFS error (device md0: state EA): parent transid verify failed on logical 16555322867712 mirror 2 wanted 1217714 found 1217709
[14490.408928] BTRFS error (device md0: state EA): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[14490.440904] BTRFS error (device md0: state EA): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
[14500.033621] BTRFS error (device md0: state EA): parent transid verify failed on logical 27849410428928 mirror 1 wanted 1230326 found 1228613
[14500.082292] BTRFS error (device md0: state EA): parent transid verify failed on logical 27849410428928 mirror 2 wanted 1230326 found 1228613
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: BTRFS errors following bad SATA connection
2025-01-01 18:25 ` BTRFS errors following bad SATA connection Victor Banon
@ 2025-01-01 23:40 ` remi
2025-01-02 9:32 ` Victor Banon
0 siblings, 1 reply; 13+ messages in thread
From: remi @ 2025-01-01 23:40 UTC (permalink / raw)
To: Victor Banon, linux-btrfs
On Wed, Jan 1, 2025, at 1:25 PM, Victor Banon wrote:
>
> `echo check > /sys/block/mdX/md/sync_action` identified some mismatches
> (I believe around 1000-1300). I ran `echo repair >
> /sys/block/mdX/md/sync_action`
This was probably the worst thing to do in this case. If the errors were all caused by one drive known to have suffered SATA problems, you could have tried removing that drive, mount degraded and read only, and see if the file system was intact with parity data for the missing drive, (and if yes, then rebuild that one drive.) But forcing a repair will have replaced all the parity data with the corrupt data.
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: BTRFS errors following bad SATA connection
2025-01-01 23:40 ` remi
@ 2025-01-02 9:32 ` Victor Banon
2025-01-02 13:33 ` Roman Mamedov
0 siblings, 1 reply; 13+ messages in thread
From: Victor Banon @ 2025-01-02 9:32 UTC (permalink / raw)
To: remi, linux-btrfs
On 02/01/2025 00:40, remi@georgianit.com wrote:
> This was probably the worst thing to do in this case. If the errors were all caused by one drive known to have suffered SATA problems, you could have tried removing that drive, mount degraded and read only, and see if the file system was intact with parity data for the missing drive, (and if yes, then rebuild that one drive.) But forcing a repair will have replaced all the parity data with the corrupt data.
I understand. I did it knowing what the command was doing, but at that
point I was under the impression I had already identified and deleted
all the files with mismatched parity data. I also don't think it was
only one drive that had SATA issues, and at the time I didn't understand
how to identify which drive(s) were responsible. So I understand I
possibly have 1000 corrupted files somewhere with no way of identifying
which without using a backup for comparison. Either way, it did not
appear to fix my problem, so I don't know if properly rebuilding parity
data would have helped - unless I'm getting the timeline wrong and this
was somehow before I finally solved the original SATA issues... I'll run
a new echo check.
I'll keep in mind that procedure for the future though.
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: BTRFS errors following bad SATA connection
2025-01-02 9:32 ` Victor Banon
@ 2025-01-02 13:33 ` Roman Mamedov
2025-01-02 13:40 ` Victor Banon
0 siblings, 1 reply; 13+ messages in thread
From: Roman Mamedov @ 2025-01-02 13:33 UTC (permalink / raw)
To: Victor Banon; +Cc: remi, linux-btrfs
On Thu, 2 Jan 2025 10:32:43 +0100
Victor Banon <banon.victor@gmail.com> wrote:
> So I understand I possibly have 1000 corrupted files somewhere with no way
> of identifying which without using a backup for comparison.
Btrfs stores checksums for data, so unless you turned that off, reading
corrupted files will return an I/O error, not bad content. So you can just
reread all files into /dev/null, and the corrupted ones will be unreadable.
Overall for your FS it's not looking good, there is no proper fix for "parent
transid verify failed" and this may require a reformat.
I remember reading something about the mdadm RAID5 making this issue of Btrfs
worse, due to mdraid "write hole", which its PPL feature is supposed to fix.
Basically, while with one disk it's either "written" or "not", with mdraid it
could be written on some disk but not on others, and it may present older
portion of the ondisk state to the FS, where all breaks loose.
--
With respect,
Roman
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: BTRFS errors following bad SATA connection
2025-01-02 13:33 ` Roman Mamedov
@ 2025-01-02 13:40 ` Victor Banon
2025-01-03 8:21 ` Victor Banon
0 siblings, 1 reply; 13+ messages in thread
From: Victor Banon @ 2025-01-02 13:40 UTC (permalink / raw)
To: Roman Mamedov; +Cc: remi, linux-btrfs
On 02/01/2025 14:33, Roman Mamedov wrote:
> Btrfs stores checksums for data, so unless you turned that off, reading
> corrupted files will return an I/O error, not bad content. So you can just
> reread all files into /dev/null, and the corrupted ones will be unreadable.
I have run `find . -type f -exec cat {} >/dev/null +` a few times, but
issues persist even after deleting all the i/o error files. It's like
there's always new files that get borked.
> Overall for your FS it's not looking good, there is no proper fix for "parent
> transid verify failed" and this may require a reformat.
Sad to hear. So there's no way I can fix this by deleting corrupted
files and running a scrub? What's the best case scenario here, and what
should be my next steps?
> I remember reading something about the mdadm RAID5 making this issue of Btrfs
> worse, due to mdraid "write hole", which its PPL feature is supposed to fix.
Sadly I have heard all of the warnings about btrfs and RAID 56 much too
late. More recently I have read conflicting things about whether or not
that issue was better, worse, or the same with mdadm. Not that it
matters at this point.
Thanks.
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: BTRFS errors following bad SATA connection
2025-01-02 13:40 ` Victor Banon
@ 2025-01-03 8:21 ` Victor Banon
2025-01-03 12:09 ` Roman Mamedov
0 siblings, 1 reply; 13+ messages in thread
From: Victor Banon @ 2025-01-03 8:21 UTC (permalink / raw)
To: Roman Mamedov; +Cc: remi, linux-btrfs
`find . -type f -exec cat {} >/dev/null +` returns over 5,000 entries
now. After `echo check > /sys/block/md0/md/sync_action`, `cat
/sys/block/md0/md/mismatch_cnt` returns over 3,900.
When is it time to call it quits and reformat everything?
By the way, once I inevitably restore from a backup, is there any risk
that I backed up invisibly corrupted files? I'm pretty sure my latest
complete backup was after the SATA issues had started.
On 02/01/2025 14:40, Victor Banon wrote:
> On 02/01/2025 14:33, Roman Mamedov wrote:
>> Btrfs stores checksums for data, so unless you turned that off, reading
>> corrupted files will return an I/O error, not bad content. So you can
>> just
>> reread all files into /dev/null, and the corrupted ones will be
>> unreadable.
> I have run `find . -type f -exec cat {} >/dev/null +` a few times, but
> issues persist even after deleting all the i/o error files. It's like
> there's always new files that get borked.
>> Overall for your FS it's not looking good, there is no proper fix for
>> "parent
>> transid verify failed" and this may require a reformat.
> Sad to hear. So there's no way I can fix this by deleting corrupted
> files and running a scrub? What's the best case scenario here, and
> what should be my next steps?
>> I remember reading something about the mdadm RAID5 making this issue
>> of Btrfs
>> worse, due to mdraid "write hole", which its PPL feature is supposed
>> to fix.
>
> Sadly I have heard all of the warnings about btrfs and RAID 56 much
> too late. More recently I have read conflicting things about whether
> or not that issue was better, worse, or the same with mdadm. Not that
> it matters at this point.
>
> Thanks.
>
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: BTRFS errors following bad SATA connection
2025-01-03 8:21 ` Victor Banon
@ 2025-01-03 12:09 ` Roman Mamedov
2025-01-03 12:42 ` Victor Banon
0 siblings, 1 reply; 13+ messages in thread
From: Roman Mamedov @ 2025-01-03 12:09 UTC (permalink / raw)
To: Victor Banon; +Cc: remi, linux-btrfs
On Fri, 3 Jan 2025 09:21:45 +0100
Victor Banon <banon.victor@gmail.com> wrote:
> `find . -type f -exec cat {} >/dev/null +` returns over 5,000 entries
> now. After `echo check > /sys/block/md0/md/sync_action`, `cat
> /sys/block/md0/md/mismatch_cnt` returns over 3,900.
>
> When is it time to call it quits and reformat everything?
When it stops mounting :)
As is, surely it is easier to restore 3900 files from the backup rather than
everything?
The problem is, it could be that the transid mismatch errors won't go away
even if you replace all the files, or you might not be able to do so. Attempt
to delete or otherwise manipulate some of them might fail with the same errors
in dmesg.
> By the way, once I inevitably restore from a backup, is there any risk
> that I backed up invisibly corrupted files? I'm pretty sure my latest
> complete backup was after the SATA issues had started.
Should not be, unless your backup system silently stores half-copied files
into the backup until the point it got an I/O error, and does not warn you of
the error, or you miss the warning.
--
With respect,
Roman
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: BTRFS errors following bad SATA connection
2025-01-03 12:09 ` Roman Mamedov
@ 2025-01-03 12:42 ` Victor Banon
2025-01-03 13:45 ` Roman Mamedov
0 siblings, 1 reply; 13+ messages in thread
From: Victor Banon @ 2025-01-03 12:42 UTC (permalink / raw)
To: Roman Mamedov; +Cc: remi, linux-btrfs
On 03/01/2025 13:09, Roman Mamedov wrote:
> When it stops mounting :)
Ok :) So there is hope... So far the file system is usable, it just
occasionally goes into read-only when it encounters i/o errors (like
during a scrub for example).
> As is, surely it is easier to restore 3900 files from the backup rather than
> everything?
Absolutely! But I'm a bit worried because I've already identified and
deleted thousands of files, and errors persisted, and new corrupted
files kept popping up. It's possible I've been doing it wrong, so I'll
give it a go.
How do I identify which 3900 files are mismatched so that I can delete
them? (I'm assuming it's fine if I delete them now and restore them at a
later date once everything is stable - some of these files are the ones
that are not backed up anyway so I don't really have a choice)
> The problem is, it could be that the transid mismatch errors won't go away
> even if you replace all the files, or you might not be able to do so. Attempt
> to delete or otherwise manipulate some of them might fail with the same errors
> in dmesg.
So far I have had no issues deleting files, with the sole exception of
the file in the trash bin I mentioned above. I'm not sure what to do
about that one, apart from hoping it goes away if I fix everything else.
Do you have any advice?
> Should not be, unless your backup system silently stores half-copied files
> into the backup until the point it got an I/O error, and does not warn you of
> the error, or you miss the warning.
>
Ok, that's good news :) Thanks a lot for all your help, I really
appreciate it.
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: BTRFS errors following bad SATA connection
2025-01-03 12:42 ` Victor Banon
@ 2025-01-03 13:45 ` Roman Mamedov
2025-01-03 18:47 ` Victor Banon
0 siblings, 1 reply; 13+ messages in thread
From: Roman Mamedov @ 2025-01-03 13:45 UTC (permalink / raw)
To: Victor Banon; +Cc: remi, linux-btrfs
On Fri, 3 Jan 2025 13:42:25 +0100
Victor Banon <banon.victor@gmail.com> wrote:
> Absolutely! But I'm a bit worried because I've already identified and
> deleted thousands of files, and errors persisted, and new corrupted
> files kept popping up. It's possible I've been doing it wrong, so I'll
> give it a go.
>
> How do I identify which 3900 files are mismatched so that I can delete
> them?
One way that comes to mind:
find . -type f -not -exec cat "{}" > /dev/null \; -exec mv "{}" "{}.bad" \;
Then you just find or delete all files with the *.bad extension.
> > The problem is, it could be that the transid mismatch errors won't go away
> > even if you replace all the files, or you might not be able to do so. Attempt
> > to delete or otherwise manipulate some of them might fail with the same errors
> > in dmesg.
> So far I have had no issues deleting files, with the sole exception of
> the file in the trash bin I mentioned above. I'm not sure what to do
> about that one, apart from hoping it goes away if I fix everything else.
> Do you have any advice?
If the trash bin would be in a subvolume, you could delete the subvolume. But
then that could put the FS into read-only again, and moreover, into a state
where it goes read-only each time shortly after mounting (as the cleaner
process tries to finish the job), with no way to solve that.
--
With respect,
Roman
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: BTRFS errors following bad SATA connection
2025-01-03 13:45 ` Roman Mamedov
@ 2025-01-03 18:47 ` Victor Banon
2025-01-03 21:04 ` Roman Mamedov
0 siblings, 1 reply; 13+ messages in thread
From: Victor Banon @ 2025-01-03 18:47 UTC (permalink / raw)
To: Roman Mamedov; +Cc: remi, linux-btrfs
[-- Attachment #1: Type: text/plain, Size: 1284 bytes --]
Ok, thank you.
My optimism was short-lived. I can't make meaningful progress deleting
the files because the filesystem keeps going read-only (see attached
log) soon after initiating a scan. This wasn't a problem before. I'm not
sure what the standard procedure for bypassing this (rw remount after
error is not allowed), so I've just been rebooting when this happens.
I've also found a few (<10) other ??? / corrupted files that cannot be
moved or deleted.
I'm also noticing that some files that resulted in i/o errors (when
being cat'd to /dev/null) yesterday are fine today. And the other way
around too: there seemingly are files that were fine yesterday but are
bad today.
I'm not sure how to proceed, this seems hopeless (though it still
mounts). Any help is appreciated.
> If the trash bin would be in a subvolume, you could delete the subvolume. But
> then that could put the FS into read-only again, and moreover, into a state
> where it goes read-only each time shortly after mounting (as the cleaner
> process tries to finish the job), with no way to solve that.
Thank you for the information. What does this mean in practice? Do I
just ignore this file forever? What about the corrupted files that are
/not/ in my trash bin, can I never restore them either?
[-- Attachment #2: dmesg.log --]
[-- Type: text/x-log, Size: 85115 bytes --]
[Fri Jan 3 19:15:47 2025] microcode: microcode updated early to revision 0x2f, date = 2019-02-17
[Fri Jan 3 19:15:47 2025] Linux version 6.1.0-28-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian 6.1.119-1 (2024-11-22)
[Fri Jan 3 19:15:47 2025] Command line: BOOT_IMAGE=/boot/vmlinuz-6.1.0-28-amd64 root=UUID=b19e333b-2fff-4025-a856-3e2f26eda4e8 ro quiet
[Fri Jan 3 19:15:47 2025] BIOS-provided physical RAM map:
[Fri Jan 3 19:15:47 2025] BIOS-e820: [mem 0x0000000000000000-0x000000000009a3ff] usable
[Fri Jan 3 19:15:47 2025] BIOS-e820: [mem 0x000000000009a400-0x000000000009ffff] reserved
[Fri Jan 3 19:15:47 2025] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[Fri Jan 3 19:15:47 2025] BIOS-e820: [mem 0x0000000000100000-0x00000000be7a4fff] usable
[Fri Jan 3 19:15:47 2025] BIOS-e820: [mem 0x00000000be7a5000-0x00000000be7f0fff] ACPI NVS
[Fri Jan 3 19:15:47 2025] BIOS-e820: [mem 0x00000000be7f1000-0x00000000be7f8fff] ACPI data
[Fri Jan 3 19:15:47 2025] BIOS-e820: [mem 0x00000000be7f9000-0x00000000bf476fff] reserved
[Fri Jan 3 19:15:47 2025] BIOS-e820: [mem 0x00000000bf477000-0x00000000bf477fff] ACPI NVS
[Fri Jan 3 19:15:47 2025] BIOS-e820: [mem 0x00000000bf478000-0x00000000bf488fff] reserved
[Fri Jan 3 19:15:47 2025] BIOS-e820: [mem 0x00000000bf489000-0x00000000bf48bfff] ACPI NVS
[Fri Jan 3 19:15:47 2025] BIOS-e820: [mem 0x00000000bf48c000-0x00000000bf4acfff] reserved
[Fri Jan 3 19:15:47 2025] BIOS-e820: [mem 0x00000000bf4ad000-0x00000000bf4aefff] usable
[Fri Jan 3 19:15:47 2025] BIOS-e820: [mem 0x00000000bf4af000-0x00000000bf502fff] reserved
[Fri Jan 3 19:15:47 2025] BIOS-e820: [mem 0x00000000bf503000-0x00000000bf50cfff] ACPI NVS
[Fri Jan 3 19:15:47 2025] BIOS-e820: [mem 0x00000000bf50d000-0x00000000bf532fff] reserved
[Fri Jan 3 19:15:47 2025] BIOS-e820: [mem 0x00000000bf533000-0x00000000bf575fff] ACPI NVS
[Fri Jan 3 19:15:47 2025] BIOS-e820: [mem 0x00000000bf576000-0x00000000bf7fffff] usable
[Fri Jan 3 19:15:47 2025] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed3ffff] reserved
[Fri Jan 3 19:15:47 2025] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[Fri Jan 3 19:15:47 2025] BIOS-e820: [mem 0x0000000100000000-0x000000043fffffff] usable
[Fri Jan 3 19:15:47 2025] NX (Execute Disable) protection: active
[Fri Jan 3 19:15:47 2025] SMBIOS 2.7 present.
[Fri Jan 3 19:15:47 2025] DMI: Supermicro X9SCL/X9SCM/X9SCL/X9SCM, BIOS 1.1a 09/28/2011
[Fri Jan 3 19:15:47 2025] tsc: Fast TSC calibration using PIT
[Fri Jan 3 19:15:47 2025] tsc: Detected 3392.017 MHz processor
[Fri Jan 3 19:15:47 2025] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[Fri Jan 3 19:15:47 2025] e820: remove [mem 0x000a0000-0x000fffff] usable
[Fri Jan 3 19:15:47 2025] last_pfn = 0x440000 max_arch_pfn = 0x400000000
[Fri Jan 3 19:15:47 2025] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[Fri Jan 3 19:15:47 2025] e820: update [mem 0xc0000000-0xffffffff] usable ==> reserved
[Fri Jan 3 19:15:47 2025] last_pfn = 0xbf800 max_arch_pfn = 0x400000000
[Fri Jan 3 19:15:47 2025] found SMP MP-table at [mem 0x000fce00-0x000fce0f]
[Fri Jan 3 19:15:47 2025] RAMDISK: [mem 0x320df000-0x35066fff]
[Fri Jan 3 19:15:47 2025] ACPI: Early table checksum verification disabled
[Fri Jan 3 19:15:47 2025] ACPI: RSDP 0x00000000000F0450 000024 (v02 SUPERM)
[Fri Jan 3 19:15:47 2025] ACPI: XSDT 0x00000000BE7F1078 000074 (v01 SUPERM SMCI--MB 00000001 AMI 00010013)
[Fri Jan 3 19:15:47 2025] ACPI: FACP 0x00000000BE7F7F58 0000F4 (v04 SUPERM SMCI--MB 00000001 AMI 00010013)
[Fri Jan 3 19:15:47 2025] ACPI: DSDT 0x00000000BE7F1180 006DD7 (v02 SUPERM SMCI--MB 00000000 INTL 20051117)
[Fri Jan 3 19:15:47 2025] ACPI: FACS 0x00000000BF50AF80 000040
[Fri Jan 3 19:15:47 2025] ACPI: APIC 0x00000000BE7F8050 000092 (v03 SUPERM SMCI--MB 00000001 AMI 00010013)
[Fri Jan 3 19:15:47 2025] ACPI: SSDT 0x00000000BE7F80E8 0001D6 (v01 AMICPU PROC 00000001 MSFT 03000001)
[Fri Jan 3 19:15:47 2025] ACPI: MCFG 0x00000000BE7F82C0 00003C (v01 SUPERM SMCI--MB 00000001 MSFT 00000097)
[Fri Jan 3 19:15:47 2025] ACPI: HPET 0x00000000BE7F8300 000038 (v01 SUPERM SMCI--MB 00000001 AMI. 00000004)
[Fri Jan 3 19:15:47 2025] ACPI: SPMI 0x00000000BE7F8338 000040 (v05 A M I OEMSPMI 00000000 AMI. 00000000)
[Fri Jan 3 19:15:47 2025] ACPI: EINJ 0x00000000BE7F8378 000130 (v01 AMI AMI EINJ 00000000 00000000)
[Fri Jan 3 19:15:47 2025] ACPI: ERST 0x00000000BE7F84A8 000210 (v01 AMIER AMI ERST 00000000 00000000)
[Fri Jan 3 19:15:47 2025] ACPI: HEST 0x00000000BE7F86B8 0000A8 (v01 AMI AMI HEST 00000000 00000000)
[Fri Jan 3 19:15:47 2025] ACPI: BERT 0x00000000BE7F8760 000030 (v01 AMI AMI BERT 00000000 00000000)
[Fri Jan 3 19:15:47 2025] ACPI: Reserving FACP table memory at [mem 0xbe7f7f58-0xbe7f804b]
[Fri Jan 3 19:15:47 2025] ACPI: Reserving DSDT table memory at [mem 0xbe7f1180-0xbe7f7f56]
[Fri Jan 3 19:15:47 2025] ACPI: Reserving FACS table memory at [mem 0xbf50af80-0xbf50afbf]
[Fri Jan 3 19:15:47 2025] ACPI: Reserving APIC table memory at [mem 0xbe7f8050-0xbe7f80e1]
[Fri Jan 3 19:15:47 2025] ACPI: Reserving SSDT table memory at [mem 0xbe7f80e8-0xbe7f82bd]
[Fri Jan 3 19:15:47 2025] ACPI: Reserving MCFG table memory at [mem 0xbe7f82c0-0xbe7f82fb]
[Fri Jan 3 19:15:47 2025] ACPI: Reserving HPET table memory at [mem 0xbe7f8300-0xbe7f8337]
[Fri Jan 3 19:15:47 2025] ACPI: Reserving SPMI table memory at [mem 0xbe7f8338-0xbe7f8377]
[Fri Jan 3 19:15:47 2025] ACPI: Reserving EINJ table memory at [mem 0xbe7f8378-0xbe7f84a7]
[Fri Jan 3 19:15:47 2025] ACPI: Reserving ERST table memory at [mem 0xbe7f84a8-0xbe7f86b7]
[Fri Jan 3 19:15:47 2025] ACPI: Reserving HEST table memory at [mem 0xbe7f86b8-0xbe7f875f]
[Fri Jan 3 19:15:47 2025] ACPI: Reserving BERT table memory at [mem 0xbe7f8760-0xbe7f878f]
[Fri Jan 3 19:15:47 2025] No NUMA configuration found
[Fri Jan 3 19:15:47 2025] Faking a node at [mem 0x0000000000000000-0x000000043fffffff]
[Fri Jan 3 19:15:47 2025] NODE_DATA(0) allocated [mem 0x43ffc9000-0x43fff3fff]
[Fri Jan 3 19:15:47 2025] Zone ranges:
[Fri Jan 3 19:15:47 2025] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[Fri Jan 3 19:15:47 2025] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[Fri Jan 3 19:15:47 2025] Normal [mem 0x0000000100000000-0x000000043fffffff]
[Fri Jan 3 19:15:47 2025] Device empty
[Fri Jan 3 19:15:47 2025] Movable zone start for each node
[Fri Jan 3 19:15:47 2025] Early memory node ranges
[Fri Jan 3 19:15:47 2025] node 0: [mem 0x0000000000001000-0x0000000000099fff]
[Fri Jan 3 19:15:47 2025] node 0: [mem 0x0000000000100000-0x00000000be7a4fff]
[Fri Jan 3 19:15:47 2025] node 0: [mem 0x00000000bf4ad000-0x00000000bf4aefff]
[Fri Jan 3 19:15:47 2025] node 0: [mem 0x00000000bf576000-0x00000000bf7fffff]
[Fri Jan 3 19:15:47 2025] node 0: [mem 0x0000000100000000-0x000000043fffffff]
[Fri Jan 3 19:15:47 2025] Initmem setup node 0 [mem 0x0000000000001000-0x000000043fffffff]
[Fri Jan 3 19:15:47 2025] On node 0, zone DMA: 1 pages in unavailable ranges
[Fri Jan 3 19:15:47 2025] On node 0, zone DMA: 102 pages in unavailable ranges
[Fri Jan 3 19:15:47 2025] On node 0, zone DMA32: 3336 pages in unavailable ranges
[Fri Jan 3 19:15:47 2025] On node 0, zone DMA32: 199 pages in unavailable ranges
[Fri Jan 3 19:15:47 2025] On node 0, zone Normal: 2048 pages in unavailable ranges
[Fri Jan 3 19:15:47 2025] ACPI: PM-Timer IO Port: 0x408
[Fri Jan 3 19:15:47 2025] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[Fri Jan 3 19:15:47 2025] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[Fri Jan 3 19:15:47 2025] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[Fri Jan 3 19:15:47 2025] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[Fri Jan 3 19:15:47 2025] ACPI: Using ACPI (MADT) for SMP configuration information
[Fri Jan 3 19:15:47 2025] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[Fri Jan 3 19:15:47 2025] TSC deadline timer available
[Fri Jan 3 19:15:47 2025] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[Fri Jan 3 19:15:47 2025] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[Fri Jan 3 19:15:47 2025] PM: hibernation: Registered nosave memory: [mem 0x0009a000-0x0009afff]
[Fri Jan 3 19:15:47 2025] PM: hibernation: Registered nosave memory: [mem 0x0009b000-0x0009ffff]
[Fri Jan 3 19:15:47 2025] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[Fri Jan 3 19:15:47 2025] PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[Fri Jan 3 19:15:47 2025] PM: hibernation: Registered nosave memory: [mem 0xbe7a5000-0xbe7f0fff]
[Fri Jan 3 19:15:47 2025] PM: hibernation: Registered nosave memory: [mem 0xbe7f1000-0xbe7f8fff]
[Fri Jan 3 19:15:47 2025] PM: hibernation: Registered nosave memory: [mem 0xbe7f9000-0xbf476fff]
[Fri Jan 3 19:15:47 2025] PM: hibernation: Registered nosave memory: [mem 0xbf477000-0xbf477fff]
[Fri Jan 3 19:15:47 2025] PM: hibernation: Registered nosave memory: [mem 0xbf478000-0xbf488fff]
[Fri Jan 3 19:15:47 2025] PM: hibernation: Registered nosave memory: [mem 0xbf489000-0xbf48bfff]
[Fri Jan 3 19:15:47 2025] PM: hibernation: Registered nosave memory: [mem 0xbf48c000-0xbf4acfff]
[Fri Jan 3 19:15:47 2025] PM: hibernation: Registered nosave memory: [mem 0xbf4af000-0xbf502fff]
[Fri Jan 3 19:15:47 2025] PM: hibernation: Registered nosave memory: [mem 0xbf503000-0xbf50cfff]
[Fri Jan 3 19:15:47 2025] PM: hibernation: Registered nosave memory: [mem 0xbf50d000-0xbf532fff]
[Fri Jan 3 19:15:47 2025] PM: hibernation: Registered nosave memory: [mem 0xbf533000-0xbf575fff]
[Fri Jan 3 19:15:47 2025] PM: hibernation: Registered nosave memory: [mem 0xbf800000-0xfed1bfff]
[Fri Jan 3 19:15:47 2025] PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed3ffff]
[Fri Jan 3 19:15:47 2025] PM: hibernation: Registered nosave memory: [mem 0xfed40000-0xfeffffff]
[Fri Jan 3 19:15:47 2025] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
[Fri Jan 3 19:15:47 2025] [mem 0xbf800000-0xfed1bfff] available for PCI devices
[Fri Jan 3 19:15:47 2025] Booting paravirtualized kernel on bare hardware
[Fri Jan 3 19:15:47 2025] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[Fri Jan 3 19:15:47 2025] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[Fri Jan 3 19:15:47 2025] percpu: Embedded 61 pages/cpu s212992 r8192 d28672 u262144
[Fri Jan 3 19:15:47 2025] pcpu-alloc: s212992 r8192 d28672 u262144 alloc=1*2097152
[Fri Jan 3 19:15:47 2025] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[Fri Jan 3 19:15:47 2025] Fallback order for Node 0: 0
[Fri Jan 3 19:15:47 2025] Built 1 zonelists, mobility grouping on. Total pages: 4123016
[Fri Jan 3 19:15:47 2025] Policy zone: Normal
[Fri Jan 3 19:15:47 2025] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.1.0-28-amd64 root=UUID=b19e333b-2fff-4025-a856-3e2f26eda4e8 ro quiet
[Fri Jan 3 19:15:47 2025] Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-6.1.0-28-amd64", will be passed to user space.
[Fri Jan 3 19:15:47 2025] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[Fri Jan 3 19:15:47 2025] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[Fri Jan 3 19:15:47 2025] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[Fri Jan 3 19:15:47 2025] software IO TLB: area num 8.
[Fri Jan 3 19:15:47 2025] Memory: 3138976K/16754472K available (14342K kernel code, 2335K rwdata, 9080K rodata, 2800K init, 17392K bss, 457876K reserved, 0K cma-reserved)
[Fri Jan 3 19:15:47 2025] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[Fri Jan 3 19:15:47 2025] Kernel/User page tables isolation: enabled
[Fri Jan 3 19:15:47 2025] ftrace: allocating 40283 entries in 158 pages
[Fri Jan 3 19:15:47 2025] ftrace: allocated 158 pages with 5 groups
[Fri Jan 3 19:15:47 2025] Dynamic Preempt: voluntary
[Fri Jan 3 19:15:47 2025] rcu: Preemptible hierarchical RCU implementation.
[Fri Jan 3 19:15:47 2025] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
[Fri Jan 3 19:15:47 2025] Trampoline variant of Tasks RCU enabled.
[Fri Jan 3 19:15:47 2025] Rude variant of Tasks RCU enabled.
[Fri Jan 3 19:15:47 2025] Tracing variant of Tasks RCU enabled.
[Fri Jan 3 19:15:47 2025] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[Fri Jan 3 19:15:47 2025] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[Fri Jan 3 19:15:47 2025] NR_IRQS: 524544, nr_irqs: 488, preallocated irqs: 16
[Fri Jan 3 19:15:47 2025] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[Fri Jan 3 19:15:47 2025] Console: colour VGA+ 80x25
[Fri Jan 3 19:15:47 2025] printk: console [tty0] enabled
[Fri Jan 3 19:15:47 2025] ACPI: Core revision 20220331
[Fri Jan 3 19:15:47 2025] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[Fri Jan 3 19:15:47 2025] APIC: Switch to symmetric I/O mode setup
[Fri Jan 3 19:15:47 2025] x2apic: IRQ remapping doesn't support X2APIC mode
[Fri Jan 3 19:15:47 2025] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[Fri Jan 3 19:15:47 2025] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x30e4d9d65da, max_idle_ns: 440795324814 ns
[Fri Jan 3 19:15:47 2025] Calibrating delay loop (skipped), value calculated using timer frequency.. 6784.03 BogoMIPS (lpj=13568068)
[Fri Jan 3 19:15:47 2025] CPU0: Thermal monitoring enabled (TM1)
[Fri Jan 3 19:15:47 2025] process: using mwait in idle threads
[Fri Jan 3 19:15:47 2025] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[Fri Jan 3 19:15:47 2025] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[Fri Jan 3 19:15:47 2025] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[Fri Jan 3 19:15:47 2025] Spectre V2 : Mitigation: Retpolines
[Fri Jan 3 19:15:47 2025] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[Fri Jan 3 19:15:47 2025] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[Fri Jan 3 19:15:47 2025] Spectre V2 : Enabling Restricted Speculation for firmware calls
[Fri Jan 3 19:15:47 2025] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[Fri Jan 3 19:15:47 2025] Spectre V2 : User space: Mitigation: STIBP via prctl
[Fri Jan 3 19:15:47 2025] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[Fri Jan 3 19:15:47 2025] MDS: Mitigation: Clear CPU buffers
[Fri Jan 3 19:15:47 2025] MMIO Stale Data: Unknown: No mitigations
[Fri Jan 3 19:15:47 2025] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[Fri Jan 3 19:15:47 2025] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[Fri Jan 3 19:15:47 2025] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[Fri Jan 3 19:15:47 2025] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[Fri Jan 3 19:15:47 2025] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[Fri Jan 3 19:15:47 2025] Freeing SMP alternatives memory: 36K
[Fri Jan 3 19:15:47 2025] pid_max: default: 32768 minimum: 301
[Fri Jan 3 19:15:47 2025] LSM: Security Framework initializing
[Fri Jan 3 19:15:47 2025] landlock: Up and running.
[Fri Jan 3 19:15:47 2025] Yama: disabled by default; enable with sysctl kernel.yama.*
[Fri Jan 3 19:15:47 2025] AppArmor: AppArmor initialized
[Fri Jan 3 19:15:47 2025] TOMOYO Linux initialized
[Fri Jan 3 19:15:47 2025] LSM support for eBPF active
[Fri Jan 3 19:15:47 2025] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[Fri Jan 3 19:15:47 2025] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[Fri Jan 3 19:15:47 2025] smpboot: CPU0: Intel(R) Xeon(R) CPU E31270 @ 3.40GHz (family: 0x6, model: 0x2a, stepping: 0x7)
[Fri Jan 3 19:15:47 2025] cblist_init_generic: Setting adjustable number of callback queues.
[Fri Jan 3 19:15:47 2025] cblist_init_generic: Setting shift to 3 and lim to 1.
[Fri Jan 3 19:15:47 2025] cblist_init_generic: Setting adjustable number of callback queues.
[Fri Jan 3 19:15:47 2025] cblist_init_generic: Setting shift to 3 and lim to 1.
[Fri Jan 3 19:15:47 2025] cblist_init_generic: Setting adjustable number of callback queues.
[Fri Jan 3 19:15:47 2025] cblist_init_generic: Setting shift to 3 and lim to 1.
[Fri Jan 3 19:15:47 2025] Performance Events: PEBS fmt1+, SandyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
[Fri Jan 3 19:15:47 2025] ... version: 3
[Fri Jan 3 19:15:47 2025] ... bit width: 48
[Fri Jan 3 19:15:47 2025] ... generic registers: 4
[Fri Jan 3 19:15:47 2025] ... value mask: 0000ffffffffffff
[Fri Jan 3 19:15:47 2025] ... max period: 00007fffffffffff
[Fri Jan 3 19:15:47 2025] ... fixed-purpose events: 3
[Fri Jan 3 19:15:47 2025] ... event mask: 000000070000000f
[Fri Jan 3 19:15:47 2025] signal: max sigframe size: 1776
[Fri Jan 3 19:15:47 2025] Estimated ratio of average max frequency by base frequency (times 1024): 1054
[Fri Jan 3 19:15:47 2025] rcu: Hierarchical SRCU implementation.
[Fri Jan 3 19:15:47 2025] rcu: Max phase no-delay instances is 1000.
[Fri Jan 3 19:15:47 2025] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[Fri Jan 3 19:15:47 2025] smp: Bringing up secondary CPUs ...
[Fri Jan 3 19:15:47 2025] x86: Booting SMP configuration:
[Fri Jan 3 19:15:47 2025] .... node #0, CPUs: #1 #2 #3 #4
[Fri Jan 3 19:15:47 2025] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[Fri Jan 3 19:15:47 2025] #5 #6 #7
[Fri Jan 3 19:15:47 2025] smp: Brought up 1 node, 8 CPUs
[Fri Jan 3 19:15:47 2025] smpboot: Max logical packages: 1
[Fri Jan 3 19:15:47 2025] smpboot: Total of 8 processors activated (54272.27 BogoMIPS)
[Fri Jan 3 19:15:47 2025] node 0 deferred pages initialised in 20ms
[Fri Jan 3 19:15:47 2025] devtmpfs: initialized
[Fri Jan 3 19:15:47 2025] x86/mm: Memory block size: 128MB
[Fri Jan 3 19:15:47 2025] ACPI: PM: Registering ACPI NVS region [mem 0xbe7a5000-0xbe7f0fff] (311296 bytes)
[Fri Jan 3 19:15:47 2025] ACPI: PM: Registering ACPI NVS region [mem 0xbf477000-0xbf477fff] (4096 bytes)
[Fri Jan 3 19:15:47 2025] ACPI: PM: Registering ACPI NVS region [mem 0xbf489000-0xbf48bfff] (12288 bytes)
[Fri Jan 3 19:15:47 2025] ACPI: PM: Registering ACPI NVS region [mem 0xbf503000-0xbf50cfff] (40960 bytes)
[Fri Jan 3 19:15:47 2025] ACPI: PM: Registering ACPI NVS region [mem 0xbf533000-0xbf575fff] (274432 bytes)
[Fri Jan 3 19:15:47 2025] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[Fri Jan 3 19:15:47 2025] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[Fri Jan 3 19:15:47 2025] pinctrl core: initialized pinctrl subsystem
[Fri Jan 3 19:15:47 2025] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[Fri Jan 3 19:15:47 2025] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[Fri Jan 3 19:15:47 2025] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[Fri Jan 3 19:15:47 2025] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[Fri Jan 3 19:15:47 2025] audit: initializing netlink subsys (disabled)
[Fri Jan 3 19:15:47 2025] audit: type=2000 audit(1735928146.076:1): state=initialized audit_enabled=0 res=1
[Fri Jan 3 19:15:47 2025] thermal_sys: Registered thermal governor 'fair_share'
[Fri Jan 3 19:15:47 2025] thermal_sys: Registered thermal governor 'bang_bang'
[Fri Jan 3 19:15:47 2025] thermal_sys: Registered thermal governor 'step_wise'
[Fri Jan 3 19:15:47 2025] thermal_sys: Registered thermal governor 'user_space'
[Fri Jan 3 19:15:47 2025] thermal_sys: Registered thermal governor 'power_allocator'
[Fri Jan 3 19:15:47 2025] cpuidle: using governor ladder
[Fri Jan 3 19:15:47 2025] cpuidle: using governor menu
[Fri Jan 3 19:15:47 2025] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[Fri Jan 3 19:15:47 2025] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[Fri Jan 3 19:15:47 2025] PCI: not using MMCONFIG
[Fri Jan 3 19:15:47 2025] PCI: Using configuration type 1 for base access
[Fri Jan 3 19:15:47 2025] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[Fri Jan 3 19:15:47 2025] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[Fri Jan 3 19:15:47 2025] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[Fri Jan 3 19:15:47 2025] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[Fri Jan 3 19:15:47 2025] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[Fri Jan 3 19:15:47 2025] ACPI: Added _OSI(Module Device)
[Fri Jan 3 19:15:47 2025] ACPI: Added _OSI(Processor Device)
[Fri Jan 3 19:15:47 2025] ACPI: Added _OSI(3.0 _SCP Extensions)
[Fri Jan 3 19:15:47 2025] ACPI: Added _OSI(Processor Aggregator Device)
[Fri Jan 3 19:15:47 2025] ACPI: 2 ACPI AML tables successfully acquired and loaded
[Fri Jan 3 19:15:47 2025] ACPI: Dynamic OEM Table Load:
[Fri Jan 3 19:15:47 2025] ACPI: SSDT 0xFFFF9EC4C1057000 00086C (v01 AMI IST 00000001 MSFT 03000001)
[Fri Jan 3 19:15:47 2025] ACPI: Dynamic OEM Table Load:
[Fri Jan 3 19:15:47 2025] ACPI: SSDT 0xFFFF9EC4C10F9800 0001A4 (v01 AMI CST 00000001 MSFT 03000001)
[Fri Jan 3 19:15:47 2025] ACPI: Interpreter enabled
[Fri Jan 3 19:15:47 2025] ACPI: PM: (supports S0 S1 S4 S5)
[Fri Jan 3 19:15:47 2025] ACPI: Using IOAPIC for interrupt routing
[Fri Jan 3 19:15:47 2025] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[Fri Jan 3 19:15:47 2025] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
[Fri Jan 3 19:15:47 2025] pmd_set_huge: Cannot satisfy [mem 0xe0000000-0xe0200000] with a huge-page mapping due to MTRR override.
[Fri Jan 3 19:15:47 2025] HEST: Table parsing has been initialized.
[Fri Jan 3 19:15:47 2025] [Firmware Warn]: GHES: Poll interval is 0 for generic hardware error source: 1, disabled.
[Fri Jan 3 19:15:47 2025] GHES: APEI firmware first mode is enabled by WHEA _OSC.
[Fri Jan 3 19:15:47 2025] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[Fri Jan 3 19:15:47 2025] PCI: Using E820 reservations for host bridge windows
[Fri Jan 3 19:15:47 2025] ACPI: Enabled 8 GPEs in block 00 to 3F
[Fri Jan 3 19:15:47 2025] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[Fri Jan 3 19:15:47 2025] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[Fri Jan 3 19:15:47 2025] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[Fri Jan 3 19:15:47 2025] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug LTR]
[Fri Jan 3 19:15:47 2025] acpi PNP0A08:00: _OSC: OS now controls [PME AER PCIeCapability]
[Fri Jan 3 19:15:47 2025] PCI host bridge to bus 0000:00
[Fri Jan 3 19:15:47 2025] pci_bus 0000:00: root bus resource [io 0x0000-0x03af window]
[Fri Jan 3 19:15:47 2025] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window]
[Fri Jan 3 19:15:47 2025] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df window]
[Fri Jan 3 19:15:47 2025] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[Fri Jan 3 19:15:47 2025] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
[Fri Jan 3 19:15:47 2025] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfbffffff window]
[Fri Jan 3 19:15:47 2025] pci_bus 0000:00: root bus resource [bus 00-ff]
[Fri Jan 3 19:15:47 2025] pci 0000:00:00.0: [8086:0108] type 00 class 0x060000
[Fri Jan 3 19:15:47 2025] pci 0000:00:06.0: [8086:010d] type 01 class 0x060400
[Fri Jan 3 19:15:47 2025] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
[Fri Jan 3 19:15:47 2025] pci 0000:00:19.0: [8086:1502] type 00 class 0x020000
[Fri Jan 3 19:15:47 2025] pci 0000:00:19.0: reg 0x10: [mem 0xfb800000-0xfb81ffff]
[Fri Jan 3 19:15:47 2025] pci 0000:00:19.0: reg 0x14: [mem 0xfb824000-0xfb824fff]
[Fri Jan 3 19:15:47 2025] pci 0000:00:19.0: reg 0x18: [io 0xf020-0xf03f]
[Fri Jan 3 19:15:47 2025] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
[Fri Jan 3 19:15:47 2025] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
[Fri Jan 3 19:15:47 2025] pci 0000:00:1a.0: reg 0x10: [mem 0xfb823000-0xfb8233ff]
[Fri Jan 3 19:15:47 2025] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[Fri Jan 3 19:15:47 2025] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
[Fri Jan 3 19:15:47 2025] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[Fri Jan 3 19:15:47 2025] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
[Fri Jan 3 19:15:47 2025] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[Fri Jan 3 19:15:47 2025] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
[Fri Jan 3 19:15:47 2025] pci 0000:00:1d.0: reg 0x10: [mem 0xfb822000-0xfb8223ff]
[Fri Jan 3 19:15:47 2025] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[Fri Jan 3 19:15:47 2025] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
[Fri Jan 3 19:15:47 2025] pci 0000:00:1f.0: [8086:1c54] type 00 class 0x060100
[Fri Jan 3 19:15:47 2025] pci 0000:00:1f.2: [8086:1c02] type 00 class 0x010601
[Fri Jan 3 19:15:47 2025] pci 0000:00:1f.2: reg 0x10: [io 0xf070-0xf077]
[Fri Jan 3 19:15:47 2025] pci 0000:00:1f.2: reg 0x14: [io 0xf060-0xf063]
[Fri Jan 3 19:15:47 2025] pci 0000:00:1f.2: reg 0x18: [io 0xf050-0xf057]
[Fri Jan 3 19:15:47 2025] pci 0000:00:1f.2: reg 0x1c: [io 0xf040-0xf043]
[Fri Jan 3 19:15:47 2025] pci 0000:00:1f.2: reg 0x20: [io 0xf000-0xf01f]
[Fri Jan 3 19:15:47 2025] pci 0000:00:1f.2: reg 0x24: [mem 0xfb821000-0xfb8217ff]
[Fri Jan 3 19:15:47 2025] pci 0000:00:1f.2: PME# supported from D3hot
[Fri Jan 3 19:15:47 2025] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
[Fri Jan 3 19:15:47 2025] pci 0000:00:1f.3: reg 0x10: [mem 0xfb820000-0xfb8200ff 64bit]
[Fri Jan 3 19:15:47 2025] pci 0000:00:1f.3: reg 0x20: [io 0x1180-0x119f]
[Fri Jan 3 19:15:47 2025] pci 0000:01:00.0: [1000:0072] type 00 class 0x010700
[Fri Jan 3 19:15:47 2025] pci 0000:01:00.0: reg 0x10: [io 0xe000-0xe0ff]
[Fri Jan 3 19:15:47 2025] pci 0000:01:00.0: reg 0x14: [mem 0xfb600000-0xfb603fff 64bit]
[Fri Jan 3 19:15:47 2025] pci 0000:01:00.0: reg 0x1c: [mem 0xff580000-0xff5bffff 64bit]
[Fri Jan 3 19:15:47 2025] pci 0000:01:00.0: reg 0x30: [mem 0xfb100000-0xfb17ffff pref]
[Fri Jan 3 19:15:47 2025] pci 0000:01:00.0: enabling Extended Tags
[Fri Jan 3 19:15:47 2025] pci 0000:01:00.0: supports D1 D2
[Fri Jan 3 19:15:47 2025] pci 0000:01:00.0: reg 0x174: [mem 0xfb5c0000-0xfb5c3fff 64bit]
[Fri Jan 3 19:15:47 2025] pci 0000:01:00.0: VF(n) BAR0 space: [mem 0xfb5c0000-0xfb5fffff 64bit] (contains BAR0 for 16 VFs)
[Fri Jan 3 19:15:47 2025] pci 0000:01:00.0: reg 0x17c: [mem 0xfb180000-0xfb1bffff 64bit]
[Fri Jan 3 19:15:47 2025] pci 0000:01:00.0: VF(n) BAR2 space: [mem 0xfb180000-0xfb57ffff 64bit] (contains BAR2 for 16 VFs)
[Fri Jan 3 19:15:47 2025] pci 0000:01:00.0: 16.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x4 link at 0000:00:06.0 (capable of 32.000 Gb/s with 5.0 GT/s PCIe x8 link)
[Fri Jan 3 19:15:47 2025] pci 0000:00:06.0: PCI bridge to [bus 01]
[Fri Jan 3 19:15:47 2025] pci 0000:00:06.0: bridge window [io 0xe000-0xefff]
[Fri Jan 3 19:15:47 2025] pci 0000:00:06.0: bridge window [mem 0xfb100000-0xfb6fffff]
[Fri Jan 3 19:15:47 2025] pci 0000:00:1c.0: PCI bridge to [bus 02]
[Fri Jan 3 19:15:47 2025] pci 0000:03:00.0: [8086:10d3] type 00 class 0x020000
[Fri Jan 3 19:15:47 2025] pci 0000:03:00.0: reg 0x10: [mem 0xfb700000-0xfb71ffff]
[Fri Jan 3 19:15:47 2025] pci 0000:03:00.0: reg 0x18: [io 0xd000-0xd01f]
[Fri Jan 3 19:15:47 2025] pci 0000:03:00.0: reg 0x1c: [mem 0xfb720000-0xfb723fff]
[Fri Jan 3 19:15:47 2025] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[Fri Jan 3 19:15:47 2025] pci 0000:00:1c.4: PCI bridge to [bus 03]
[Fri Jan 3 19:15:47 2025] pci 0000:00:1c.4: bridge window [io 0xd000-0xdfff]
[Fri Jan 3 19:15:47 2025] pci 0000:00:1c.4: bridge window [mem 0xfb700000-0xfb7fffff]
[Fri Jan 3 19:15:47 2025] pci_bus 0000:04: extended config space not accessible
[Fri Jan 3 19:15:47 2025] pci 0000:04:03.0: [102b:0532] type 00 class 0x030000
[Fri Jan 3 19:15:47 2025] pci 0000:04:03.0: reg 0x10: [mem 0xf9000000-0xf9ffffff pref]
[Fri Jan 3 19:15:47 2025] pci 0000:04:03.0: reg 0x14: [mem 0xfb000000-0xfb003fff]
[Fri Jan 3 19:15:47 2025] pci 0000:04:03.0: reg 0x18: [mem 0xfa800000-0xfaffffff]
[Fri Jan 3 19:15:47 2025] pci 0000:04:03.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[Fri Jan 3 19:15:47 2025] pci 0000:00:1e.0: PCI bridge to [bus 04] (subtractive decode)
[Fri Jan 3 19:15:47 2025] pci 0000:00:1e.0: bridge window [mem 0xfa800000-0xfb0fffff]
[Fri Jan 3 19:15:47 2025] pci 0000:00:1e.0: bridge window [mem 0xf9000000-0xf9ffffff 64bit pref]
[Fri Jan 3 19:15:47 2025] pci 0000:00:1e.0: bridge window [io 0x0000-0x03af window] (subtractive decode)
[Fri Jan 3 19:15:47 2025] pci 0000:00:1e.0: bridge window [io 0x03e0-0x0cf7 window] (subtractive decode)
[Fri Jan 3 19:15:47 2025] pci 0000:00:1e.0: bridge window [io 0x03b0-0x03df window] (subtractive decode)
[Fri Jan 3 19:15:47 2025] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff window] (subtractive decode)
[Fri Jan 3 19:15:47 2025] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000dffff window] (subtractive decode)
[Fri Jan 3 19:15:47 2025] pci 0000:00:1e.0: bridge window [mem 0xf0000000-0xfbffffff window] (subtractive decode)
[Fri Jan 3 19:15:47 2025] ACPI: PCI: Interrupt link LNKA configured for IRQ 5
[Fri Jan 3 19:15:47 2025] ACPI: PCI: Interrupt link LNKB configured for IRQ 7
[Fri Jan 3 19:15:47 2025] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[Fri Jan 3 19:15:47 2025] ACPI: PCI: Interrupt link LNKD configured for IRQ 11
[Fri Jan 3 19:15:47 2025] ACPI: PCI: Interrupt link LNKE configured for IRQ 11
[Fri Jan 3 19:15:47 2025] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[Fri Jan 3 19:15:47 2025] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[Fri Jan 3 19:15:47 2025] ACPI: PCI: Interrupt link LNKH configured for IRQ 5
[Fri Jan 3 19:15:47 2025] iommu: Default domain type: Translated
[Fri Jan 3 19:15:47 2025] iommu: DMA domain TLB invalidation policy: lazy mode
[Fri Jan 3 19:15:47 2025] pps_core: LinuxPPS API ver. 1 registered
[Fri Jan 3 19:15:47 2025] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[Fri Jan 3 19:15:47 2025] PTP clock support registered
[Fri Jan 3 19:15:47 2025] EDAC MC: Ver: 3.0.0
[Fri Jan 3 19:15:47 2025] NetLabel: Initializing
[Fri Jan 3 19:15:47 2025] NetLabel: domain hash size = 128
[Fri Jan 3 19:15:47 2025] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[Fri Jan 3 19:15:47 2025] NetLabel: unlabeled traffic allowed by default
[Fri Jan 3 19:15:47 2025] PCI: Using ACPI for IRQ routing
[Fri Jan 3 19:15:47 2025] PCI: pci_cache_line_size set to 64 bytes
[Fri Jan 3 19:15:47 2025] pci 0000:01:00.0: can't claim BAR 3 [mem 0xff580000-0xff5bffff 64bit]: no compatible bridge window
[Fri Jan 3 19:15:47 2025] e820: reserve RAM buffer [mem 0x0009a400-0x0009ffff]
[Fri Jan 3 19:15:47 2025] e820: reserve RAM buffer [mem 0xbe7a5000-0xbfffffff]
[Fri Jan 3 19:15:47 2025] e820: reserve RAM buffer [mem 0xbf4af000-0xbfffffff]
[Fri Jan 3 19:15:47 2025] e820: reserve RAM buffer [mem 0xbf800000-0xbfffffff]
[Fri Jan 3 19:15:47 2025] pci 0000:04:03.0: vgaarb: setting as boot VGA device
[Fri Jan 3 19:15:47 2025] pci 0000:04:03.0: vgaarb: bridge control possible
[Fri Jan 3 19:15:47 2025] pci 0000:04:03.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[Fri Jan 3 19:15:47 2025] vgaarb: loaded
[Fri Jan 3 19:15:47 2025] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[Fri Jan 3 19:15:47 2025] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[Fri Jan 3 19:15:47 2025] clocksource: Switched to clocksource tsc-early
[Fri Jan 3 19:15:47 2025] VFS: Disk quotas dquot_6.6.0
[Fri Jan 3 19:15:47 2025] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[Fri Jan 3 19:15:47 2025] AppArmor: AppArmor Filesystem Enabled
[Fri Jan 3 19:15:47 2025] pnp: PnP ACPI init
[Fri Jan 3 19:15:47 2025] system 00:00: [mem 0xfed10000-0xfed19fff] has been reserved
[Fri Jan 3 19:15:47 2025] system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
[Fri Jan 3 19:15:47 2025] system 00:00: [mem 0xfed90000-0xfed93fff] has been reserved
[Fri Jan 3 19:15:47 2025] system 00:00: [mem 0xfed20000-0xfed3ffff] has been reserved
[Fri Jan 3 19:15:47 2025] system 00:00: [mem 0xfee00000-0xfee0ffff] has been reserved
[Fri Jan 3 19:15:47 2025] system 00:02: [io 0x04d0-0x04d1] has been reserved
[Fri Jan 3 19:15:47 2025] system 00:03: [io 0x0a00-0x0a1f] has been reserved
[Fri Jan 3 19:15:47 2025] system 00:03: [io 0x0a30-0x0a3f] has been reserved
[Fri Jan 3 19:15:47 2025] pnp 00:06: [dma 0 disabled]
[Fri Jan 3 19:15:47 2025] pnp 00:07: [dma 0 disabled]
[Fri Jan 3 19:15:47 2025] system 00:08: [io 0x0b00-0x0b7f] has been reserved
[Fri Jan 3 19:15:47 2025] pnp 00:09: [dma 0 disabled]
[Fri Jan 3 19:15:47 2025] system 00:0a: [io 0x0400-0x0453] has been reserved
[Fri Jan 3 19:15:47 2025] system 00:0a: [io 0x0458-0x047f] has been reserved
[Fri Jan 3 19:15:47 2025] system 00:0a: [io 0x1180-0x119f] has been reserved
[Fri Jan 3 19:15:47 2025] system 00:0a: [io 0x0500-0x057f] has been reserved
[Fri Jan 3 19:15:47 2025] system 00:0a: [mem 0xfed1c000-0xfed1ffff] has been reserved
[Fri Jan 3 19:15:47 2025] system 00:0a: [mem 0xfec00000-0xfecfffff] could not be reserved
[Fri Jan 3 19:15:47 2025] system 00:0a: [mem 0xfed08000-0xfed08fff] has been reserved
[Fri Jan 3 19:15:47 2025] system 00:0a: [mem 0xff000000-0xffffffff] has been reserved
[Fri Jan 3 19:15:47 2025] system 00:0b: [io 0x0454-0x0457] has been reserved
[Fri Jan 3 19:15:47 2025] pnp: PnP ACPI: found 12 devices
[Fri Jan 3 19:15:47 2025] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[Fri Jan 3 19:15:47 2025] NET: Registered PF_INET protocol family
[Fri Jan 3 19:15:47 2025] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[Fri Jan 3 19:15:47 2025] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[Fri Jan 3 19:15:47 2025] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[Fri Jan 3 19:15:47 2025] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[Fri Jan 3 19:15:47 2025] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[Fri Jan 3 19:15:47 2025] TCP: Hash tables configured (established 131072 bind 65536)
[Fri Jan 3 19:15:47 2025] MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
[Fri Jan 3 19:15:47 2025] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
[Fri Jan 3 19:15:47 2025] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
[Fri Jan 3 19:15:47 2025] NET: Registered PF_UNIX/PF_LOCAL protocol family
[Fri Jan 3 19:15:47 2025] NET: Registered PF_XDP protocol family
[Fri Jan 3 19:15:47 2025] pci 0000:01:00.0: BAR 3: assigned [mem 0xfb580000-0xfb5bffff 64bit]
[Fri Jan 3 19:15:47 2025] pci 0000:00:06.0: PCI bridge to [bus 01]
[Fri Jan 3 19:15:47 2025] pci 0000:00:06.0: bridge window [io 0xe000-0xefff]
[Fri Jan 3 19:15:47 2025] pci 0000:00:06.0: bridge window [mem 0xfb100000-0xfb6fffff]
[Fri Jan 3 19:15:47 2025] pci 0000:00:1c.0: PCI bridge to [bus 02]
[Fri Jan 3 19:15:47 2025] pci 0000:00:1c.4: PCI bridge to [bus 03]
[Fri Jan 3 19:15:47 2025] pci 0000:00:1c.4: bridge window [io 0xd000-0xdfff]
[Fri Jan 3 19:15:47 2025] pci 0000:00:1c.4: bridge window [mem 0xfb700000-0xfb7fffff]
[Fri Jan 3 19:15:47 2025] pci 0000:00:1e.0: PCI bridge to [bus 04]
[Fri Jan 3 19:15:47 2025] pci 0000:00:1e.0: bridge window [mem 0xfa800000-0xfb0fffff]
[Fri Jan 3 19:15:47 2025] pci 0000:00:1e.0: bridge window [mem 0xf9000000-0xf9ffffff 64bit pref]
[Fri Jan 3 19:15:47 2025] pci_bus 0000:00: resource 4 [io 0x0000-0x03af window]
[Fri Jan 3 19:15:47 2025] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7 window]
[Fri Jan 3 19:15:47 2025] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df window]
[Fri Jan 3 19:15:47 2025] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff window]
[Fri Jan 3 19:15:47 2025] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
[Fri Jan 3 19:15:47 2025] pci_bus 0000:00: resource 9 [mem 0xf0000000-0xfbffffff window]
[Fri Jan 3 19:15:47 2025] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
[Fri Jan 3 19:15:47 2025] pci_bus 0000:01: resource 1 [mem 0xfb100000-0xfb6fffff]
[Fri Jan 3 19:15:47 2025] pci_bus 0000:03: resource 0 [io 0xd000-0xdfff]
[Fri Jan 3 19:15:47 2025] pci_bus 0000:03: resource 1 [mem 0xfb700000-0xfb7fffff]
[Fri Jan 3 19:15:47 2025] pci_bus 0000:04: resource 1 [mem 0xfa800000-0xfb0fffff]
[Fri Jan 3 19:15:47 2025] pci_bus 0000:04: resource 2 [mem 0xf9000000-0xf9ffffff 64bit pref]
[Fri Jan 3 19:15:47 2025] pci_bus 0000:04: resource 4 [io 0x0000-0x03af window]
[Fri Jan 3 19:15:47 2025] pci_bus 0000:04: resource 5 [io 0x03e0-0x0cf7 window]
[Fri Jan 3 19:15:47 2025] pci_bus 0000:04: resource 6 [io 0x03b0-0x03df window]
[Fri Jan 3 19:15:47 2025] pci_bus 0000:04: resource 7 [io 0x0d00-0xffff window]
[Fri Jan 3 19:15:47 2025] pci_bus 0000:04: resource 8 [mem 0x000a0000-0x000dffff window]
[Fri Jan 3 19:15:47 2025] pci_bus 0000:04: resource 9 [mem 0xf0000000-0xfbffffff window]
[Fri Jan 3 19:15:47 2025] PCI: CLS 64 bytes, default 64
[Fri Jan 3 19:15:47 2025] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[Fri Jan 3 19:15:47 2025] software IO TLB: mapped [mem 0x00000000ba7a5000-0x00000000be7a5000] (64MB)
[Fri Jan 3 19:15:47 2025] Trying to unpack rootfs image as initramfs...
[Fri Jan 3 19:15:47 2025] Initialise system trusted keyrings
[Fri Jan 3 19:15:47 2025] Key type blacklist registered
[Fri Jan 3 19:15:47 2025] workingset: timestamp_bits=36 max_order=22 bucket_order=0
[Fri Jan 3 19:15:47 2025] zbud: loaded
[Fri Jan 3 19:15:47 2025] integrity: Platform Keyring initialized
[Fri Jan 3 19:15:47 2025] integrity: Machine keyring initialized
[Fri Jan 3 19:15:47 2025] Key type asymmetric registered
[Fri Jan 3 19:15:47 2025] Asymmetric key parser 'x509' registered
[Fri Jan 3 19:15:47 2025] Freeing initrd memory: 48672K
[Fri Jan 3 19:15:47 2025] alg: self-tests for CTR-KDF (hmac(sha256)) passed
[Fri Jan 3 19:15:47 2025] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
[Fri Jan 3 19:15:47 2025] io scheduler mq-deadline registered
[Fri Jan 3 19:15:47 2025] pcieport 0000:00:06.0: PME: Signaling with IRQ 24
[Fri Jan 3 19:15:47 2025] pcieport 0000:00:1c.0: PME: Signaling with IRQ 25
[Fri Jan 3 19:15:47 2025] pcieport 0000:00:1c.4: PME: Signaling with IRQ 26
[Fri Jan 3 19:15:47 2025] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[Fri Jan 3 19:15:47 2025] ERST: Can not request [mem 0xbf48903f-0xbf48b03e] for ERST.
[Fri Jan 3 19:15:47 2025] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[Fri Jan 3 19:15:47 2025] 00:06: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[Fri Jan 3 19:15:47 2025] 00:07: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[Fri Jan 3 19:15:47 2025] 00:09: ttyS2 at I/O 0x3e8 (irq = 10, base_baud = 115200) is a 16550A
[Fri Jan 3 19:15:47 2025] Linux agpgart interface v0.103
[Fri Jan 3 19:15:47 2025] AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
[Fri Jan 3 19:15:47 2025] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[Fri Jan 3 19:15:47 2025] serio: i8042 KBD port at 0x60,0x64 irq 1
[Fri Jan 3 19:15:47 2025] serio: i8042 AUX port at 0x60,0x64 irq 12
[Fri Jan 3 19:15:47 2025] mousedev: PS/2 mouse device common for all mice
[Fri Jan 3 19:15:47 2025] rtc_cmos 00:01: RTC can wake from S4
[Fri Jan 3 19:15:47 2025] rtc_cmos 00:01: registered as rtc0
[Fri Jan 3 19:15:47 2025] rtc_cmos 00:01: setting system clock to 2025-01-03T18:15:47 UTC (1735928147)
[Fri Jan 3 19:15:47 2025] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[Fri Jan 3 19:15:47 2025] intel_pstate: Intel P-state driver initializing
[Fri Jan 3 19:15:47 2025] ledtrig-cpu: registered to indicate activity on CPUs
[Fri Jan 3 19:15:47 2025] NET: Registered PF_INET6 protocol family
[Fri Jan 3 19:15:47 2025] Segment Routing with IPv6
[Fri Jan 3 19:15:47 2025] In-situ OAM (IOAM) with IPv6
[Fri Jan 3 19:15:47 2025] mip6: Mobile IPv6
[Fri Jan 3 19:15:47 2025] NET: Registered PF_PACKET protocol family
[Fri Jan 3 19:15:47 2025] mpls_gso: MPLS GSO support
[Fri Jan 3 19:15:47 2025] microcode: sig=0x206a7, pf=0x2, revision=0x2f
[Fri Jan 3 19:15:47 2025] microcode: Microcode Update Driver: v2.2.
[Fri Jan 3 19:15:47 2025] IPI shorthand broadcast: enabled
[Fri Jan 3 19:15:47 2025] sched_clock: Marking stable (499471459, 4828316)->(739083090, -234783315)
[Fri Jan 3 19:15:47 2025] registered taskstats version 1
[Fri Jan 3 19:15:47 2025] Loading compiled-in X.509 certificates
[Fri Jan 3 19:15:47 2025] Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
[Fri Jan 3 19:15:47 2025] Loaded X.509 cert 'Debian Secure Boot Signer 2022 - linux: 14011249c2675ea8e5148542202005810584b25f'
[Fri Jan 3 19:15:47 2025] zswap: loaded using pool lzo/zbud
[Fri Jan 3 19:15:47 2025] Key type .fscrypt registered
[Fri Jan 3 19:15:47 2025] Key type fscrypt-provisioning registered
[Fri Jan 3 19:15:47 2025] Key type encrypted registered
[Fri Jan 3 19:15:47 2025] AppArmor: AppArmor sha1 policy hashing enabled
[Fri Jan 3 19:15:47 2025] ima: No TPM chip found, activating TPM-bypass!
[Fri Jan 3 19:15:47 2025] ima: Allocated hash algorithm: sha256
[Fri Jan 3 19:15:47 2025] ima: No architecture policies found
[Fri Jan 3 19:15:47 2025] evm: Initialising EVM extended attributes:
[Fri Jan 3 19:15:47 2025] evm: security.selinux
[Fri Jan 3 19:15:47 2025] evm: security.SMACK64 (disabled)
[Fri Jan 3 19:15:47 2025] evm: security.SMACK64EXEC (disabled)
[Fri Jan 3 19:15:47 2025] evm: security.SMACK64TRANSMUTE (disabled)
[Fri Jan 3 19:15:47 2025] evm: security.SMACK64MMAP (disabled)
[Fri Jan 3 19:15:47 2025] evm: security.apparmor
[Fri Jan 3 19:15:47 2025] evm: security.ima
[Fri Jan 3 19:15:47 2025] evm: security.capability
[Fri Jan 3 19:15:47 2025] evm: HMAC attrs: 0x1
[Fri Jan 3 19:15:47 2025] clk: Disabling unused clocks
[Fri Jan 3 19:15:47 2025] Freeing unused decrypted memory: 2036K
[Fri Jan 3 19:15:47 2025] Freeing unused kernel image (initmem) memory: 2800K
[Fri Jan 3 19:15:47 2025] Write protecting the kernel read-only data: 26624k
[Fri Jan 3 19:15:47 2025] Freeing unused kernel image (text/rodata gap) memory: 2040K
[Fri Jan 3 19:15:47 2025] Freeing unused kernel image (rodata/data gap) memory: 1160K
[Fri Jan 3 19:15:47 2025] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[Fri Jan 3 19:15:47 2025] x86/mm: Checking user space page tables
[Fri Jan 3 19:15:47 2025] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[Fri Jan 3 19:15:47 2025] Run /init as init process
[Fri Jan 3 19:15:47 2025] with arguments:
[Fri Jan 3 19:15:47 2025] /init
[Fri Jan 3 19:15:47 2025] with environment:
[Fri Jan 3 19:15:47 2025] HOME=/
[Fri Jan 3 19:15:47 2025] TERM=linux
[Fri Jan 3 19:15:47 2025] BOOT_IMAGE=/boot/vmlinuz-6.1.0-28-amd64
[Fri Jan 3 19:15:47 2025] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[Fri Jan 3 19:15:47 2025] i2c i2c-0: 4/4 memory slots populated (from DMI)
[Fri Jan 3 19:15:47 2025] i2c i2c-0: Successfully instantiated SPD at 0x50
[Fri Jan 3 19:15:47 2025] i2c i2c-0: Successfully instantiated SPD at 0x51
[Fri Jan 3 19:15:47 2025] i2c i2c-0: Successfully instantiated SPD at 0x52
[Fri Jan 3 19:15:47 2025] i2c i2c-0: Successfully instantiated SPD at 0x53
[Fri Jan 3 19:15:47 2025] SCSI subsystem initialized
[Fri Jan 3 19:15:47 2025] e1000e: Intel(R) PRO/1000 Network Driver
[Fri Jan 3 19:15:47 2025] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[Fri Jan 3 19:15:47 2025] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[Fri Jan 3 19:15:47 2025] ACPI: bus type USB registered
[Fri Jan 3 19:15:47 2025] usbcore: registered new interface driver usbfs
[Fri Jan 3 19:15:47 2025] usbcore: registered new interface driver hub
[Fri Jan 3 19:15:47 2025] usbcore: registered new device driver usb
[Fri Jan 3 19:15:47 2025] libata version 3.00 loaded.
[Fri Jan 3 19:15:47 2025] ehci-pci 0000:00:1a.0: EHCI Host Controller
[Fri Jan 3 19:15:47 2025] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[Fri Jan 3 19:15:47 2025] ehci-pci 0000:00:1a.0: debug port 2
[Fri Jan 3 19:15:47 2025] ehci-pci 0000:00:1a.0: irq 16, io mem 0xfb823000
[Fri Jan 3 19:15:47 2025] mpt3sas version 43.100.00.00 loaded
[Fri Jan 3 19:15:47 2025] mpt2sas_cm0: 64 BIT PCI BUS DMA ADDRESSING SUPPORTED, total mem (16353340 kB)
[Fri Jan 3 19:15:47 2025] ahci 0000:00:1f.2: version 3.0
[Fri Jan 3 19:15:47 2025] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[Fri Jan 3 19:15:47 2025] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3e impl SATA mode
[Fri Jan 3 19:15:47 2025] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst
[Fri Jan 3 19:15:47 2025] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01
[Fri Jan 3 19:15:47 2025] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[Fri Jan 3 19:15:47 2025] usb usb1: Product: EHCI Host Controller
[Fri Jan 3 19:15:47 2025] usb usb1: Manufacturer: Linux 6.1.0-28-amd64 ehci_hcd
[Fri Jan 3 19:15:47 2025] usb usb1: SerialNumber: 0000:00:1a.0
[Fri Jan 3 19:15:47 2025] hub 1-0:1.0: USB hub found
[Fri Jan 3 19:15:47 2025] hub 1-0:1.0: 2 ports detected
[Fri Jan 3 19:15:47 2025] ehci-pci 0000:00:1d.0: EHCI Host Controller
[Fri Jan 3 19:15:47 2025] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[Fri Jan 3 19:15:47 2025] ehci-pci 0000:00:1d.0: debug port 2
[Fri Jan 3 19:15:47 2025] ehci-pci 0000:00:1d.0: irq 23, io mem 0xfb822000
[Fri Jan 3 19:15:47 2025] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[Fri Jan 3 19:15:47 2025] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01
[Fri Jan 3 19:15:47 2025] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[Fri Jan 3 19:15:47 2025] usb usb2: Product: EHCI Host Controller
[Fri Jan 3 19:15:47 2025] usb usb2: Manufacturer: Linux 6.1.0-28-amd64 ehci_hcd
[Fri Jan 3 19:15:47 2025] usb usb2: SerialNumber: 0000:00:1d.0
[Fri Jan 3 19:15:47 2025] hub 2-0:1.0: USB hub found
[Fri Jan 3 19:15:47 2025] hub 2-0:1.0: 2 ports detected
[Fri Jan 3 19:15:47 2025] scsi host1: ahci
[Fri Jan 3 19:15:47 2025] scsi host2: ahci
[Fri Jan 3 19:15:47 2025] scsi host3: ahci
[Fri Jan 3 19:15:47 2025] scsi host4: ahci
[Fri Jan 3 19:15:47 2025] scsi host5: ahci
[Fri Jan 3 19:15:47 2025] scsi host6: ahci
[Fri Jan 3 19:15:47 2025] ata1: DUMMY
[Fri Jan 3 19:15:47 2025] ata2: SATA max UDMA/133 abar m2048@0xfb821000 port 0xfb821180 irq 28
[Fri Jan 3 19:15:47 2025] ata3: SATA max UDMA/133 abar m2048@0xfb821000 port 0xfb821200 irq 28
[Fri Jan 3 19:15:47 2025] ata4: SATA max UDMA/133 abar m2048@0xfb821000 port 0xfb821280 irq 28
[Fri Jan 3 19:15:47 2025] ata5: SATA max UDMA/133 abar m2048@0xfb821000 port 0xfb821300 irq 28
[Fri Jan 3 19:15:47 2025] ata6: SATA max UDMA/133 abar m2048@0xfb821000 port 0xfb821380 irq 28
[Fri Jan 3 19:15:47 2025] e1000e 0000:00:19.0 0000:00:19.0 (uninitialized): registered PHC clock
[Fri Jan 3 19:15:47 2025] mpt2sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[Fri Jan 3 19:15:47 2025] mpt2sas_cm0: MSI-X vectors supported: 1
[Fri Jan 3 19:15:47 2025] no of cores: 8, max_msix_vectors: -1
[Fri Jan 3 19:15:47 2025] mpt2sas_cm0: 0 1 1
[Fri Jan 3 19:15:47 2025] mpt2sas_cm0: High IOPs queues : disabled
[Fri Jan 3 19:15:47 2025] mpt2sas0-msix0: PCI-MSI-X enabled: IRQ 29
[Fri Jan 3 19:15:47 2025] mpt2sas_cm0: iomem(0x00000000fb600000), mapped(0x(____ptrval____)), size(16384)
[Fri Jan 3 19:15:47 2025] mpt2sas_cm0: ioport(0x000000000000e000), size(256)
[Fri Jan 3 19:15:48 2025] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 00:25:90:56:90:2b
[Fri Jan 3 19:15:48 2025] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
[Fri Jan 3 19:15:48 2025] e1000e 0000:00:19.0 eth0: MAC: 10, PHY: 11, PBA No: FFFFFF-0FF
[Fri Jan 3 19:15:48 2025] e1000e 0000:03:00.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[Fri Jan 3 19:15:48 2025] mpt2sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[Fri Jan 3 19:15:48 2025] mpt2sas_cm0: sending message unit reset !!
[Fri Jan 3 19:15:48 2025] mpt2sas_cm0: message unit reset: SUCCESS
[Fri Jan 3 19:15:48 2025] usb 1-1: new high-speed USB device number 2 using ehci-pci
[Fri Jan 3 19:15:48 2025] e1000e 0000:03:00.0 0000:03:00.0 (uninitialized): registered PHC clock
[Fri Jan 3 19:15:48 2025] mpt2sas_cm0: scatter gather: sge_in_main_msg(1), sge_per_chain(9), sge_per_io(128), chains_per_io(15)
[Fri Jan 3 19:15:48 2025] mpt2sas_cm0: request pool(0x(____ptrval____)) - dma(0x150d80000): depth(3776), frame_size(128), pool_size(472 kB)
[Fri Jan 3 19:15:48 2025] usb 2-1: new high-speed USB device number 2 using ehci-pci
[Fri Jan 3 19:15:48 2025] mpt2sas_cm0: sense pool(0x(____ptrval____)) - dma(0x10b380000): depth(3643), element_size(96), pool_size (341 kB)
[Fri Jan 3 19:15:48 2025] mpt2sas_cm0: reply pool(0x(____ptrval____)) - dma(0x168c00000): depth(3840), frame_size(128), pool_size(480 kB)
[Fri Jan 3 19:15:48 2025] mpt2sas_cm0: config page(0x(____ptrval____)) - dma(0x10b2fd000): size(512)
[Fri Jan 3 19:15:48 2025] mpt2sas_cm0: Allocated physical memory: size(8199 kB)
[Fri Jan 3 19:15:48 2025] mpt2sas_cm0: Current Controller Queue Depth(3640),Max Controller Queue Depth(3712)
[Fri Jan 3 19:15:48 2025] mpt2sas_cm0: Scatter Gather Elements per IO(128)
[Fri Jan 3 19:15:48 2025] e1000e 0000:03:00.0 eth1: (PCI Express:2.5GT/s:Width x1) 00:25:90:56:90:2a
[Fri Jan 3 19:15:48 2025] e1000e 0000:03:00.0 eth1: Intel(R) PRO/1000 Network Connection
[Fri Jan 3 19:15:48 2025] e1000e 0000:03:00.0 eth1: MAC: 3, PHY: 8, PBA No: FFFFFF-0FF
[Fri Jan 3 19:15:48 2025] mpt2sas_cm0: LSISAS2008: FWVersion(11.00.00.00), ChipRevision(0x03), BiosVersion(07.11.00.00)
[Fri Jan 3 19:15:48 2025] mpt2sas_cm0: Protocol=(Initiator,Target), Capabilities=(TLR,EEDP,Snapshot Buffer,Diag Trace Buffer,Task Set Full,NCQ)
[Fri Jan 3 19:15:48 2025] scsi host0: Fusion MPT SAS Host
[Fri Jan 3 19:15:48 2025] mpt2sas_cm0: sending port enable !!
[Fri Jan 3 19:15:48 2025] mpt2sas_cm0: hba_port entry: (____ptrval____), port: 255 is added to hba_port list
[Fri Jan 3 19:15:48 2025] mpt2sas_cm0: host_add: handle(0x0001), sas_addr(0x500605b005502eb0), phys(8)
[Fri Jan 3 19:15:48 2025] tsc: Refined TSC clocksource calibration: 3392.293 MHz
[Fri Jan 3 19:15:48 2025] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x30e5de2a436, max_idle_ns: 440795285127 ns
[Fri Jan 3 19:15:48 2025] clocksource: Switched to clocksource tsc
[Fri Jan 3 19:15:48 2025] mpt2sas_cm0: port enable: SUCCESS
[Fri Jan 3 19:15:48 2025] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[Fri Jan 3 19:15:48 2025] ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[Fri Jan 3 19:15:48 2025] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[Fri Jan 3 19:15:48 2025] ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[Fri Jan 3 19:15:48 2025] ata4.00: ATA-10: KINGSTON SA400S37120G, 03150010, max UDMA/133
[Fri Jan 3 19:15:48 2025] ata5.00: supports DRM functions and may not be fully accessible
[Fri Jan 3 19:15:48 2025] ata5.00: ATA-9: WDC WD120EDBZ-11B1HA0, 85.00A85, max UDMA/133
[Fri Jan 3 19:15:48 2025] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[Fri Jan 3 19:15:48 2025] ata6.00: supports DRM functions and may not be fully accessible
[Fri Jan 3 19:15:48 2025] ata6.00: ATA-9: WDC WD120EDBZ-11B1HA0, 85.00A85, max UDMA/133
[Fri Jan 3 19:15:48 2025] ata3.00: supports DRM functions and may not be fully accessible
[Fri Jan 3 19:15:48 2025] ata3.00: ATA-9: WDC WD120EDBZ-11B1HA0, 85.00A85, max UDMA/133
[Fri Jan 3 19:15:48 2025] ata4.00: 234441648 sectors, multi 1: LBA48 NCQ (depth 32), AA
[Fri Jan 3 19:15:48 2025] ata5.00: 23437770752 sectors, multi 16: LBA48 NCQ (depth 32), AA
[Fri Jan 3 19:15:48 2025] ata3.00: 23437770752 sectors, multi 16: LBA48 NCQ (depth 32), AA
[Fri Jan 3 19:15:48 2025] ata2.00: supports DRM functions and may not be fully accessible
[Fri Jan 3 19:15:48 2025] ata2.00: ATA-9: WDC WD120EDBZ-11B1HA0, 85.00A85, max UDMA/133
[Fri Jan 3 19:15:48 2025] ata5.00: Features: Trust NCQ-sndrcv NCQ-prio
[Fri Jan 3 19:15:48 2025] ata3.00: Features: Trust NCQ-sndrcv NCQ-prio
[Fri Jan 3 19:15:48 2025] ata3.00: supports DRM functions and may not be fully accessible
[Fri Jan 3 19:15:48 2025] ata5.00: supports DRM functions and may not be fully accessible
[Fri Jan 3 19:15:48 2025] ata6.00: 23437770752 sectors, multi 16: LBA48 NCQ (depth 32), AA
[Fri Jan 3 19:15:48 2025] ata6.00: Features: Trust NCQ-sndrcv NCQ-prio
[Fri Jan 3 19:15:48 2025] ata4.00: configured for UDMA/133
[Fri Jan 3 19:15:48 2025] ata6.00: supports DRM functions and may not be fully accessible
[Fri Jan 3 19:15:48 2025] ata2.00: 23437770752 sectors, multi 16: LBA48 NCQ (depth 32), AA
[Fri Jan 3 19:15:48 2025] ata3.00: configured for UDMA/133
[Fri Jan 3 19:15:48 2025] ata2.00: Features: Trust NCQ-sndrcv NCQ-prio
[Fri Jan 3 19:15:48 2025] ata5.00: configured for UDMA/133
[Fri Jan 3 19:15:48 2025] ata2.00: supports DRM functions and may not be fully accessible
[Fri Jan 3 19:15:48 2025] ata6.00: configured for UDMA/133
[Fri Jan 3 19:15:48 2025] usb 1-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[Fri Jan 3 19:15:48 2025] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[Fri Jan 3 19:15:48 2025] ata2.00: configured for UDMA/133
[Fri Jan 3 19:15:48 2025] hub 1-1:1.0: USB hub found
[Fri Jan 3 19:15:48 2025] scsi 2:0:0:0: Direct-Access ATA WDC WD120EDBZ-11 0A85 PQ: 0 ANSI: 5
[Fri Jan 3 19:15:48 2025] hub 1-1:1.0: 6 ports detected
[Fri Jan 3 19:15:48 2025] scsi 3:0:0:0: Direct-Access ATA WDC WD120EDBZ-11 0A85 PQ: 0 ANSI: 5
[Fri Jan 3 19:15:48 2025] scsi 4:0:0:0: Direct-Access ATA KINGSTON SA400S3 0010 PQ: 0 ANSI: 5
[Fri Jan 3 19:15:48 2025] scsi 5:0:0:0: Direct-Access ATA WDC WD120EDBZ-11 0A85 PQ: 0 ANSI: 5
[Fri Jan 3 19:15:48 2025] scsi 6:0:0:0: Direct-Access ATA WDC WD120EDBZ-11 0A85 PQ: 0 ANSI: 5
[Fri Jan 3 19:15:48 2025] usb 2-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[Fri Jan 3 19:15:48 2025] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[Fri Jan 3 19:15:48 2025] hub 2-1:1.0: USB hub found
[Fri Jan 3 19:15:48 2025] hub 2-1:1.0: 6 ports detected
[Fri Jan 3 19:15:48 2025] sd 6:0:0:0: [sda] 23437770752 512-byte logical blocks: (12.0 TB/10.9 TiB)
[Fri Jan 3 19:15:48 2025] sd 5:0:0:0: [sdb] 23437770752 512-byte logical blocks: (12.0 TB/10.9 TiB)
[Fri Jan 3 19:15:48 2025] sd 2:0:0:0: [sdd] 23437770752 512-byte logical blocks: (12.0 TB/10.9 TiB)
[Fri Jan 3 19:15:48 2025] sd 6:0:0:0: [sda] 4096-byte physical blocks
[Fri Jan 3 19:15:48 2025] sd 2:0:0:0: [sdd] 4096-byte physical blocks
[Fri Jan 3 19:15:48 2025] sd 5:0:0:0: [sdb] 4096-byte physical blocks
[Fri Jan 3 19:15:48 2025] sd 3:0:0:0: [sdc] 23437770752 512-byte logical blocks: (12.0 TB/10.9 TiB)
[Fri Jan 3 19:15:48 2025] sd 5:0:0:0: [sdb] Write Protect is off
[Fri Jan 3 19:15:48 2025] sd 2:0:0:0: [sdd] Write Protect is off
[Fri Jan 3 19:15:48 2025] sd 3:0:0:0: [sdc] 4096-byte physical blocks
[Fri Jan 3 19:15:48 2025] sd 2:0:0:0: [sdd] Mode Sense: 00 3a 00 00
[Fri Jan 3 19:15:48 2025] sd 5:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[Fri Jan 3 19:15:48 2025] sd 6:0:0:0: [sda] Write Protect is off
[Fri Jan 3 19:15:48 2025] sd 6:0:0:0: [sda] Mode Sense: 00 3a 00 00
[Fri Jan 3 19:15:48 2025] sd 3:0:0:0: [sdc] Write Protect is off
[Fri Jan 3 19:15:48 2025] sd 3:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[Fri Jan 3 19:15:48 2025] sd 5:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[Fri Jan 3 19:15:48 2025] sd 2:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[Fri Jan 3 19:15:48 2025] sd 6:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[Fri Jan 3 19:15:48 2025] sd 3:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[Fri Jan 3 19:15:48 2025] sd 5:0:0:0: [sdb] Preferred minimum I/O size 4096 bytes
[Fri Jan 3 19:15:48 2025] sd 2:0:0:0: [sdd] Preferred minimum I/O size 4096 bytes
[Fri Jan 3 19:15:48 2025] sd 6:0:0:0: [sda] Preferred minimum I/O size 4096 bytes
[Fri Jan 3 19:15:48 2025] sd 4:0:0:0: [sde] 234441648 512-byte logical blocks: (120 GB/112 GiB)
[Fri Jan 3 19:15:48 2025] sd 4:0:0:0: [sde] Write Protect is off
[Fri Jan 3 19:15:48 2025] sd 4:0:0:0: [sde] Mode Sense: 00 3a 00 00
[Fri Jan 3 19:15:48 2025] sd 4:0:0:0: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[Fri Jan 3 19:15:48 2025] sd 3:0:0:0: [sdc] Preferred minimum I/O size 4096 bytes
[Fri Jan 3 19:15:48 2025] sd 4:0:0:0: [sde] Preferred minimum I/O size 512 bytes
[Fri Jan 3 19:15:48 2025] sde: sde1 sde2 < sde5 >
[Fri Jan 3 19:15:48 2025] sd 4:0:0:0: [sde] Attached SCSI disk
[Fri Jan 3 19:15:48 2025] sd 5:0:0:0: [sdb] Attached SCSI disk
[Fri Jan 3 19:15:48 2025] sd 3:0:0:0: [sdc] Attached SCSI disk
[Fri Jan 3 19:15:48 2025] sd 6:0:0:0: [sda] Attached SCSI disk
[Fri Jan 3 19:15:48 2025] sd 2:0:0:0: [sdd] Attached SCSI disk
[Fri Jan 3 19:15:48 2025] e1000e 0000:00:19.0 eno1: renamed from eth0
[Fri Jan 3 19:15:48 2025] raid6: sse2x4 gen() 15918 MB/s
[Fri Jan 3 19:15:48 2025] raid6: sse2x2 gen() 18357 MB/s
[Fri Jan 3 19:15:48 2025] usb 1-1.2: new full-speed USB device number 3 using ehci-pci
[Fri Jan 3 19:15:48 2025] raid6: sse2x1 gen() 14646 MB/s
[Fri Jan 3 19:15:48 2025] raid6: using algorithm sse2x2 gen() 18357 MB/s
[Fri Jan 3 19:15:48 2025] raid6: .... xor() 10082 MB/s, rmw enabled
[Fri Jan 3 19:15:48 2025] raid6: using ssse3x2 recovery algorithm
[Fri Jan 3 19:15:48 2025] xor: automatically using best checksumming function avx
[Fri Jan 3 19:15:48 2025] async_tx: api initialized (async)
[Fri Jan 3 19:15:48 2025] md/raid:md0: device sdd operational as raid disk 3
[Fri Jan 3 19:15:48 2025] md/raid:md0: device sdb operational as raid disk 1
[Fri Jan 3 19:15:48 2025] md/raid:md0: device sdc operational as raid disk 0
[Fri Jan 3 19:15:48 2025] md/raid:md0: device sda operational as raid disk 2
[Fri Jan 3 19:15:48 2025] md/raid:md0: raid level 5 active with 4 out of 4 devices, algorithm 2
[Fri Jan 3 19:15:48 2025] e1000e 0000:03:00.0 enp3s0: renamed from eth1
[Fri Jan 3 19:15:48 2025] md0: detected capacity change from 0 to 70312519680
[Fri Jan 3 19:15:48 2025] usb 1-1.2: New USB device found, idVendor=0557, idProduct=2221, bcdDevice= 0.01
[Fri Jan 3 19:15:48 2025] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[Fri Jan 3 19:15:48 2025] usb 1-1.2: Product: Hermon USB hidmouse Device
[Fri Jan 3 19:15:48 2025] usb 1-1.2: Manufacturer: Winbond Electronics Corp
[Fri Jan 3 19:15:48 2025] hid: raw HID events driver (C) Jiri Kosina
[Fri Jan 3 19:15:48 2025] usbcore: registered new interface driver usbhid
[Fri Jan 3 19:15:48 2025] usbhid: USB HID core driver
[Fri Jan 3 19:15:48 2025] input: Winbond Electronics Corp Hermon USB hidmouse Device as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:0557:2221.0001/input/input3
[Fri Jan 3 19:15:48 2025] hid-generic 0003:0557:2221.0001: input,hidraw0: USB HID v1.00 Mouse [Winbond Electronics Corp Hermon USB hidmouse Device] on usb-0000:00:1a.0-1.2/input0
[Fri Jan 3 19:15:48 2025] input: Winbond Electronics Corp Hermon USB hidmouse Device as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.1/0003:0557:2221.0002/input/input4
[Fri Jan 3 19:15:48 2025] hid-generic 0003:0557:2221.0002: input,hidraw1: USB HID v1.00 Keyboard [Winbond Electronics Corp Hermon USB hidmouse Device] on usb-0000:00:1a.0-1.2/input1
[Fri Jan 3 19:15:49 2025] Btrfs loaded, crc32c=crc32c-intel, zoned=yes, fsverity=yes
[Fri Jan 3 19:15:49 2025] BTRFS: device fsid b0f4bc38-95b9-4f0c-b982-c700614c84f6 devid 1 transid 1231496 /dev/md0 scanned by btrfs (263)
[Fri Jan 3 19:15:49 2025] PM: Image not found (code -22)
[Fri Jan 3 19:15:49 2025] EXT4-fs (sde1): mounted filesystem with ordered data mode. Quota mode: none.
[Fri Jan 3 19:15:49 2025] Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
[Fri Jan 3 19:15:49 2025] systemd[1]: Inserted module 'autofs4'
[Fri Jan 3 19:15:49 2025] systemd[1]: systemd 252.31-1~deb12u1 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)
[Fri Jan 3 19:15:49 2025] systemd[1]: Detected architecture x86-64.
[Fri Jan 3 19:15:49 2025] systemd[1]: Hostname set to <margserver>.
[Fri Jan 3 19:15:50 2025] random: crng init done
[Fri Jan 3 19:15:50 2025] systemd[1]: Queued start job for default target graphical.target.
[Fri Jan 3 19:15:50 2025] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[Fri Jan 3 19:15:50 2025] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[Fri Jan 3 19:15:50 2025] systemd[1]: Created slice system-postfix.slice - Slice /system/postfix.
[Fri Jan 3 19:15:50 2025] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[Fri Jan 3 19:15:50 2025] systemd[1]: Created slice user.slice - User and Session Slice.
[Fri Jan 3 19:15:50 2025] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[Fri Jan 3 19:15:50 2025] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[Fri Jan 3 19:15:50 2025] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[Fri Jan 3 19:15:50 2025] systemd[1]: Expecting device dev-disk-by\x2duuid-7e559b13\x2d82d1\x2d475d\x2d8780\x2dc36d95a5de36.device - /dev/disk/by-uuid/7e559b13-82d1-475d-8780-c36d95a5de36...
[Fri Jan 3 19:15:50 2025] systemd[1]: Expecting device dev-disk-by\x2duuid-a51459e2\x2d578b\x2d452d\x2d84b1\x2deb4316dee495.device - /dev/disk/by-uuid/a51459e2-578b-452d-84b1-eb4316dee495...
[Fri Jan 3 19:15:50 2025] systemd[1]: Expecting device dev-disk-by\x2duuid-b0f4bc38\x2d95b9\x2d4f0c\x2db982\x2dc700614c84f6.device - /dev/disk/by-uuid/b0f4bc38-95b9-4f0c-b982-c700614c84f6...
[Fri Jan 3 19:15:50 2025] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
[Fri Jan 3 19:15:50 2025] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[Fri Jan 3 19:15:50 2025] systemd[1]: Reached target paths.target - Path Units.
[Fri Jan 3 19:15:50 2025] systemd[1]: Reached target slices.target - Slice Units.
[Fri Jan 3 19:15:50 2025] systemd[1]: Reached target time-set.target - System Time Set.
[Fri Jan 3 19:15:50 2025] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[Fri Jan 3 19:15:50 2025] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[Fri Jan 3 19:15:50 2025] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[Fri Jan 3 19:15:50 2025] systemd[1]: Listening on rpcbind.socket - RPCbind Server Activation Socket.
[Fri Jan 3 19:15:50 2025] systemd[1]: Listening on syslog.socket - Syslog Socket.
[Fri Jan 3 19:15:50 2025] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[Fri Jan 3 19:15:50 2025] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[Fri Jan 3 19:15:50 2025] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
[Fri Jan 3 19:15:50 2025] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[Fri Jan 3 19:15:50 2025] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[Fri Jan 3 19:15:50 2025] systemd[1]: Listening on systemd-networkd.socket - Network Service Netlink Socket.
[Fri Jan 3 19:15:50 2025] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[Fri Jan 3 19:15:50 2025] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[Fri Jan 3 19:15:50 2025] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[Fri Jan 3 19:15:50 2025] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[Fri Jan 3 19:15:50 2025] systemd[1]: Mounting proc-fs-nfsd.mount - NFSD configuration filesystem...
[Fri Jan 3 19:15:50 2025] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[Fri Jan 3 19:15:50 2025] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[Fri Jan 3 19:15:50 2025] systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
[Fri Jan 3 19:15:50 2025] systemd[1]: Finished blk-availability.service - Availability of block devices.
[Fri Jan 3 19:15:50 2025] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[Fri Jan 3 19:15:50 2025] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[Fri Jan 3 19:15:50 2025] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[Fri Jan 3 19:15:50 2025] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[Fri Jan 3 19:15:50 2025] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[Fri Jan 3 19:15:50 2025] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[Fri Jan 3 19:15:50 2025] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[Fri Jan 3 19:15:50 2025] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[Fri Jan 3 19:15:50 2025] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
[Fri Jan 3 19:15:50 2025] systemd[1]: netplan-ovs-cleanup.service - OpenVSwitch configuration for cleanup was skipped because of an unmet condition check (ConditionFileIsExecutable=/usr/bin/ovs-vsctl).
[Fri Jan 3 19:15:50 2025] systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).
[Fri Jan 3 19:15:50 2025] systemd[1]: Starting systemd-journald.service - Journal Service...
[Fri Jan 3 19:15:50 2025] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[Fri Jan 3 19:15:50 2025] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[Fri Jan 3 19:15:50 2025] loop: module loaded
[Fri Jan 3 19:15:50 2025] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[Fri Jan 3 19:15:50 2025] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[Fri Jan 3 19:15:50 2025] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[Fri Jan 3 19:15:50 2025] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[Fri Jan 3 19:15:50 2025] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[Fri Jan 3 19:15:50 2025] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[Fri Jan 3 19:15:50 2025] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[Fri Jan 3 19:15:50 2025] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[Fri Jan 3 19:15:50 2025] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[Fri Jan 3 19:15:50 2025] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[Fri Jan 3 19:15:50 2025] systemd[1]: modprobe@loop.service: Deactivated successfully.
[Fri Jan 3 19:15:50 2025] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.
[Fri Jan 3 19:15:50 2025] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[Fri Jan 3 19:15:50 2025] fuse: init (API version 7.38)
[Fri Jan 3 19:15:50 2025] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[Fri Jan 3 19:15:50 2025] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[Fri Jan 3 19:15:50 2025] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[Fri Jan 3 19:15:50 2025] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[Fri Jan 3 19:15:50 2025] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[Fri Jan 3 19:15:50 2025] EXT4-fs (sde1): re-mounted. Quota mode: none.
[Fri Jan 3 19:15:50 2025] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[Fri Jan 3 19:15:50 2025] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[Fri Jan 3 19:15:50 2025] device-mapper: uevent: version 1.0.3
[Fri Jan 3 19:15:50 2025] device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
[Fri Jan 3 19:15:50 2025] systemd[1]: Starting quota.service - Initial Check File System Quotas...
[Fri Jan 3 19:15:50 2025] systemd[1]: systemd-firstboot.service - First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
[Fri Jan 3 19:15:50 2025] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[Fri Jan 3 19:15:50 2025] systemd[1]: Starting systemd-random-seed.service - Load/Save Random Seed...
[Fri Jan 3 19:15:50 2025] systemd[1]: Starting systemd-sysusers.service - Create System Users...
[Fri Jan 3 19:15:50 2025] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[Fri Jan 3 19:15:50 2025] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[Fri Jan 3 19:15:50 2025] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
[Fri Jan 3 19:15:50 2025] systemd[1]: Finished systemd-random-seed.service - Load/Save Random Seed.
[Fri Jan 3 19:15:50 2025] systemd[1]: first-boot-complete.target - First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
[Fri Jan 3 19:15:50 2025] RPC: Registered named UNIX socket transport module.
[Fri Jan 3 19:15:50 2025] RPC: Registered udp transport module.
[Fri Jan 3 19:15:50 2025] RPC: Registered tcp transport module.
[Fri Jan 3 19:15:50 2025] RPC: Registered tcp NFSv4.1 backchannel transport module.
[Fri Jan 3 19:15:50 2025] systemd[1]: Finished quota.service - Initial Check File System Quotas.
[Fri Jan 3 19:15:50 2025] systemd[1]: Finished systemd-sysusers.service - Create System Users.
[Fri Jan 3 19:15:50 2025] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[Fri Jan 3 19:15:50 2025] systemd[1]: Using hardware watchdog 'Software Watchdog', version 0, device /dev/watchdog0
[Fri Jan 3 19:15:50 2025] systemd[1]: Watchdog running with a hardware timeout of 5min.
[Fri Jan 3 19:15:50 2025] softdog: initialized. soft_noboot=0 soft_margin=300 sec soft_panic=0 (nowayout=0)
[Fri Jan 3 19:15:50 2025] softdog: soft_reboot_cmd=<not set> soft_active_on_boot=0
[Fri Jan 3 19:15:50 2025] ACPI: bus type drm_connector registered
[Fri Jan 3 19:15:50 2025] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[Fri Jan 3 19:15:50 2025] systemd[1]: modprobe@drm.service: Deactivated successfully.
[Fri Jan 3 19:15:50 2025] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[Fri Jan 3 19:15:50 2025] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
[Fri Jan 3 19:15:50 2025] systemd[1]: Started systemd-journald.service - Journal Service.
[Fri Jan 3 19:15:50 2025] systemd-journald[350]: Received client request to flush runtime journal.
[Fri Jan 3 19:15:50 2025] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input5
[Fri Jan 3 19:15:50 2025] input: PC Speaker as /devices/platform/pcspkr/input/input6
[Fri Jan 3 19:15:50 2025] IPMI message handler: version 39.2
[Fri Jan 3 19:15:50 2025] EDAC MC0: Giving out device to module ie31200_edac controller IE31200: DEV 0000:00:00.0 (POLLED)
[Fri Jan 3 19:15:50 2025] ACPI: button: Power Button [PWRB]
[Fri Jan 3 19:15:50 2025] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input7
[Fri Jan 3 19:15:50 2025] ACPI: button: Power Button [PWRF]
[Fri Jan 3 19:15:50 2025] iTCO_vendor_support: vendor-support=0
[Fri Jan 3 19:15:50 2025] sd 2:0:0:0: Attached scsi generic sg0 type 0
[Fri Jan 3 19:15:50 2025] sd 3:0:0:0: Attached scsi generic sg1 type 0
[Fri Jan 3 19:15:50 2025] sd 4:0:0:0: Attached scsi generic sg2 type 0
[Fri Jan 3 19:15:50 2025] sd 5:0:0:0: Attached scsi generic sg3 type 0
[Fri Jan 3 19:15:50 2025] sd 6:0:0:0: Attached scsi generic sg4 type 0
[Fri Jan 3 19:15:50 2025] ipmi device interface
[Fri Jan 3 19:15:50 2025] iTCO_wdt iTCO_wdt.1.auto: Found a Cougar Point TCO device (Version=2, TCOBASE=0x0460)
[Fri Jan 3 19:15:50 2025] iTCO_wdt iTCO_wdt.1.auto: initialized. heartbeat=30 sec (nowayout=0)
[Fri Jan 3 19:15:50 2025] at24 0-0050: supply vcc not found, using dummy regulator
[Fri Jan 3 19:15:50 2025] ipmi_si: IPMI System Interface driver
[Fri Jan 3 19:15:50 2025] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
[Fri Jan 3 19:15:50 2025] ipmi_platform: ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
[Fri Jan 3 19:15:50 2025] ipmi_si: Adding SMBIOS-specified kcs state machine
[Fri Jan 3 19:15:50 2025] ipmi_si: Trying SMBIOS-specified kcs state machine at i/o address 0xca2, slave address 0x20, irq 0
[Fri Jan 3 19:15:50 2025] at24 0-0050: 256 byte spd EEPROM, read-only
[Fri Jan 3 19:15:50 2025] at24 0-0051: supply vcc not found, using dummy regulator
[Fri Jan 3 19:15:50 2025] at24 0-0051: 256 byte spd EEPROM, read-only
[Fri Jan 3 19:15:50 2025] at24 0-0052: supply vcc not found, using dummy regulator
[Fri Jan 3 19:15:50 2025] at24 0-0052: 256 byte spd EEPROM, read-only
[Fri Jan 3 19:15:50 2025] at24 0-0053: supply vcc not found, using dummy regulator
[Fri Jan 3 19:15:50 2025] at24 0-0053: 256 byte spd EEPROM, read-only
[Fri Jan 3 19:15:50 2025] Adding 998396k swap on /dev/sde5. Priority:-2 extents:1 across:998396k SSFS
[Fri Jan 3 19:15:50 2025] mgag200 0000:04:03.0: vgaarb: deactivate vga console
[Fri Jan 3 19:15:50 2025] Console: switching to colour dummy device 80x25
[Fri Jan 3 19:15:50 2025] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
[Fri Jan 3 19:15:50 2025] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[Fri Jan 3 19:15:50 2025] RAPL PMU: hw unit of domain package 2^-16 Joules
[Fri Jan 3 19:15:50 2025] [drm] Initialized mgag200 1.0.0 20110418 for 0000:04:03.0 on minor 0
[Fri Jan 3 19:15:50 2025] fbcon: mgag200drmfb (fb0) is primary device
[Fri Jan 3 19:15:50 2025] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[Fri Jan 3 19:15:50 2025] cfg80211: Loaded X.509 cert 'benh@debian.org: 577e021cb980e0e820821ba7b54b4961b8b4fadf'
[Fri Jan 3 19:15:50 2025] cfg80211: Loaded X.509 cert 'romain.perier@gmail.com: 3abbc6ec146e09d1b6016ab9d6cf71dd233f0328'
[Fri Jan 3 19:15:50 2025] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[Fri Jan 3 19:15:50 2025] cfg80211: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[Fri Jan 3 19:15:50 2025] platform regulatory.0: firmware: direct-loading firmware regulatory.db
[Fri Jan 3 19:15:50 2025] ipmi_si dmi-ipmi-si.0: The BMC does not support clearing the recv irq bit, compensating, but the BMC needs to be fixed.
[Fri Jan 3 19:15:50 2025] platform regulatory.0: firmware: direct-loading firmware regulatory.db.p7s
[Fri Jan 3 19:15:50 2025] cryptd: max_cpu_qlen set to 1000
[Fri Jan 3 19:15:50 2025] ipmi_si dmi-ipmi-si.0: IPMI message handler: Found new BMC (man_id: 0x002a7c, prod_id: 0x0624, dev_id: 0x20)
[Fri Jan 3 19:15:50 2025] ipmi_si dmi-ipmi-si.0: IPMI kcs interface initialized
[Fri Jan 3 19:15:51 2025] Console: switching to colour frame buffer device 128x48
[Fri Jan 3 19:15:51 2025] mgag200 0000:04:03.0: [drm] fb0: mgag200drmfb frame buffer device
[Fri Jan 3 19:15:51 2025] BTRFS info (device md0): first mount of filesystem b0f4bc38-95b9-4f0c-b982-c700614c84f6
[Fri Jan 3 19:15:51 2025] BTRFS info (device md0): using crc32c (crc32c-intel) checksum algorithm
[Fri Jan 3 19:15:51 2025] BTRFS info (device md0): disk space caching is enabled
[Fri Jan 3 19:15:51 2025] intel_rapl_common: Found RAPL domain package
[Fri Jan 3 19:15:51 2025] intel_rapl_common: Found RAPL domain core
[Fri Jan 3 19:15:51 2025] intel_rapl_common: RAPL package-0 domain package locked by BIOS
[Fri Jan 3 19:15:52 2025] BTRFS info (device md0): bdev /dev/md0 errs: wr 0, rd 0, flush 0, corrupt 0, gen 68
[Fri Jan 3 19:15:53 2025] e1000e 0000:00:19.0 eno1: NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
[Fri Jan 3 19:15:53 2025] IPv6: ADDRCONF(NETDEV_CHANGE): eno1: link becomes ready
[Fri Jan 3 19:16:01 2025] Initializing XFRM netlink socket
[Fri Jan 3 19:16:01 2025] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[Fri Jan 3 19:16:02 2025] br-a6957b9da503: port 1(veth499754c) entered blocking state
[Fri Jan 3 19:16:02 2025] br-a6957b9da503: port 1(veth499754c) entered disabled state
[Fri Jan 3 19:16:02 2025] device veth499754c entered promiscuous mode
[Fri Jan 3 19:16:02 2025] br-a6957b9da503: port 1(veth499754c) entered blocking state
[Fri Jan 3 19:16:02 2025] br-a6957b9da503: port 1(veth499754c) entered forwarding state
[Fri Jan 3 19:16:02 2025] IPv6: ADDRCONF(NETDEV_CHANGE): br-a6957b9da503: link becomes ready
[Fri Jan 3 19:16:02 2025] br-a6957b9da503: port 1(veth499754c) entered disabled state
[Fri Jan 3 19:16:02 2025] br-a080e023d935: port 1(veth7a27280) entered blocking state
[Fri Jan 3 19:16:02 2025] br-a080e023d935: port 1(veth7a27280) entered disabled state
[Fri Jan 3 19:16:02 2025] device veth7a27280 entered promiscuous mode
[Fri Jan 3 19:16:02 2025] br-a080e023d935: port 1(veth7a27280) entered blocking state
[Fri Jan 3 19:16:02 2025] br-a080e023d935: port 1(veth7a27280) entered forwarding state
[Fri Jan 3 19:16:02 2025] IPv6: ADDRCONF(NETDEV_CHANGE): br-a080e023d935: link becomes ready
[Fri Jan 3 19:16:02 2025] br-a080e023d935: port 1(veth7a27280) entered disabled state
[Fri Jan 3 19:16:02 2025] eth0: renamed from veth10452c4
[Fri Jan 3 19:16:02 2025] IPv6: ADDRCONF(NETDEV_CHANGE): veth499754c: link becomes ready
[Fri Jan 3 19:16:02 2025] br-a6957b9da503: port 1(veth499754c) entered blocking state
[Fri Jan 3 19:16:02 2025] br-a6957b9da503: port 1(veth499754c) entered forwarding state
[Fri Jan 3 19:16:02 2025] eth1: renamed from veth34550a6
[Fri Jan 3 19:16:02 2025] IPv6: ADDRCONF(NETDEV_CHANGE): veth7a27280: link becomes ready
[Fri Jan 3 19:16:02 2025] br-a080e023d935: port 1(veth7a27280) entered blocking state
[Fri Jan 3 19:16:02 2025] br-a080e023d935: port 1(veth7a27280) entered forwarding state
[Fri Jan 3 19:17:38 2025] /dev/disk/by-uuid/7e559b13-82d1-475d-8780-c36d95a5de36: Can't open blockdev
[Fri Jan 3 19:17:55 2025] BTRFS error (device md0): open_ctree failed
[Fri Jan 3 19:17:55 2025] BTRFS info (device md0): first mount of filesystem b0f4bc38-95b9-4f0c-b982-c700614c84f6
[Fri Jan 3 19:17:55 2025] BTRFS info (device md0): using crc32c (crc32c-intel) checksum algorithm
[Fri Jan 3 19:17:55 2025] BTRFS info (device md0): disk space caching is enabled
[Fri Jan 3 19:17:56 2025] BTRFS info (device md0): bdev /dev/md0 errs: wr 0, rd 0, flush 0, corrupt 0, gen 68
[Fri Jan 3 19:18:51 2025] /dev/disk/by-uuid/7e559b13-82d1-475d-8780-c36d95a5de36: Can't open blockdev
[Fri Jan 3 19:21:41 2025] BTRFS warning (device md0): block group 18294510714880 has wrong amount of free space
[Fri Jan 3 19:21:41 2025] BTRFS warning (device md0): failed to load free space cache for block group 18294510714880, rebuilding it now
[Fri Jan 3 19:22:08 2025] BTRFS error (device md0): parent transid verify failed on logical 24388894654464 mirror 1 wanted 1217832 found 1217829
[Fri Jan 3 19:22:08 2025] BTRFS error (device md0): parent transid verify failed on logical 24388894654464 mirror 2 wanted 1217832 found 1217829
[Fri Jan 3 19:22:08 2025] BTRFS error (device md0): parent transid verify failed on logical 27849408266240 mirror 1 wanted 1230326 found 1228610
[Fri Jan 3 19:22:08 2025] BTRFS error (device md0): parent transid verify failed on logical 27849408266240 mirror 2 wanted 1230326 found 1228610
[Fri Jan 3 19:22:08 2025] BTRFS error (device md0): parent transid verify failed on logical 27849408249856 mirror 1 wanted 1230326 found 1228610
[Fri Jan 3 19:22:08 2025] BTRFS error (device md0): parent transid verify failed on logical 27849408249856 mirror 2 wanted 1230326 found 1228610
[Fri Jan 3 19:22:09 2025] BTRFS error (device md0): parent transid verify failed on logical 27849408249856 mirror 1 wanted 1230326 found 1228610
[Fri Jan 3 19:22:09 2025] BTRFS error (device md0): parent transid verify failed on logical 27849408249856 mirror 2 wanted 1230326 found 1228610
[Fri Jan 3 19:22:30 2025] BTRFS error (device md0): parent transid verify failed on logical 24388894654464 mirror 1 wanted 1217832 found 1217829
[Fri Jan 3 19:22:30 2025] BTRFS error (device md0): parent transid verify failed on logical 24388894654464 mirror 2 wanted 1217832 found 1217829
[Fri Jan 3 19:22:30 2025] BTRFS error (device md0): parent transid verify failed on logical 27849408266240 mirror 1 wanted 1230326 found 1228610
[Fri Jan 3 19:22:30 2025] BTRFS error (device md0): parent transid verify failed on logical 27849408266240 mirror 2 wanted 1230326 found 1228610
[Fri Jan 3 19:22:30 2025] BTRFS error (device md0): parent transid verify failed on logical 27849408249856 mirror 1 wanted 1230326 found 1228610
[Fri Jan 3 19:22:30 2025] BTRFS error (device md0): parent transid verify failed on logical 27849408249856 mirror 2 wanted 1230326 found 1228610
[Fri Jan 3 19:22:30 2025] BTRFS error (device md0): parent transid verify failed on logical 27849408249856 mirror 1 wanted 1230326 found 1228610
[Fri Jan 3 19:22:30 2025] BTRFS error (device md0): parent transid verify failed on logical 27849408249856 mirror 2 wanted 1230326 found 1228610
[Fri Jan 3 19:22:30 2025] BTRFS error (device md0): parent transid verify failed on logical 27849408249856 mirror 1 wanted 1230326 found 1228610
[Fri Jan 3 19:22:30 2025] BTRFS error (device md0): parent transid verify failed on logical 27849408249856 mirror 2 wanted 1230326 found 1228610
[Fri Jan 3 19:24:02 2025] verify_parent_transid: 2 callbacks suppressed
[Fri Jan 3 19:24:02 2025] BTRFS error (device md0): parent transid verify failed on logical 16555322867712 mirror 1 wanted 1217714 found 1217709
[Fri Jan 3 19:24:02 2025] BTRFS error (device md0): parent transid verify failed on logical 16555322867712 mirror 2 wanted 1217714 found 1217709
[Fri Jan 3 19:24:02 2025] BTRFS: error (device md0: state A) in do_free_extent_accounting:2847: errno=-5 IO failure
[Fri Jan 3 19:24:02 2025] BTRFS info (device md0: state EA): forced readonly
[Fri Jan 3 19:24:02 2025] BTRFS error (device md0: state EA): failed to run delayed ref for logical 15888907714560 num_bytes 81920 type 178 action 2 ref_mod 1: -5
[Fri Jan 3 19:24:02 2025] BTRFS: error (device md0: state EA) in btrfs_run_delayed_refs:2150: errno=-5 IO failure
[Fri Jan 3 19:29:04 2025] BTRFS error (device md0: state EMA): Remounting read-write after error is not allowed
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: BTRFS errors following bad SATA connection
2025-01-03 18:47 ` Victor Banon
@ 2025-01-03 21:04 ` Roman Mamedov
2025-01-03 21:24 ` Victor Banon
0 siblings, 1 reply; 13+ messages in thread
From: Roman Mamedov @ 2025-01-03 21:04 UTC (permalink / raw)
To: Victor Banon; +Cc: remi, linux-btrfs
On Fri, 3 Jan 2025 19:47:59 +0100
Victor Banon <banon.victor@gmail.com> wrote:
> My optimism was short-lived. I can't make meaningful progress deleting
> the files because the filesystem keeps going read-only (see attached
> log) soon after initiating a scan. This wasn't a problem before. I'm not
> sure what the standard procedure for bypassing this (rw remount after
> error is not allowed), so I've just been rebooting when this happens.
You mean a scan as suggested previously, trying to rename unreadable files to
"bad", or just a read-only pass too? It is probably way too broken after all,
so you might as well start planning backup+recreate.
> I'm also noticing that some files that resulted in i/o errors (when
> being cat'd to /dev/null) yesterday are fine today. And the other way
> around too: there seemingly are files that were fine yesterday but are
> bad today.
Not sure what to make of it, if you had mdadm raid1 underneath, this could
have been explained by differing mirror contents, and the randomness of which
one is used for reads today. With RAID5 data can differ when read from data
disks to when reconstructed from parity, but in a clean array there shouldn't
be any reconstruct reads.
> Thank you for the information. What does this mean in practice? Do I
> just ignore this file forever?
In a remote possibility if you could figure out all the other corruptions,
delete/replace all the affected files, and the only thing remaining would be a
small undeletable file somewhere, moving the containing directory away
somewhere and ignoring it for the time being could have been an option. But it
appears you are still a long way from that and might not reach that stage at
all.
> What about the corrupted files that are /not/ in my trash bin, can I never
> restore them either?
I believe you should be able to move or rename the directory they are in
freely (such as the trash bin itself), or at least one which is another level
above from that.
--
With respect,
Roman
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: BTRFS errors following bad SATA connection
2025-01-03 21:04 ` Roman Mamedov
@ 2025-01-03 21:24 ` Victor Banon
2025-01-04 13:57 ` Roman Mamedov
0 siblings, 1 reply; 13+ messages in thread
From: Victor Banon @ 2025-01-03 21:24 UTC (permalink / raw)
To: Roman Mamedov; +Cc: remi, linux-btrfs
On 03/01/2025 22:04, Roman Mamedov wrote:
> You mean a scan as suggested previously, trying to rename unreadable files to
> "bad", or just a read-only pass too? It is probably way too broken after all,
> so you might as well start planning backup+recreate.
No, not read-only. I tried a few things, but for example when I tried to
delete the unreadable files (tweaked version of your command), the
filesystem became read-only.
> Not sure what to make of it
Oh well. Maybe I'll try again once to be sure and then move on to
recreating everything. Right now I can probably retrieve and store about
5 TB of data, so not all is lost.
It just occurred to me that I might have a way to have enough space to
retrieve most of the un-backed up files. The 4th disk of the RAID was a
recent addition (that's probably when the SATA issues appeared), so I
have closer to 24 TB of data than 36 TB. So I'm thinking I may be able
to leverage up to 2 extra disks. Can I get your input on how dumb the
following ideas are:
A. Delete some files then shrink the array (4x12TB RAID5 aka 36 usable
TB -> 3x12 TB RAID5 aka 24 usable TB). Remove 1 drive, use it for extra
storage.
B. Degrade the array (4x12TB RAID5 aka 36 usable TB -> degraded 3x12 TB
RAID5 aka 36 usable TB). Remove 1 drive, use it for extra storage.
C. Do both (4x12TB RAID5 aka 36 usable TB -> degraded 2x12 TB RAID5 aka
24 usable TB) . Remove 2 drives, use them for extra storage
It doesn't seem smart to do any of this while the array is in this
precarious state, but I feel like I don't have a whole lot to lose by
trying this-- even if it fails catastrophically, the alternative is to
do nothing and reformat anyway. But I'd like to have some idea of what
to expect before I do that... Is it even possible to shrink or degrade
the array?
> moving the containing directory away
> somewhere and ignoring it for the time being
> I believe you should be able to move or rename the directory
Ah yes, that seems like it would have worked :) Didn't think of that.
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: BTRFS errors following bad SATA connection
2025-01-03 21:24 ` Victor Banon
@ 2025-01-04 13:57 ` Roman Mamedov
0 siblings, 0 replies; 13+ messages in thread
From: Roman Mamedov @ 2025-01-04 13:57 UTC (permalink / raw)
To: Victor Banon; +Cc: remi, linux-btrfs
On Fri, 3 Jan 2025 22:24:19 +0100
Victor Banon <banon.victor@gmail.com> wrote:
> It just occurred to me that I might have a way to have enough space to
> retrieve most of the un-backed up files. The 4th disk of the RAID was a
> recent addition (that's probably when the SATA issues appeared), so I
> have closer to 24 TB of data than 36 TB. So I'm thinking I may be able
> to leverage up to 2 extra disks. Can I get your input on how dumb the
> following ideas are:
>
> A. Delete some files then shrink the array (4x12TB RAID5 aka 36 usable
> TB -> 3x12 TB RAID5 aka 24 usable TB). Remove 1 drive, use it for extra
> storage.
>
> B. Degrade the array (4x12TB RAID5 aka 36 usable TB -> degraded 3x12 TB
> RAID5 aka 36 usable TB). Remove 1 drive, use it for extra storage.
>
> C. Do both (4x12TB RAID5 aka 36 usable TB -> degraded 2x12 TB RAID5 aka
> 24 usable TB) . Remove 2 drives, use them for extra storage
If gaining 1 free drive is enough, I'd avoid reshaping and put it in degraded
(--fail, --remove in mdadm), so option B. I remember you said it was not super
important data anyway, and in this state you'd have like a RAID0 of 3
remaining drives, reliability-wise.
> It doesn't seem smart to do any of this while the array is in this
> precarious state, but I feel like I don't have a whole lot to lose by
> trying this-- even if it fails catastrophically, the alternative is to
> do nothing and reformat anyway. But I'd like to have some idea of what
> to expect before I do that... Is it even possible to shrink or degrade
> the array?
You'd need to shrink the Btrfs first, and I am not sure if it would let you,
or run into the same transid errors as during other operations.
--
With respect,
Roman
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2025-01-04 13:57 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <9443ea9c-08dc-4d08-81a6-cb91940e791e@gmail.com>
2025-01-01 18:25 ` BTRFS errors following bad SATA connection Victor Banon
2025-01-01 23:40 ` remi
2025-01-02 9:32 ` Victor Banon
2025-01-02 13:33 ` Roman Mamedov
2025-01-02 13:40 ` Victor Banon
2025-01-03 8:21 ` Victor Banon
2025-01-03 12:09 ` Roman Mamedov
2025-01-03 12:42 ` Victor Banon
2025-01-03 13:45 ` Roman Mamedov
2025-01-03 18:47 ` Victor Banon
2025-01-03 21:04 ` Roman Mamedov
2025-01-03 21:24 ` Victor Banon
2025-01-04 13:57 ` Roman Mamedov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox