aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/md/bcache/request.c
AgeCommit message (Expand)AuthorFilesLines
2024-05-28bcache: call force_wake_up_gc() if necessary in check_should_bypass()Coly Li1-1/+15
2023-11-24closures: CLOSURE_CALLBACK() to fix type punningKent Overstreet1-37/+37
2023-06-12block: replace fmode_t with a block-specific type for block open flagsChristoph Hellwig1-2/+2
2022-12-13Merge tag 'for-6.2/block-2022-12-08' of git://git.kernel.dk/linuxLinus Torvalds1-1/+1
2022-12-07block: remove bio_set_op_attrsChristoph Hellwig1-1/+1
2022-11-18treewide: use get_random_u32_below() instead of deprecated functionJason A. Donenfeld1-1/+1
2022-10-11treewide: use prandom_u32_max() when possible, part 1Jason A. Donenfeld1-1/+1
2022-06-03Merge tag 'for-5.19/drivers-2022-06-02' of git://git.kernel.dk/linux-blockLinus Torvalds1-0/+6
2022-05-27md: bcache: check the return value of kzalloc() in detached_dev_do_request()Jia-Ju Bai1-0/+6
2022-05-23Merge tag 'for-5.19/block-2022-05-22' of git://git.kernel.dk/linux-blockLinus Torvalds1-2/+2
2022-04-19bcache: fix wrong bdev parameter when calling bio_alloc_clone() in do_bio_hook()Coly Li1-1/+1
2022-04-17block: remove QUEUE_FLAG_DISCARDChristoph Hellwig1-2/+2
2022-03-04bcache: use bvec_kmap_local in bio_csumChristoph Hellwig1-2/+2
2022-02-04block: pass a block_device to bio_clone_fastChristoph Hellwig1-2/+3
2022-02-04block: initialize the target bio in __bio_clone_fastChristoph Hellwig1-1/+0
2022-02-04block: clone crypto and integrity data in __bio_clone_fastChristoph Hellwig1-1/+1
2022-02-02block: pass a block_device and opf to bio_resetChristoph Hellwig1-2/+2
2022-02-02block: pass a block_device and opf to bio_initChristoph Hellwig1-1/+1
2022-02-02block: pass a block_device and opf to bio_alloc_biosetChristoph Hellwig1-7/+5
2021-10-20bcache: remove bch_crc64_updateChristoph Hellwig1-1/+1
2021-10-20bcache: remove the backing_dev_name field from struct cached_devChristoph Hellwig1-2/+2
2021-10-18block: switch polling to be bio basedChristoph Hellwig1-8/+5
2021-06-08bcache: avoid oversized read request in cache missing code pathColy Li1-2/+7
2021-06-08bcache: remove bcache device self-defined readaheadColy Li1-12/+1
2021-01-24block: use ->bi_bdev for bio based I/O accountingChristoph Hellwig1-13/+21
2021-01-24block: store a block_device pointer in struct bioChristoph Hellwig1-3/+4
2020-12-01block: switch partition lookup to use struct block_deviceChristoph Hellwig1-2/+2
2020-11-16block: remove __blkdev_driver_ioctlChristoph Hellwig1-2/+3
2020-10-02bcache: remove embedded struct cache_sb from struct cache_setColy Li1-2/+2
2020-10-02bcache: only use block_bytes() on struct cacheColy Li1-1/+1
2020-09-11bcache: use part_[begin|end]_io_acct instead of disk_[begin|end]_io_acctSong Liu1-4/+6
2020-08-05Merge tag 'for-5.9/drivers-20200803' of git://git.kernel.dk/linux-blockLinus Torvalds1-5/+9
2020-07-28bcache: use disk_{start,end}_io_acct() to count I/O for bcache deviceColy Li1-28/+9
2020-07-25bcache: fix bio_{start,end}_io_acct with proper deviceColy Li1-4/+27
2020-07-08writeback: remove bdi->congested_fnChristoph Hellwig1-47/+0
2020-07-01block: rename generic_make_request to submit_bio_noacctChristoph Hellwig1-4/+3
2020-07-01block: move ->make_request_fn to struct block_device_operationsChristoph Hellwig1-2/+2
2020-06-02Merge tag 'for-5.8/drivers-2020-06-01' of git://git.kernel.dk/linux-blockLinus Torvalds1-3/+3
2020-05-27bcache: use bio_{start,end}_io_acctChristoph Hellwig1-14/+4
2020-05-27bcache: Convert pr_<level> uses to a more typical styleJoe Perches1-3/+3
2020-04-25bcache: remove a duplicate ->make_request_fn assignmentChristoph Hellwig1-1/+0
2020-03-27bcache: pass the make_request methods to blk_queue_make_requestChristoph Hellwig1-5/+2
2020-02-01bcache: add readahead cache policy options via sysfs interfaceColy Li1-5/+12
2019-11-13bcache: deleted code comments for dead code in bch_data_insert_keys()Coly Li1-12/+0
2019-04-24bcache: Clean up bch_get_congested()George Spelvin1-7/+8
2019-04-24bcache: fix crashes stopping bcache device before read miss doneGuoju Fang1-5/+21
2019-02-09bcache: use (REQ_META|REQ_PRIO) to indicate bio for metadataColy Li1-3/+4
2018-12-13bcache: update comment for bch_data_insertShenghui Wang1-3/+3
2018-10-08bcache: fix ioctl in flash deviceTang Junhui1-0/+3
2018-10-08bcache: use REQ_PRIO to indicate bio for metadataColy Li1-2/+2
2018-10-08bcache: trace missed reading by cache_missedTang Junhui1-1/+1
2018-08-11bcache: do not check NULL pointer before calling kmem_cache_destroyColy Li1-2/+1
2018-08-11bcache: fix typo 'succesfully' to 'successfully'Coly Li1-1/+1
2018-08-11bcache: style fixes for lines over 80 charactersColy Li1-2/+5
2018-08-11bcache: add identifier names to arguments of function definitionsColy Li1-1/+1
2018-08-11bcache: style fix to add a blank line after declarationsColy Li1-1/+4
2018-08-11bcache: style fix to replace 'unsigned' by 'unsigned int'Coly Li1-21/+21
2018-08-09bcache: set max writeback rate when I/O request is idleColy Li1-2/+57
2018-08-09bcache: fix mistaken comments in request.cColy Li1-1/+1
2018-07-27bcache: finish incremental GCTang Junhui1-0/+3
2018-07-18block: Add and use op_stat_group() for indexing disk_stat fields.Michael Callahan1-8/+5
2018-05-30bcache: convert to bioset_init()/mempool_init()Kent Overstreet1-9/+9
2018-05-03bcache: store disk name in struct cache and struct cached_devColy Li1-4/+1
2018-03-18bcache: Fix kernel-doc warningsBart Van Assche1-0/+1
2018-03-18bcache: add io_disable to struct cached_devColy Li1-2/+12
2018-03-18bcache: add backing_request_endio() for bi_end_ioColy Li1-16/+77
2018-03-18bcache: fix inaccurate io state for detached bcache devicesTang Junhui1-7/+51
2018-03-18bcache: add CACHE_SET_IO_DISABLE to struct cache_set flagsColy Li1-7/+19
2018-02-27bcache: fix kcrashes with fio in RAID5 backend devTang Junhui1-1/+1
2018-01-08bcache: fix unmatched generic_end_io_acct() & generic_start_io_acct()Zhai Zhaoxuan1-2/+2
2018-01-08bcache: allow quick writeback when backing idleMichael Lyle1-0/+1
2018-01-08bcache: ret IOERR when read meets metadata errorRui Hua1-0/+22
2018-01-06block: move bio_alloc_pages() to bcacheMing Lei1-1/+1
2017-11-24bcache: recover data from backing when data is cleanRui Hua1-7/+6
2017-11-14Merge branch 'for-4.15/block' of git://git.kernel.dk/linux-blockLinus Torvalds1-8/+28
2017-11-02License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseGreg Kroah-Hartman1-0/+1
2017-10-30bcache: fix wrong cache_misses statisticstang.junhui1-1/+5
2017-10-30bcache: only permit to recovery read error when cache device is cleanColy Li1-1/+9
2017-10-16bcache: remove unused parameterYijing Wang1-6/+6
2017-10-16bcache: update bio->bi_opf bypass/writeback REQ_ flag hintsEric Wheeler1-0/+8
2017-09-06bcache: do not subtract sectors_to_gc for bypassed IOTang Junhui1-3/+3
2017-09-06bcache: fix sequential large write IO bypassTang Junhui1-6/+0
2017-08-23block: replace bi_bdev with a gendisk pointer and partitions indexChristoph Hellwig1-8/+8
2017-08-09block: pass in queue to inflight accountingJens Axboe1-3/+4
2017-06-09block: switch bios to blk_status_tChristoph Hellwig1-14/+14
2017-02-02block: Use pointer to backing_dev_info from request_queueJan Kara1-5/+5
2017-01-27block: add a op_is_flush helperChristoph Hellwig1-1/+1
2016-12-17bcache: Make gc wakeup sane, remove set_task_state()Kent Overstreet1-3/+1
2016-11-22block: bio: pass bvec table to bio_init()Ming Lei1-1/+1
2016-11-01block,fs: use REQ_* flags directlyChristoph Hellwig1-1/+1
2016-11-01bcache: use op_is_sync to check for synchronous requestsChristoph Hellwig1-2/+2
2016-09-22block: export bio_free_pages to other modulesGuoqing Jiang1-7/+2
2016-08-07block: rename bio bi_rw to bi_opfJens Axboe1-6/+6
2016-06-07block, drivers, fs: rename REQ_FLUSH to REQ_PREFLUSHMike Christie1-4/+4
2016-06-07bcache: use bio op accessorsMike Christie1-7/+7
2016-06-07bcache: use op_is_write instead of checking for REQ_WRITEMike Christie1-3/+3
2015-11-07block: change ->make_request_fn() and users to return a queue cookieJens Axboe1-3/+8
2015-08-13bcache: remove driver private bio splitting codeKent Overstreet1-8/+8
2015-07-29block: add a bi_error field to struct bioChristoph Hellwig1-13/+14
2015-07-11bcache: don't embed 'return' statements in closure macrosJens Axboe1-3/+11
2015-06-02writeback: separate out include/linux/backing-dev-defs.hTejun Heo1-0/+1
2015-05-05bio: skip atomic inc/dec of ->bi_cnt for most use casesJens Axboe1-1/+1
2014-11-24md/bcache: use generic io stats accounting functions to simplify io stat acco...Gu Zheng1-17/+6
2014-08-04bcache: bcache_write tracepoint was crashingSlava Pestov1-1/+2
2014-03-18bcache: Kill dead cgroup codeKent Overstreet1-169/+0
2014-03-18bcache: Fix moving_gc deadlocking with a foreground writeNicholas Swenson1-6/+7
2014-02-25bcache: Fix flash_dev_cache_miss() for real this timeKent Overstreet1-14/+5
2014-01-30Merge branch 'bcache-for-3.14' of git://evilpiepirate.org/~kent/linux-bcache ...Jens Axboe1-3/+3
2014-01-30Merge branch 'for-3.14/drivers' of git://git.kernel.dk/linux-blockLinus Torvalds1-23/+49
2014-01-30Merge branch 'for-3.14/core' of git://git.kernel.dk/linux-blockLinus Torvalds1-79/+52
2014-01-29bcache: bugfix - gc thread now gets woken when cache is fullNicholas Swenson1-3/+3
2014-01-13cgroup: remove stray references to css_idHugh Dickins1-1/+0
2014-01-08bcache: Make bch_keylist_realloc() take u64s, not nptrsKent Overstreet1-2/+20
2014-01-08bcache: Zero less memoryKent Overstreet1-20/+27
2014-01-08bcache: Don't touch bucket gen for dirty ptrsKent Overstreet1-1/+2
2013-11-23block: Introduce new bio_split()Kent Overstreet1-6/+6
2013-11-23block: Add bio_clone_fast()Kent Overstreet1-6/+2
2013-11-23block: Convert bio_for_each_segment() to bvec_iterKent Overstreet1-13/+13
2013-11-23block: Abstract out bvec iteratorKent Overstreet1-29/+29
2013-11-23bcache: Kill unaligned bvec hackKent Overstreet1-30/+7
2013-11-10bcache: Bypass torture testKent Overstreet1-1/+13
2013-11-10bcache: Fix sysfs splat on shutdown with flash only devsKent Overstreet1-1/+1
2013-11-10bcache: Kill sequential_merge optionKent Overstreet1-25/+18
2013-11-10bcache: Pull on disk data structures out into a separate headerKent Overstreet1-4/+5
2013-11-10bcache: Move sector allocator to alloc.cKent Overstreet1-182/+4
2013-11-10bcache: Break up struct searchKent Overstreet1-277/+303
2013-11-10bcache: Convert bch_btree_insert() to bch_btree_map_leaf_nodes()Kent Overstreet1-1/+1
2013-11-10bcache: Don't use op->insert_collisionKent Overstreet1-3/+7
2013-11-10bcache: Kill op->replaceKent Overstreet1-5/+9
2013-11-10bcache: Kill op->clKent Overstreet1-21/+14
2013-11-10bcache: Prune struct btree_opKent Overstreet1-88/+89
2013-11-10bcache: Clean up cache_lookup_fnKent Overstreet1-62/+46
2013-11-10bcache: Convert bch_btree_read_async() to bch_btree_map_keys()Kent Overstreet1-29/+125
2013-11-10bcache: Move some stuff to btree.cKent Overstreet1-14/+2
2013-11-10bcache: Convert gc to a kthreadKent Overstreet1-1/+1
2013-11-10bcache: Convert bucket_wait to wait_queue_head_tKent Overstreet1-7/+2
2013-11-10bcache: Move keylist out of btree_opKent Overstreet1-16/+21
2013-11-10bcache: Refactor journalling flow controlKent Overstreet1-58/+102
2013-11-10bcache: Refactor read request code a bitKent Overstreet1-36/+35
2013-11-10bcache: Refactor request_write()Kent Overstreet1-186/+182
2013-11-10bcache: Clean up keylist codeKent Overstreet1-2/+2
2013-11-10bcache: Add explicit keylist arg to btree_insert()Kent Overstreet1-1/+1
2013-11-10bcache: Convert btree_insert_check_key() to btree_insert_node()Kent Overstreet1-27/+28
2013-10-23bcache: Fixed incorrect order of arguments to bio_alloc_bioset()Kent Overstreet1-1/+1
2013-10-10bcache: Fix a null ptr deref regressionKent Overstreet1-2/+1
2013-09-24bcache: Fix flushes in writeback modeKent Overstreet1-6/+9
2013-07-12bcache: Advertise that flushes are supportedKent Overstreet1-1/+7
2013-07-01bcache: Use standard utility codeKent Overstreet1-69/+18
2013-07-01bcache: FUA fixesKent Overstreet1-1/+12
2013-06-26bcache: Write out full stripesKent Overstreet1-16/+7
2013-06-26bcache: Track dirty data by stripeKent Overstreet1-1/+2
2013-06-26bcache: Fix/revamp tracepointsKent Overstreet1-31/+34
2013-04-20bcache: Take data offset from the bdev superblock.Kent Overstreet1-1/+1
2013-03-28bcache: Don't export utility code, prefix with bch_Kent Overstreet1-7/+7
2013-03-25bcache: Style/checkpatch fixesKent Overstreet1-5/+7
2013-03-23bcache: A block layer cacheKent Overstreet1-0/+1409