summaryrefslogtreecommitdiff
path: root/fs/btrfs/inode.c
Commit message (Expand)AuthorAgeFilesLines
* btrfs: zoned: zone finish data relocation BG with last IONaohiro Aota2023-05-171-0/+3
* Merge tag 'for-6.1-rc3-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/...Linus Torvalds2022-11-031-4/+12
|\
| * btrfs: fix lost file sync on direct IO write with nowait and dsync iocbFilipe Manana2022-10-311-3/+11
| * btrfs: fix a memory allocation failure test in btrfs_submit_directChristophe JAILLET2022-10-311-1/+1
* | Merge tag 'pull-tmpfile' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Linus Torvalds2022-10-101-4/+4
|\ \ | |/ |/|
| * vfs: open inside ->tmpfile()Miklos Szeredi2022-09-241-4/+4
* | btrfs: avoid pointless extent map tree search when flushing delallocFilipe Manana2022-09-291-1/+0
* | btrfs: add helper to replace extent map range with a new extent mapFilipe Manana2022-09-291-42/+8
* | btrfs: move open coded extent map tree deletion out of inode evictionFilipe Manana2022-09-291-14/+1
* | btrfs: use cond_resched_rwlock_write() during inode evictionFilipe Manana2022-09-291-5/+1
* | btrfs: move btrfs_drop_extent_cache() to extent_map.cFilipe Manana2022-09-291-28/+31
* | btrfs: make btrfs_check_nocow_lock nowait compatibleJosef Bacik2022-09-291-1/+1
* | btrfs: add the ability to use NO_FLUSH for data reservationsJosef Bacik2022-09-291-2/+2
* | btrfs: make can_nocow_extent nowait compatibleJosef Bacik2022-09-291-6/+10
* | btrfs: use a runtime flag to indicate an inode is a free space inodeJosef Bacik2022-09-261-0/+5
* | btrfs: move btrfs_csum_ptr to inode.cJosef Bacik2022-09-261-0/+7
* | btrfs: don't init io tree with private data for non-inodesJosef Bacik2022-09-261-1/+1
* | btrfs: replace delete argument with EXTENT_CLEAR_ALL_BITSJosef Bacik2022-09-261-22/+19
* | btrfs: remove extent_io_tree::track_uptodateJosef Bacik2022-09-261-1/+0
* | btrfs: unify the lock/unlock extent variantsJosef Bacik2022-09-261-51/+47
* | btrfs: drop extent_changeset from set_extent_bitJosef Bacik2022-09-261-2/+2
* | btrfs: remove failed_start argument from set_extent_bitJosef Bacik2022-09-261-2/+2
* | btrfs: remove the wake argument from clear_extent_bitsJosef Bacik2022-09-261-9/+8
* | btrfs: drop exclusive_bits from set_extent_bitJosef Bacik2022-09-261-2/+2
* | btrfs: convert the io_failure_tree to a plain rb_treeJosef Bacik2022-09-261-3/+2
* | btrfs: rename clean_io_failure and remove extraneous argsJosef Bacik2022-09-261-5/+2
* | btrfs: make fiemap more efficient and accurate reporting extent sharednessFilipe Manana2022-09-261-134/+6
* | btrfs: properly flush delalloc when entering fiemapFilipe Manana2022-09-261-0/+20
* | btrfs: give struct btrfs_bio a real end_io handlerChristoph Hellwig2022-09-261-31/+25
* | btrfs: pass the operation to btrfs_bio_allocChristoph Hellwig2022-09-261-2/+1
* | btrfs: remove unnecessary EXTENT_UPTODATE state in buffered I/O pathEthan Lien2022-09-261-3/+0
* | btrfs: rename btrfs_insert_file_extent() to btrfs_insert_hole_extent()Omar Sandoval2022-09-261-2/+1
* | btrfs: add lockdep annotations for the ordered extents wait eventIoannis Angelakopoulos2022-09-261-0/+13
|/
* Merge tag 'for-6.0-rc4-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/...Linus Torvalds2022-09-091-4/+3
|\
| * btrfs: zoned: fix API misuse of zone finish waitingNaohiro Aota2022-09-051-4/+3
* | Merge tag 'for-6.0-rc3-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/...Linus Torvalds2022-08-281-0/+14
|\ \ | |/
| * btrfs: don't allow large NOWAIT direct readsJosef Bacik2022-08-221-0/+14
* | Merge tag 'for-5.20-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kda...Linus Torvalds2022-08-031-364/+400
|\ \ | |/
| * btrfs: don't call btrfs_page_set_checked in finish_compressed_bio_readChristoph Hellwig2022-07-251-5/+0
| * btrfs: fix repair of compressed extentsChristoph Hellwig2022-07-251-0/+7
| * btrfs: remove the start argument to check_data_csum and exportChristoph Hellwig2022-07-251-15/+11
| * btrfs: pass a btrfs_bio to btrfs_repair_one_sectorChristoph Hellwig2022-07-251-3/+2
| * btrfs: simplify error handling in btrfs_lookup_dentryNikolay Borisov2022-07-251-4/+4
| * btrfs: zoned: wait until zone is finished when allocation didn't progressNaohiro Aota2022-07-251-2/+7
| * btrfs: zoned: write out partially allocated regionNaohiro Aota2022-07-251-14/+49
| * btrfs: convert count_max_extents() to use fs_info->max_extent_sizeNaohiro Aota2022-07-251-8/+8
| * btrfs: replace BTRFS_MAX_EXTENT_SIZE with fs_info->max_extent_sizeNaohiro Aota2022-07-251-2/+4
| * btrfs: replace kmap_atomic() with kmap_local_page()Fabio M. De Francesco2022-07-251-4/+4
| * btrfs: switch btrfs_block_rsv::failfast to boolDavid Sterba2022-07-251-2/+2
| * btrfs: do not return errors from btrfs_submit_dio_bioChristoph Hellwig2022-07-251-14/+9