All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] Block fixes for 4.10-rc
@ 2017-01-20 20:20 Jens Axboe
  0 siblings, 0 replies; 3+ messages in thread
From: Jens Axboe @ 2017-01-20 20:20 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-block

Hi Linus,

Just two small fixes for this -rc. One is just killing an unused
variable from Keith, but the other fixes a performance regression for
nbd in this series, where we inadvertently flipped when we set MSG_MORE
when outputting data.

Please pull!


  git://git.kernel.dk/linux-block.git for-linus


----------------------------------------------------------------
Josef Bacik (1):
      nbd: only set MSG_MORE when we have more to send

Keith Busch (1):
      blk-mq: Remove unused variable

 block/blk-mq.c      | 1 -
 drivers/block/nbd.c | 6 ++----
 2 files changed, 2 insertions(+), 5 deletions(-)

-- 
Jens Axboe

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [GIT PULL] Block fixes for 4.10-rc
@ 2017-01-27 19:41 Jens Axboe
  0 siblings, 0 replies; 3+ messages in thread
From: Jens Axboe @ 2017-01-27 19:41 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-block

Hi Linus,

A set of fixes for this series. This pull request contains:

- Set of fixes for the nvme target code

- A revert of patch from this merge window, causing a regression with
  WRITE_SAME on iSCSI targets at least.

- A fix for a use-after-free in the new O_DIRECT bdev code.

- Two fixes for the xen-blkfront driver.

Please pull!


  git://git.kernel.dk/linux-block.git for-linus


----------------------------------------------------------------
Bart Van Assche (1):
      Revert "sd: remove __data_len hack for WRITE SAME"

Christoph Hellwig (2):
      block: fix use after free in __blkdev_direct_IO
      nvme-fc: use blk_rq_nr_phys_segments

James Smart (1):
      nvmet_fc: correct logic in disconnect queue LS handling

Jan Beulich (2):
      xen-blkfront: feature flags handling adjustments
      xen-blkfront: correct maximum segment accounting

Jens Axboe (2):
      Merge branch 'nvme-4.10-fixes' of git://git.infradead.org/nvme into for-linus
      Merge branch 'stable/for-jens-4.10' of git://git.kernel.org/.../konrad/xen into for-linus

Parav Pandit (1):
      nvmet-rdma: Fix missing dma sync to nvme data structures

Sagi Grimberg (3):
      nvmet: delete controllers deletion upon subsystem release
      nvmet: cancel fatal error and flush async work before free controller
      nvmet: Call fatal_error from keep-alive timout expiration

 drivers/block/xen-blkfront.c   | 22 ++++++++++++++--------
 drivers/nvme/host/fc.c         |  6 +++---
 drivers/nvme/target/configfs.c |  1 +
 drivers/nvme/target/core.c     | 15 ++++++++++++++-
 drivers/nvme/target/fc.c       | 36 ++++++++++++++++++++++--------------
 drivers/nvme/target/nvmet.h    |  1 +
 drivers/nvme/target/rdma.c     | 17 +++++++++++++++++
 drivers/scsi/sd.c              | 17 ++++++++++++++++-
 fs/block_dev.c                 |  6 +++---
 9 files changed, 91 insertions(+), 30 deletions(-)

-- 
Jens Axboe

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [GIT PULL] Block fixes for 4.10-rc
@ 2017-01-15  0:28 Jens Axboe
  0 siblings, 0 replies; 3+ messages in thread
From: Jens Axboe @ 2017-01-15  0:28 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-block, linux-kernel

Hi Linus,

Here's a set of fixes for the current series. This pull request
contains:

- The virtio_blk stack DMA corruption fix from Christoph, fixing and
  issue with VMAP stacks.

- O_DIRECT blkbits calculation fix from Chandan.

- Discard regression fix from Christoph.

- Queue init error handling fixes for nbd and virtio_blk, from Omar and
  Jeff.

- Two small nvme fixes, from Christoph and Guilherme.

- Rename of blk_queue_zone_size and bdev_zone_size to _sectors instead,
  to more closely follow what we do in other places in the block layer.
  This interface is new for this series, so let's get the naming right
  before releasing a kernel with this feature. From Damien.

Please pull!


  git://git.kernel.dk/linux-block.git for-linus


----------------------------------------------------------------
Chandan Rajendra (1):
      do_direct_IO: Use inode->i_blkbits to compute block count to be cleaned

Christoph Hellwig (7):
      virtio_blk: avoid DMA to stack for the sense buffer
      nvme-rdma: fix nvme_rdma_queue_is_ready
      block: add blk_rq_payload_bytes
      scsi: use blk_rq_payload_bytes
      nvme: use blk_rq_payload_bytes
      sd: remove __data_len hack for WRITE SAME
      block: don't try to discard from __blkdev_issue_zeroout

Damien Le Moal (1):
      block: Rename blk_queue_zone_size and bdev_zone_size

Guilherme G. Piccoli (1):
      nvme: apply DELAY_BEFORE_CHK_RDY quirk at probe time too

Jeff Moyer (1):
      nbd: blk_mq_init_queue returns an error code on failure, not NULL

Omar Sandoval (1):
      virtio_blk: fix panic in initialization error path

 block/blk-lib.c            | 13 ++++++-------
 block/blk-zoned.c          |  4 ++--
 block/partition-generic.c  | 14 +++++++-------
 drivers/block/nbd.c        |  6 ++++--
 drivers/block/virtio_blk.c |  7 +++++--
 drivers/nvme/host/core.c   |  7 +------
 drivers/nvme/host/fc.c     |  5 ++---
 drivers/nvme/host/nvme.h   |  8 --------
 drivers/nvme/host/pci.c    | 19 ++++++++-----------
 drivers/nvme/host/rdma.c   | 15 ++++++---------
 drivers/scsi/scsi_lib.c    |  2 +-
 drivers/scsi/sd.c          | 17 +----------------
 fs/direct-io.c             |  3 ++-
 fs/f2fs/segment.c          |  4 ++--
 fs/f2fs/super.c            |  6 +++---
 include/linux/blkdev.h     | 19 ++++++++++++++++---
 16 files changed, 66 insertions(+), 83 deletions(-)

-- 
Jens Axboe

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-01-27 19:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-20 20:20 [GIT PULL] Block fixes for 4.10-rc Jens Axboe
  -- strict thread matches above, loose matches on Subject: below --
2017-01-27 19:41 Jens Axboe
2017-01-15  0:28 Jens Axboe

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.