qemu-commits
[Top][All Lists]
Advanced

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

[Qemu-commits] [qemu/qemu] 8dc523: target/s390x: Fix typo


From: GitHub
Subject: [Qemu-commits] [qemu/qemu] 8dc523: target/s390x: Fix typo
Date: Tue, 28 Feb 2017 10:46:04 -0800

  Branch: refs/heads/master
  Home:   https://github.com/qemu/qemu
  Commit: 8dc52350f97ec7e2ce5d16c65021b5283f71b184
      
https://github.com/qemu/qemu/commit/8dc52350f97ec7e2ce5d16c65021b5283f71b184
  Author: Stefan Weil <address@hidden>
  Date:   2017-02-28 (Tue, 28 Feb 2017)

  Changed paths:
    M target/s390x/cpu_models.c

  Log Message:
  -----------
  target/s390x: Fix typo

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


  Commit: d000b477f2693dbca97cd8ea751c2e0b71890662
      
https://github.com/qemu/qemu/commit/d000b477f2693dbca97cd8ea751c2e0b71890662
  Author: Peter Maydell <address@hidden>
  Date:   2017-02-28 (Tue, 28 Feb 2017)

  Changed paths:
    M fpu/softfloat.c

  Log Message:
  -----------
  softfloat: Use correct type in float64_to_uint64_round_to_zero()

In float64_to_uint64_round_to_zero() a typo meant that we were
taking the uint64_t return value from float64_to_uint64() and
putting it into an int64_t variable before returning it as
uint64_t again. Use uint64_t instead of pointlessly casting it
back and forth to int64_t.

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


  Commit: a70716eb2c766d80f605abd42115b923fedaa1f7
      
https://github.com/qemu/qemu/commit/a70716eb2c766d80f605abd42115b923fedaa1f7
  Author: Thomas Huth <address@hidden>
  Date:   2017-02-28 (Tue, 28 Feb 2017)

  Changed paths:
    M hw/core/or-irq.c

  Log Message:
  -----------
  hw/core/or-irq: Mark the device with cannot_instantiate_with_device_add_yet

The "or-irq" device needs to be wired up in source code, there is no
way the user can make any real use of this device with the "-device"
parameter or the "device_add" monitor command yet.

Signed-off-by: Thomas Huth <address@hidden>
Reviewed-by: Markus Armbruster <address@hidden>
Reviewed-by: Alistair Francis <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: a6e3707ece6b326e3fc5a086086a2ccac9710e67
      
https://github.com/qemu/qemu/commit/a6e3707ece6b326e3fc5a086086a2ccac9710e67
  Author: Thomas Huth <address@hidden>
  Date:   2017-02-28 (Tue, 28 Feb 2017)

  Changed paths:
    M hw/core/register.c

  Log Message:
  -----------
  hw/core/register: Mark the device with cannot_instantiate_with_device_add_yet

The "qemu,register" device needs to be wired up in source code, there
is no way the user can make any real use of this device with the
"-device" parameter or the "device_add" monitor command yet.

Signed-off-by: Thomas Huth <address@hidden>
Reviewed-by: Markus Armbruster <address@hidden>
Reviewed-by: Alistair Francis <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: 25ac5bbec43973e9b97a454e55fd307ef9db1320
      
https://github.com/qemu/qemu/commit/25ac5bbec43973e9b97a454e55fd307ef9db1320
  Author: Peter Maydell <address@hidden>
  Date:   2017-02-28 (Tue, 28 Feb 2017)

  Changed paths:
    M CODING_STYLE

  Log Message:
  -----------
  CODING_STYLE: Mention preferred comment form

Our defacto coding style strongly prefers /* */ style comments
over the single-line // style, and checkpatch enforces this,
but we don't actually document this. Mention it in CODING_STYLE.

Suggested-by: Thomas Huth <address@hidden>
Signed-off-by: Peter Maydell <address@hidden>
Reviewed-by: Markus Armbruster <address@hidden>
Reviewed-by: Fam Zheng <address@hidden>
Reviewed-by: Laurent Vivier <address@hidden>
Reviewed-by: Stefan Hajnoczi <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: 6048018ef6112476b529807ad603015314151bb2
      
https://github.com/qemu/qemu/commit/6048018ef6112476b529807ad603015314151bb2
  Author: John Snow <address@hidden>
  Date:   2017-02-28 (Tue, 28 Feb 2017)

  Changed paths:
    M tests/ide-test.c

  Log Message:
  -----------
  ide: remove undefined behavior in ide-test

trivial: initialize the dirty buffer with a random-ish byte.
Stops valgrind from whining about uninitialized buffers.

Signed-off-by: John Snow <address@hidden>
Reviewed-by: Stefan Hajnoczi <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: 4729b3a41d11f053a6d03620ff12b266dd0ab330
      
https://github.com/qemu/qemu/commit/4729b3a41d11f053a6d03620ff12b266dd0ab330
  Author: Philippe Mathieu-Daudé <address@hidden>
  Date:   2017-02-28 (Tue, 28 Feb 2017)

  Changed paths:
    M hw/core/register.c

  Log Message:
  -----------
  register: fix incorrect read mask

The register_read() and register_write() functions expect a bitmask argument.
To avoid duplicated code, a new inlined function register_enabled_mask() is
introduced.

Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
Reviewed-by: Alistair Francis <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: 8ea1d056320dd5bbbd480c45e6cfb8e3689bcc7e
      
https://github.com/qemu/qemu/commit/8ea1d056320dd5bbbd480c45e6cfb8e3689bcc7e
  Author: Fam Zheng <address@hidden>
  Date:   2017-02-28 (Tue, 28 Feb 2017)

  Changed paths:
    M hw/net/cadence_gem.c

  Log Message:
  -----------
  cadence_gem: Remove unused parameter debug message

Reported by cppcheck.

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


  Commit: 6b591ad613010f136dec4657f3c8ed6b051802c8
      
https://github.com/qemu/qemu/commit/6b591ad613010f136dec4657f3c8ed6b051802c8
  Author: Thomas Huth <address@hidden>
  Date:   2017-02-28 (Tue, 28 Feb 2017)

  Changed paths:
    M tests/Makefile.include
    M tests/prom-env-test.c

  Log Message:
  -----------
  tests/prom-env: Enable the test for the sun4u machine, too

The 32-bit TCG bug has been fixed a while ago, so we can enable
this test for sparc64 now, too. Unfortunately, OpenBIOS does not
work with the sun4v machine anymore (it needs to catch up with the
improved emulation), so we can only enable this test for the sun4u
machine right now.

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


  Commit: d34d5b3bbd31f51dbeee011d4123d33d3b8b43a7
      
https://github.com/qemu/qemu/commit/d34d5b3bbd31f51dbeee011d4123d33d3b8b43a7
  Author: Marc-André Lureau <address@hidden>
  Date:   2017-02-28 (Tue, 28 Feb 2017)

  Changed paths:
    M include/qemu-common.h

  Log Message:
  -----------
  Update copyright year

It's still time to wish happy new year!

The Year of the Rooster will begin on January 28, 2017!

Signed-off-by: Marc-André Lureau <address@hidden>
Reviewed-by: Stefan Hajnoczi <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: 79cad2faace2175f2f21dc4f8f40c3b7722cf999
      
https://github.com/qemu/qemu/commit/79cad2faace2175f2f21dc4f8f40c3b7722cf999
  Author: Vincenzo Maffione <address@hidden>
  Date:   2017-02-28 (Tue, 28 Feb 2017)

  Changed paths:
    M qemu-options.hx

  Log Message:
  -----------
  qemu-options.hx: add missing id=chr0 chardev argument in vhost-user example

In the vhost-user example, a chardev with id chr0 is referenced by the
vhost-user net backend, but the id is not specified in the chardev option.

Signed-off-by: Vincenzo Maffione <address@hidden>
Reviewed-by: Markus Armbruster <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: 3d74ee7dcae57b93a64737b954d76cf96236a367
      
https://github.com/qemu/qemu/commit/3d74ee7dcae57b93a64737b954d76cf96236a367
  Author: Peter Maydell <address@hidden>
  Date:   2017-02-28 (Tue, 28 Feb 2017)

  Changed paths:
    M hw/display/milkymist-tmu2.c

  Log Message:
  -----------
  lm32: milkymist-tmu2: fix a third integer overflow

Don't truncate the multiplication and do a 64 bit one instead
because the result is stored in a 64 bit variable.

This fixes a similar coverity warning to commits 237a8650d640 and
4382fa655498, in a similar way, and is the final third of the fix for
coverity CID 1167561 (hopefully!).

Signed-off-by: Peter Maydell <address@hidden>
Reviewed-by: Philippe Mathieu-Daudé <address@hidden>
Acked-by: Michael Walle <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: 6c608953a5512b556fd0913d740e932366d6bb5d
      
https://github.com/qemu/qemu/commit/6c608953a5512b556fd0913d740e932366d6bb5d
  Author: Igor Pavlikevich <address@hidden>
  Date:   2017-02-28 (Tue, 28 Feb 2017)

  Changed paths:
    M hw/acpi/tco.c

  Log Message:
  -----------
  hw/acpi/tco.c: fix tco timer stop

TCO timer does not actually stop

Signed-off-by: Igor Pavlikevich <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: f5507e0448bd34473af72509297617a783049024
      
https://github.com/qemu/qemu/commit/f5507e0448bd34473af72509297617a783049024
  Author: Franklin \"Snaipe\" Mathieu <address@hidden>
  Date:   2017-02-28 (Tue, 28 Feb 2017)

  Changed paths:
    M linux-user/syscall.c

  Log Message:
  -----------
  syscall: fixed mincore(2) not failing with ENOMEM

The current implementation of the mincore(2) syscall sets errno to
EFAULT when the region identified by the first two parameters is
invalid.

This goes against the man page specification, where mincore(2) should
only fail with EFAULT when the third parameter is an invalid address;
and fail with ENOMEM when the checked region does not point to mapped
memory.

Signed-off-by: Franklin "Snaipe" Mathieu <address@hidden>
Cc: Riku Voipio <address@hidden>
Cc: Aurelien Jarno <address@hidden>
Reviewed-by: Laurent Vivier <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: 7d1730b7d9d8272a13245adfc9b0405e5a4bd0c2
      
https://github.com/qemu/qemu/commit/7d1730b7d9d8272a13245adfc9b0405e5a4bd0c2
  Author: Peter Maydell <address@hidden>
  Date:   2017-02-28 (Tue, 28 Feb 2017)

  Changed paths:
    M CODING_STYLE
    M fpu/softfloat.c
    M hw/acpi/tco.c
    M hw/core/or-irq.c
    M hw/core/register.c
    M hw/display/milkymist-tmu2.c
    M hw/net/cadence_gem.c
    M include/qemu-common.h
    M qemu-options.hx
    M target/s390x/cpu_models.c
    M tests/Makefile.include
    M tests/ide-test.c
    M tests/prom-env-test.c

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

trivial patches for 2017-02-28

# gpg: Signature made Tue 28 Feb 2017 06:43:55 GMT
# gpg:                using RSA key 0x701B4F6B1A693E59
# 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:
  syscall: fixed mincore(2) not failing with ENOMEM
  hw/acpi/tco.c: fix tco timer stop
  lm32: milkymist-tmu2: fix a third integer overflow
  qemu-options.hx: add missing id=chr0 chardev argument in vhost-user example
  Update copyright year
  tests/prom-env: Enable the test for the sun4u machine, too
  cadence_gem: Remove unused parameter debug message
  register: fix incorrect read mask
  ide: remove undefined behavior in ide-test
  CODING_STYLE: Mention preferred comment form
  hw/core/register: Mark the device with cannot_instantiate_with_device_add_yet
  hw/core/or-irq: Mark the device with cannot_instantiate_with_device_add_yet
  softfloat: Use correct type in float64_to_uint64_round_to_zero()
  target/s390x: Fix typo

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


Compare: https://github.com/qemu/qemu/compare/1bbe5dc66b77...7d1730b7d9d8

reply via email to

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