aboutsummaryrefslogtreecommitdiff
path: root/fs/btrfs/extent_io.c
AgeCommit message (Expand)AuthorFilesLines
2017-11-14Merge branch 'for-4.15' of git://git.kernel.org/pub/scm/linux/kernel/git/kdav...Gravatar Linus Torvalds 1-26/+18
2017-11-02License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseGravatar Greg Kroah-Hartman 1-0/+1
2017-10-30btrfs: get rid of sector_t and use u64 offset in submit_extent_pageGravatar David Sterba 1-11/+12
2017-10-30btrfs: rename page offset parameter in submit_extent_pageGravatar David Sterba 1-4/+4
2017-10-30Btrfs: remove bio_flags which indicates a meta block of log-treeGravatar Liu Bo 1-11/+2
2017-10-06Merge branch 'for-4.14-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/...Gravatar Linus Torvalds 1-1/+1
2017-10-04btrfs: avoid overflow when sector_t is 32 bitGravatar Goffredo Baroncelli 1-1/+1
2017-09-29Merge branch 'for-4.14-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/...Gravatar Linus Torvalds 1-6/+2
2017-09-26Btrfs: do not reset bio->bi_ops while writing bioGravatar Liu Bo 1-3/+0
2017-09-26Btrfs: use the new helper wbc_to_write_flagsGravatar Liu Bo 1-3/+2
2017-09-14Merge branch 'work.mount' of git://git.kernel.org/pub/scm/linux/kernel/git/vi...Gravatar Linus Torvalds 1-2/+2
2017-09-09Merge branch 'for-4.14' of git://git.kernel.org/pub/scm/linux/kernel/git/kdav...Gravatar Linus Torvalds 1-51/+41
2017-08-23block: replace bi_bdev with a gendisk pointer and partitions indexGravatar Christoph Hellwig 1-3/+3
2017-08-21Btrfs: fix out of bounds array access while reading extent bufferGravatar Liu Bo 1-8/+12
2017-08-16btrfs: merge REQ_OP and REQ_ flags to one parameter in submit_extent_pageGravatar David Sterba 1-6/+8
2017-08-16btrfs: cleanup types storing REQ_*Gravatar David Sterba 1-6/+8
2017-08-16btrfs: Remove unused parameters from volume.c functionsGravatar Nikolay Borisov 1-1/+1
2017-08-16btrfs: btrfs_check_shared should manage its own transactionGravatar Edmund Nadolski 1-19/+3
2017-08-16btrfs: struct-funcs, constify readersGravatar Jeff Mahoney 1-13/+11
2017-07-17VFS: Convert sb->s_flags & MS_RDONLY to sb_rdonly(sb)Gravatar David Howells 1-2/+2
2017-07-14Merge branch 'for-4.13-part2' of git://git.kernel.org/pub/scm/linux/kernel/gi...Gravatar Linus Torvalds 1-10/+9
2017-07-14Btrfs: fix unexpected return value of bio_readpage_errorGravatar Liu Bo 1-6/+6
2017-07-14btrfs: btrfs_create_repair_bio never fails, skip error handlingGravatar David Sterba 1-4/+0
2017-07-14btrfs: cloned bios must not be iterated by bio_for_each_segment_allGravatar David Sterba 1-0/+3
2017-07-06Merge branch 'for-4.13' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/p...Gravatar Linus Torvalds 1-3/+3
2017-07-05Merge branch 'for-4.13-part1' of git://git.kernel.org/pub/scm/linux/kernel/gi...Gravatar Linus Torvalds 1-137/+108
2017-06-29btrfs: Remove false alert when fiemap range is smaller than on-disk extentGravatar Qu Wenruo 1-16/+12
2017-06-27btrfs: add support for passing in write hints for buffered writesGravatar Jens Axboe 1-0/+1
2017-06-20percpu_counter: Rename __percpu_counter_add to percpu_counter_add_batchGravatar Nikolay Borisov 1-3/+3
2017-06-19btrfs: sink gfp parameter to btrfs_io_bio_allocGravatar David Sterba 1-4/+4
2017-06-19btrfs: add helper to initialize the non-bio part of btrfs_io_bioGravatar David Sterba 1-16/+14
2017-06-19btrfs: pass bytes to btrfs_bio_allocGravatar David Sterba 1-3/+3
2017-06-19btrfs: remove redundant parameters from btrfs_bio_allocGravatar David Sterba 1-6/+3
2017-06-19btrfs: sink gfp parameter to btrfs_bio_cloneGravatar David Sterba 1-2/+2
2017-06-19btrfs: btrfs_io_bio_alloc never fails, skip error handlingGravatar David Sterba 1-5/+0
2017-06-19btrfs: btrfs_bio_alloc never fails, skip error handlingGravatar David Sterba 1-3/+0
2017-06-19btrfs: bioset allocations will never fail, adapt our helpersGravatar David Sterba 1-32/+20
2017-06-19btrfs: rename btrfs_leaf_data to BTRFS_LEAF_DATA_OFFSETGravatar Nikolay Borisov 1-1/+1
2017-06-19Btrfs: hardcode GFP_NOFS for btrfs_bio_clone_partialGravatar Liu Bo 1-3/+2
2017-06-19Btrfs: change how we iterate bios in endioGravatar Liu Bo 1-0/+2
2017-06-19Btrfs: new helper btrfs_bio_clone_partialGravatar Liu Bo 1-0/+18
2017-06-19Btrfs: use bio_clone_fast to clone our bioGravatar Liu Bo 1-1/+1
2017-06-19Btrfs: don't pass the inode through clean_io_failureGravatar Josef Bacik 1-23/+28
2017-06-19btrfs: remove inode argument from repair_io_failureGravatar Josef Bacik 1-9/+7
2017-06-19Btrfs: replace tree->mapping with tree->private_dataGravatar Josef Bacik 1-37/+15
2017-06-18blk: replace bioset_create_nobvec() with a flags arg to bioset_create()Gravatar NeilBrown 1-1/+2
2017-06-12Merge tag 'v4.12-rc5' into for-4.13/blockGravatar Jens Axboe 1-3/+123
2017-06-09block: switch bios to blk_status_tGravatar Christoph Hellwig 1-10/+13
2017-05-16btrfs: fix incorrect error return ret being passed to mapping_set_errorGravatar Colin Ian King 1-1/+1
2017-05-16btrfs: fiemap: Cache and merge fiemap extent before submit it to userGravatar Qu Wenruo 1-2/+122