* [GIT PULL] Btrfs fixes for 6.15-rc6
@ 2025-03-07 19:58 David Sterba
2025-03-07 22:30 ` pr-tracker-bot
0 siblings, 1 reply; 4+ messages in thread
From: David Sterba @ 2025-03-07 19:58 UTC (permalink / raw)
To: torvalds; +Cc: David Sterba, linux-btrfs, linux-kernel
Hi,
please pull a few more fixes for btrfs, thanks.
- fix leaked extent map after error when reading chunks
- replace use of deprecated strncpy
- in zoned mode, fixed range when ulocking extent range, causing a hang
----------------------------------------------------------------
The following changes since commit efa11fd269c139e29b71ec21bc9c9c0063fde40d:
btrfs: fix data overwriting bug during buffered write when block size < page size (2025-02-21 09:32:24 +0100)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git tags/for-6.14-rc5-tag
for you to fetch changes up to 35d99c68af40a8ca175babc5a89ef7e2226fb3ca:
btrfs: fix a leaked chunk map issue in read_one_chunk() (2025-03-06 14:40:09 +0100)
----------------------------------------------------------------
Haoxiang Li (1):
btrfs: fix a leaked chunk map issue in read_one_chunk()
Naohiro Aota (1):
btrfs: zoned: fix extent range end unlock in cow_file_range()
Thorsten Blum (1):
btrfs: replace deprecated strncpy() with strscpy()
fs/btrfs/inode.c | 9 +++++++--
fs/btrfs/sysfs.c | 4 ++--
fs/btrfs/volumes.c | 1 +
3 files changed, 10 insertions(+), 4 deletions(-)
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [GIT PULL] Btrfs fixes for 6.15-rc6
2025-03-07 19:58 [GIT PULL] Btrfs fixes for 6.15-rc6 David Sterba
@ 2025-03-07 22:30 ` pr-tracker-bot
0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2025-03-07 22:30 UTC (permalink / raw)
To: David Sterba; +Cc: torvalds, David Sterba, linux-btrfs, linux-kernel
The pull request you sent on Fri, 7 Mar 2025 20:58:03 +0100:
> git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git tags/for-6.14-rc5-tag
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/6ceb6346b0436ea6591c33ab6ab22e5077ed17e7
Thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html
^ permalink raw reply [flat|nested] 4+ messages in thread
* [GIT PULL] Btrfs fixes for 6.15-rc6
@ 2025-05-06 14:06 David Sterba
2025-05-06 16:38 ` pr-tracker-bot
0 siblings, 1 reply; 4+ messages in thread
From: David Sterba @ 2025-05-06 14:06 UTC (permalink / raw)
To: linux-btrfs, torvalds; +Cc: David Sterba, linux-kernel
Hi,
a few more fixes, minor updates and one revert. Please pull, thanks.
- revert device path canonicalization, this does not work as intended
with namespaces and is not reliable in all setups
- fix crash in scrub when checksum tree is not valid, e.g. when mounted
with rescue=ignoredatacsums
- fix crash when tracepoint btrfs_prelim_ref_insert is enabled
- other minor fixups
- open code folio_index(), meant to be used in MM code
- use matching type for sizeof in compression allocation
----------------------------------------------------------------
The following changes since commit e08e49d986f82c30f42ad0ed43ebbede1e1e3739:
btrfs: adjust subpage bit start based on sectorsize (2025-04-23 08:42:10 +0200)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git tags/for-6.15-rc5-tag
for you to fetch changes up to 38e541051e1d19e8b1479a6af587a7884653e041:
btrfs: open code folio_index() in btree_clear_folio_dirty_tag() (2025-05-02 13:20:56 +0200)
----------------------------------------------------------------
Boris Burkov (1):
btrfs: handle empty eb->folios in num_extent_folios()
Goldwyn Rodrigues (1):
btrfs: correct the order of prelim_ref arguments in btrfs__prelim_ref
Kairui Song (1):
btrfs: open code folio_index() in btree_clear_folio_dirty_tag()
Kees Cook (1):
btrfs: compression: adjust cb->compressed_folios allocation type
Qu Wenruo (2):
btrfs: avoid NULL pointer dereference if no valid csum tree
Revert "btrfs: canonicalize the device path before adding it"
fs/btrfs/compression.c | 2 +-
fs/btrfs/extent_io.c | 4 +-
fs/btrfs/extent_io.h | 2 +
fs/btrfs/scrub.c | 4 +-
fs/btrfs/volumes.c | 91 +-------------------------------------------
include/trace/events/btrfs.h | 2 +-
6 files changed, 9 insertions(+), 96 deletions(-)
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [GIT PULL] Btrfs fixes for 6.15-rc6
2025-05-06 14:06 David Sterba
@ 2025-05-06 16:38 ` pr-tracker-bot
0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2025-05-06 16:38 UTC (permalink / raw)
To: David Sterba; +Cc: linux-btrfs, torvalds, David Sterba, linux-kernel
The pull request you sent on Tue, 6 May 2025 16:06:18 +0200:
> git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git tags/for-6.15-rc5-tag
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/0d8d44db295ccad20052d6301ef49ff01fb8ae2d
Thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-05-06 16:37 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-07 19:58 [GIT PULL] Btrfs fixes for 6.15-rc6 David Sterba
2025-03-07 22:30 ` pr-tracker-bot
-- strict thread matches above, loose matches on Subject: below --
2025-05-06 14:06 David Sterba
2025-05-06 16:38 ` pr-tracker-bot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox