[PULL 00/23] hw/nvme patches

Klaus Jensen posted 23 patches 2 years, 10 months ago
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20210629184743.230173-1-its@irrelevant.dk
Maintainers: Kevin Wolf <kwolf@redhat.com>, Eduardo Habkost <ehabkost@redhat.com>, Max Reitz <mreitz@redhat.com>, Marcel Apfelbaum <marcel.apfelbaum@gmail.com>, Klaus Jensen <its@irrelevant.dk>, Fam Zheng <fam@euphon.net>, Stefan Hajnoczi <stefanha@redhat.com>, Keith Busch <kbusch@kernel.org>
There is a newer version of this series
docs/system/nvme.rst |   12 +
hw/nvme/nvme.h       |   15 +-
include/block/nvme.h |   18 +
hw/core/machine.c    |    1 +
hw/nvme/ctrl.c       | 2039 ++++++++++++++++++++++++------------------
hw/nvme/dif.c        |   64 +-
hw/nvme/ns.c         |   64 +-
hw/nvme/trace-events |   23 +-
8 files changed, 1287 insertions(+), 949 deletions(-)
[PULL 00/23] hw/nvme patches
Posted by Klaus Jensen 2 years, 10 months ago
From: Klaus Jensen <k.jensen@samsung.com>

Hi Peter,

The following changes since commit 9e654e10197f5a014eccd71de5ea633c1b0f4303:

  Merge remote-tracking branch 'remotes/vsementsov/tags/pull-jobs-2021-06-25' into staging (2021-06-28 18:58:19 +0100)

are available in the Git repository at:

  git://git.infradead.org/qemu-nvme.git tags/nvme-next-pull-request

for you to fetch changes up to 176c0a4973d3ca5d46b05d0edb439b154363d29f:

  hw/nvme: add 'zoned.zasl' to documentation (2021-06-29 20:31:27 +0200)

----------------------------------------------------------------
hw/nvme patches

* namespace eui64 support (Heinrich)
* aiocb refactoring (Klaus)
* controller parameter for auto zone transitioning (Niklas)
* misc fixes and additions (Gollu, Klaus, Keith)

----------------------------------------------------------------

Gollu Appalanaidu (6):
  hw/nvme: fix style
  hw/nvme: add identify namespace flbas/mc enums
  hw/nvme: fix lbaf formats initialization
  hw/nvme: fix csi field for cns 0x00 and 0x11
  hw/nvme: fix endianess conversion and add controller list
  hw/nvme: documentation fix

Heinrich Schuchardt (2):
  hw/nvme: namespace parameter for EUI-64
  hw/nvme: default for namespace EUI-64

Keith Busch (1):
  hw/nvme: add 'zoned.zasl' to documentation

Klaus Jensen (13):
  hw/nvme: reimplement flush to allow cancellation
  hw/nvme: add nvme_block_status_all helper
  hw/nvme: reimplement dsm to allow cancellation
  hw/nvme: save reftag when generating pi
  hw/nvme: remove assert from nvme_get_zone_by_slba
  hw/nvme: use prinfo directly in nvme_check_prinfo and nvme_dif_check
  hw/nvme: add dw0/1 to the req completion trace event
  hw/nvme: reimplement the copy command to allow aio cancellation
  hw/nvme: reimplement zone reset to allow cancellation
  hw/nvme: reimplement format nvm to allow cancellation
  Partially revert "hw/block/nvme: drain namespaces on sq deletion"
  hw/nvme: fix missing check for PMR capability
  hw/nvme: fix pin-based interrupt behavior (again)

Niklas Cassel (1):
  hw/nvme: add param to control auto zone transitioning to zone state
    closed

 docs/system/nvme.rst |   12 +
 hw/nvme/nvme.h       |   15 +-
 include/block/nvme.h |   18 +
 hw/core/machine.c    |    1 +
 hw/nvme/ctrl.c       | 2039 ++++++++++++++++++++++++------------------
 hw/nvme/dif.c        |   64 +-
 hw/nvme/ns.c         |   64 +-
 hw/nvme/trace-events |   23 +-
 8 files changed, 1287 insertions(+), 949 deletions(-)

-- 
2.32.0


Re: [PULL 00/23] hw/nvme patches
Posted by Peter Maydell 2 years, 10 months ago
On Tue, 29 Jun 2021 at 19:47, Klaus Jensen <its@irrelevant.dk> wrote:
>
> From: Klaus Jensen <k.jensen@samsung.com>
>
> Hi Peter,
>
> The following changes since commit 9e654e10197f5a014eccd71de5ea633c1b0f4303:
>
>   Merge remote-tracking branch 'remotes/vsementsov/tags/pull-jobs-2021-06-25' into staging (2021-06-28 18:58:19 +0100)
>
> are available in the Git repository at:
>
>   git://git.infradead.org/qemu-nvme.git tags/nvme-next-pull-request
>
> for you to fetch changes up to 176c0a4973d3ca5d46b05d0edb439b154363d29f:
>
>   hw/nvme: add 'zoned.zasl' to documentation (2021-06-29 20:31:27 +0200)
>
> ----------------------------------------------------------------
> hw/nvme patches
>
> * namespace eui64 support (Heinrich)
> * aiocb refactoring (Klaus)
> * controller parameter for auto zone transitioning (Niklas)
> * misc fixes and additions (Gollu, Klaus, Keith)
>
> ----------------------------------------------------------------


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/6.1
for any user-visible changes.

-- PMM