qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Marc-André Lureau" <marcandre.lureau@gmail.com>
To: zhenwei pi <pizhenwei@bytedance.com>
Cc: Michael Roth <michael.roth@amd.com>,
	Markus Armbruster <armbru@redhat.com>,
	QEMU <qemu-devel@nongnu.org>
Subject: Re: [RESEND] qga: Introduce NVMe disk bus type
Date: Thu, 3 Mar 2022 11:26:26 +0400	[thread overview]
Message-ID: <CAJ+F1CJ5kvyPLWURyBh5oRP_gPxHBydY8=FYzHAdPZcFu8FDLg@mail.gmail.com> (raw)
In-Reply-To: <20220302105610.1304166-1-pizhenwei@bytedance.com>

[-- Attachment #1: Type: text/plain, Size: 2985 bytes --]

Hi

On Wed, Mar 2, 2022 at 3:00 PM zhenwei pi <pizhenwei@bytedance.com> wrote:

> Assigning a NVMe disk by VFIO or emulating a NVMe controller by QEMU,
> a NVMe disk get exposed in guest side. Support NVMe disk bus type and
> implement posix version.
>
> Test PCI passthrough case:
> ~#virsh qemu-agent-command buster '{"execute":"guest-get-disks"}' | jq
>   ...
>     {
>       "name": "/dev/nvme0n1",
>       "dependencies": [],
>       "partition": false,
>       "address": {
>         "serial": "SAMSUNG MZQL23T8HCLS-00A07_S64HNE0N500076",
>         "bus-type": "nvme",
>         "bus": 0,
>         "unit": 0,
>         "pci-controller": {
>           "bus": 0,
>           "slot": 22,
>           "domain": 0,
>           "function": 0
>         },
>         "dev": "/dev/nvme0n1",
>         "target": 0
>       }
>   ...
>
> Signed-off-by: zhenwei pi <pizhenwei@bytedance.com>
> ---
>  qga/commands-posix.c | 5 ++++-
>  qga/qapi-schema.json | 3 ++-
>  2 files changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/qga/commands-posix.c b/qga/commands-posix.c
> index 75dbaab68e..4ec83bbfbc 100644
> --- a/qga/commands-posix.c
> +++ b/qga/commands-posix.c
> @@ -889,7 +889,8 @@ static bool build_guest_fsinfo_for_pci_dev(char const
> *syspath,
>          if (driver && (g_str_equal(driver, "ata_piix") ||
>                         g_str_equal(driver, "sym53c8xx") ||
>                         g_str_equal(driver, "virtio-pci") ||
> -                       g_str_equal(driver, "ahci"))) {
> +                       g_str_equal(driver, "ahci") ||
> +                       g_str_equal(driver, "nvme"))) {
>              break;
>          }
>
> @@ -984,6 +985,8 @@ static bool build_guest_fsinfo_for_pci_dev(char const
> *syspath,
>              g_debug("no host for '%s' (driver '%s')", syspath, driver);
>              goto cleanup;
>          }
> +    } else if (strcmp(driver, "nvme") == 0) {
> +        disk->bus_type = GUEST_DISK_BUS_TYPE_NVME;
>      } else {
>          g_debug("unknown driver '%s' (sysfs path '%s')", driver, syspath);
>          goto cleanup;
> diff --git a/qga/qapi-schema.json b/qga/qapi-schema.json
> index 94e4aacdcc..1b5ea4c5f8 100644
> --- a/qga/qapi-schema.json
> +++ b/qga/qapi-schema.json
> @@ -827,13 +827,14 @@
>  # @mmc: Win multimedia card (MMC) bus type
>  # @virtual: Win virtual bus type
>  # @file-backed-virtual: Win file-backed bus type
> +# @nvme: NVMe disks
>  #
>  # Since: 2.2; 'Unknown' and all entries below since 2.4
>

You have to update this comment.


>  ##
>  { 'enum': 'GuestDiskBusType',
>    'data': [ 'ide', 'fdc', 'scsi', 'virtio', 'xen', 'usb', 'uml', 'sata',
>              'sd', 'unknown', 'ieee1394', 'ssa', 'fibre', 'raid', 'iscsi',
> -            'sas', 'mmc', 'virtual', 'file-backed-virtual' ] }
> +            'sas', 'mmc', 'virtual', 'file-backed-virtual', 'nvme' ] }
>
>
>
lgtm, otherwise.

-- 
Marc-André Lureau

[-- Attachment #2: Type: text/html, Size: 4534 bytes --]

      reply	other threads:[~2022-03-03  7:27 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-03-02 10:56 [RESEND] qga: Introduce NVMe disk bus type zhenwei pi
2022-03-03  7:26 ` Marc-André Lureau [this message]

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='CAJ+F1CJ5kvyPLWURyBh5oRP_gPxHBydY8=FYzHAdPZcFu8FDLg@mail.gmail.com' \
    --to=marcandre.lureau@gmail.com \
    --cc=armbru@redhat.com \
    --cc=michael.roth@amd.com \
    --cc=pizhenwei@bytedance.com \
    --cc=qemu-devel@nongnu.org \
    /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 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).