Linux Btrfs filesystem development
 help / color / mirror / Atom feed
* BUG: scrub reports uncorrectable csum errors linked to readable file (data: single)
@ 2024-06-04 14:12 Lionel Bouton
  2024-06-06 22:51 ` Lionel Bouton
  2024-06-06 23:05 ` Qu Wenruo
  0 siblings, 2 replies; 17+ messages in thread
From: Lionel Bouton @ 2024-06-04 14:12 UTC (permalink / raw)
  To: linux-btrfs

[-- Attachment #1: Type: text/plain, Size: 5429 bytes --]

Hi,

It seems one of our system hit an (harmless ?) bug while scrubbing.

Kernel: 6.6.30 with Gentoo patches (sys-kernel/gentoo-sources-6.6.30 
ebuild).
btrfs-progs: 6.8.1
The system is a VM using QEMU/KVM.
The affected filesystem is directly on top of a single virtio-scsi block 
device (no partition, no LVM, ...) with a Ceph RBD backend.
Profiles for metadata: dup, data: single.

The scrub process is ongoing but it logged uncorrectable errors :

# btrfs scrub status /mnt/store
UUID:             <our_uuid>
Scrub started:    Mon Jun  3 09:35:28 2024
Status:           running
Duration:         26:12:07
Time left:        114:45:38
ETA:              Sun Jun  9 06:33:13 2024
Total to scrub:   18.84TiB
Bytes scrubbed:   3.50TiB  (18.59%)
Rate:             38.92MiB/s
Error summary:    csum=61
   Corrected:      0
   Uncorrectable:  61
   Unverified:     0

According to the logs all errors are linked to a single file (renamed to 
<file> in the attached log) and happened within a couple of seconds. 
Most errors are duplicates as there are many snapshots of the subvolume 
it is in. This system is mainly used as a backup server, storing copies 
of data for other servers and creating snapshots of them.

I was about to overwrite the file to correct the problem by fetching it 
from its source but I didn't get an error trying to read it (cat <file> 
 > /dev/null)). I used diff and md5sum to double check: the file is fine.

Result of stat <file> on the subvolume used as base for the snapshots:
   File: <file>
   Size: 1799195         Blocks: 3520       IO Block: 4096 regular file
Device: 0,36    Inode: 6676106     Links: 1
Access: (0644/-rw-r--r--)  Uid: ( 1000/<uid>)   Gid: ( 1000/<gid>)
Access: 2018-02-15 05:22:38.506204046 +0100
Modify: 2018-02-15 05:21:35.612914799 +0100
Change: 2018-02-15 05:22:38.506204046 +0100
  Birth: 2018-02-15 05:22:38.486203934 +0100

AFAIK the kernel logged a warning for nearly each snapshot of the same 
subvolume (they were all created after the file), the subvolume from 
which snapshots are created is root 257 in the logs. What seems 
interesting to me and might help diagnose this is the pattern for 
offsets in the warnings.
- There are 3 offsets appearing: 20480, 86016, 151552 (exactly 64k 
between them).
- Most snapshots seem to report a warning for each of them.
- Some including the original subvolume have only logged 2 warnings and 
one (root 151335) logged only one warning.
- All of the snapshots reported a warning for offset 20480.
- When several offsets are logged their order seems random.

I'm attaching kernel logs beginning with the scrub start and ending with 
the last error. As of now there are no new errors/warnings even though 
the scrub is still ongoing, 15 hours after the last error. I didn't 
clean the log frombalance logs linked to the same filesystem.

Side-note for the curious or in the unlikely case it could be linked to 
the problem:
Historically this filesystem was mounted with ssd_spread without any 
issue (I guess several years ago it made sense to me reading the 
documentation and given the IO latencies I saw on the Ceph cluster). A 
recent kernel filled the whole available space with nearly empty block 
groups which seemed to re-appear each time we mounted with ssd_spread. 
We switched to "ssd" since then and there is a mostly daily 90mn balance 
to reach back the previous stateprogressively (this is the reason behind 
the balance related logs). Having some space available for new block 
groups seems to be a good idea but additionally as we use Ceph RBD, we 
want it to be able to deallocate unused space: having many nearly empty 
block groups could waste resources (especially if the used space in 
these groups is in <4MB continuous chunks which is the default RBD 
object size).


More information :
The scrub is run monthly. This is the first time an error was ever 
reported. The previous scrub was run successfully at the beginning of 
May with a 6.6.13 kernel.

There is a continuous defragmentation process running (it processes the 
whole filesystem slowly ignoring snapshots and defragments file by file 
based on a fragmentation estimation using filefrag -v). All 
defragmentations are logged and I can confirm the file for which this 
error was reported was not defragmented for at least a year (I checked 
because I wanted to rule out a possible race condition between 
defragmentation and scrub).

In addition to the above, among the notable IO are :
- a moderately IO intensive PostgreSQL replication subscriber,
- ponctual large synchronisations using Syncthing,
- snapshot creations/removals occur approximately every 80 minutes. The 
last snapshot operation was logged 31 minutes before the errors (removal 
occur asynchronously but where was no unusual load at this time that 
could point to a particularly long snapshot cleanup process).

To sum up, there are many processes accessing the filesystem but 
historically it saw far higher IO load during scrubs than what was 
occurring here.


Reproducing this might be difficult: the whole scrub can take a week 
depending on load. That said I can easily prepare a kernel and/or new 
btrfs-progs binaries to launch scrubs or other non-destructive tasks the 
week-end or at the end of the day (UTC+2 timezone).

Best regards,

Lionel Bouton

[-- Attachment #2: kernel.log --]
[-- Type: text/x-log, Size: 22210 bytes --]

Jun  3 09:35:28 bacchus kernel: BTRFS info (device sdb): scrub: started on devid 1
Jun  3 21:25:10 bacchus kernel: BTRFS info (device sdb): balance: start -dusage=1 -musage=1 -susage=1
Jun  3 21:25:12 bacchus kernel: BTRFS info (device sdb): relocating block group 46838433447936 flags system|dup
Jun  3 21:25:12 bacchus kernel: BTRFS info (device sdb): found 3 extents, stage: move data extents
Jun  3 21:25:12 bacchus kernel: BTRFS info (device sdb): balance: ended with status: 0
Jun  3 21:25:13 bacchus kernel: BTRFS info (device sdb): balance: start -dusage=2 -musage=2 -susage=2
Jun  3 21:25:13 bacchus kernel: BTRFS info (device sdb): balance: ended with status: 0
Jun  3 21:25:13 bacchus kernel: BTRFS info (device sdb): balance: start -dusage=3 -musage=3 -susage=3
Jun  3 21:25:13 bacchus kernel: BTRFS info (device sdb): balance: ended with status: 0
Jun  3 21:25:14 bacchus kernel: BTRFS info (device sdb): balance: start -dusage=4 -musage=4 -susage=4
Jun  3 21:25:14 bacchus kernel: BTRFS info (device sdb): balance: ended with status: 0
Jun  3 21:25:14 bacchus kernel: BTRFS info (device sdb): balance: start -dusage=5 -musage=5 -susage=5
Jun  3 21:25:14 bacchus kernel: BTRFS info (device sdb): balance: ended with status: 0
Jun  3 21:25:15 bacchus kernel: BTRFS info (device sdb): balance: start -dusage=6 -musage=6 -susage=6
Jun  3 21:25:15 bacchus kernel: BTRFS info (device sdb): relocating block group 28159613337600 flags metadata|dup
Jun  3 21:46:48 bacchus kernel: BTRFS info (device sdb): found 3862 extents, stage: move data extents
Jun  3 21:48:17 bacchus kernel: BTRFS info (device sdb): relocating block group 28154244628480 flags metadata|dup
Jun  3 21:59:19 bacchus kernel: BTRFS info (device sdb): found 3855 extents, stage: move data extents
Jun  3 22:01:01 bacchus kernel: BTRFS info (device sdb): relocating block group 27057954226176 flags metadata|dup
Jun  3 22:08:23 bacchus kernel: BTRFS info (device sdb): found 3751 extents, stage: move data extents
Jun  3 22:09:27 bacchus kernel: BTRFS info (device sdb): relocating block group 25452710199296 flags metadata|dup
Jun  3 22:15:33 bacchus kernel: BTRFS info (device sdb): found 3826 extents, stage: move data extents
Jun  3 22:17:12 bacchus kernel: BTRFS info (device sdb): relocating block group 25348557242368 flags metadata|dup
Jun  3 22:22:40 bacchus kernel: BTRFS info (device sdb): found 3808 extents, stage: move data extents
Jun  3 22:23:37 bacchus kernel: BTRFS info (device sdb): relocating block group 23787269521408 flags metadata|dup
Jun  3 22:27:34 bacchus kernel: BTRFS info (device sdb): found 3932 extents, stage: move data extents
Jun  3 22:28:36 bacchus kernel: BTRFS info (device sdb): relocating block group 23088230039552 flags metadata|dup
Jun  3 22:33:47 bacchus kernel: BTRFS info (device sdb): found 3690 extents, stage: move data extents
Jun  3 22:34:18 bacchus kernel: BTRFS info (device sdb): relocating block group 22920726315008 flags metadata|dup
Jun  3 22:39:00 bacchus kernel: BTRFS info (device sdb): found 3674 extents, stage: move data extents
Jun  3 22:39:37 bacchus kernel: BTRFS info (device sdb): relocating block group 22911062638592 flags metadata|dup
Jun  3 22:44:37 bacchus kernel: BTRFS info (device sdb): found 3699 extents, stage: move data extents
Jun  3 22:45:13 bacchus kernel: BTRFS info (device sdb): relocating block group 22889587802112 flags metadata|dup
Jun  3 22:48:48 bacchus kernel: BTRFS info (device sdb): found 3616 extents, stage: move data extents
Jun  3 22:49:08 bacchus kernel: BTRFS info (device sdb): relocating block group 22869186707456 flags metadata|dup
Jun  3 22:53:20 bacchus kernel: BTRFS info (device sdb): found 3735 extents, stage: move data extents
Jun  3 22:53:42 bacchus kernel: BTRFS info (device sdb): relocating block group 22809023610880 flags metadata|dup
Jun  3 22:57:20 bacchus kernel: BTRFS info (device sdb): found 3632 extents, stage: move data extents
Jun  3 22:57:41 bacchus kernel: BTRFS info (device sdb): balance: canceled
Jun  4 00:46:03 bacchus kernel: BTRFS error (device sdb): unable to fixup (regular) error at logical 3897985335296 on dev /dev/sdb physical 3836152905728
Jun  4 00:46:03 bacchus kernel: BTRFS error (device sdb): unable to fixup (regular) error at logical 3897985335296 on dev /dev/sdb physical 3836152905728
Jun  4 00:46:03 bacchus kernel: BTRFS error (device sdb): unable to fixup (regular) error at logical 3897985335296 on dev /dev/sdb physical 3836152905728
Jun  4 00:46:03 bacchus kernel: BTRFS error (device sdb): unable to fixup (regular) error at logical 3897985335296 on dev /dev/sdb physical 3836152905728
Jun  4 00:46:03 bacchus kernel: BTRFS error (device sdb): unable to fixup (regular) error at logical 3897985335296 on dev /dev/sdb physical 3836152905728
Jun  4 00:46:03 bacchus kernel: BTRFS error (device sdb): unable to fixup (regular) error at logical 3897985531904 on dev /dev/sdb physical 3836153102336
Jun  4 00:46:03 bacchus kernel: BTRFS error (device sdb): unable to fixup (regular) error at logical 3897985400832 on dev /dev/sdb physical 3836152971264
Jun  4 00:46:03 bacchus kernel: BTRFS error (device sdb): unable to fixup (regular) error at logical 3897985466368 on dev /dev/sdb physical 3836153036800
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985531904 on dev /dev/sdb, physical 3836153102336, root 151505, inode 6676106, offset 151552, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985400832 on dev /dev/sdb, physical 3836152971264, root 151505, inode 6676106, offset 20480, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985400832 on dev /dev/sdb, physical 3836152971264, root 151498, inode 6676106, offset 20480, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985466368 on dev /dev/sdb, physical 3836153036800, root 151498, inode 6676106, offset 86016, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985400832 on dev /dev/sdb, physical 3836152971264, root 151492, inode 6676106, offset 20480, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985466368 on dev /dev/sdb, physical 3836153036800, root 151492, inode 6676106, offset 86016, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985531904 on dev /dev/sdb, physical 3836153102336, root 151492, inode 6676106, offset 151552, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985400832 on dev /dev/sdb, physical 3836152971264, root 151426, inode 6676106, offset 20480, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985531904 on dev /dev/sdb, physical 3836153102336, root 151426, inode 6676106, offset 151552, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985466368 on dev /dev/sdb, physical 3836153036800, root 151426, inode 6676106, offset 86016, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985466368 on dev /dev/sdb, physical 3836153036800, root 151444, inode 6676106, offset 86016, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985400832 on dev /dev/sdb, physical 3836152971264, root 151444, inode 6676106, offset 20480, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985400832 on dev /dev/sdb, physical 3836152971264, root 151523, inode 6676106, offset 20480, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985466368 on dev /dev/sdb, physical 3836153036800, root 151523, inode 6676106, offset 86016, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985400832 on dev /dev/sdb, physical 3836152971264, root 151517, inode 6676106, offset 20480, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985531904 on dev /dev/sdb, physical 3836153102336, root 151517, inode 6676106, offset 151552, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985466368 on dev /dev/sdb, physical 3836153036800, root 151517, inode 6676106, offset 86016, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985400832 on dev /dev/sdb, physical 3836152971264, root 151511, inode 6676106, offset 20480, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985531904 on dev /dev/sdb, physical 3836153102336, root 151511, inode 6676106, offset 151552, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985466368 on dev /dev/sdb, physical 3836153036800, root 151511, inode 6676106, offset 86016, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS error (device sdb): unable to fixup (regular) error at logical 3897989201920 on dev /dev/sdb physical 3836156772352
Jun  4 00:46:04 bacchus kernel: BTRFS error (device sdb): unable to fixup (regular) error at logical 3897989201920 on dev /dev/sdb physical 3836156772352
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985531904 on dev /dev/sdb, physical 3836153102336, root 151456, inode 6676106, offset 151552, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985400832 on dev /dev/sdb, physical 3836152971264, root 151456, inode 6676106, offset 20480, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985466368 on dev /dev/sdb, physical 3836153036800, root 151456, inode 6676106, offset 86016, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985531904 on dev /dev/sdb, physical 3836153102336, root 151486, inode 6676106, offset 151552, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985400832 on dev /dev/sdb, physical 3836152971264, root 151486, inode 6676106, offset 20480, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985466368 on dev /dev/sdb, physical 3836153036800, root 151486, inode 6676106, offset 86016, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985400832 on dev /dev/sdb, physical 3836152971264, root 151480, inode 6676106, offset 20480, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985531904 on dev /dev/sdb, physical 3836153102336, root 151480, inode 6676106, offset 151552, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985466368 on dev /dev/sdb, physical 3836153036800, root 151480, inode 6676106, offset 86016, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985400832 on dev /dev/sdb, physical 3836152971264, root 151468, inode 6676106, offset 20480, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985531904 on dev /dev/sdb, physical 3836153102336, root 151468, inode 6676106, offset 151552, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985466368 on dev /dev/sdb, physical 3836153036800, root 151468, inode 6676106, offset 86016, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985400832 on dev /dev/sdb, physical 3836152971264, root 151462, inode 6676106, offset 20480, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985466368 on dev /dev/sdb, physical 3836153036800, root 151462, inode 6676106, offset 86016, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985531904 on dev /dev/sdb, physical 3836153102336, root 151462, inode 6676106, offset 151552, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985400832 on dev /dev/sdb, physical 3836152971264, root 151474, inode 6676106, offset 20480, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985531904 on dev /dev/sdb, physical 3836153102336, root 151474, inode 6676106, offset 151552, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985466368 on dev /dev/sdb, physical 3836153036800, root 151474, inode 6676106, offset 86016, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985400832 on dev /dev/sdb, physical 3836152971264, root 151450, inode 6676106, offset 20480, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985531904 on dev /dev/sdb, physical 3836153102336, root 151450, inode 6676106, offset 151552, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985466368 on dev /dev/sdb, physical 3836153036800, root 151450, inode 6676106, offset 86016, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985400832 on dev /dev/sdb, physical 3836152971264, root 151547, inode 6676106, offset 20480, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985466368 on dev /dev/sdb, physical 3836153036800, root 151547, inode 6676106, offset 86016, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985531904 on dev /dev/sdb, physical 3836153102336, root 151547, inode 6676106, offset 151552, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985400832 on dev /dev/sdb, physical 3836152971264, root 257, inode 6676106, offset 20480, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985531904 on dev /dev/sdb, physical 3836153102336, root 257, inode 6676106, offset 151552, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985400832 on dev /dev/sdb, physical 3836152971264, root 151541, inode 6676106, offset 20480, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985531904 on dev /dev/sdb, physical 3836153102336, root 151541, inode 6676106, offset 151552, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985531904 on dev /dev/sdb, physical 3836153102336, root 151538, inode 6676106, offset 151552, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985400832 on dev /dev/sdb, physical 3836152971264, root 151538, inode 6676106, offset 20480, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985466368 on dev /dev/sdb, physical 3836153036800, root 151538, inode 6676106, offset 86016, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985531904 on dev /dev/sdb, physical 3836153102336, root 151535, inode 6676106, offset 151552, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985400832 on dev /dev/sdb, physical 3836152971264, root 151535, inode 6676106, offset 20480, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985466368 on dev /dev/sdb, physical 3836153036800, root 151535, inode 6676106, offset 86016, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985400832 on dev /dev/sdb, physical 3836152971264, root 151532, inode 6676106, offset 20480, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985531904 on dev /dev/sdb, physical 3836153102336, root 151532, inode 6676106, offset 151552, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985466368 on dev /dev/sdb, physical 3836153036800, root 151532, inode 6676106, offset 86016, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985400832 on dev /dev/sdb, physical 3836152971264, root 151529, inode 6676106, offset 20480, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985531904 on dev /dev/sdb, physical 3836153102336, root 151529, inode 6676106, offset 151552, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985466368 on dev /dev/sdb, physical 3836153036800, root 151529, inode 6676106, offset 86016, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985531904 on dev /dev/sdb, physical 3836153102336, root 151544, inode 6676106, offset 151552, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985466368 on dev /dev/sdb, physical 3836153036800, root 151544, inode 6676106, offset 86016, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985400832 on dev /dev/sdb, physical 3836152971264, root 151544, inode 6676106, offset 20480, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985531904 on dev /dev/sdb, physical 3836153102336, root 151207, inode 6676106, offset 151552, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985466368 on dev /dev/sdb, physical 3836153036800, root 151207, inode 6676106, offset 86016, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985400832 on dev /dev/sdb, physical 3836152971264, root 151207, inode 6676106, offset 20480, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985400832 on dev /dev/sdb, physical 3836152971264, root 151335, inode 6676106, offset 20480, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985531904 on dev /dev/sdb, physical 3836153102336, root 151079, inode 6676106, offset 151552, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985466368 on dev /dev/sdb, physical 3836153036800, root 151079, inode 6676106, offset 86016, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985400832 on dev /dev/sdb, physical 3836152971264, root 151079, inode 6676106, offset 20480, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985466368 on dev /dev/sdb, physical 3836153036800, root 150952, inode 6676106, offset 86016, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985400832 on dev /dev/sdb, physical 3836152971264, root 150952, inode 6676106, offset 20480, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985531904 on dev /dev/sdb, physical 3836153102336, root 150952, inode 6676106, offset 151552, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985400832 on dev /dev/sdb, physical 3836152971264, root 150825, inode 6676106, offset 20480, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985531904 on dev /dev/sdb, physical 3836153102336, root 150825, inode 6676106, offset 151552, length 4096, links 1 (path: <file>)
Jun  4 00:46:04 bacchus kernel: BTRFS warning (device sdb): checksum error at logical 3897985466368 on dev /dev/sdb, physical 3836153036800, root 150825, inode 6676106, offset 86016, length 4096, links 1 (path: <file>)

^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2024-07-04 22:49 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-04 14:12 BUG: scrub reports uncorrectable csum errors linked to readable file (data: single) Lionel Bouton
2024-06-06 22:51 ` Lionel Bouton
2024-06-06 23:05 ` Qu Wenruo
2024-06-06 23:21   ` Lionel Bouton
2024-06-06 23:30     ` Qu Wenruo
2024-06-06 23:46       ` Lionel Bouton
2024-06-08 16:15         ` Lionel Bouton
2024-06-08 22:48           ` Qu Wenruo
2024-06-09  0:16             ` Lionel Bouton
2024-06-10 12:52               ` Lionel Bouton
2024-06-18 21:45       ` Lionel Bouton
2024-06-22  8:51         ` Lionel Bouton
2024-06-22  9:41           ` Qu Wenruo
2024-06-30 10:59             ` Lionel Bouton
2024-07-04 12:21               ` Lionel Bouton
2024-07-04 22:38                 ` Qu Wenruo
2024-07-04 22:49                   ` Qu Wenruo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox