aboutsummaryrefslogtreecommitdiffstats
path: root/block
AgeCommit message (Expand)AuthorFilesLines
2014-10-23block: fix wrong error return in elevator_init()Sudip Mukherjee1-1/+3
2014-10-22scsi: Fix error handling in SCSI_IOCTL_SEND_COMMANDJan Kara1-2/+1
2014-10-21blk-merge: recaculate segment if it isn't less than max segmentsMing Lei1-2/+3
2014-10-18Merge branch 'for-3.18/core' of git://git.kernel.dk/linux-blockLinus Torvalds24-607/+791
2014-10-13blk-mq: allocate cpumask on the home nodeJens Axboe1-1/+2
2014-10-13bio-integrity: remove the needless fail handle of bip_slab creatingGu Zheng1-2/+0
2014-10-13block: include func name in __get_request printsRobert Elliott1-2/+2
2014-10-13block: make blk_update_request print prefix match ratelimited prefixRobert Elliott1-2/+2
2014-10-10Merge branch 'for-3.18' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/p...Linus Torvalds3-13/+22
2014-10-09blk-merge: don't compute bi_phys_segments from bi_vcnt for cloned bioMing Lei1-2/+6
2014-10-09block: fix alignment_offset math that assumes io_min is a power-of-2Mike Snitzer1-2/+2
2014-10-07Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jik...Linus Torvalds2-5/+5
2014-10-07blk-mq: Make bt_clear_tag() easier to readBart Van Assche1-5/+2
2014-10-07blk-mq: fix potential hang if rolling wakeup depth is too highJens Axboe1-2/+2
2014-10-03block: add bioset_create_nobvec()Junichi Nomura1-17/+44
2014-10-03block: use bio_clone_fast() in blk_rq_prep_clone()Junichi Nomura1-1/+1
2014-10-01block: misplaced rq_complete tracepointHannes Reinecke1-2/+2
2014-09-27block: Replace strnicmp with strncasecmpRasmus Villemoes1-4/+4
2014-09-27block: Add T10 Protection Information functionsMartin K. Petersen3-2/+200
2014-09-27block: Don't merge requests if integrity flags differMartin K. Petersen2-13/+29
2014-09-27block: Integrity checksum flagMartin K. Petersen1-0/+3
2014-09-27block: Relocate bio integrity flagsMartin K. Petersen1-2/+2
2014-09-27block: Add a disk flag to block integrity profileMartin K. Petersen1-0/+12
2014-09-27block: Add prefix to block integrity profile flagsMartin K. Petersen2-23/+24
2014-09-27block: Clean up the code used to generate and verify integrity metadataMartin K. Petersen1-60/+22
2014-09-27block: Make protection interval calculation genericMartin K. Petersen1-5/+1
2014-09-27block: Deprecate the use of the term sector in the context of block integrityMartin K. Petersen2-26/+26
2014-09-27block: Remove bip_bufMartin K. Petersen1-4/+6
2014-09-27block: Remove integrity tagging functionsMartin K. Petersen2-95/+1
2014-09-27block: Replace bi_integrity with bi_specialMartin K. Petersen1-9/+10
2014-09-27block: Get rid of bdev_integrity_enabled()Martin K. Petersen1-22/+17
2014-09-25blk-mq: support per-distpatch_queue flush machineryMing Lei5-39/+54
2014-09-25block: introduce 'blk_mq_ctx' parameter to blk_get_flush_queueMing Lei4-10/+10
2014-09-25block: flush: avoid to figure out flush queue unnecessarilyMing Lei1-14/+16
2014-09-25block: remove blk_init_flush() and its pairMing Lei5-23/+10
2014-09-25block: introduce blk_flush_queue to drive flush machineryMing Lei4-48/+97
2014-09-25block: avoid to use q->flush_rq directlyMing Lei1-8/+9
2014-09-25block: move flush initialization to blk_flush_initMing Lei2-3/+4
2014-09-25block: introduce blk_init_flush and its pairMing Lei6-8/+26
2014-09-25blk-mq: allocate flush_rq in blk_mq_init_flush()Ming Lei3-12/+17
2014-09-25blk-mq: handle failure path for initializing hctxMing Lei1-45/+69
2014-09-24blk-mq, percpu_ref: start q->mq_usage_counter in atomic modeTejun Heo3-3/+20
2014-09-24percpu_ref: add PERCPU_REF_INIT_* flagsTejun Heo1-1/+1
2014-09-24Revert "blk-mq, percpu_ref: implement a kludge for SCSI blk-mq stall during p...Tejun Heo1-10/+1
2014-09-24Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/axb...Tejun Heo10-82/+194
2014-09-24blk-mq, percpu_ref: implement a kludge for SCSI blk-mq stall during probeTejun Heo1-1/+10
2014-09-22genhd: fix leftover might_sleep() in blk_free_devt()Jens Axboe1-2/+0
2014-09-22block: fix blk_abort_request on blk-mqChristoph Hellwig3-2/+8
2014-09-22blk-timeout: fix blk_add_timerMing Lei1-1/+2
2014-09-22blk-mq: limit memory consumption if a crash dump is activeJens Axboe1-0/+11
2014-09-22blk-mq: remove unnecessary blk_clear_rq_complete()Ming Lei2-3/+0
2014-09-22blk-mq: pass a reserved argument to the timeout handlerChristoph Hellwig1-3/+3
2014-09-22blk-mq: unshared timeout handlerChristoph Hellwig3-24/+39
2014-09-22blk-mq: fix and simplify tag iteration for the timeout handlerChristoph Hellwig2-86/+43
2014-09-22blk-mq: rename blk_mq_end_io to blk_mq_end_requestChristoph Hellwig2-10/+10
2014-09-22blk-mq: call blk_mq_start_request from ->queue_rqChristoph Hellwig1-7/+6
2014-09-22blk-mq: remove REQ_ENDChristoph Hellwig1-17/+5
2014-09-22Merge branch 'for-linus' into for-3.18/coreJens Axboe2-11/+18
2014-09-22blk-mq: use blk_mq_start_hw_queues() when running requeue workJens Axboe1-1/+5
2014-09-22blk-mq: fix potential oops on out-of-memory in __blk_mq_alloc_rq_maps()Jens Axboe1-1/+0
2014-09-22blk-mq: avoid infinite recursion with the FUA flagChristoph Hellwig2-8/+4
2014-09-22blk-mq: Avoid race condition with uninitialized requestsDavid Hildenbrand1-1/+3
2014-09-22blk-mq: request deadline must be visible before marking rq as startedJens Axboe1-0/+6
2014-09-11Merge branch 'for-linus' into for-3.18/coreJens Axboe9-71/+163
2014-09-10blk-mq: scale depth and rq map appropriate if low on memoryJens Axboe1-19/+69
2014-09-09Block: fix unbalanced bypass-disable in blk_register_queueAlan Stern1-2/+4
2014-09-09Documentation: Docbook: Fix generated DocBook/kernel-api.xmlMasanari Iida2-5/+5
2014-09-08block, bdi: an active gendisk always has a request_queue associated with itTejun Heo3-15/+3
2014-09-08blkcg: remove blkcg->idTejun Heo3-10/+5
2014-09-08percpu-refcount: add @gfp to percpu_ref_init()Tejun Heo1-1/+2
2014-09-03block: Fix dev_t minor allocation lifetimeKeith Busch2-11/+15
2014-09-03blk-mq: cleanup after blk_mq_init_rq_map failuresRobert Elliott1-0/+3
2014-09-02blk-merge: fix blk_recount_segmentsMing Lei1-6/+11
2014-08-29bsg: fix potential error pointer dereferenceJens Axboe1-0/+1
2014-08-28block,scsi: fixup blk_get_request dead queue scenariosJoe Lawrence4-29/+33
2014-08-28cfq-iosched: Add comments on update timing of weightToshiaki Makita1-0/+8
2014-08-26block,scsi: verify return pointer from blk_get_requestJoe Lawrence1-1/+8
2014-08-26cfq-iosched: Fix wrong children_weight calculationToshiaki Makita1-3/+8
2014-08-26block: fix error handling in sg_ioSabrina Dubroca1-0/+1
2014-08-22fix regression in SCSI_IOCTL_SEND_COMMANDTony Battersby1-2/+7
2014-08-22scsi-mq: fix requests that use a separate CDB bufferTony Battersby2-1/+2
2014-08-21block: support > 16 byte CDBs for SG_IOChristoph Hellwig1-7/+17
2014-08-21block: cleanup error handling in sg_ioChristoph Hellwig1-6/+4
2014-08-21blk-mq: blk_mq_freeze_queue() should allow nestingTejun Heo1-4/+8
2014-08-21blk-mq: correct a few wrong/bad commentsJens Axboe1-3/+3
2014-08-21block: Fix BUG_ON when pi errors occurSagi Grimberg1-1/+1
2014-08-21blk-mq: don't allow merges if turned off for the queueJens Axboe1-3/+9
2014-08-15blk-mq: fix WARNING "percpu_ref_kill() called more than once!"Ming Lei1-4/+0
2014-08-14Merge tag 'dm-3.17-changes' of git://git.kernel.org/pub/scm/linux/kernel/git/...Linus Torvalds1-1/+2
2014-08-14Merge branch 'for-3.17/drivers' of git://git.kernel.dk/linux-blockLinus Torvalds1-1/+4
2014-08-14Merge branch 'for-3.17/core' of git://git.kernel.dk/linux-blockLinus Torvalds12-109/+102
2014-08-05partitions: aix.c: off by one bugDan Carpenter1-1/+1
2014-08-04Merge branch 'for-3.17' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/c...Linus Torvalds2-5/+14
2014-08-01block: use kmalloc alignment for bio slabMikulas Patocka1-1/+2
2014-07-16blkcg: don't call into policy draining if root_blkg is already goneTejun Heo1-0/+7
2014-07-15cgroup: replace cgroup_add_cftypes() with cgroup_add_legacy_cftypes()Tejun Heo1-1/+2
2014-07-15cgroup: rename cgroup_subsys->base_cftypes to ->legacy_cftypesTejun Heo1-1/+1
2014-07-14Revert "bio: modify __bio_add_page() to accept pages that don't start a new s...Jens Axboe1-29/+23
2014-07-14block: provide compat ioctl for BLKZEROOUTMikulas Patocka1-0/+1
2014-07-12blkcg: don't call into policy draining if root_blkg is already goneTejun Heo1-0/+7
2014-07-09cgroup: remove sane_behavior support on non-default hierarchiesTejun Heo1-3/+3
2014-07-08blkcg, memcg: make blkcg depend on memcg on the default hierarchyTejun Heo1-0/+8
2014-07-08block: don't assume last put of shared tags is for the hostChristoph Hellwig1-26/+7
2014-07-01bio: modify __bio_add_page() to accept pages that don't start a new segmentMaurizio Lombardi1-23/+29
2014-07-01block SG_IO: add SG_FLAG_Q_AT_HEAD flagDouglas Gilbert1-1/+4
2014-07-01block: fix SG_[GS]ET_RESERVED_SIZE ioctl when max_sectors is hugeAkinobu Mita1-4/+11
2014-07-01block: fix BLKSECTGET ioctl when max_sectors is greater than USHRT_MAXAkinobu Mita2-3/+8
2014-07-01block/partitions/efi.c: kerneldoc fixingFabian Frederick1-22/+24
2014-07-01block/partitions/msdos.c: code clean-upFabian Frederick1-5/+8
2014-07-01block/partitions/amiga.c: replace nolevel printk by pr_errFabian Frederick1-5/+7
2014-07-01block/partitions/aix.c: replace count*size kzalloc by kcallocFabian Frederick1-1/+1
2014-07-01bio-integrity: add "bip_max_vcnt" into struct bio_integrity_payloadGu Zheng1-9/+3
2014-07-01blk-mq: use percpu_ref for mq usage countTejun Heo1-39/+29
2014-07-01blk-mq: collapse __blk_mq_drain_queue() into blk_mq_freeze_queue()Tejun Heo1-14/+9
2014-07-01blk-mq: decouble blk-mq freezing from generic bypassingTejun Heo3-13/+8
2014-07-01block, blk-mq: draining can't be skipped even if bypass_depth was non-zeroTejun Heo3-10/+10
2014-07-01blk-mq: fix a memory ordering bug in blk_mq_queue_enter()Tejun Heo1-1/+1
2014-06-26Merge branch 'for-linus' of git://git.kernel.dk/linux-blockLinus Torvalds6-20/+32
2014-06-25blk-mq: blk_mq_start_hw_queue() should use blk_mq_run_hw_queue()Jens Axboe1-1/+1
2014-06-24block: add support for limiting gaps in SG listsJens Axboe2-0/+18
2014-06-22Revert "block: add __init to elv_register"Jens Axboe1-1/+1
2014-06-22Revert "block: add __init to blkcg_policy_register"Jens Axboe2-3/+3
2014-06-22blkcg: fix use-after-free in __blkg_release_rcu() by making blkcg_gq refcnt a...Tejun Heo2-15/+9
2014-06-19Merge branch 'for-linus' of git://git.kernel.dk/linux-blockLinus Torvalds7-91/+43
2014-06-17blk-mq: bitmap tag: fix races in bt_get() functionAlexander Gordeev1-8/+5
2014-06-17blk-mq: bitmap tag: fix race on blk_mq_bitmap_tags::wake_cntAlexander Gordeev1-2/+12
2014-06-17blk-mq: bitmap tag: fix races on shared ::wake_index fieldsAlexander Gordeev2-12/+22
2014-06-15Merge git://git.infradead.org/users/willy/linux-nvmeLinus Torvalds1-0/+1
2014-06-13blk-mq: merge blk_mq_drain_queue and __blk_mq_drain_queueChristoph Hellwig1-7/+2
2014-06-13blk-mq: properly drain stopped queuesChristoph Hellwig1-1/+1
2014-06-11block: remove WQ_POWER_EFFICIENT from kblockdMatias Bjørling1-2/+1
2014-06-11block: remove elv_abort_queue and blk_abort_flushesChristoph Hellwig3-59/+0
2014-06-11Merge branch 'for-linus' of git://git.kernel.dk/linux-blockLinus Torvalds10-31/+81
2014-06-10block: add __init to blkcg_policy_registerFabian Frederick2-3/+3
2014-06-10block: add __init to elv_registerFabian Frederick1-1/+1
2014-06-10block: ensure that bio_add_page() always accepts a page for an empty bioJens Axboe2-2/+10
2014-06-09Merge branch 'for-3.16' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/c...Linus Torvalds5-33/+33
2014-06-09blk-mq: add timer in blk_mq_start_requestMing Lei1-16/+1
2014-06-09blk-mq: always initialize request->start_timeJens Axboe1-3/+2
2014-06-08block: blk-exec.c: Cleaning up local variable address returndRickard Strandqvist1-0/+5
2014-06-06mm: convert some level-less printks to pr_*Mitchel Humpherys1-2/+5
2014-06-06blk-mq: ->timeout should be cleared in blk_mq_rq_ctx_init()Jens Axboe1-0/+2
2014-06-06blk-mq: don't allow queue entering for a dying queueKeith Busch1-2/+4
2014-06-06blk-mq: bump max tag depth to 10K tagsJens Axboe1-1/+12
2014-06-06block: add blk_rq_set_block_pc()Jens Axboe3-4/+23
2014-06-05block: add notion of a chunk size for request mergingJens Axboe2-1/+20
2014-06-04block: mq flush: clear flush_rq's tag in flush_end_io()Ming Lei1-1/+1
2014-06-04blk-mq: let blk_mq_tag_to_rq() take blk_mq_tags as the main parameterJens Axboe1-7/+12
2014-06-04blk-mq: fix regression from commit 624dbe475416Jens Axboe1-0/+2
2014-06-03blk-mq: handle NULL req return from blk_map_request in single queue modeJens Axboe1-0/+2
2014-06-03blk-mq: fix sparse warning on missed __percpu annotationMing Lei1-1/+1
2014-06-03blk-mq: fix schedule from atomic contextMing Lei4-31/+78
2014-06-03blk-mq: move blk_mq_get_ctx/blk_mq_put_ctx to mq private headerMing Lei2-22/+22
2014-06-03Merge branch 'locking-core-for-linus' of git://git.kernel.org/pub/scm/linux/k...Linus Torvalds1-2/+2
2014-06-02Merge branch 'for-3.16/drivers' of git://git.kernel.dk/linux-block into nextLinus Torvalds1-1/+1
2014-06-02Merge branch 'for-3.16/core' of git://git.kernel.dk/linux-block into nextLinus Torvalds24-756/+5083
2014-05-30blk-mq: push IPI or local end_io decision to __blk_mq_complete_request()Jens Axboe1-7/+13
2014-05-30blk-mq: remember to start timeout handler for direct queueJens Axboe1-0/+1
2014-05-30block: ensure that the timer is always addedJens Axboe1-1/+1
2014-05-30blk-mq: blk_mq_unregister_hctx() can be staticFengguang Wu1-2/+2
2014-05-30blk-mq: make the sysfs mq/ layout reflect current mappingsJens Axboe3-19/+93
2014-05-30Merge branch 'for-3.16/core' into for-3.16/driversJens Axboe5-37/+45
2014-05-30blk-mq: blk_mq_tag_to_rq should handle flush requestShaohua Li2-4/+12
2014-05-29block: remove dead code in scsi_ioctl:blk_verify_commandDave Jones1-4/+0
2014-05-29blk-mq: request initialization optimizationsJens Axboe1-17/+9
2014-05-29block: add queue flag for disabling SG mergingJens Axboe2-7/+24
2014-05-29block: remove 'magic' from struct blk_plugJens Axboe1-5/+0
2014-05-28Merge branch 'for-3.16/core' into for-3.16/driversJens Axboe4-21/+33
2014-05-28blk-mq: remove alloc_hctx and free_hctx methodsChristoph Hellwig1-21/+5
2014-05-28blk-mq: add file comments and update copyright noticesJens Axboe4-0/+28
2014-05-28Merge branch 'for-3.16/core' into for-3.16/driversJens Axboe21-495/+4631
2014-05-28blk-mq: remove blk_mq_alloc_request_pinnedChristoph Hellwig1-32/+16
2014-05-28blk-mq: do not use blk_mq_alloc_request_pinned in blk_mq_map_requestChristoph Hellwig1-3/+5
2014-05-28blk-mq: remove blk_mq_wait_for_tagsChristoph Hellwig3-16/+6
2014-05-28blk-mq: initialize request in __blk_mq_alloc_requestChristoph Hellwig1-32/+30
2014-05-28blk-mq: merge blk_mq_alloc_reserved_request into blk_mq_alloc_requestChristoph Hellwig2-18/+4
2014-05-28blk-mq: add helper to insert requests from irq contextChristoph Hellwig2-13/+67
2014-05-27blk-mq: allow non-softirq completionsJens Axboe1-3/+9
2014-05-27blk-mq: pass in suggested NUMA node to ->alloc_hctx()Jens Axboe3-11/+32
2014-05-27block: only allocate/free mq_usage_counter in blk-mqMing Lei3-8/+6
2014-05-27blk-mq: avoid code duplicationMing Lei1-24/+37
2014-05-27blk-mq: fix leak of hctx->ctx_mapMing Lei1-0/+1
2014-05-26block/blk-lib.c: make __blkdev_issue_zeroout staticFabian Frederick1-2/+2
2014-05-26blk-mq: idle all hardware contexts before freeing a queueChristoph Hellwig1-0/+1
2014-05-23blk-mq: allow setting of per-request timeoutsJens Axboe1-2/+6
2014-05-23blk-mq: export blk_mq_tag_busy_iterSam Bradshaw2-1/+1
2014-05-22blk-mq: split make request handler for multi and single queueJens Axboe1-50/+157
2014-05-21blk-mq: save memory by freeing requests on unused hardware queuesJens Axboe1-52/+105
2014-05-21blk-mq: allow the hctx cpu hotplug notifier to return errorsJens Axboe3-9/+14
2014-05-20blk-mq: Micro-optimize blk_queue_nomerges() checkRobert Elliott2-5/+6
2014-05-20blk-mq: initialize q->nr_requests after calling blk_queue_make_request()Jens Axboe1-0/+5
2014-05-20blk-mq: allow changing of queue depth through sysfsJens Axboe7-59/+133
2014-05-19block: move mm/bounce.c to block/Jens Axboe2-0/+288
2014-05-19Merge branch 'for-3.16/blk-mq-tagging' into for-3.16/coreJens Axboe6-27/+224
2014-05-19blk-mq: switch ctx pending map to the sparser blk_align_bitmapJens Axboe1-28/+91
2014-05-19blk-mq: move the cache friendly bitmap type of out blk-mq-tagJens Axboe3-11/+17
2014-05-19block: move ioprio.c from fs/ to block/Jens Axboe2-1/+243
2014-05-19block: move bio.c and bio-integrity.c from fs/ to block/Jens Axboe3-1/+2697
2014-05-16cgroup: remove css_parent()Tejun Heo1-1/+1
2014-05-13blk-mq: improve support for shared tags mapsJens Axboe6-27/+224