linux-block.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2016-10-26 21:57:49 to 2016-10-29 08:14:33 UTC [more...]

[PATCH 01/60] block: bio: introduce bio_init_with_vec_table()
 2016-10-29  8:08 UTC  (52+ messages)
` [PATCH 02/60] block drivers: convert to bio_init_with_vec_table()
` [PATCH 03/60] block: drbd: remove impossible failure handling
` [PATCH 04/60] block: floppy: use bio_add_page()
` [PATCH 05/60] target: avoid to access .bi_vcnt directly
` [PATCH 06/60] bcache: debug: avoid to access .bi_io_vec directly
` [PATCH 07/60] dm: crypt: use bio_add_page()
` [PATCH 08/60] dm: use bvec iterator helpers to implement .get_page and .next_page
` [PATCH 09/60] dm: dm.c: replace 'bio->bi_vcnt == 1' with !bio_multiple_segments
` [PATCH 10/60] fs: logfs: convert to bio_add_page() in sync_request()
` [PATCH 11/60] fs: logfs: use bio_add_page() in __bdev_writeseg()
` [PATCH 12/60] fs: logfs: use bio_add_page() in do_erase()
` [PATCH 13/60] fs: logfs: remove unnecesary check
` [PATCH 14/60] block: drbd: comment on direct access bvec table
` [PATCH 15/60] block: loop: comment on direct access to "
` [PATCH 16/60] block: pktcdvd: "
` [PATCH 17/60] kernel/power/swap.c: "
` [PATCH 18/60] mm: page_io.c: "
` [PATCH 19/60] fs/buffer: "
` [PATCH 20/60] f2fs: f2fs_read_end_io: "
` [PATCH 21/60] bcache: "
` [PATCH 22/60] block: comment on bio_alloc_pages()
` [PATCH 23/60] block: introduce flag QUEUE_FLAG_NO_MP
` [PATCH 24/60] md: set NO_MP for request queue of md
` [PATCH 25/60] block: pktcdvd: set NO_MP for pktcdvd request queue
` [PATCH 26/60] btrfs: set NO_MP for request queues behind BTRFS
` [PATCH 27/60] block: introduce BIO_SP_MAX_SECTORS
` [PATCH 28/60] block: introduce QUEUE_FLAG_SPLIT_MP
` [PATCH 29/60] dm: limit the max bio size as BIO_SP_MAX_SECTORS << SECTOR_SHIFT
` [PATCH 30/60] bcache: set flag of QUEUE_FLAG_SPLIT_MP
` [PATCH 31/60] block: introduce multipage/single page bvec helpers
` [PATCH 33/60] block: introduce bio_for_each_segment_mp()
` [PATCH 34/60] block: introduce bio_clone_sp()
` [PATCH 35/60] bvec_iter: introduce BVEC_ITER_ALL_INIT
` [PATCH 36/60] block: bounce: avoid direct access to bvec from bio->bi_io_vec
` [PATCH 37/60] block: bounce: don't access bio->bi_io_vec in copy_to_high_bio_irq
` [PATCH 38/60] block: bounce: convert multipage bvecs into singlepage
` [PATCH 39/60] bcache: debug: switch to bio_clone_sp()
` [PATCH 40/60] blk-merge: compute bio->bi_seg_front_size efficiently
` [PATCH 41/60] block: blk-merge: try to make front segments in full size
` [PATCH 42/60] block: use bio_for_each_segment_mp() to compute segments count
` [PATCH 43/60] block: use bio_for_each_segment_mp() to map sg
` [PATCH 46/60] block: deal with dirtying pages for multipage bvec
` [PATCH 47/60] block: convert to bio_for_each_segment_all_rd()
` [PATCH 49/60] fs/direct-io: "
` [PATCH 50/60] ext4: "
` [PATCH 51/60] xfs: "
` [PATCH 54/60] f2fs: "
` [PATCH 56/60] fs: crypto: "
` [PATCH 57/60] bcache: "
` [PATCH 58/60] dm-crypt: "
` [PATCH 60/60] block: enable multipage bvecs

[PATCH 00/14] introduce the BFQ-v0 I/O scheduler as an extra scheduler
 2016-10-29  5:38 UTC  (40+ messages)

[PATCH v5 0/14] Fix race conditions related to stopping block layer queues
 2016-10-29  0:23 UTC  (15+ messages)
` [PATCH v5 01/14] blk-mq: Do not invoke .queue_rq() for a stopped queue
` [PATCH v5 02/14] blk-mq: Introduce blk_mq_hctx_stopped()
` [PATCH v5 03/14] blk-mq: Introduce blk_mq_queue_stopped()
` [PATCH v5 04/14] blk-mq: Move more code into blk_mq_direct_issue_request()
` [PATCH v5 05/14] blk-mq: Avoid that requeueing starts stopped queues
` [PATCH v5 06/14] blk-mq: Remove blk_mq_cancel_requeue_work()
` [PATCH v5 07/14] blk-mq: Introduce blk_mq_quiesce_queue()
` [PATCH v5 08/14] blk-mq: Add a kick_requeue_list argument to blk_mq_requeue_request()
` [PATCH v5 09/14] dm: Use BLK_MQ_S_STOPPED instead of QUEUE_FLAG_STOPPED in blk-mq code
` [PATCH v5 10/14] dm: Fix a race condition related to stopping and starting queues
` [PATCH v5 11/14] SRP transport: Move queuecommand() wait code to SCSI core
` [PATCH v5 12/14] SRP transport, scsi-mq: Wait for .queue_rq() if necessary
` [PATCH v5 13/14] nvme: Fix a race condition related to stopping queues
` [PATCH v5 14/14] nvme: Use BLK_MQ_S_STOPPED instead of QUEUE_FLAG_STOPPED in blk-mq code

block device shutdown crash in bdev_get_queue()
 2016-10-28 23:05 UTC 

[PATCH 1/2] block: immediately dispatch big size request
 2016-10-28 22:52 UTC  (2+ messages)
` [PATCH 2/2] blk-mq: "

[PATCH] blk-mq: Always schedule hctx->next_cpu
 2016-10-28 21:54 UTC  (2+ messages)

[PATCH v4 0/12] Fix race conditions related to stopping block layer queues
 2016-10-28 21:06 UTC  (54+ messages)
` [PATCH 01/12] blk-mq: Do not invoke .queue_rq() for a stopped queue
` [PATCH 02/12] blk-mq: Introduce blk_mq_hctx_stopped()
` [PATCH 03/12] blk-mq: Introduce blk_mq_queue_stopped()
` [PATCH 04/12] blk-mq: Move more code into blk_mq_direct_issue_request()
` [PATCH 05/12] blk-mq: Introduce blk_mq_quiesce_queue()
` [PATCH 06/12] blk-mq: Add a kick_requeue_list argument to blk_mq_requeue_request()
` [PATCH 07/12] dm: Use BLK_MQ_S_STOPPED instead of QUEUE_FLAG_STOPPED in blk-mq code
` [PATCH 08/12] dm: Fix a race condition related to stopping and starting queues
` [PATCH 09/12] SRP transport: Move queuecommand() wait code to SCSI core
` [PATCH 10/12] SRP transport, scsi-mq: Wait for .queue_rq() if necessary
` [PATCH 11/12] nvme: Use BLK_MQ_S_STOPPED instead of QUEUE_FLAG_STOPPED in blk-mq code
` [PATCH 12/12] nvme: Fix a race condition related to stopping queues

[PATCH 0/3] iopmem : A block device for PCIe memory
 2016-10-28 19:22 UTC  (12+ messages)
` [PATCH 2/3] iopmem : Add a block device driver for PCIe attached IO memory
` [PATCH 3/3] iopmem : Add documentation for iopmem driver

[PATCH] block: disallow changing max_sectors_kb on a request stacking device
 2016-10-28 19:45 UTC 

Block layer state diagrams
 2016-10-28 16:24 UTC  (6+ messages)

[PATCH] brd: remove support for BLKFLSBUF
 2016-10-28 15:55 UTC  (12+ messages)
            ` [PATCH 0/4] brd: support discard
              ` [PATCH 1/4] brd: handle misaligned discard
                ` [dm-devel] "
                    ` REQ_OP for zeroing, was "

[PATCHSET] block: buffered writeback throttling
 2016-10-28 14:57 UTC  (4+ messages)
` [PATCH 1/8] block: add WRITE_BG

clean up block ops defintions
 2016-10-28 14:40 UTC  (5+ messages)
` [PATCH 6/7] block: better op and flags encoding

[PATCH 0/7] LightNVM patchset V2
 2016-10-27 18:01 UTC  (8+ messages)
` [PATCH 1/7] lightnvm: enable to send hint to erase command
` [PATCH 2/7] lightnvm: do not decide on device blocks
` [PATCH 3/7] lightnvm: manage block list on LUN owner
` [PATCH 4/7] lightnvm: drop reserve and release LUN callbacks
` [PATCH 5/7] lightnvm: export set bad block table
` [PATCH 6/7] lightnvm: add ECC error codes
` [PATCH 7/7] lightnvm: rrpc: split bios of size > 256kb

[GIT PULL] Block fixes for 4.9-rc
 2016-10-27 16:39 UTC 

[PATCH] null_blk: Add notes to use LightNVM
 2016-10-27 15:56 UTC 

A question regarding "multiple SGL"
 2016-10-27 14:50 UTC  (5+ messages)

[PATCH 1/7] lightnvm: enable to send hint to erase command
 2016-10-27 14:49 UTC  (7+ messages)
` [PATCH 2/7] lightnvm: do not decide on device blocks
` [PATCH 3/7] lightnvm: manage block list on LUN owner
` [PATCH 4/7] lightnvm: drop reserve and release LUN callbacks
` [PATCH 5/7] lightnvm: export set bad block table
` [PATCH 6/7] lightnvm: add ECC error codes
` [PATCH 7/7] lightnvm: rrpc: split bios of size > 256kb

[RFC, PATCH] pktcdvd: don't scribble over the bvec array
 2016-10-27  7:04 UTC 


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).