All of lore.kernel.org
 help / color / mirror / Atom feed
From: Christoph Hellwig <hch@infradead.org>
To: Jens Axboe <axboe@kernel.dk>
Cc: Keith Busch <keith.busch@intel.com>,
	linux-block@vger.kernel.org, Sagi Grimberg <sagi@grimberg.me>,
	linux-nvme@lists.infradead.org
Subject: [GIT PULL] early nvme updates for 5.2
Date: Fri, 5 Apr 2019 08:20:43 +0200	[thread overview]
Message-ID: <20190405062043.GA26688@infradead.org> (raw)

Hi Jens,

below is the first batch of nvme updates for 5.2.  This includes the
performance improvements for single segment I/O on PCIe, which introduce
new block helpers, so it might be a good idea to get them in early.

 - various performance optimizations in the PCIe code (Keith and me)
 - new block helpers to support the above (me)
 - nvmet error conversion cleanup (me)
 - nvmet-fc variable sized array cleanup (Gustavo)
 - passthrough ioctl error printk cleanup (Kenneth)
 - small nvmet fixes (Max)
 - endianess conversion cleanup (Max)
 - nvmet-tcp faspath completion optimization (Sagi)


The following changes since commit 2b24e6f63ac9e817630424c6d8f008256348dfc4:

  block: bio: ensure newly added bio flags don't override BVEC_POOL_IDX (2019-04-04 09:30:37 -0600)

are available in the Git repository at:

  git://git.infradead.org/nvme.git nvme-5.2

for you to fetch changes up to d0de579c043c3a2ab60ce75eb6cf4d414becc676:

  nvme: log the error status on Identify Namespace failure (2019-04-05 08:07:58 +0200)

----------------------------------------------------------------
Christoph Hellwig (15):
      nvmet: avoid double errno conversions
      block: add a req_bvec helper
      block: add a rq_integrity_vec helper
      block: add a rq_dma_dir helper
      block: add dma_map_bvec helper
      nvme-pci: remove nvme_init_iod
      nvme-pci: move the call to nvme_cleanup_cmd out of nvme_unmap_data
      nvme-pci: merge nvme_free_iod into nvme_unmap_data
      nvme-pci: only call nvme_unmap_data for requests transferring data
      nvme-pci: do not build a scatterlist to map metadata
      nvme-pci: split metadata handling from nvme_map_data / nvme_unmap_data
      nvme-pci: remove the inline scatterlist optimization
      nvme-pci: optimize mapping of small single segment requests
      nvme-pci: optimize mapping single segment requests using SGLs
      nvme-pci: tidy up nvme_map_data

Gustavo A. R. Silva (1):
      nvmet-fc: use zero-sized array and struct_size() in kzalloc()

Keith Busch (3):
      nvme-pci: use a flag for polled queues
      nvme-pci: remove q_dmadev from nvme_queue
      nvme-pci: remove unused nvme_iod member

Kenneth Heitke (1):
      nvme: log the error status on Identify Namespace failure

Max Gurtovoy (3):
      nvme: avoid double dereference to convert le to cpu
      nvmet: never fail double namespace enablement
      nvmet: add safety check for subsystem lock during nvmet_ns_changed

Sagi Grimberg (1):
      nvmet-tcp: implement C2HData SUCCESS optimization

 drivers/nvme/host/core.c          |   6 +-
 drivers/nvme/host/pci.c           | 263 +++++++++++++++++++-------------------
 drivers/nvme/target/core.c        |   9 +-
 drivers/nvme/target/fc.c          |   7 +-
 drivers/nvme/target/io-cmd-bdev.c |   6 +-
 drivers/nvme/target/tcp.c         |  24 +++-
 include/linux/blkdev.h            |  34 +++++
 7 files changed, 197 insertions(+), 152 deletions(-)

WARNING: multiple messages have this Message-ID (diff)
From: hch@infradead.org (Christoph Hellwig)
Subject: [GIT PULL] early nvme updates for 5.2
Date: Fri, 5 Apr 2019 08:20:43 +0200	[thread overview]
Message-ID: <20190405062043.GA26688@infradead.org> (raw)

Hi Jens,

below is the first batch of nvme updates for 5.2.  This includes the
performance improvements for single segment I/O on PCIe, which introduce
new block helpers, so it might be a good idea to get them in early.

 - various performance optimizations in the PCIe code (Keith and me)
 - new block helpers to support the above (me)
 - nvmet error conversion cleanup (me)
 - nvmet-fc variable sized array cleanup (Gustavo)
 - passthrough ioctl error printk cleanup (Kenneth)
 - small nvmet fixes (Max)
 - endianess conversion cleanup (Max)
 - nvmet-tcp faspath completion optimization (Sagi)


The following changes since commit 2b24e6f63ac9e817630424c6d8f008256348dfc4:

  block: bio: ensure newly added bio flags don't override BVEC_POOL_IDX (2019-04-04 09:30:37 -0600)

are available in the Git repository at:

  git://git.infradead.org/nvme.git nvme-5.2

for you to fetch changes up to d0de579c043c3a2ab60ce75eb6cf4d414becc676:

  nvme: log the error status on Identify Namespace failure (2019-04-05 08:07:58 +0200)

----------------------------------------------------------------
Christoph Hellwig (15):
      nvmet: avoid double errno conversions
      block: add a req_bvec helper
      block: add a rq_integrity_vec helper
      block: add a rq_dma_dir helper
      block: add dma_map_bvec helper
      nvme-pci: remove nvme_init_iod
      nvme-pci: move the call to nvme_cleanup_cmd out of nvme_unmap_data
      nvme-pci: merge nvme_free_iod into nvme_unmap_data
      nvme-pci: only call nvme_unmap_data for requests transferring data
      nvme-pci: do not build a scatterlist to map metadata
      nvme-pci: split metadata handling from nvme_map_data / nvme_unmap_data
      nvme-pci: remove the inline scatterlist optimization
      nvme-pci: optimize mapping of small single segment requests
      nvme-pci: optimize mapping single segment requests using SGLs
      nvme-pci: tidy up nvme_map_data

Gustavo A. R. Silva (1):
      nvmet-fc: use zero-sized array and struct_size() in kzalloc()

Keith Busch (3):
      nvme-pci: use a flag for polled queues
      nvme-pci: remove q_dmadev from nvme_queue
      nvme-pci: remove unused nvme_iod member

Kenneth Heitke (1):
      nvme: log the error status on Identify Namespace failure

Max Gurtovoy (3):
      nvme: avoid double dereference to convert le to cpu
      nvmet: never fail double namespace enablement
      nvmet: add safety check for subsystem lock during nvmet_ns_changed

Sagi Grimberg (1):
      nvmet-tcp: implement C2HData SUCCESS optimization

 drivers/nvme/host/core.c          |   6 +-
 drivers/nvme/host/pci.c           | 263 +++++++++++++++++++-------------------
 drivers/nvme/target/core.c        |   9 +-
 drivers/nvme/target/fc.c          |   7 +-
 drivers/nvme/target/io-cmd-bdev.c |   6 +-
 drivers/nvme/target/tcp.c         |  24 +++-
 include/linux/blkdev.h            |  34 +++++
 7 files changed, 197 insertions(+), 152 deletions(-)

             reply	other threads:[~2019-04-05  6:21 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-04-05  6:20 Christoph Hellwig [this message]
2019-04-05  6:20 ` [GIT PULL] early nvme updates for 5.2 Christoph Hellwig
2019-04-05 15:10 ` Jens Axboe
2019-04-05 15:10   ` Jens Axboe

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190405062043.GA26688@infradead.org \
    --to=hch@infradead.org \
    --cc=axboe@kernel.dk \
    --cc=keith.busch@intel.com \
    --cc=linux-block@vger.kernel.org \
    --cc=linux-nvme@lists.infradead.org \
    --cc=sagi@grimberg.me \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.