qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Tomáš Golembiovský" <tgolembi@redhat.com>
To: Michael Roth <mdroth@linux.vnet.ibm.com>
Cc: qemu-devel@nongnu.org, "Eric Blake" <eblake@redhat.com>,
	"Sameeh Jubran" <sjubran@redhat.com>,
	"Marc-André Lureau" <marcandre.lureau@redhat.com>,
	"Olga Krishtal" <okrishtal@virtuozzo.com>
Subject: Re: [Qemu-devel] [PATCH v5 00/14] qga: report serial number and disk node
Date: Tue, 30 Oct 2018 11:00:28 +0100	[thread overview]
Message-ID: <20181030110028.02aa2ab7@fiorina> (raw)
In-Reply-To: <154087006527.11226.7369141331047618040@sif>

On Mon, 29 Oct 2018 22:27:45 -0500
Michael Roth <mdroth@linux.vnet.ibm.com> wrote:

> Quoting Tomáš Golembiovský (2018-10-23 06:23:09)
> > Note that PCI controller reporting on Windows was and still is broken.
> > Unfortunately I don't know how to fix it at the momemnt. See commit message and
> > code comment. If anyone has environment where the original code works let me
> > know. CCing author of the code In case I missed something obvious.
> > 
> > v5:
> >   - return -1 in PCI info
> >     I have cherry-picked three commits from Sameeh Jubran and Michael Roth:
> >     https://github.com/mdroth/qemu/commit/89f145d7e90d721dbc7c9d0082e564bad7e88247
> >     https://github.com/mdroth/qemu/commit/d5f5f7e7dc265a9e62e5f4c2ee342ab7e56cca53
> >     https://github.com/mdroth/qemu/commit/201db36b56d7d1ba5ff720eedcb3b62b75306fde
> >   - remove == TRUE from if-conditions
> >   - separate Linux and Windows changes so that the Linux part can be pushed
> >     independently; the relevant commits are ordered first.
> >   - fixed several typos
> > 
> > v4:
> >   - split changes into more patches
> >   - fixed UNC for physical drive to use device namespace
> >   - renamed g_debug_err() to debug_error()
> >   - fixed build without libudev
> > 
> > v3:
> >   - fix typos
> >   - add configure test for libudev
> >   - change order of patches fixing PCI controller info and build fix to avoid
> >     exposing broken code
> >   - split reporting of serial number and device node into two separate patches
> > 
> > v2:
> >   - fix checkpatch error
> > 
> > Michael Roth (1):
> >   *additonal fixup for NULL pci_controller field
> > 
> > Sameeh Jubran (2):
> >   qga-win: prevent crash when executing fsinfo command
> >   qga-win: fsinfo: pci-info: allow partial info
> > 
> > Tomáš Golembiovský (11):
> >   configure: add test for libudev
> >   qga: linux: report disk serial number
> >   qga: linux: return disk device in guest-get-fsinfo
> >   build: rename CONFIG_QGA_NTDDDISK to CONFIG_QGA_NTDDSCSI
> >   qga-win: add debugging information
> >   qga-win: refactor disk properties (bus)
> >   qga-win: report disk serial number
> >   qga-win: refactor disk info
> >   qga-win: handle multi-disk volumes
> >   qga-win: return disk device in guest-get-fsinfo
> >   qga-win: demystify namespace stripping  
> 
> Thanks, applied to qga tree with some small fix-ups:
>   https://github.com/mdroth/qemu/commits/qga

Thank you

> 
> > 
> >  configure            |  24 +++-
> >  dtc                  |   2 +-
> >  qga/Makefile.objs    |   1 +
> >  qga/commands-posix.c |  37 +++++-
> >  qga/commands-win32.c | 269 +++++++++++++++++++++++++++++++++++--------
> >  qga/qapi-schema.json |   5 +-
> >  6 files changed, 287 insertions(+), 51 deletions(-)
> > 
> > -- 
> > 2.19.0
> >   


-- 
Tomáš Golembiovský <tgolembi@redhat.com>

      reply	other threads:[~2018-10-30 10:00 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-23 11:23 [Qemu-devel] [PATCH v5 00/14] qga: report serial number and disk node Tomáš Golembiovský
2018-10-23 11:23 ` [Qemu-devel] [PATCH v5 01/14] configure: add test for libudev Tomáš Golembiovský
2018-10-23 11:23 ` [Qemu-devel] [PATCH v5 02/14] qga: linux: report disk serial number Tomáš Golembiovský
2018-10-23 11:23 ` [Qemu-devel] [PATCH v5 03/14] qga: linux: return disk device in guest-get-fsinfo Tomáš Golembiovský
2018-10-23 11:23 ` [Qemu-devel] [PATCH v5 04/14] qga-win: prevent crash when executing fsinfo command Tomáš Golembiovský
2018-10-23 11:23 ` [Qemu-devel] [PATCH v5 05/14] qga-win: fsinfo: pci-info: allow partial info Tomáš Golembiovský
2018-10-23 11:23 ` [Qemu-devel] [PATCH v5 06/14] *additonal fixup for NULL pci_controller field Tomáš Golembiovský
2018-10-23 11:23 ` [Qemu-devel] [PATCH v5 07/14] build: rename CONFIG_QGA_NTDDDISK to CONFIG_QGA_NTDDSCSI Tomáš Golembiovský
2018-10-23 11:23 ` [Qemu-devel] [PATCH v5 08/14] qga-win: add debugging information Tomáš Golembiovský
2018-10-23 11:23 ` [Qemu-devel] [PATCH v5 09/14] qga-win: refactor disk properties (bus) Tomáš Golembiovský
2018-10-23 11:23 ` [Qemu-devel] [PATCH v5 10/14] qga-win: report disk serial number Tomáš Golembiovský
2018-10-23 11:23 ` [Qemu-devel] [PATCH v5 11/14] qga-win: refactor disk info Tomáš Golembiovský
2018-10-23 11:23 ` [Qemu-devel] [PATCH v5 12/14] qga-win: handle multi-disk volumes Tomáš Golembiovský
2018-10-23 11:23 ` [Qemu-devel] [PATCH v5 13/14] qga-win: return disk device in guest-get-fsinfo Tomáš Golembiovský
2018-10-23 11:23 ` [Qemu-devel] [PATCH v5 14/14] qga-win: demystify namespace stripping Tomáš Golembiovský
2018-10-30  3:27 ` [Qemu-devel] [PATCH v5 00/14] qga: report serial number and disk node Michael Roth
2018-10-30 10:00   ` Tomáš Golembiovský [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=20181030110028.02aa2ab7@fiorina \
    --to=tgolembi@redhat.com \
    --cc=eblake@redhat.com \
    --cc=marcandre.lureau@redhat.com \
    --cc=mdroth@linux.vnet.ibm.com \
    --cc=okrishtal@virtuozzo.com \
    --cc=qemu-devel@nongnu.org \
    --cc=sjubran@redhat.com \
    /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).