aboutsummaryrefslogtreecommitdiff
path: root/fs/btrfs/bio.c
AgeCommit message (Expand)AuthorFilesLines
2024-03-04btrfs: introduce offload_csum_mode to tweak checksum offloading behaviorGravatar Naohiro Aota 1-1/+13
2024-03-04btrfs: remove unused included headersGravatar David Sterba 1-1/+0
2024-03-04btrfs: remove duplicate recording of physical addressGravatar Johannes Thumshirn 1-2/+0
2023-12-15btrfs: migrate btrfs_repair_io_failure() to folio interfacesGravatar Qu Wenruo 1-4/+11
2023-12-15btrfs: fix typos found by codespellGravatar David Sterba 1-1/+1
2023-10-12btrfs: merge ordered work callbacks in btrfs_work into oneGravatar David Sterba 1-8/+9
2023-10-12btrfs: scrub: implement raid stripe tree supportGravatar Johannes Thumshirn 1-0/+2
2023-10-12btrfs: add support for inserting raid stripe extentsGravatar Johannes Thumshirn 1-0/+21
2023-10-12btrfs: remove the need_raid_map parameter from btrfs_map_block()Gravatar Qu Wenruo 1-1/+1
2023-10-12btrfs: check-integrity: remove btrfsic_unmount() functionGravatar Qu Wenruo 1-1/+0
2023-10-12btrfs: check-integrity: remove btrfsic_check_bio() functionGravatar Qu Wenruo 1-4/+0
2023-06-19btrfs: add an ordered_extent pointer to struct btrfs_bioGravatar Christoph Hellwig 1-4/+38
2023-06-19btrfs: add a is_data_bbio helperGravatar Christoph Hellwig 1-4/+9
2023-06-19btrfs: limit write bios to a single ordered extentGravatar Christoph Hellwig 1-3/+0
2023-06-19btrfs: fix file_offset for REQ_BTRFS_ONE_ORDERED bios that get splitGravatar Christoph Hellwig 1-2/+1
2023-06-19btrfs: rename __btrfs_map_block to btrfs_map_blockGravatar Christoph Hellwig 1-2/+2
2023-06-19btrfs: defer splitting of ordered extents until I/O completionGravatar Christoph Hellwig 1-17/+0
2023-06-19btrfs: record orig_physical only for the original bioGravatar Christoph Hellwig 1-1/+2
2023-06-19btrfs: optimize the logical to physical mapping for zoned writesGravatar Christoph Hellwig 1-0/+5
2023-06-19btrfs: don't call btrfs_record_physical_zoned for failed appendGravatar Christoph Hellwig 1-1/+1
2023-06-19btrfs: remove hipri_workers workqueueGravatar Christoph Hellwig 1-4/+1
2023-06-19btrfs: determine synchronous writers from bio or writeback controlGravatar Christoph Hellwig 1-4/+3
2023-06-19btrfs: submit IO synchronously for fast checksum implementationsGravatar Christoph Hellwig 1-13/+7
2023-06-19btrfs: use SECTOR_SHIFT to convert LBA to physical offsetGravatar Anand Jain 1-1/+1
2023-06-01btrfs: zoned: fix dev-replace after the scrub reworkGravatar Qu Wenruo 1-4/+0
2023-05-26btrfs: call btrfs_orig_bbio_end_io in btrfs_end_bio_workGravatar Christoph Hellwig 1-1/+1
2023-04-17btrfs: introduce a new helper to submit write bio for repairGravatar Qu Wenruo 1-44/+50
2023-04-17btrfs: introduce btrfs_bio::fs_info memberGravatar Qu Wenruo 1-17/+25
2023-04-17btrfs, block: move REQ_CGROUP_PUNT to btrfsGravatar Christoph Hellwig 1-4/+8
2023-04-17btrfs: pass an ordered_extent to btrfs_extract_ordered_extentGravatar Christoph Hellwig 1-1/+15
2023-04-17btrfs: use __bio_add_page for adding a single page in repair_one_sectorGravatar Johannes Thumshirn 1-1/+1
2023-04-17btrfs: make btrfs_split_bio work on struct btrfs_bioGravatar Christoph Hellwig 1-13/+14
2023-04-17btrfs: return a btrfs_bio from btrfs_bio_allocGravatar Christoph Hellwig 1-5/+7
2023-04-17btrfs: pass a btrfs_bio to btrfs_submit_bioGravatar Christoph Hellwig 1-7/+7
2023-03-06btrfs: fix unnecessary increment of read error stat on write errorGravatar Naohiro Aota 1-1/+1
2023-02-15btrfs: pass a btrfs_bio to btrfs_use_appendGravatar Christoph Hellwig 1-1/+1
2023-02-15btrfs: split zone append bios in btrfs_submit_bioGravatar Christoph Hellwig 1-17/+27
2023-02-15btrfs: remove the fs_info argument to btrfs_submit_bioGravatar Christoph Hellwig 1-6/+6
2023-02-15btrfs: pass the iomap bio to btrfs_submit_bioGravatar Christoph Hellwig 1-20/+2
2023-02-15btrfs: allow btrfs_submit_bio to split biosGravatar Christoph Hellwig 1-18/+92
2023-02-15btrfs: support cloned bios in btree_csum_one_bioGravatar Christoph Hellwig 1-1/+1
2023-02-15btrfs: handle recording of zoned writes in the storage layerGravatar Christoph Hellwig 1-0/+8
2023-02-15btrfs: handle checksum generation in the storage layerGravatar Christoph Hellwig 1-26/+178
2023-02-15btrfs: simplify the btrfs_csum_one_bio calling conventionGravatar Christoph Hellwig 1-0/+3
2023-02-15btrfs: rename btrfs_bio::iter fieldGravatar Christoph Hellwig 1-6/+6
2023-02-15btrfs: remove struct btrfs_bio::device fieldGravatar Christoph Hellwig 1-5/+5
2023-02-15btrfs: open code btrfs_bio_free_csumGravatar Christoph Hellwig 1-1/+2
2023-02-15btrfs: handle checksum validation and repair at the storage layerGravatar Christoph Hellwig 1-2/+188
2023-02-15btrfs: pre-load data checksum for reads in btrfs_submit_bioGravatar Christoph Hellwig 1-2/+10
2023-02-15btrfs: save the bio iter for checksum validation in common codeGravatar Christoph Hellwig 1-1/+4