summaryrefslogtreecommitdiff
path: root/fs/btrfs/extent_io.c
AgeCommit message (Expand)AuthorFilesLines
2022-08-28Merge tag 'for-6.0-rc3-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/...Linus Torvalds1-4/+29
2022-08-22btrfs: don't merge pages into bio if their page offset is not contiguousQu Wenruo1-4/+29
2022-08-19Merge tag 'for-6.0-rc1-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/...Linus Torvalds1-1/+10
2022-08-17btrfs: fix lockdep splat with reloc root extent buffersJosef Bacik1-1/+10
2022-08-04Merge tag 'for-5.20-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kda...Linus Torvalds1-481/+392
2022-08-02Merge tag 'for-5.20/block-2022-07-29' of git://git.kernel.dk/linux-blockLinus Torvalds1-9/+9
2022-07-25btrfs: fix repair of compressed extentsChristoph Hellwig1-36/+9
2022-07-25btrfs: pass a btrfs_bio to btrfs_repair_one_sectorChristoph Hellwig1-22/+26
2022-07-25btrfs: repair all known bad mirrorsChristoph Hellwig1-66/+60
2022-07-25btrfs: replace BTRFS_MAX_EXTENT_SIZE with fs_info->max_extent_sizeNaohiro Aota1-1/+3
2022-07-25btrfs: remove extent writepage address space operationChristoph Hellwig1-14/+0
2022-07-25btrfs: unify tree search helper returning prev and next nodesDavid Sterba1-60/+62
2022-07-25btrfs: make tree search for insert more generic and use it for tree_searchDavid Sterba1-14/+13
2022-07-25btrfs: open code inexact rbtree search in tree_searchDavid Sterba1-3/+28
2022-07-25btrfs: remove node and parent parameters from insert_stateDavid Sterba1-12/+2
2022-07-25btrfs: add fast path for extent_state insertionDavid Sterba1-7/+16
2022-07-25btrfs: pass bits by value not by pointer for extent_state helpersDavid Sterba1-24/+22
2022-07-25btrfs: lift start and end parameters to callers of insert_stateDavid Sterba1-18/+15
2022-07-25btrfs: open code rbtree search in insert_stateDavid Sterba1-47/+33
2022-07-25btrfs: open code rbtree search in split_stateDavid Sterba1-6/+22
2022-07-25btrfs: pass the btrfs_bio_ctrl to submit_one_bioChristoph Hellwig1-46/+39
2022-07-25btrfs: merge end_write_bio and flush_write_bioChristoph Hellwig1-65/+29
2022-07-25btrfs: don't use bio->bi_private to pass the inode to submit_one_bioChristoph Hellwig1-5/+1
2022-07-25btrfs: do not allocate a btrfs_bio for low-level biosChristoph Hellwig1-13/+0
2022-07-25btrfs: centralize setting REQ_METAChristoph Hellwig1-4/+4
2022-07-25btrfs: split btrfs_submit_data_bio to read and write partsChristoph Hellwig1-5/+8
2022-07-25btrfs: remove redundant calls to flush_dcache_pageDavid Sterba1-6/+1
2022-07-25btrfs: refactor end_bio_extent_readpage code flowChristoph Hellwig1-46/+40
2022-07-25btrfs: factor out a helper to end a single sector buffer I/OChristoph Hellwig1-11/+15
2022-07-25btrfs: remove duplicated parameters from submit_data_read_repair()Qu Wenruo1-17/+11
2022-07-25btrfs: use PAGE_ALIGNED instead of IS_ALIGNEDFanjun Kong1-1/+1
2022-07-16Merge tag 'for-5.19-rc7-tag' of git://git.kernel.org/pub/scm/linux/kernel/git...Linus Torvalds1-48/+74
2022-07-15Revert "btrfs: turn fs_info member buffer_radix into XArray"David Sterba1-48/+74
2022-07-14fs/btrfs: Use the enum req_op and blk_opf_t typesBart Van Assche1-9/+9
2022-06-26Merge tag 'for-5.19-rc3-tag' of git://git.kernel.org/pub/scm/linux/kernel/git...Linus Torvalds1-1/+2
2022-06-21btrfs: zoned: fix critical section of relocation inode writebackNaohiro Aota1-1/+2
2022-05-25Merge tag 'folio-5.19' of git://git.infradead.org/users/willy/pagecacheLinus Torvalds1-8/+9
2022-05-16btrfs: zoned: properly finish block group on metadata writeNaohiro Aota1-5/+1
2022-05-16btrfs: rename bio_ctrl::bio_flags to compress_typeDavid Sterba1-10/+10
2022-05-16btrfs: rename bio_flags in parameters and switch typeDavid Sterba1-14/+15
2022-05-16btrfs: rename io_failure_record::bio_flags to compress_typeDavid Sterba1-3/+3
2022-05-16btrfs: open code extent_set_compress_type helpersDavid Sterba1-5/+3
2022-05-16btrfs: simplify handling of bio_ctrl::bio_flagsDavid Sterba1-7/+6
2022-05-16btrfs: remove trivial helper update_nr_writtenDavid Sterba1-9/+3
2022-05-16btrfs: turn fs_info member buffer_radix into XArrayGabriel Niebler1-74/+48
2022-05-16btrfs: remove unused bio_flags argument to btrfs_submit_metadata_bioChristoph Hellwig1-2/+1
2022-05-16btrfs: move btrfs_readpage to extent_io.cChristoph Hellwig1-2/+33
2022-05-16btrfs: return correct error number for __extent_writepage_io()Qu Wenruo1-1/+12
2022-05-16btrfs: fix the error handling for submit_extent_page() for btrfs_do_readpage()Qu Wenruo1-2/+6
2022-05-16btrfs: avoid double clean up when submit_one_bio() failedQu Wenruo1-78/+37