summaryrefslogtreecommitdiff
path: root/fs/btrfs/volumes.c
AgeCommit message (Expand)AuthorFilesLines
2026-03-04btrfs: replace BUG() with error handling in __btrfs_balance()Adarsh Das1-2/+8
2026-01-08btrfs: fix memory leak of fs_devices in degraded seed device pathDeepanshu Kartikey1-0/+1
2025-10-02btrfs: don't allow adding block device of less than 1 MBMark Harmstone1-0/+5
2025-07-06btrfs: update superblock's device bytes_used when dropping chunkMark Harmstone1-0/+6
2025-05-18Revert "btrfs: canonicalize the device path before adding it"Qu Wenruo1-90/+1
2025-03-13btrfs: fix a leaked chunk map issue in read_one_chunk()Haoxiang Li1-0/+1
2025-01-23btrfs: add the missing error handling inside get_canonical_dev_pathQu Wenruo1-0/+4
2024-12-14btrfs: do not clear read-only when adding sprout deviceBoris Burkov1-4/+0
2024-12-14btrfs: canonicalize the device path before adding itQu Wenruo1-1/+86
2024-12-14btrfs: avoid unnecessary device path update for the same deviceQu Wenruo1-1/+37
2024-12-14btrfs: don't take dev_replace rwsem on task already holding itJohannes Thumshirn1-3/+5
2024-10-29btrfs: fix use-after-free of block device file in __btrfs_free_extra_devids()Zhihao Cheng1-0/+1
2024-09-10btrfs: reduce chunk_map lookups in btrfs_map_block()Johannes Thumshirn1-22/+27
2024-09-10btrfs: print message on device opening error during mountLi Zhang1-0/+2
2024-09-10btrfs: move uuid tree related code to uuid-tree.[ch]Qu Wenruo1-177/+0
2024-07-11btrfs: abort transaction on errors in btrfs_free_chunk()David Sterba1-6/+9
2024-07-11btrfs: constify pointer parameters where applicableDavid Sterba1-1/+1
2024-07-11btrfs: use for-local variables that shadow function variablesDavid Sterba1-6/+3
2024-07-11btrfs: drop bytenr_orig and fix comment in btrfs_scan_one_device()Anand Jain1-10/+8
2024-07-11btrfs: pass struct btrfs_io_geometry into handle_ops_on_dev_replace()Johannes Thumshirn1-10/+8
2024-05-21Merge tag 'pull-bd_inode-1' of git://git.kernel.org/pub/scm/linux/kernel/git/...Linus Torvalds1-1/+1
2024-05-21Merge tag 'pull-set_blocksize' of git://git.kernel.org/pub/scm/linux/kernel/g...Linus Torvalds1-5/+8
2024-05-07btrfs: remove no longer used btrfs_clone_chunk_map()Filipe Manana1-15/+0
2024-05-03use ->bd_mapping instead of ->bd_inode->i_mappingAl Viro1-1/+1
2024-05-03set_blocksize(): switch to passing struct file *Al Viro1-2/+2
2024-05-03btrfs_get_bdev_and_sb(): call set_blocksize() only for exclusive opensAl Viro1-4/+7
2024-05-02Merge tag 'for-6.9-rc6-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/...Linus Torvalds1-0/+1
2024-04-25btrfs: add missing mutex_unlock in btrfs_relocate_sys_chunks()Dominique Martinet1-0/+1
2024-03-27Merge tag 'for-6.9-rc1-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/...Linus Torvalds1-5/+22
2024-03-26btrfs: return accurate error code on open failure in open_fs_devices()Anand Jain1-5/+12
2024-03-26btrfs: validate device maj:min during openAnand Jain1-0/+10
2024-03-18btrfs: do not skip re-registration for the mounted deviceAnand Jain1-11/+47
2024-03-12Merge tag 'for-6.9-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdav...Linus Torvalds1-25/+73
2024-03-11Merge tag 'vfs-6.9.super' of git://git.kernel.org/pub/scm/linux/kernel/git/vf...Linus Torvalds1-46/+46
2024-03-05btrfs: fix off-by-one chunk length calculation at contains_pending_extent()Filipe Manana1-1/+1
2024-03-05btrfs: include device major and minor numbers in the device scan noticeAnand Jain1-7/+12
2024-03-04btrfs: pass btrfs_device to btrfs_scratch_superblocks()David Sterba1-8/+5
2024-03-04btrfs: move balance args conversion helpers to volumes.cDavid Sterba1-0/+38
2024-03-04btrfs: change BUG_ON to assertion in reset_balance_state()David Sterba1-1/+1
2024-03-04btrfs: handle chunk tree lookup error in btrfs_relocate_sys_chunks()David Sterba1-1/+11
2024-03-04btrfs: use READ/WRITE_ONCE for fs_devices->read_policyNaohiro Aota1-5/+5
2024-03-04btrfs: remove unused included headersDavid Sterba1-2/+0
2024-02-25btrfs: port device access to fileChristian Brauner1-46/+46
2024-01-12btrfs: fix unbalanced unlock of mapping_tree_lockNaohiro Aota1-2/+0
2023-12-16btrfs: pass btrfs_io_geometry into btrfs_max_io_lenJohannes Thumshirn1-17/+13
2023-12-16btrfs: pass struct btrfs_io_geometry to set_io_stripeJohannes Thumshirn1-17/+15
2023-12-16btrfs: open code set_io_stripe for RAID56Johannes Thumshirn1-7/+9
2023-12-16btrfs: change block mapping to switch/case in btrfs_map_blockJohannes Thumshirn1-6/+16
2023-12-16btrfs: factor out block mapping for single profilesJohannes Thumshirn1-3/+9
2023-12-16btrfs: factor out block mapping for RAID5/6Johannes Thumshirn1-42/+53