qemu-commits
[Top][All Lists]
Advanced

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

[Qemu-commits] [qemu/qemu] 7af6f4: docs: Fix typo in QMP WAKEUP example


From: GitHub
Subject: [Qemu-commits] [qemu/qemu] 7af6f4: docs: Fix typo in QMP WAKEUP example
Date: Thu, 30 Jan 2014 07:00:04 -0800

  Branch: refs/heads/master
  Home:   https://github.com/qemu/qemu
  Commit: 7af6f46c6199549f0e02a2176d0f3ec2ec405e99
      
https://github.com/qemu/qemu/commit/7af6f46c6199549f0e02a2176d0f3ec2ec405e99
  Author: Namhyung Kim <address@hidden>
  Date:   2014-01-15 (Wed, 15 Jan 2014)

  Changed paths:
    M docs/qmp/qmp-events.txt

  Log Message:
  -----------
  docs: Fix typo in QMP WAKEUP example

Cc: address@hidden
Signed-off-by: Namhyung Kim <address@hidden>
Reviewed-by: Markus Armbruster <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: dc9fc1cac59e46102f2e046ac3233d8ad4535497
      
https://github.com/qemu/qemu/commit/dc9fc1cac59e46102f2e046ac3233d8ad4535497
  Author: Namhyung Kim <address@hidden>
  Date:   2014-01-15 (Wed, 15 Jan 2014)

  Changed paths:
    M include/qemu/timer.h

  Log Message:
  -----------
  Fix typo of tiemr in timer.h

Signed-off-by: Namhyung Kim <address@hidden>
Reviewed-by: Stefan Hajnoczi <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: bf2eaf718e2fcc5cc975326495bf03de7305bbe4
      
https://github.com/qemu/qemu/commit/bf2eaf718e2fcc5cc975326495bf03de7305bbe4
  Author: Eduardo Habkost <address@hidden>
  Date:   2014-01-15 (Wed, 15 Jan 2014)

  Changed paths:
    M Makefile

  Log Message:
  -----------
  Add bios-256k.bin to BLOBS on Makefile

The default machine-type (pc-i440fx-2.0) now requires bios-256k.bin, but
"make install" isn't installing it, so qemu-system-x86_64 won't run out
of the box. Add it to BLOBS so it gets installed.

Signed-off-by: Eduardo Habkost <address@hidden>
Reviewed-by: Gerd Hoffmann <address@hidden>
Tested-by: William Dauchy <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: fb3ecb7ea40c44d15091143c4336993e7165fc4f
      
https://github.com/qemu/qemu/commit/fb3ecb7ea40c44d15091143c4336993e7165fc4f
  Author: Stefan Weil <address@hidden>
  Date:   2014-01-15 (Wed, 15 Jan 2014)

  Changed paths:
    M include/exec/ram_addr.h

  Log Message:
  -----------
  exec: Exclude non portable function for MinGW

cpu_physical_memory_set_dirty_lebitmap calls getpageaddr and ffsl which are
unavailable for MinGW. As the function is unused for MinGW, it can simply
be excluded from compilation.

Signed-off-by: Stefan Weil <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: e6baf6130ef26f32a45e0282bd4720913a1ff472
      
https://github.com/qemu/qemu/commit/e6baf6130ef26f32a45e0282bd4720913a1ff472
  Author: Luiz Capitulino <address@hidden>
  Date:   2014-01-15 (Wed, 15 Jan 2014)

  Changed paths:
    M hw/virtio/virtio-balloon.c

  Log Message:
  -----------
  virtio-balloon: don't hardcode config size value

Use sizeof(struct virtio_balloon_config) instead.

Signed-off-by: Luiz capitulino <address@hidden>
Reviewed-by: Peter Crosthwaite <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: 850484a295a856474978d9338b8c17eb8e00f549
      
https://github.com/qemu/qemu/commit/850484a295a856474978d9338b8c17eb8e00f549
  Author: David du Colombier <address@hidden>
  Date:   2014-01-15 (Wed, 15 Jan 2014)

  Changed paths:
    M hw/ide/core.c

  Log Message:
  -----------
  ide: cmd_exec_dev_diagnostic() always set error register to 0x01

This notably fix IDE CD probing on the Plan 9 operating system,
which rely on the error register set by the Execute Device
Diagnostic command to detect drive configurations.

Thanks to RĂ©mi Pommarel for reporting this issue.

Signed-off-by: David du Colombier <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: 19a894ba777fa45c6f89ae007570311384204a69
      
https://github.com/qemu/qemu/commit/19a894ba777fa45c6f89ae007570311384204a69
  Author: Pavel Zbitskiy <address@hidden>
  Date:   2014-01-15 (Wed, 15 Jan 2014)

  Changed paths:
    M linux-user/s390x/syscall.h

  Log Message:
  -----------
  linux-user: fixed s390x clone() argument order

It was broken by 4ce6243dc6216e35b5b691078ffa856463bfa8db,
where TARGET_CLONE_BACKWARDS was specified instead of
TARGET_CLONE_BACKWARDS2.

Signed-off-by: Pavel Zbitskiy <address@hidden>
Reviewed-by: Peter Maydell <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: fe54b24930f94bdfbc3d38eccd7adedf35f2f26f
      
https://github.com/qemu/qemu/commit/fe54b24930f94bdfbc3d38eccd7adedf35f2f26f
  Author: Pavel Zbitskiy <address@hidden>
  Date:   2014-01-15 (Wed, 15 Jan 2014)

  Changed paths:
    M linux-user/syscall.c

  Log Message:
  -----------
  linux-user: fixed getsockopt() optlen

optlen parameter of getsockopt() of type socklen_t* was read into
variable of type socklen_t, that caused zeroing out of upper 4 bytes
when running s390x on top of x86_64. This patch changes optlen type
to abi_ulong.

Signed-off-by: Pavel Zbitskiy <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: a39ca6a124267dcfc6bc5276fff9c4b02e5c2215
      
https://github.com/qemu/qemu/commit/a39ca6a124267dcfc6bc5276fff9c4b02e5c2215
  Author: Pavel Zbitskiy <address@hidden>
  Date:   2014-01-15 (Wed, 15 Jan 2014)

  Changed paths:
    M linux-user/syscall.c

  Log Message:
  -----------
  linux-user: fixed recvfrom() addrlen

addrlen parameter of recvfrom() of type socklen_t* was read into
variable of type socklen_t, that caused zeroing out of upper 4 bytes
when running s390x on top of x86_64. This patch changes addrlen type
to abi_ulong.

Signed-off-by: Pavel Zbitskiy <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: 3babcc8704f593473ccd0f66d6e39c949c672477
      
https://github.com/qemu/qemu/commit/3babcc8704f593473ccd0f66d6e39c949c672477
  Author: Stefan Weil <address@hidden>
  Date:   2014-01-16 (Thu, 16 Jan 2014)

  Changed paths:
    A pc-bios/kvmvapic.bin
    R pc-bios/kvmvapic.bin
    R pc-bios/multiboot.bin
    A pc-bios/multiboot.bin
    A pc-bios/sgabios.bin
    R pc-bios/sgabios.bin

  Log Message:
  -----------
  pc-bios: Remove execute flag from BIOS files

BIOS files are not directly executable, so they don't need this flag.
All other BIOS files don't use the execute flag.

Signed-off-by: Stefan Weil <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: 2c02d1ad48ad44cf00522df7d8de9138689fac85
      
https://github.com/qemu/qemu/commit/2c02d1ad48ad44cf00522df7d8de9138689fac85
  Author: Kewei Yu <address@hidden>
  Date:   2014-01-16 (Thu, 16 Jan 2014)

  Changed paths:
    M vl.c

  Log Message:
  -----------
  vl: Add a blank space between the variable and '='

Signed-off-by: Kewei Yu <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: 0706f7c85b3c0783f92d44b551f362884db0f4bd
      
https://github.com/qemu/qemu/commit/0706f7c85b3c0783f92d44b551f362884db0f4bd
  Author: Peter Maydell <address@hidden>
  Date:   2014-01-30 (Thu, 30 Jan 2014)

  Changed paths:
    M Makefile
    M docs/qmp/qmp-events.txt
    M hw/ide/core.c
    M hw/virtio/virtio-balloon.c
    M include/exec/ram_addr.h
    M include/qemu/timer.h
    M linux-user/s390x/syscall.h
    M linux-user/syscall.c
    A pc-bios/kvmvapic.bin
    R pc-bios/kvmvapic.bin
    R pc-bios/multiboot.bin
    A pc-bios/multiboot.bin
    R pc-bios/sgabios.bin
    A pc-bios/sgabios.bin
    M vl.c

  Log Message:
  -----------
  Merge remote-tracking branch 'mjt/tags/trivial-patches-2014-01-16' into 
staging

trivial-patches for 2014-01-16

# gpg: Signature made Thu 16 Jan 2014 17:29:05 GMT using RSA key ID 74F0C838
# gpg: Good signature from "Michael Tokarev <address@hidden>"
# gpg:                 aka "Michael Tokarev <address@hidden>"
# gpg:                 aka "Michael Tokarev <address@hidden>"
# gpg: WARNING: This key is not certified with a trusted signature!
# gpg:          There is no indication that the signature belongs to the owner.
# Primary key fingerprint: 6EE1 95D1 886E 8FFB 810D  4324 457C E0A0 8044 65C5
#      Subkey fingerprint: E190 8639 3B10 B51B AC2C  8B73 5253 C5AD 74F0 C838

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


Compare: https://github.com/qemu/qemu/compare/18d13fa293af...0706f7c85b3c

reply via email to

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