* [Qemu-trivial] [PATCH 0/5] Trivial fixes and cleanups
@ 2017-07-27 12:02 Cleber Rosa
2017-07-27 12:02 ` [Qemu-trivial] [PATCH 1/5] configure: remove duplicate single quotes on config.log header Cleber Rosa
` (5 more replies)
0 siblings, 6 replies; 14+ messages in thread
From: Cleber Rosa @ 2017-07-27 12:02 UTC (permalink / raw)
To: qemu-devel; +Cc: qemu-trivial
This is a collection of trivial fixes and cleanups. The only expected
behavior change is in the output on config.log, as per the first
patch.
Cleber Rosa(5):
configure: remove duplicate single quotes on config.log
qemu-iotests: get rid of _full_imgproto_details()
qemu-iotests: remove commented out variables
qemu-iotests: remove comment about root privileges
docs: fix broken paths to docs/interop dir
configure | 4 +---
docs/devel/writing-qmp-commands.txt | 2 +-
qapi-schema.json | 2 +-
tests/qemu-iotests/check | 13 +------------
tests/qemu-iotests/common.rc | 5 -----
5 files changed, 4 insertions(+), 22 deletions(-)
^ permalink raw reply [flat|nested] 14+ messages in thread
* [Qemu-trivial] [PATCH 1/5] configure: remove duplicate single quotes on config.log header
2017-07-27 12:02 [Qemu-trivial] [PATCH 0/5] Trivial fixes and cleanups Cleber Rosa
@ 2017-07-27 12:02 ` Cleber Rosa
2017-07-27 12:15 ` [Qemu-trivial] [Qemu-devel] " Peter Maydell
2017-07-27 12:02 ` [Qemu-trivial] [PATCH 2/5] qemu-iotests: get rid of _full_imgproto_details() Cleber Rosa
` (4 subsequent siblings)
5 siblings, 1 reply; 14+ messages in thread
From: Cleber Rosa @ 2017-07-27 12:02 UTC (permalink / raw)
To: qemu-devel; +Cc: qemu-trivial, Cleber Rosa
The generation of the informational header on config.log contains two
pairs of single quotes, which seems unintentional, and looks like
this:
# QEMU configure log Thu Jul 26 08:17:15 EDT 2017
# Configured with: './configure' '--target-list=x86_64-softmmu'
With this change, the quotes comprehend the entire command line:
# QEMU configure log Mon Jul 26 08:17:35 EDT 2017
# Configured with: './configure --target-list=x86_64-softmmu'
Signed-off-by: Cleber Rosa <crosa@redhat.com>
---
configure | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/configure b/configure
index 987f59b..344d6d2 100755
--- a/configure
+++ b/configure
@@ -35,9 +35,7 @@ rm -f config.log
# Print a helpful header at the top of config.log
echo "# QEMU configure log $(date)" >> config.log
-printf "# Configured with:" >> config.log
-printf " '%s'" "$0" "$@" >> config.log
-echo >> config.log
+echo "# Configured with: '$0 $@'" >> config.log
echo "#" >> config.log
print_error() {
--
2.9.4
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [Qemu-trivial] [PATCH 2/5] qemu-iotests: get rid of _full_imgproto_details()
2017-07-27 12:02 [Qemu-trivial] [PATCH 0/5] Trivial fixes and cleanups Cleber Rosa
2017-07-27 12:02 ` [Qemu-trivial] [PATCH 1/5] configure: remove duplicate single quotes on config.log header Cleber Rosa
@ 2017-07-27 12:02 ` Cleber Rosa
2017-07-27 12:02 ` [Qemu-trivial] [PATCH 3/5] qemu-iotests: remove commented out variables Cleber Rosa
` (3 subsequent siblings)
5 siblings, 0 replies; 14+ messages in thread
From: Cleber Rosa @ 2017-07-27 12:02 UTC (permalink / raw)
To: qemu-devel; +Cc: qemu-trivial, Cleber Rosa
Although this function is used, its implementation does nothing
besides echoing a variable name. There's no need to wrap this
functionality in a function, and based on the one usage it has, it's
not even required to adhere to a convention or code style.
Signed-off-by: Cleber Rosa <crosa@redhat.com>
---
tests/qemu-iotests/check | 3 +--
tests/qemu-iotests/common.rc | 5 -----
2 files changed, 1 insertion(+), 7 deletions(-)
diff --git a/tests/qemu-iotests/check b/tests/qemu-iotests/check
index 2a55ec9..7a2e0d0 100755
--- a/tests/qemu-iotests/check
+++ b/tests/qemu-iotests/check
@@ -228,7 +228,6 @@ rm -f check.full
[ -f $TIMESTAMP_FILE ] || touch $TIMESTAMP_FILE
FULL_IMGFMT_DETAILS=`_full_imgfmt_details`
-FULL_IMGPROTO_DETAILS=`_full_imgproto_details`
FULL_HOST_DETAILS=`_full_platform_details`
#FULL_MKFS_OPTIONS=`_scratch_mkfs_options`
#FULL_MOUNT_OPTIONS=`_scratch_mount_options`
@@ -239,7 +238,7 @@ QEMU_IMG -- "$QEMU_IMG_PROG" $QEMU_IMG_OPTIONS
QEMU_IO -- "$QEMU_IO_PROG" $QEMU_IO_OPTIONS
QEMU_NBD -- "$QEMU_NBD_PROG" $QEMU_NBD_OPTIONS
IMGFMT -- $FULL_IMGFMT_DETAILS
-IMGPROTO -- $FULL_IMGPROTO_DETAILS
+IMGPROTO -- $IMGPROTO
PLATFORM -- $FULL_HOST_DETAILS
TEST_DIR -- $TEST_DIR
SOCKET_SCM_HELPER -- $SOCKET_SCM_HELPER
diff --git a/tests/qemu-iotests/common.rc b/tests/qemu-iotests/common.rc
index 2548e58..e4d30ad 100644
--- a/tests/qemu-iotests/common.rc
+++ b/tests/qemu-iotests/common.rc
@@ -479,11 +479,6 @@ _full_imgfmt_details()
fi
}
-_full_imgproto_details()
-{
- echo "$IMGPROTO"
-}
-
_full_platform_details()
{
os=`uname -s`
--
2.9.4
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [Qemu-trivial] [PATCH 3/5] qemu-iotests: remove commented out variables
2017-07-27 12:02 [Qemu-trivial] [PATCH 0/5] Trivial fixes and cleanups Cleber Rosa
2017-07-27 12:02 ` [Qemu-trivial] [PATCH 1/5] configure: remove duplicate single quotes on config.log header Cleber Rosa
2017-07-27 12:02 ` [Qemu-trivial] [PATCH 2/5] qemu-iotests: get rid of _full_imgproto_details() Cleber Rosa
@ 2017-07-27 12:02 ` Cleber Rosa
2017-07-28 12:15 ` [Qemu-trivial] [Qemu-devel] " Stefan Hajnoczi
2017-07-27 12:02 ` [Qemu-trivial] [PATCH 4/5] qemu-iotests: remove comment about root privileges requirement Cleber Rosa
` (2 subsequent siblings)
5 siblings, 1 reply; 14+ messages in thread
From: Cleber Rosa @ 2017-07-27 12:02 UTC (permalink / raw)
To: qemu-devel; +Cc: qemu-trivial, Cleber Rosa
The variables FULL_MKFS_OPTIONS and FULL_MOUNT_OPTIONS are commented
out, never used, and even refer to functions that do exist. The last
time these were touched was around 8 years ago, so I guess it's safe
to assume outputting such information on test execution is still on the
radar.
Signed-off-by: Cleber Rosa <crosa@redhat.com>
---
tests/qemu-iotests/check | 4 ----
1 file changed, 4 deletions(-)
diff --git a/tests/qemu-iotests/check b/tests/qemu-iotests/check
index 7a2e0d0..437ef65 100755
--- a/tests/qemu-iotests/check
+++ b/tests/qemu-iotests/check
@@ -229,8 +229,6 @@ rm -f check.full
FULL_IMGFMT_DETAILS=`_full_imgfmt_details`
FULL_HOST_DETAILS=`_full_platform_details`
-#FULL_MKFS_OPTIONS=`_scratch_mkfs_options`
-#FULL_MOUNT_OPTIONS=`_scratch_mount_options`
cat <<EOF
QEMU -- "$QEMU_PROG" $QEMU_OPTIONS
@@ -244,8 +242,6 @@ TEST_DIR -- $TEST_DIR
SOCKET_SCM_HELPER -- $SOCKET_SCM_HELPER
EOF
-#MKFS_OPTIONS -- $FULL_MKFS_OPTIONS
-#MOUNT_OPTIONS -- $FULL_MOUNT_OPTIONS
seq="check"
--
2.9.4
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [Qemu-trivial] [PATCH 4/5] qemu-iotests: remove comment about root privileges requirement
2017-07-27 12:02 [Qemu-trivial] [PATCH 0/5] Trivial fixes and cleanups Cleber Rosa
` (2 preceding siblings ...)
2017-07-27 12:02 ` [Qemu-trivial] [PATCH 3/5] qemu-iotests: remove commented out variables Cleber Rosa
@ 2017-07-27 12:02 ` Cleber Rosa
2017-07-28 12:16 ` [Qemu-trivial] [Qemu-devel] " Stefan Hajnoczi
2017-07-27 12:02 ` [Qemu-trivial] [PATCH 5/5] docs: fix broken paths to docs/interop dir Cleber Rosa
2017-07-28 12:18 ` [Qemu-trivial] [Qemu-devel] [PATCH 0/5] Trivial fixes and cleanups Stefan Hajnoczi
5 siblings, 1 reply; 14+ messages in thread
From: Cleber Rosa @ 2017-07-27 12:02 UTC (permalink / raw)
To: qemu-devel; +Cc: qemu-trivial, Cleber Rosa
The check script contains a commented out root user requirement,
probably because of its xfstests heritage. This requirement doesn't
apply to qemu-iotests, so it better be gone.
Signed-off-by: Cleber Rosa <crosa@redhat.com>
---
tests/qemu-iotests/check | 6 ------
1 file changed, 6 deletions(-)
diff --git a/tests/qemu-iotests/check b/tests/qemu-iotests/check
index 437ef65..d504b6e 100755
--- a/tests/qemu-iotests/check
+++ b/tests/qemu-iotests/check
@@ -123,12 +123,6 @@ fi
# we need common
. "$source_iotests/common"
-#if [ `id -u` -ne 0 ]
-#then
-# echo "check: QA must be run as root"
-# exit 1
-#fi
-
TIMESTAMP_FILE=check.time-$IMGPROTO-$IMGFMT
tmp="${TEST_DIR}"/$$
--
2.9.4
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [Qemu-trivial] [PATCH 5/5] docs: fix broken paths to docs/interop dir
2017-07-27 12:02 [Qemu-trivial] [PATCH 0/5] Trivial fixes and cleanups Cleber Rosa
` (3 preceding siblings ...)
2017-07-27 12:02 ` [Qemu-trivial] [PATCH 4/5] qemu-iotests: remove comment about root privileges requirement Cleber Rosa
@ 2017-07-27 12:02 ` Cleber Rosa
2017-07-27 12:22 ` [Qemu-trivial] [Qemu-devel] " Eric Blake
2017-07-28 12:17 ` Stefan Hajnoczi
2017-07-28 12:18 ` [Qemu-trivial] [Qemu-devel] [PATCH 0/5] Trivial fixes and cleanups Stefan Hajnoczi
5 siblings, 2 replies; 14+ messages in thread
From: Cleber Rosa @ 2017-07-27 12:02 UTC (permalink / raw)
To: qemu-devel; +Cc: qemu-trivial, Cleber Rosa
With the move of some docs to docs/interop on d59157e, a couple of
references where not updated.
Signed-off-by: Cleber Rosa <crosa@redhat.com>
---
docs/devel/writing-qmp-commands.txt | 2 +-
qapi-schema.json | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/devel/writing-qmp-commands.txt b/docs/devel/writing-qmp-commands.txt
index 1e63754..69793e3 100644
--- a/docs/devel/writing-qmp-commands.txt
+++ b/docs/devel/writing-qmp-commands.txt
@@ -8,7 +8,7 @@ into the QAPI framework implementation.
For an in-depth introduction to the QAPI framework, please refer to
docs/qapi-code-gen.txt. For documentation about the QMP protocol,
-start with docs/qmp-intro.txt.
+start with docs/interop/qmp-intro.txt.
== Overview ==
diff --git a/qapi-schema.json b/qapi-schema.json
index 9c6c3e1..37f1e6e 100644
--- a/qapi-schema.json
+++ b/qapi-schema.json
@@ -23,7 +23,7 @@
# | -> data issued by the Client
# | <- Server data response
#
-# Please, refer to the QMP specification (docs/qmp-spec.txt) for
+# Please, refer to the QMP specification (docs/interop/qmp-spec.txt) for
# detailed information on the Server command and response formats.
#
# = Stability Considerations
--
2.9.4
^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [Qemu-trivial] [Qemu-devel] [PATCH 1/5] configure: remove duplicate single quotes on config.log header
2017-07-27 12:02 ` [Qemu-trivial] [PATCH 1/5] configure: remove duplicate single quotes on config.log header Cleber Rosa
@ 2017-07-27 12:15 ` Peter Maydell
2017-07-27 12:24 ` Eric Blake
0 siblings, 1 reply; 14+ messages in thread
From: Peter Maydell @ 2017-07-27 12:15 UTC (permalink / raw)
To: Cleber Rosa; +Cc: QEMU Developers, QEMU Trivial
On 27 July 2017 at 13:02, Cleber Rosa <crosa@redhat.com> wrote:
> The generation of the informational header on config.log contains two
> pairs of single quotes, which seems unintentional, and looks like
> this:
>
> # QEMU configure log Thu Jul 26 08:17:15 EDT 2017
> # Configured with: './configure' '--target-list=x86_64-softmmu'
I think this is deliberate. The idea is that the string is a
validly shell-quoted string that you can cut and paste
into a shell prompt if you want to. (This is less important
than it used to be now we have config.status.)
If your configure command has more than one line you get
something like this:
# Configured with: '../../configure'
'--target-list=arm-softmmu,aarch64-softmmu,arm-linux-user,aarch64-linux-user'
'--enable-debug' '--cc=ccache gcc' '--audio-drv-list=pa'
...and note in particular how the '--cc=ccache gcc' argument
is printed. Your change would give
# Configured with: '../../configure
--target-list=arm-softmmu,aarch64-softmmu,arm-linux-user,aarch64-linux-user
--enable-debug --cc=ccache gcc --audio-drv-list=pa'
which can't be cut and pasted, and is ambiguous.
thanks
-- PMM
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Qemu-trivial] [Qemu-devel] [PATCH 5/5] docs: fix broken paths to docs/interop dir
2017-07-27 12:02 ` [Qemu-trivial] [PATCH 5/5] docs: fix broken paths to docs/interop dir Cleber Rosa
@ 2017-07-27 12:22 ` Eric Blake
2017-07-28 12:17 ` Stefan Hajnoczi
1 sibling, 0 replies; 14+ messages in thread
From: Eric Blake @ 2017-07-27 12:22 UTC (permalink / raw)
To: Cleber Rosa, qemu-devel; +Cc: qemu-trivial
[-- Attachment #1.1: Type: text/plain, Size: 585 bytes --]
On 07/27/2017 07:02 AM, Cleber Rosa wrote:
> With the move of some docs to docs/interop on d59157e, a couple of
> references where not updated.
>
> Signed-off-by: Cleber Rosa <crosa@redhat.com>
> ---
> docs/devel/writing-qmp-commands.txt | 2 +-
> qapi-schema.json | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
Reviewed-by: Eric Blake <eblake@redhat.com>
Safe for 2.10, but also okay if it slips to 2.11
--
Eric Blake, Principal Software Engineer
Red Hat, Inc. +1-919-301-3266
Virtualization: qemu.org | libvirt.org
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 619 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Qemu-trivial] [Qemu-devel] [PATCH 1/5] configure: remove duplicate single quotes on config.log header
2017-07-27 12:15 ` [Qemu-trivial] [Qemu-devel] " Peter Maydell
@ 2017-07-27 12:24 ` Eric Blake
2017-07-27 13:47 ` Cleber Rosa
0 siblings, 1 reply; 14+ messages in thread
From: Eric Blake @ 2017-07-27 12:24 UTC (permalink / raw)
To: Peter Maydell, Cleber Rosa; +Cc: QEMU Trivial, QEMU Developers
[-- Attachment #1.1: Type: text/plain, Size: 1104 bytes --]
On 07/27/2017 07:15 AM, Peter Maydell wrote:
> On 27 July 2017 at 13:02, Cleber Rosa <crosa@redhat.com> wrote:
>> The generation of the informational header on config.log contains two
>> pairs of single quotes, which seems unintentional, and looks like
>> this:
>>
>> # QEMU configure log Thu Jul 26 08:17:15 EDT 2017
>> # Configured with: './configure' '--target-list=x86_64-softmmu'
>
> I think this is deliberate. The idea is that the string is a
> validly shell-quoted string that you can cut and paste
> into a shell prompt if you want to.
It IS deliberate. If you want, you could improve the code to only emit
'' around arguments that require it rather than all arguments, but that
requires more shell code (it's easier to quote everywhere, even when it
looks strange because the quotes weren't necessary).
> ...and note in particular how the '--cc=ccache gcc' argument
> is printed.
Yes, that's a case where the quotes are necessary.
--
Eric Blake, Principal Software Engineer
Red Hat, Inc. +1-919-301-3266
Virtualization: qemu.org | libvirt.org
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 619 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Qemu-trivial] [Qemu-devel] [PATCH 1/5] configure: remove duplicate single quotes on config.log header
2017-07-27 12:24 ` Eric Blake
@ 2017-07-27 13:47 ` Cleber Rosa
0 siblings, 0 replies; 14+ messages in thread
From: Cleber Rosa @ 2017-07-27 13:47 UTC (permalink / raw)
To: Eric Blake, Peter Maydell; +Cc: QEMU Trivial, QEMU Developers
[-- Attachment #1.1: Type: text/plain, Size: 1302 bytes --]
On 07/27/2017 08:24 AM, Eric Blake wrote:
> On 07/27/2017 07:15 AM, Peter Maydell wrote:
>> On 27 July 2017 at 13:02, Cleber Rosa <crosa@redhat.com> wrote:
>>> The generation of the informational header on config.log contains two
>>> pairs of single quotes, which seems unintentional, and looks like
>>> this:
>>>
>>> # QEMU configure log Thu Jul 26 08:17:15 EDT 2017
>>> # Configured with: './configure' '--target-list=x86_64-softmmu'
>>
>> I think this is deliberate. The idea is that the string is a
>> validly shell-quoted string that you can cut and paste
>> into a shell prompt if you want to.
>
> It IS deliberate. If you want, you could improve the code to only emit
> '' around arguments that require it rather than all arguments, but that
> requires more shell code (it's easier to quote everywhere, even when it
> looks strange because the quotes weren't necessary).
>
>> ...and note in particular how the '--cc=ccache gcc' argument
>> is printed.
>
> Yes, that's a case where the quotes are necessary.
>
Right, now I can see why. Thanks for the review!
--
Cleber Rosa
[ Sr Software Engineer - Virtualization Team - Red Hat ]
[ Avocado Test Framework - avocado-framework.github.io ]
[ 7ABB 96EB 8B46 B94D 5E0F E9BB 657E 8D33 A5F2 09F3 ]
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Qemu-trivial] [Qemu-devel] [PATCH 3/5] qemu-iotests: remove commented out variables
2017-07-27 12:02 ` [Qemu-trivial] [PATCH 3/5] qemu-iotests: remove commented out variables Cleber Rosa
@ 2017-07-28 12:15 ` Stefan Hajnoczi
0 siblings, 0 replies; 14+ messages in thread
From: Stefan Hajnoczi @ 2017-07-28 12:15 UTC (permalink / raw)
To: Cleber Rosa; +Cc: qemu-devel, qemu-trivial
[-- Attachment #1: Type: text/plain, Size: 551 bytes --]
On Thu, Jul 27, 2017 at 08:02:08AM -0400, Cleber Rosa wrote:
> The variables FULL_MKFS_OPTIONS and FULL_MOUNT_OPTIONS are commented
> out, never used, and even refer to functions that do exist. The last
> time these were touched was around 8 years ago, so I guess it's safe
> to assume outputting such information on test execution is still on the
> radar.
>
> Signed-off-by: Cleber Rosa <crosa@redhat.com>
> ---
> tests/qemu-iotests/check | 4 ----
> 1 file changed, 4 deletions(-)
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Qemu-trivial] [Qemu-devel] [PATCH 4/5] qemu-iotests: remove comment about root privileges requirement
2017-07-27 12:02 ` [Qemu-trivial] [PATCH 4/5] qemu-iotests: remove comment about root privileges requirement Cleber Rosa
@ 2017-07-28 12:16 ` Stefan Hajnoczi
0 siblings, 0 replies; 14+ messages in thread
From: Stefan Hajnoczi @ 2017-07-28 12:16 UTC (permalink / raw)
To: Cleber Rosa; +Cc: qemu-devel, qemu-trivial
[-- Attachment #1: Type: text/plain, Size: 439 bytes --]
On Thu, Jul 27, 2017 at 08:02:09AM -0400, Cleber Rosa wrote:
> The check script contains a commented out root user requirement,
> probably because of its xfstests heritage. This requirement doesn't
> apply to qemu-iotests, so it better be gone.
>
> Signed-off-by: Cleber Rosa <crosa@redhat.com>
> ---
> tests/qemu-iotests/check | 6 ------
> 1 file changed, 6 deletions(-)
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Qemu-trivial] [Qemu-devel] [PATCH 5/5] docs: fix broken paths to docs/interop dir
2017-07-27 12:02 ` [Qemu-trivial] [PATCH 5/5] docs: fix broken paths to docs/interop dir Cleber Rosa
2017-07-27 12:22 ` [Qemu-trivial] [Qemu-devel] " Eric Blake
@ 2017-07-28 12:17 ` Stefan Hajnoczi
1 sibling, 0 replies; 14+ messages in thread
From: Stefan Hajnoczi @ 2017-07-28 12:17 UTC (permalink / raw)
To: Cleber Rosa; +Cc: qemu-devel, qemu-trivial
[-- Attachment #1: Type: text/plain, Size: 426 bytes --]
On Thu, Jul 27, 2017 at 08:02:10AM -0400, Cleber Rosa wrote:
> With the move of some docs to docs/interop on d59157e, a couple of
> references where not updated.
>
> Signed-off-by: Cleber Rosa <crosa@redhat.com>
> ---
> docs/devel/writing-qmp-commands.txt | 2 +-
> qapi-schema.json | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Qemu-trivial] [Qemu-devel] [PATCH 0/5] Trivial fixes and cleanups
2017-07-27 12:02 [Qemu-trivial] [PATCH 0/5] Trivial fixes and cleanups Cleber Rosa
` (4 preceding siblings ...)
2017-07-27 12:02 ` [Qemu-trivial] [PATCH 5/5] docs: fix broken paths to docs/interop dir Cleber Rosa
@ 2017-07-28 12:18 ` Stefan Hajnoczi
5 siblings, 0 replies; 14+ messages in thread
From: Stefan Hajnoczi @ 2017-07-28 12:18 UTC (permalink / raw)
To: Cleber Rosa; +Cc: qemu-devel, qemu-trivial, Kevin Wolf
[-- Attachment #1: Type: text/plain, Size: 867 bytes --]
On Thu, Jul 27, 2017 at 08:02:05AM -0400, Cleber Rosa wrote:
> This is a collection of trivial fixes and cleanups. The only expected
> behavior change is in the output on config.log, as per the first
> patch.
>
> Cleber Rosa(5):
> configure: remove duplicate single quotes on config.log
> qemu-iotests: get rid of _full_imgproto_details()
> qemu-iotests: remove commented out variables
> qemu-iotests: remove comment about root privileges
> docs: fix broken paths to docs/interop dir
>
> configure | 4 +---
> docs/devel/writing-qmp-commands.txt | 2 +-
> qapi-schema.json | 2 +-
> tests/qemu-iotests/check | 13 +------------
> tests/qemu-iotests/common.rc | 5 -----
> 5 files changed, 4 insertions(+), 22 deletions(-)
CCing Kevin Wolf for qemu-iotests changes.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2017-07-28 13:30 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-27 12:02 [Qemu-trivial] [PATCH 0/5] Trivial fixes and cleanups Cleber Rosa
2017-07-27 12:02 ` [Qemu-trivial] [PATCH 1/5] configure: remove duplicate single quotes on config.log header Cleber Rosa
2017-07-27 12:15 ` [Qemu-trivial] [Qemu-devel] " Peter Maydell
2017-07-27 12:24 ` Eric Blake
2017-07-27 13:47 ` Cleber Rosa
2017-07-27 12:02 ` [Qemu-trivial] [PATCH 2/5] qemu-iotests: get rid of _full_imgproto_details() Cleber Rosa
2017-07-27 12:02 ` [Qemu-trivial] [PATCH 3/5] qemu-iotests: remove commented out variables Cleber Rosa
2017-07-28 12:15 ` [Qemu-trivial] [Qemu-devel] " Stefan Hajnoczi
2017-07-27 12:02 ` [Qemu-trivial] [PATCH 4/5] qemu-iotests: remove comment about root privileges requirement Cleber Rosa
2017-07-28 12:16 ` [Qemu-trivial] [Qemu-devel] " Stefan Hajnoczi
2017-07-27 12:02 ` [Qemu-trivial] [PATCH 5/5] docs: fix broken paths to docs/interop dir Cleber Rosa
2017-07-27 12:22 ` [Qemu-trivial] [Qemu-devel] " Eric Blake
2017-07-28 12:17 ` Stefan Hajnoczi
2017-07-28 12:18 ` [Qemu-trivial] [Qemu-devel] [PATCH 0/5] Trivial fixes and cleanups Stefan Hajnoczi
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).