* OFF-By-One Trouble? [BTRFS in Debian Stretch Kernel 4.9.0-4-amd64]
@ 2017-12-12 10:22 Juergen Sauer
2017-12-14 7:03 ` ein
2017-12-14 7:46 ` Qu Wenruo
0 siblings, 2 replies; 3+ messages in thread
From: Juergen Sauer @ 2017-12-12 10:22 UTC (permalink / raw)
To: linux-btrfs
[-- Attachment #1.1: Type: text/plain, Size: 2001 bytes --]
Hi collegues,
this morning we've got a problm with btrfs in Debian Stable.
Yesterday we had our fs filled below 30% space usage.
No further usage came in the usage is nearly the same, but ...
# df -h .
Dateisystem Größe Benutzt Verf. Verw% Eingehängt auf
/dev/vdb1 483G 483G 148K 100% /mnt
# btrfs fi df .
Data, single: total=480.97GiB, used=480.97GiB
System, single: total=32.00MiB, used=96.00KiB
Metadata, single: total=2.00GiB, used=1.29GiB
GlobalReserve, single: total=512.00MiB, used=0.00B
# btrfs fi show .
Label: 'AXSDaten' uuid: fde7e31f-4127-4a9d-b7c6-774ceff8f7c1
Total devices 1 FS bytes used 482.26GiB
devid 1 size 483.00GiB used 483.00GiB path /dev/vdb1
# btrfs --version
btrfs-progs v4.7.3
we found exerpt of kernel log:
[ 199.391577] attempt to access beyond end of device
[ 199.391598] vdb1: rw=536870984, want=1012922336, limit=1012922335
[ 199.391615] BTRFS error (device vdb1): bdev /dev/vdb1 errs: wr 301,
rd 0, flush 0, corrupt 0, gen 0
r
If I interpret the log right, on the FS the kernel wants to write on
block 1012922336, but the fs was created with max 1012922335 blocks.
Looks to us here like a typical off-by-one error on accessing the last
block of device.
This error was repeating under ff. conditions:
- shutdown the virtual server (kvm),
- extend the physical file of the according virtual hdd by 20% (from 483
Gib to 520 GiB)
- restart virtual server
- fixed partion size (parted), mounted
- called btrfs fi resize max on the corresponding mount point
Error came back, nearly at once.
Any other Idea to fix this error?
mit freundlichen Grüßen
Jürgen Sauer
--
Jürgen Sauer - automatiX GmbH,
+49-4209-4699, juergen.sauer@automatix.de
Geschäftsführer: Jürgen Sauer,
Gerichtstand: Amtsgericht Walsrode • HRB 120986
Ust-Id: DE191468481 • St.Nr.: 36/211/08000
GPG Public Key zur Signaturprüfung:
http://www.automatix.de/juergen_sauer_publickey.gpg
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 195 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: OFF-By-One Trouble? [BTRFS in Debian Stretch Kernel 4.9.0-4-amd64]
2017-12-12 10:22 OFF-By-One Trouble? [BTRFS in Debian Stretch Kernel 4.9.0-4-amd64] Juergen Sauer
@ 2017-12-14 7:03 ` ein
2017-12-14 7:46 ` Qu Wenruo
1 sibling, 0 replies; 3+ messages in thread
From: ein @ 2017-12-14 7:03 UTC (permalink / raw)
To: service, linux-btrfs
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
On 12/12/2017 11:22 AM, Juergen Sauer wrote:
> Hi collegues,
Hello.
>
> this morning we've got a problm with btrfs in Debian Stable.
>
> Yesterday we had our fs filled below 30% space usage. No further
> usage came in the usage is nearly the same, but ...
>
> # df -h . Dateisystem Größe Benutzt Verf. Verw% Eingehängt auf
> /dev/vdb1 483G 483G 148K 100% /mnt
>
> # btrfs fi df . Data, single: total=480.97GiB, used=480.97GiB
> System, single: total=32.00MiB, used=96.00KiB Metadata, single:
> total=2.00GiB, used=1.29GiB GlobalReserve, single:
> total=512.00MiB, used=0.00B
>
> # btrfs fi show . Label: 'AXSDaten' uuid:
> fde7e31f-4127-4a9d-b7c6-774ceff8f7c1 Total devices 1 FS bytes used
> 482.26GiB devid 1 size 483.00GiB used 483.00GiB path /dev/vdb1
>
> # btrfs --version btrfs-progs v4.7.3
>
> we found exerpt of kernel log: [ 199.391577] attempt to access
> beyond end of device [ 199.391598] vdb1: rw=536870984,
> want=1012922336, limit=1012922335 [ 199.391615] BTRFS error
> (device vdb1): bdev /dev/vdb1 errs: wr 301, rd 0, flush 0, corrupt
> 0, gen 0 r If I interpret the log right, on the FS the kernel
> wants to write on block 1012922336, but the fs was created with
> max 1012922335 blocks.
>
> Looks to us here like a typical off-by-one error on accessing the
> last block of device.
Or user error, or HW problems, I use Debian 9 in production and I
completed multiple BTRFS resizes with success. The only one difference I
see for now is:
server #1:
root@node0:~# uname -a; btrfs
- --version
Linux node0 4.12.0-0.bpo.2-amd64 #1 SMP Debian 4.12.13-1~bpo9+1
(2017-09-28) x86_64
GNU/Linux
btrfs-progs v4.13.3
server #2:
root@node0.intranet.xxx.pl:~# uname -a; btrfs --version
Linux node0.intranet.xxx.pl 4.12.0-0.bpo.2-amd64 #1 SMP Debian
4.12.13-1~bpo9+1 (2017-09-28) x86_64 GNU/Linux
btrfs-progs v4.13.3
Both kernels and btrfs-progs were from backports.
> This error was repeating under ff. conditions: - shutdown the
> virtual server (kvm), - extend the physical file of the according
> virtual hdd by 20% (from 483 Gib to 520 GiB)
Extend exactly how?
> - restart virtual server - fixed partion size (parted), mounted -
> called btrfs fi resize max on the corresponding mount point
>
> Error came back, nearly at once.
>
> Any other Idea to fix this error?
>
> mit freundlichen Grüßen Jürgen Sauer
>
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2
iQIcBAEBCAAGBQJaMiI8AAoJEHr/aeHyxuoQ8fAQAJyPSI0t+JTR7s1ve+cbQepi
9zOifU0OgFd/GLQYiqcSBiZf8Rz619PLf3yW/oN7pBjiBW393sPTu2PbWIRZmtBW
uOhxFr+IQyjYWTwCfM4CLTMdXn73WXA9AgBA2BquWeM0HDzZrjh+lDoNyYdu2eNP
zhwhgk3o+qC931d67B48tPN6q5kL3VVG0bLspG4SDoaEeV6PHRUgfIYjMEhWf49p
jdkKm3FfI7WcAw9w0+5zKxZ8ujhJIlLAJEYw6AgYOhukmLFPXOO/CJPjs4aGiEXb
NI3k9Oql2fkRa9/u2n/RPpmAqQAzS8nWMhM5JB7B0/mYUid99QbPUXQiZ9LVLBne
UiHPBRyOQcZTKGbjrXPOfzsrSvlxoZs+xNLc7dyJBgfbFmoXjcEoHV6+Blow+kqA
34bZ5rGq907LvbQcQaDjoLdWLXlgm1/5J5rhhgd9dFRAcCYWzYOWuZMVXBjAmCNf
Xclvjp3Jp7ObsTsUy+ZgVKw5wwQEAtlFMA7bV6zzlyMVnC6k9XlMcSwKg1ySg/Vv
cIoZukCeqOOVrFxjzw++ntpI1v1KgT3DHt4Wiyum93eu9VKyYSVKUIuFOjCltqDJ
yxhMv8LjGcsdL8vVAsVSDvVwx2entYwDM2Wlx7JoEGI1n4GN7LufrttdfsulL8xZ
M+1DH/2421Lhy/9kQUiG
=44JM
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: OFF-By-One Trouble? [BTRFS in Debian Stretch Kernel 4.9.0-4-amd64]
2017-12-12 10:22 OFF-By-One Trouble? [BTRFS in Debian Stretch Kernel 4.9.0-4-amd64] Juergen Sauer
2017-12-14 7:03 ` ein
@ 2017-12-14 7:46 ` Qu Wenruo
1 sibling, 0 replies; 3+ messages in thread
From: Qu Wenruo @ 2017-12-14 7:46 UTC (permalink / raw)
To: service, linux-btrfs
[-- Attachment #1.1: Type: text/plain, Size: 2473 bytes --]
On 2017年12月12日 18:22, Juergen Sauer wrote:
> Hi collegues,
> this morning we've got a problm with btrfs in Debian Stable.
>
> Yesterday we had our fs filled below 30% space usage.
> No further usage came in the usage is nearly the same, but ...
>
> # df -h .
> Dateisystem Größe Benutzt Verf. Verw% Eingehängt auf
> /dev/vdb1 483G 483G 148K 100% /mnt
>
> # btrfs fi df .
> Data, single: total=480.97GiB, used=480.97GiB
> System, single: total=32.00MiB, used=96.00KiB
> Metadata, single: total=2.00GiB, used=1.29GiB
> GlobalReserve, single: total=512.00MiB, used=0.00B
>
> # btrfs fi show .
> Label: 'AXSDaten' uuid: fde7e31f-4127-4a9d-b7c6-774ceff8f7c1
> Total devices 1 FS bytes used 482.26GiB
> devid 1 size 483.00GiB used 483.00GiB path /dev/vdb1
>
> # btrfs --version
> btrfs-progs v4.7.3
>
> we found exerpt of kernel log:
> [ 199.391577] attempt to access beyond end of device
> [ 199.391598] vdb1: rw=536870984, want=1012922336, limit=1012922335
I doubt if it's just a off-by-one bug.
It can be that, btrfs think it's enlarged while partition table doesn't
think so, so btrfs tries to submit write beyond the partition end.
> [ 199.391615] BTRFS error (device vdb1): bdev /dev/vdb1 errs: wr 301,
> rd 0, flush 0, corrupt 0, gen 0
> r
> If I interpret the log right, on the FS the kernel wants to write on
> block 1012922336, but the fs was created with max 1012922335 blocks.
>
> Looks to us here like a typical off-by-one error on accessing the last
> block of device.
>
> This error was repeating under ff. conditions:
> - shutdown the virtual server (kvm),
> - extend the physical file of the according virtual hdd by 20% (from 483
> Gib to 520 GiB)
> - restart virtual server
> - fixed partion size (parted), mounted
> - called btrfs fi resize max on the corresponding mount point
The following info is needed to debug the problem.
1) Chunk tree dump of the btrfs:
# btrfs inspect dump-tree -t 3 /dev/vdb1
2) Super dump of the btrfs:
# btrfs inspect dump-super -f /dev/vdb1
3) Kernel version
# uname -a
(Well, I'm not a Debian user so I don't really know the kernel
version just by "Debian Stable")
4) Partition info
Better with binary output in byte unit.
Thanks,
Qu
>
> Error came back, nearly at once.
>
> Any other Idea to fix this error?
>
> mit freundlichen Grüßen
> Jürgen Sauer
>
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 520 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-12-14 7:46 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-12 10:22 OFF-By-One Trouble? [BTRFS in Debian Stretch Kernel 4.9.0-4-amd64] Juergen Sauer
2017-12-14 7:03 ` ein
2017-12-14 7:46 ` Qu Wenruo
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.