aboutsummaryrefslogtreecommitdiff
path: root/fs/btrfs/extent_io.c
AgeCommit message (Expand)AuthorFilesLines
2021-12-15btrfs: check WRITE_ERR when trying to read an extent bufferGravatar Josef Bacik 1-0/+8
2021-12-08btrfs: call mapping_set_error() on btree inode with a write errorGravatar Josef Bacik 1-0/+8
2021-12-08btrfs: clear extent buffer uptodate when we fail to write itGravatar Josef Bacik 1-0/+6
2021-10-26btrfs: remove btrfs_bio::logical memberGravatar Qu Wenruo 1-1/+0
2021-10-26btrfs: add a BTRFS_FS_ERROR helperGravatar Josef Bacik 1-1/+1
2021-10-26btrfs: subpage: avoid potential deadlock with compression and delallocGravatar Qu Wenruo 1-9/+27
2021-10-26btrfs: rework page locking in __extent_writepage()Gravatar Qu Wenruo 1-1/+14
2021-10-26btrfs: subpage: make extent_write_locked_range() compatibleGravatar Qu Wenruo 1-4/+11
2021-10-26btrfs: cleanup for extent_write_locked_range()Gravatar Qu Wenruo 1-16/+29
2021-10-26btrfs: subpage: make add_ra_bio_pages() compatibleGravatar Qu Wenruo 1-0/+1
2021-10-26btrfs: remove unnecessary parameter delalloc_start for writepage_delalloc()Gravatar Qu Wenruo 1-7/+7
2021-10-26btrfs: rename struct btrfs_io_bio to btrfs_bioGravatar Qu Wenruo 1-32/+32
2021-10-26btrfs: remove btrfs_bio_alloc() helperGravatar Qu Wenruo 1-18/+9
2021-10-26btrfs: rename btrfs_bio to btrfs_io_contextGravatar Qu Wenruo 1-9/+9
2021-10-26btrfs: zoned: only allow one process to add pages to a relocation inodeGravatar Johannes Thumshirn 1-0/+11
2021-10-26btrfs: unexport repair_io_failure()Gravatar Qu Wenruo 1-3/+3
2021-10-26btrfs: convert latest_bdev type to btrfs_device and renameGravatar Anand Jain 1-1/+1
2021-10-26btrfs: zoned: finish fully written block groupGravatar Naohiro Aota 1-1/+9
2021-10-26btrfs: subpage: pack all subpage bitmaps into a larger bitmapGravatar Qu Wenruo 1-24/+37
2021-10-25btrfs: subpage: make btrfs_alloc_subpage() return btrfs_subpage directlyGravatar Qu Wenruo 1-3/+3
2021-10-25btrfs: subpage: only call btrfs_alloc_subpage() when sectorsize is smaller th...Gravatar Qu Wenruo 1-7/+9
2021-08-23btrfs: zoned: fix ordered extent boundary calculationGravatar Naohiro Aota 1-6/+7
2021-08-23btrfs: initial fsverity supportGravatar Boris Burkov 1-15/+11
2021-08-23btrfs: remove the dead comment in writepage_delalloc()Gravatar Qu Wenruo 1-7/+1
2021-08-23btrfs: fix argument type of btrfs_bio_clone_partial()Gravatar Chaitanya Kulkarni 1-1/+3
2021-08-23btrfs: unify regular and subpage error paths in __extent_writepage()Gravatar Qu Wenruo 1-7/+44
2021-08-23btrfs: subpage: allow submit_extent_page() to do bio splitGravatar Qu Wenruo 1-59/+131
2021-08-23btrfs: subpage: fix writeback which does not have ordered extentGravatar Qu Wenruo 1-0/+16
2021-08-23btrfs: reset this_bio_flag to avoid inheriting old flagsGravatar Qu Wenruo 1-1/+1
2021-08-23btrfs: switch uptodate to bool in btrfs_writepage_endio_finish_orderedGravatar David Sterba 1-4/+4
2021-08-23btrfs: remove unused start and end parameters from btrfs_run_delalloc_range()Gravatar Qu Wenruo 1-4/+3
2021-08-23btrfs: zoned: remove max_zone_append_size logicGravatar Johannes Thumshirn 1-1/+0
2021-06-21btrfs: subpage: fix a rare race between metadata endio and eb freeingGravatar Qu Wenruo 1-21/+9
2021-06-21btrfs: make __extent_writepage_io() only submit dirty range for subpageGravatar Qu Wenruo 1-5/+75
2021-06-21btrfs: make btrfs_set_range_writeback() subpage compatibleGravatar Qu Wenruo 1-2/+1
2021-06-21btrfs: update locked page dirty/writeback/error bits in __process_pages_contigGravatar Qu Wenruo 1-4/+4
2021-06-21btrfs: make page Ordered bit to be subpage compatibleGravatar Qu Wenruo 1-1/+1
2021-06-21btrfs: make process_one_page() to handle subpage lockingGravatar Qu Wenruo 1-3/+7
2021-06-21btrfs: make end_bio_extent_writepage() to be subpage compatibleGravatar Qu Wenruo 1-1/+2
2021-06-21btrfs: make __process_pages_contig() to handle subpage dirty/error/writeback ...Gravatar Qu Wenruo 1-8/+16
2021-06-21btrfs: only require sector size alignment for end_bio_extent_writepage()Gravatar Qu Wenruo 1-17/+12
2021-06-21btrfs: refactor page status update into process_one_page()Gravatar Qu Wenruo 1-97/+109
2021-06-21btrfs: pass bytenr directly to __process_pages_contig()Gravatar Qu Wenruo 1-20/+37
2021-06-21btrfs: rename PagePrivate2 to PageOrdered inside btrfsGravatar Qu Wenruo 1-2/+2
2021-06-21btrfs: pass btrfs_inode to btrfs_writepage_endio_finish_ordered()Gravatar Qu Wenruo 1-6/+10
2021-06-21btrfs: make subpage metadata write path call its own endio functionsGravatar Qu Wenruo 1-36/+36
2021-06-21btrfs: refactor submit_extent_page() to make bio and its flag tracing easierGravatar Qu Wenruo 1-76/+136
2021-06-21btrfs: clean up header members offsets in write helpersGravatar David Sterba 1-6/+7
2021-06-21btrfs: zoned: factor out zoned device lookupGravatar Johannes Thumshirn 1-11/+5
2021-06-21btrfs: remove io_failure_record::in_validationGravatar Qu Wenruo 1-99/+20