mbox

[PULL,00/13] Deprecation, qtests and some trivial doc updates

Message ID 1537891427-24148-1-git-send-email-thuth@redhat.com
State New
Headers show

Pull-request

https://gitlab.com/huth/qemu.git tags/pull-request-2018-09-25

Message

Thomas Huth Sept. 25, 2018, 4:03 p.m. UTC
Hi Peter,

the following changes since commit 71fbecea0f725bc16aec32cf89cbf3aa78058826:

  Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20180925-1' into staging (2018-09-25 15:24:04 +0100)

are available in the git repository at:

  https://gitlab.com/huth/qemu.git tags/pull-request-2018-09-25

for you to fetch changes up to deead96db50524cd5e90a515d151cc58abf5c109:

  Revert "check: Move VMXNET3 test to common" (2018-09-25 17:26:18 +0200)

----------------------------------------------------------------
- Deprecate the usage of a network backend via "name" instead of "id"
- Deprecate the "enforce-config-section" machine parameter
- Re-enable the wdt_ib700, endianness and vmxnet3 qtests
- Some trivial fixes and doc update patches that crossed my way
----------------------------------------------------------------

Dima Stepanov (1):
      memfd: fix possible usage of the uninitialized file descriptor

Li Qiang (1):
      qdev: fix a typo in comment

Stefan Weil (1):
      docs: Fix some typos (most found by codespell)

Thomas Huth (10):
      Makefile: Add missing dependency for qemu-deprecated.texi
      net: Deprecate the "name" parameter of -net
      net/slirp: Deprecate the [hub_id name] parameter tuple
      hw/core/machine: Officially deprecate the enforce-config-section parameter
      trivial: Make bios files and source files non-executable
      hw/qdev-core: Fix description of instance_init
      tests/migration: Speed up the test on ppc64
      Revert "check: Move wdt_ib700 test to common"
      Revert "check: Move endianess test to common"
      Revert "check: Move VMXNET3 test to common"

 Makefile                           |   2 +-
 block/blkreplay.c                  |   0
 docs/COLO-FT.txt                   |   2 +-
 docs/interop/vhost-user.txt        |   4 ++--
 docs/replay.txt                    |   2 +-
 hw/core/machine.c                  |   3 +++
 hw/core/qdev.c                     |   2 +-
 include/hw/qdev-core.h             |   5 +++--
 net/net.c                          |   4 ++++
 net/slirp.c                        |   2 ++
 pc-bios/hppa-firmware.img          | Bin
 pc-bios/palcode-clipper            | Bin
 pc-bios/u-boot-sam460-20100605.bin | Bin
 pc-bios/u-boot.e500                | Bin
 qemu-deprecated.texi               |  17 +++++++++++++++++
 replay/replay-char.c               |   0
 tests/Makefile.include             |  22 +++++++++++++++++-----
 tests/migration-test.c             |   6 +++---
 util/memfd.c                       |   1 +
 19 files changed, 56 insertions(+), 16 deletions(-)
 mode change 100755 => 100644 block/blkreplay.c
 mode change 100755 => 100644 pc-bios/hppa-firmware.img
 mode change 100755 => 100644 pc-bios/palcode-clipper
 mode change 100755 => 100644 pc-bios/u-boot-sam460-20100605.bin
 mode change 100755 => 100644 pc-bios/u-boot.e500
 mode change 100755 => 100644 replay/replay-char.c

Comments

Thomas Huth Sept. 25, 2018, 4:03 p.m. UTC | #1
These files can not be executed on the host, so they should not be
marked as executable.

Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 block/blkreplay.c                  |   0
 pc-bios/hppa-firmware.img          | Bin
 pc-bios/palcode-clipper            | Bin
 pc-bios/u-boot-sam460-20100605.bin | Bin
 pc-bios/u-boot.e500                | Bin
 replay/replay-char.c               |   0
 6 files changed, 0 insertions(+), 0 deletions(-)
 mode change 100755 => 100644 block/blkreplay.c
 mode change 100755 => 100644 pc-bios/hppa-firmware.img
 mode change 100755 => 100644 pc-bios/palcode-clipper
 mode change 100755 => 100644 pc-bios/u-boot-sam460-20100605.bin
 mode change 100755 => 100644 pc-bios/u-boot.e500
 mode change 100755 => 100644 replay/replay-char.c

diff --git a/block/blkreplay.c b/block/blkreplay.c
old mode 100755
new mode 100644
diff --git a/pc-bios/hppa-firmware.img b/pc-bios/hppa-firmware.img
old mode 100755
new mode 100644
diff --git a/pc-bios/palcode-clipper b/pc-bios/palcode-clipper
old mode 100755
new mode 100644
diff --git a/pc-bios/u-boot-sam460-20100605.bin b/pc-bios/u-boot-sam460-20100605.bin
old mode 100755
new mode 100644
diff --git a/pc-bios/u-boot.e500 b/pc-bios/u-boot.e500
old mode 100755
new mode 100644
diff --git a/replay/replay-char.c b/replay/replay-char.c
old mode 100755
new mode 100644
Peter Maydell Sept. 27, 2018, 8:48 a.m. UTC | #2
On 25 September 2018 at 17:03, Thomas Huth <thuth@redhat.com> wrote:
>  Hi Peter,
>
> the following changes since commit 71fbecea0f725bc16aec32cf89cbf3aa78058826:
>
>   Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20180925-1' into staging (2018-09-25 15:24:04 +0100)
>
> are available in the git repository at:
>
>   https://gitlab.com/huth/qemu.git tags/pull-request-2018-09-25
>
> for you to fetch changes up to deead96db50524cd5e90a515d151cc58abf5c109:
>
>   Revert "check: Move VMXNET3 test to common" (2018-09-25 17:26:18 +0200)
>
> ----------------------------------------------------------------
> - Deprecate the usage of a network backend via "name" instead of "id"
> - Deprecate the "enforce-config-section" machine parameter
> - Re-enable the wdt_ib700, endianness and vmxnet3 qtests
> - Some trivial fixes and doc update patches that crossed my way
> ----------------------------------------------------------------


Applied, thanks.

-- PMM