qemu-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-commits] [qemu/qemu] 8ff5b3: qapi-schema.json: spelling (independa


From: GitHub
Subject: [Qemu-commits] [qemu/qemu] 8ff5b3: qapi-schema.json: spelling (independant comparatio...
Date: Mon, 12 Feb 2018 06:52:16 -0800

  Branch: refs/heads/master
  Home:   https://github.com/qemu/qemu
  Commit: 8ff5b30b38cae61f7709114307b04bab879f3f04
      
https://github.com/qemu/qemu/commit/8ff5b30b38cae61f7709114307b04bab879f3f04
  Author: Michael Tokarev <address@hidden>
  Date:   2018-02-10 (Sat, 10 Feb 2018)

  Changed paths:
    M qapi-schema.json

  Log Message:
  -----------
  qapi-schema.json: spelling (independant comparation)

Signed-off-by: Michael Tokarev <address@hidden>
Reviewed-by: Eric Blake <address@hidden>


  Commit: 8c2486a5122e50a5f88f2ecb47c5086ad52c716e
      
https://github.com/qemu/qemu/commit/8c2486a5122e50a5f88f2ecb47c5086ad52c716e
  Author: Michael Tokarev <address@hidden>
  Date:   2018-02-10 (Sat, 10 Feb 2018)

  Changed paths:
    M scripts/argparse.py

  Log Message:
  -----------
  scripts/argparse.py: spelling (independant)

Signed-off-by: Michael Tokarev <address@hidden>
Reviewed-by: Eric Blake <address@hidden>


  Commit: e80200c567ceb01a6f133cb0bf4fade09c395251
      
https://github.com/qemu/qemu/commit/e80200c567ceb01a6f133cb0bf4fade09c395251
  Author: Alexey Kardashevskiy <address@hidden>
  Date:   2018-02-10 (Sat, 10 Feb 2018)

  Changed paths:
    M hw/core/machine.c

  Log Message:
  -----------
  machine: Polish -machine xxx,help

The "-machine xxx,help" prints kernel-irqchip possible values as
"OnOffSplit", this adds separators to the printed line.

Also, since only lower case letters are specified in qapi/common.json,
this changes the letter cases too.

Signed-off-by: Alexey Kardashevskiy <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: 38272f2d02fb855a2f76c510d4386f699b88cae5
      
https://github.com/qemu/qemu/commit/38272f2d02fb855a2f76c510d4386f699b88cae5
  Author: Eric Blake <address@hidden>
  Date:   2018-02-10 (Sat, 10 Feb 2018)

  Changed paths:
    M target/i386/hax-windows.h
    M target/i386/hvf/x86_mmu.c

  Log Message:
  -----------
  Drop unneeded system header includes

<memory.h> is a non-standard obsolete header that was long ago
replaced by <string.h>.

<malloc.h> is a non-standard header; it is not obsolete (we must
use it for malloc_trim, for example), but generally should not
be used in files that just need malloc() and friends, where
<stdlib.h> is the standard header.

And since osdep.h already guarantees string.h and stdlib.h, we
can drop these unusual system header includes as redundant
rather than replacing them.

Signed-off-by: Eric Blake <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>
Reviewed-by: Philippe Mathieu-Daudé <address@hidden>
Reviewed-by: Thomas Huth <address@hidden>


  Commit: 57bf554cf4f486d2e89860cf285cc8502ef61d63
      
https://github.com/qemu/qemu/commit/57bf554cf4f486d2e89860cf285cc8502ef61d63
  Author: Daniel P. Berrangé <address@hidden>
  Date:   2018-02-10 (Sat, 10 Feb 2018)

  Changed paths:
    M .mailmap

  Log Message:
  -----------
  mailmap: set preferred spelling for Daniel Berrangé

Signed-off-by: Daniel P. Berrangé <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: 16fdc56a690be9dec55435365a4afbb52befb956
      
https://github.com/qemu/qemu/commit/16fdc56a690be9dec55435365a4afbb52befb956
  Author: Thomas Huth <address@hidden>
  Date:   2018-02-10 (Sat, 10 Feb 2018)

  Changed paths:
    M qemu-options.hx

  Log Message:
  -----------
  qemu-options.hx: Remove confusing spaces in parameter listings

The spaces between the parameters in the chardev and tpmdev sections
are rather confusing than helpful, and prevent that the lists can be
copy-n-pasted easily for real usage. We also don't use such spaces
in other sections in the documentation, e.g. with the -netdev option,
so let's be consistent and remove the spaces in the chardev and tpmdev
sections, too.

Signed-off-by: Thomas Huth <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>
Reviewed-by: Stefan Berger <address@hidden>
Reviewed-by: Paolo Bonzini <address@hidden>


  Commit: d0081e8f260d012d050405d1e549b445948d1451
      
https://github.com/qemu/qemu/commit/d0081e8f260d012d050405d1e549b445948d1451
  Author: Cole Robinson <address@hidden>
  Date:   2018-02-10 (Sat, 10 Feb 2018)

  Changed paths:
    M scripts/make-release

  Log Message:
  -----------
  scripts/make-release: Don't archive .git files

As was last done in 379e21c25, we don't want .git files for
submodules here, which we aren't presently doing for capstone and
keycodemapdb.

Rather than delete the offending files before archiving, ask tar
to --exclude=.git

Signed-off-by: Cole Robinson <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>
Reviewed-by: Thomas Huth <address@hidden>


  Commit: 123ac0bba97597ae79915c4691b95515b60f00e7
      
https://github.com/qemu/qemu/commit/123ac0bba97597ae79915c4691b95515b60f00e7
  Author: Alexey Kardashevskiy <address@hidden>
  Date:   2018-02-10 (Sat, 10 Feb 2018)

  Changed paths:
    M configure

  Log Message:
  -----------
  configure: Allow capstone=git only if git update is not disabled

Even with --disable-git-update, ./configure tries updating the capstone
submodule instead of marking it "no"; this disables capstone submodule
if git update is disabled.

Signed-off-by: Alexey Kardashevskiy <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>
Reviewed-by: Thomas Huth <address@hidden>


  Commit: bff8a0bbe95900b49f3c0113c0b9a330869acaca
      
https://github.com/qemu/qemu/commit/bff8a0bbe95900b49f3c0113c0b9a330869acaca
  Author: Laurent Vivier <address@hidden>
  Date:   2018-02-10 (Sat, 10 Feb 2018)

  Changed paths:
    M scripts/git-submodule.sh

  Log Message:
  -----------
  build: fix typo in error message

Signed-off-by: Laurent Vivier <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>
Reviewed-by: Philippe Mathieu-Daudé <address@hidden>
Fixes: f62bbee55d503f639ee9498878ebf42ff4f4299a


  Commit: a348f64d4652d68212886019ca74825aa1667969
      
https://github.com/qemu/qemu/commit/a348f64d4652d68212886019ca74825aa1667969
  Author: Eric Blake <address@hidden>
  Date:   2018-02-10 (Sat, 10 Feb 2018)

  Changed paths:
    M README

  Log Message:
  -----------
  maint: Mention web site maintenance in README

Now that we have a website that accepts patches on the list, the
main project should make it easier to find information about that
process.

Signed-off-by: Eric Blake <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>
Reviewed-by: Fam Zheng <address@hidden>


  Commit: 9bc5a7193fb422ee53187601eba577ee5d195522
      
https://github.com/qemu/qemu/commit/9bc5a7193fb422ee53187601eba577ee5d195522
  Author: Andreas Gustafsson <address@hidden>
  Date:   2018-02-10 (Sat, 10 Feb 2018)

  Changed paths:
    M configure
    M util/oslib-posix.c

  Log Message:
  -----------
  oslib-posix: check for posix_memalign in configure script

Check for the presence of posix_memalign() in the configure script,
not using "defined(_POSIX_C_SOURCE) && !defined(__sun__)".  This
lets qemu use posix_memalign() on NetBSD versions that have it,
instead of falling back to valloc() which is wasteful when the
required alignment is smaller than a page.

Signed-off-by: Andreas Gustafsson <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>
Reviewed-by: Kamil Rytarowski <address@hidden>
Reviewed-by: Peter Maydell <address@hidden>


  Commit: e5dd987522b6c421e045d0890cbcd2656092cf22
      
https://github.com/qemu/qemu/commit/e5dd987522b6c421e045d0890cbcd2656092cf22
  Author: Thomas Huth <address@hidden>
  Date:   2018-02-10 (Sat, 10 Feb 2018)

  Changed paths:
    M MAINTAINERS

  Log Message:
  -----------
  MAINTAINERS: Add qemu-binfmt-conf.sh script

qemu-binfmt-conf.sh is used for the Linux usermode emulation, so
let's add this file to that section in the MAINTAINERS file.

Signed-off-by: Thomas Huth <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>
Reviewed-by: Laurent Vivier <address@hidden>


  Commit: 01a6df1b689d28341711aefd2406935d783643f7
      
https://github.com/qemu/qemu/commit/01a6df1b689d28341711aefd2406935d783643f7
  Author: Philippe Mathieu-Daudé <address@hidden>
  Date:   2018-02-10 (Sat, 10 Feb 2018)

  Changed paths:
    M qga/commands-posix.c

  Log Message:
  -----------
  qga: use ARRAY_SIZE macro

Applied using the Coccinelle semantic patch scripts/coccinelle/use_osdep.cocci

Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>
Reviewed-by: Marc-André Lureau <address@hidden>


  Commit: 8f801baf3a6835a27ea7d0d807041f8916c60fb5
      
https://github.com/qemu/qemu/commit/8f801baf3a6835a27ea7d0d807041f8916c60fb5
  Author: Philippe Mathieu-Daudé <address@hidden>
  Date:   2018-02-10 (Sat, 10 Feb 2018)

  Changed paths:
    M util/aio-posix.c

  Log Message:
  -----------
  async: use ARRAY_SIZE macro

Applied using the Coccinelle semantic patch scripts/coccinelle/use_osdep.cocci

Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>
Reviewed-by: Marc-André Lureau <address@hidden>


  Commit: f96c18965ced5f5502c9547d12f07a255062e4f1
      
https://github.com/qemu/qemu/commit/f96c18965ced5f5502c9547d12f07a255062e4f1
  Author: Philippe Mathieu-Daudé <address@hidden>
  Date:   2018-02-10 (Sat, 10 Feb 2018)

  Changed paths:
    M tests/test-hbitmap.c

  Log Message:
  -----------
  tests/hbitmap: use ARRAY_SIZE macro

Applied using the Coccinelle semantic patch scripts/coccinelle/use_osdep.cocci

Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>
Reviewed-by: Marc-André Lureau <address@hidden>
Reviewed-by: John Snow <address@hidden>


  Commit: 9a6555e21a80498aeac28d3276bbde61ddb30c05
      
https://github.com/qemu/qemu/commit/9a6555e21a80498aeac28d3276bbde61ddb30c05
  Author: Philippe Mathieu-Daudé <address@hidden>
  Date:   2018-02-10 (Sat, 10 Feb 2018)

  Changed paths:
    M tests/test-qobject-output-visitor.c

  Log Message:
  -----------
  tests/qapi: use QEMU_IS_ALIGNED macro

Applied using the Coccinelle semantic patch scripts/coccinelle/use_osdep.cocci

Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>
Reviewed-by: Marc-André Lureau <address@hidden>


  Commit: d40d74a645feea0ad01482da2358804f6574dce0
      
https://github.com/qemu/qemu/commit/d40d74a645feea0ad01482da2358804f6574dce0
  Author: Philippe Mathieu-Daudé <address@hidden>
  Date:   2018-02-10 (Sat, 10 Feb 2018)

  Changed paths:
    M tests/test-string-output-visitor.c

  Log Message:
  -----------
  tests/qapi: use ARRAY_SIZE macro

Applied using the Coccinelle semantic patch scripts/coccinelle/use_osdep.cocci

Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>
Reviewed-by: Marc-André Lureau <address@hidden>


  Commit: 8e3fb8029efaf220ab48290cdb5151c682227030
      
https://github.com/qemu/qemu/commit/8e3fb8029efaf220ab48290cdb5151c682227030
  Author: Peter Maydell <address@hidden>
  Date:   2018-02-12 (Mon, 12 Feb 2018)

  Changed paths:
    M .mailmap
    M MAINTAINERS
    M README
    M configure
    M hw/core/machine.c
    M qapi-schema.json
    M qemu-options.hx
    M qga/commands-posix.c
    M scripts/argparse.py
    M scripts/git-submodule.sh
    M scripts/make-release
    M target/i386/hax-windows.h
    M target/i386/hvf/x86_mmu.c
    M tests/test-hbitmap.c
    M tests/test-qobject-output-visitor.c
    M tests/test-string-output-visitor.c
    M util/aio-posix.c
    M util/oslib-posix.c

  Log Message:
  -----------
  Merge remote-tracking branch 'remotes/mjt/tags/trivial-patches-fetch' into 
staging

trivial patches for 2018-02-10

# gpg: Signature made Sat 10 Feb 2018 07:54:03 GMT
# gpg:                using RSA key 701B4F6B1A693E59
# gpg: Good signature from "Michael Tokarev <address@hidden>"
# gpg:                 aka "Michael Tokarev <address@hidden>"
# gpg:                 aka "Michael Tokarev <address@hidden>"
# Primary key fingerprint: 6EE1 95D1 886E 8FFB 810D  4324 457C E0A0 8044 65C5
#      Subkey fingerprint: 7B73 BAD6 8BE7 A2C2 8931  4B22 701B 4F6B 1A69 3E59

* remotes/mjt/tags/trivial-patches-fetch:
  tests/qapi: use ARRAY_SIZE macro
  tests/qapi: use QEMU_IS_ALIGNED macro
  tests/hbitmap: use ARRAY_SIZE macro
  async: use ARRAY_SIZE macro
  qga: use ARRAY_SIZE macro
  MAINTAINERS: Add qemu-binfmt-conf.sh script
  oslib-posix: check for posix_memalign in configure script
  maint: Mention web site maintenance in README
  build: fix typo in error message
  configure: Allow capstone=git only if git update is not disabled
  scripts/make-release: Don't archive .git files
  qemu-options.hx: Remove confusing spaces in parameter listings
  mailmap: set preferred spelling for Daniel Berrangé
  Drop unneeded system header includes
  machine: Polish -machine xxx,help
  scripts/argparse.py: spelling (independant)
  qapi-schema.json: spelling (independant comparation)

Signed-off-by: Peter Maydell <address@hidden>


Compare: https://github.com/qemu/qemu/compare/019bb9ac98f5...8e3fb8029efa

reply via email to

[Prev in Thread] Current Thread [Next in Thread]