* [Qemu-devel] [PATCH] configure: Rename CONFIG_QGA_NTDDDISK into CONFIG_QGA_NTDDSCSI
@ 2016-06-10 15:25 Thomas Huth
2016-06-10 17:47 ` Michael Roth
2016-06-30 19:04 ` Michael Roth
0 siblings, 2 replies; 4+ messages in thread
From: Thomas Huth @ 2016-06-10 15:25 UTC (permalink / raw)
To: qemu-devel; +Cc: Michael Roth, qemu-trivial
There is no CONFIG_QGA_NTDDDISK define used anywhere in the QEMU
sources. Looking at the changelog and qga/commands-win32.c, it
seems like this should be called CONFIG_QGA_NTDDSCSI instead.
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
configure | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure b/configure
index 8c2f90b..55019d6 100755
--- a/configure
+++ b/configure
@@ -4965,7 +4965,7 @@ if test "$mingw32" = "yes" ; then
echo "WIN_SDK=\"$win_sdk\"" >> $config_host_mak
fi
if test "$guest_agent_ntddscsi" = "yes" ; then
- echo "CONFIG_QGA_NTDDDISK=y" >> $config_host_mak
+ echo "CONFIG_QGA_NTDDSCSI=y" >> $config_host_mak
fi
if test "$guest_agent_msi" = "yes"; then
echo "QEMU_GA_MSI_ENABLED=yes" >> $config_host_mak
--
1.8.3.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] configure: Rename CONFIG_QGA_NTDDDISK into CONFIG_QGA_NTDDSCSI
2016-06-10 15:25 [Qemu-devel] [PATCH] configure: Rename CONFIG_QGA_NTDDDISK into CONFIG_QGA_NTDDSCSI Thomas Huth
@ 2016-06-10 17:47 ` Michael Roth
2016-06-30 19:04 ` Michael Roth
1 sibling, 0 replies; 4+ messages in thread
From: Michael Roth @ 2016-06-10 17:47 UTC (permalink / raw)
To: Thomas Huth, qemu-devel; +Cc: qemu-trivial, qemu-stable
Quoting Thomas Huth (2016-06-10 10:25:54)
> There is no CONFIG_QGA_NTDDDISK define used anywhere in the QEMU
> sources. Looking at the changelog and qga/commands-win32.c, it
> seems like this should be called CONFIG_QGA_NTDDSCSI instead.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>
Yikes, this does appear to be the case. Need to recheck the original
functionality since apparently it's been disabled ever since I added
this patch to the original series, but can take this in through my
tree.
Cc'ing qemu-stable
> ---
> configure | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/configure b/configure
> index 8c2f90b..55019d6 100755
> --- a/configure
> +++ b/configure
> @@ -4965,7 +4965,7 @@ if test "$mingw32" = "yes" ; then
> echo "WIN_SDK=\"$win_sdk\"" >> $config_host_mak
> fi
> if test "$guest_agent_ntddscsi" = "yes" ; then
> - echo "CONFIG_QGA_NTDDDISK=y" >> $config_host_mak
> + echo "CONFIG_QGA_NTDDSCSI=y" >> $config_host_mak
> fi
> if test "$guest_agent_msi" = "yes"; then
> echo "QEMU_GA_MSI_ENABLED=yes" >> $config_host_mak
> --
> 1.8.3.1
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] configure: Rename CONFIG_QGA_NTDDDISK into CONFIG_QGA_NTDDSCSI
2016-06-10 15:25 [Qemu-devel] [PATCH] configure: Rename CONFIG_QGA_NTDDDISK into CONFIG_QGA_NTDDSCSI Thomas Huth
2016-06-10 17:47 ` Michael Roth
@ 2016-06-30 19:04 ` Michael Roth
2016-07-21 23:19 ` [Qemu-devel] [Qemu-trivial] " Michael Roth
1 sibling, 1 reply; 4+ messages in thread
From: Michael Roth @ 2016-06-30 19:04 UTC (permalink / raw)
To: Thomas Huth, qemu-devel; +Cc: qemu-trivial
Quoting Thomas Huth (2016-06-10 10:25:54)
> There is no CONFIG_QGA_NTDDDISK define used anywhere in the QEMU
> sources. Looking at the changelog and qga/commands-win32.c, it
> seems like this should be called CONFIG_QGA_NTDDSCSI instead.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>
Thanks, applied to qga tree:
https://github.com/mdroth/qemu/commits/qga
Although this did indeed uncover a bug in guest-get-fsinfo.
Should have a fix soon, but will want that in place before
I send a pull.
> ---
> configure | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/configure b/configure
> index 8c2f90b..55019d6 100755
> --- a/configure
> +++ b/configure
> @@ -4965,7 +4965,7 @@ if test "$mingw32" = "yes" ; then
> echo "WIN_SDK=\"$win_sdk\"" >> $config_host_mak
> fi
> if test "$guest_agent_ntddscsi" = "yes" ; then
> - echo "CONFIG_QGA_NTDDDISK=y" >> $config_host_mak
> + echo "CONFIG_QGA_NTDDSCSI=y" >> $config_host_mak
> fi
> if test "$guest_agent_msi" = "yes"; then
> echo "QEMU_GA_MSI_ENABLED=yes" >> $config_host_mak
> --
> 1.8.3.1
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [Qemu-trivial] [PATCH] configure: Rename CONFIG_QGA_NTDDDISK into CONFIG_QGA_NTDDSCSI
2016-06-30 19:04 ` Michael Roth
@ 2016-07-21 23:19 ` Michael Roth
0 siblings, 0 replies; 4+ messages in thread
From: Michael Roth @ 2016-07-21 23:19 UTC (permalink / raw)
To: Thomas Huth, qemu-devel; +Cc: qemu-trivial
Quoting Michael Roth (2016-06-30 14:04:15)
> Quoting Thomas Huth (2016-06-10 10:25:54)
> > There is no CONFIG_QGA_NTDDDISK define used anywhere in the QEMU
> > sources. Looking at the changelog and qga/commands-win32.c, it
> > seems like this should be called CONFIG_QGA_NTDDSCSI instead.
> >
> > Signed-off-by: Thomas Huth <thuth@redhat.com>
>
> Thanks, applied to qga tree:
> https://github.com/mdroth/qemu/commits/qga
>
> Although this did indeed uncover a bug in guest-get-fsinfo.
> Should have a fix soon, but will want that in place before
> I send a pull.
So, that fix turned into a fairly heavy rework of how we map
PCI devices to filesystems in the current w32 implementation
of guest-get-fsinfo and I still don't quite have it working.
It probably won't make 2.7 at this point.
Unfortunately, as things stand, enabling the disk info
support on w32 via your patch causes the entire command to
fail, which would be a regression from the current support
level.
So for now I think the most expedient thing to do would be
to hold off on this patch till 2.8, at which point we can
apply it along with the disk info fixes I'm working on.
>
> > ---
> > configure | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/configure b/configure
> > index 8c2f90b..55019d6 100755
> > --- a/configure
> > +++ b/configure
> > @@ -4965,7 +4965,7 @@ if test "$mingw32" = "yes" ; then
> > echo "WIN_SDK=\"$win_sdk\"" >> $config_host_mak
> > fi
> > if test "$guest_agent_ntddscsi" = "yes" ; then
> > - echo "CONFIG_QGA_NTDDDISK=y" >> $config_host_mak
> > + echo "CONFIG_QGA_NTDDSCSI=y" >> $config_host_mak
> > fi
> > if test "$guest_agent_msi" = "yes"; then
> > echo "QEMU_GA_MSI_ENABLED=yes" >> $config_host_mak
> > --
> > 1.8.3.1
> >
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-07-21 23:19 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-10 15:25 [Qemu-devel] [PATCH] configure: Rename CONFIG_QGA_NTDDDISK into CONFIG_QGA_NTDDSCSI Thomas Huth
2016-06-10 17:47 ` Michael Roth
2016-06-30 19:04 ` Michael Roth
2016-07-21 23:19 ` [Qemu-devel] [Qemu-trivial] " Michael Roth
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).