qemu-commits
[Top][All Lists]
Advanced

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

[Qemu-commits] [qemu/qemu] 37e364: docs: Fix description of the leaky bu


From: GitHub
Subject: [Qemu-commits] [qemu/qemu] 37e364: docs: Fix description of the leaky bucket algorith...
Date: Tue, 13 Sep 2016 11:00:05 -0700

  Branch: refs/heads/master
  Home:   https://github.com/qemu/qemu
  Commit: 37e3645ad3974db6008c212edf68c7f9da1bedc7
      
https://github.com/qemu/qemu/commit/37e3645ad3974db6008c212edf68c7f9da1bedc7
  Author: Alberto Garcia <address@hidden>
  Date:   2016-09-13 (Tue, 13 Sep 2016)

  Changed paths:
    M docs/throttle.txt

  Log Message:
  -----------
  docs: Fix description of the leaky bucket algorithm in throttle.txt

Commit 0bab0ebb17759c926bd48fd396bd8cbb2c8e4a3e was supposed to fix
a mistake in the description of the leaky bucket algorithm, but the
version that finally landed after the review process was incorrect.

This patch solves that problem and hopefully clarifies the description
a bit better.

Signed-off-by: Alberto Garcia <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: 270a4b6739462d30a63033aa29e983c03d5104df
      
https://github.com/qemu/qemu/commit/270a4b6739462d30a63033aa29e983c03d5104df
  Author: Michael Tokarev <address@hidden>
  Date:   2016-09-13 (Tue, 13 Sep 2016)

  Changed paths:
    M hw/bt/hci.c

  Log Message:
  -----------
  hw/bt/hci: spelling fix: endianness

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


  Commit: 0aadb5a15f00c9170ca81915987d7d3a5858e815
      
https://github.com/qemu/qemu/commit/0aadb5a15f00c9170ca81915987d7d3a5858e815
  Author: Michael Tokarev <address@hidden>
  Date:   2016-09-13 (Tue, 13 Sep 2016)

  Changed paths:
    M hw/dma/omap_dma.c

  Log Message:
  -----------
  hw/dma/omap: spelling fix: endianness

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


  Commit: 39cba610a78ad0d9dc24e6124a945a75e8f91b3d
      
https://github.com/qemu/qemu/commit/39cba610a78ad0d9dc24e6124a945a75e8f91b3d
  Author: Michael Tokarev <address@hidden>
  Date:   2016-09-13 (Tue, 13 Sep 2016)

  Changed paths:
    M target-arm/helper.c

  Log Message:
  -----------
  arm: spelling fix: mismatch

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


  Commit: bc82585a8fd5d38e7c2402999a7ccc9a97d762c9
      
https://github.com/qemu/qemu/commit/bc82585a8fd5d38e7c2402999a7ccc9a97d762c9
  Author: Paolo Bonzini <address@hidden>
  Date:   2016-09-13 (Tue, 13 Sep 2016)

  Changed paths:
    M vl.c

  Log Message:
  -----------
  vl: remove unnecessary duplicate call to tpm_cleanup

tpm_cleanup is called from main() and also registered with atexit from
tpm_init.  The function only visits the tpm_backends linked list, and the
atexit registration happens right after tpm_init fills in the list from
-tpmdev options.  Therefore, the direct call is unnecessary.  Remove it.

Signed-off-by: Paolo Bonzini <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: a337f295defad7eb977da4d6317cf70f7f2fa4b4
      
https://github.com/qemu/qemu/commit/a337f295defad7eb977da4d6317cf70f7f2fa4b4
  Author: Thomas Huth <address@hidden>
  Date:   2016-09-13 (Tue, 13 Sep 2016)

  Changed paths:
    M target-sparc/cpu.c

  Log Message:
  -----------
  sparc: Use g_memdup() instead of g_new0() + memcpy()

There is no need to make sure that the memory is zeroed after the
allocation if we also immediatly fill the whole buffer afterwards
with memcpy(). Thus g_new0 should be g_new instead. But since we
are also doing a memcpy() here, we can also simply replace both
with g_memdup() instead.

Signed-off-by: Thomas Huth <address@hidden>
Acked-By: Artyom Tarasenko <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: 8928473699d5fc7a3914abb928af35b3a0dfa5ec
      
https://github.com/qemu/qemu/commit/8928473699d5fc7a3914abb928af35b3a0dfa5ec
  Author: Bruce Rogers <address@hidden>
  Date:   2016-09-13 (Tue, 13 Sep 2016)

  Changed paths:
    M hw/i386/kvm/i8259.c

  Log Message:
  -----------
  pic: fix typo in error message: KVM_GET_IRQCHIP -> KVM_SET_IRQCHIP

Signed-off-by: Bruce Rogers <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: 8223f345b9ba787eff1ae65114523f513fd27906
      
https://github.com/qemu/qemu/commit/8223f345b9ba787eff1ae65114523f513fd27906
  Author: Laurent Vivier <address@hidden>
  Date:   2016-09-13 (Tue, 13 Sep 2016)

  Changed paths:
    M linux-user/main.c

  Log Message:
  -----------
  linux-user, trivial: display "0x%x" instead of "0x%d"

Display an exception number, generally defined as an hexadecimal
number (for instance, EXCP_HLT is 0x10001).

Signed-off-by: Laurent Vivier <address@hidden>
Reviewed-by: Eric Blake <address@hidden>
Acked-by: Riku Voipio <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: deff0ddb869d4a32f9c55fe3e420b7128792f798
      
https://github.com/qemu/qemu/commit/deff0ddb869d4a32f9c55fe3e420b7128792f798
  Author: Laurent Vivier <address@hidden>
  Date:   2016-09-13 (Tue, 13 Sep 2016)

  Changed paths:
    M hw/i386/trace-events

  Log Message:
  -----------
  trace-event: display "%d" instead of "0x%d"

Display the slot number of mhp_pc_dimm_assigned_slot()
using "%d" without the "0x".

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


  Commit: 32945472cef09306c96635cb030704d5bd8f85be
      
https://github.com/qemu/qemu/commit/32945472cef09306c96635cb030704d5bd8f85be
  Author: Samuel Thibault <address@hidden>
  Date:   2016-09-13 (Tue, 13 Sep 2016)

  Changed paths:
    M qemu-options.hx

  Log Message:
  -----------
  Document that curses usually needs -k option too

Signed-off-by: Samuel Thibault <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: e2f310ec384d51c85c1498b49d66893d6dd036b7
      
https://github.com/qemu/qemu/commit/e2f310ec384d51c85c1498b49d66893d6dd036b7
  Author: Eric Blake <address@hidden>
  Date:   2016-09-13 (Tue, 13 Sep 2016)

  Changed paths:
    M .gitignore

  Log Message:
  -----------
  maint: Ignore generated version file

Commit 67a1de0d created a generated version file, and, in some
circumstances, also a temporary file.  Make sure 'git add .'
won't check them into the repository.

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


  Commit: 083b96e22153cae3658f4defa202f1ce58423463
      
https://github.com/qemu/qemu/commit/083b96e22153cae3658f4defa202f1ce58423463
  Author: Cao jin <address@hidden>
  Date:   2016-09-13 (Tue, 13 Sep 2016)

  Changed paths:
    M include/qemu/timer.h

  Log Message:
  -----------
  timer.h: fix typo

Signed-off-by: Cao jin <address@hidden>
Reviewed-by: Peter Maydell <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: 04ecbb783441d5d51587d23bad1c0a7b8ce27193
      
https://github.com/qemu/qemu/commit/04ecbb783441d5d51587d23bad1c0a7b8ce27193
  Author: Cao jin <address@hidden>
  Date:   2016-09-13 (Tue, 13 Sep 2016)

  Changed paths:
    M include/qemu/timer.h

  Log Message:
  -----------
  timer.h: fix inconsistency between comment and function prototype

Signed-off-by: Cao jin <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: 3224e8786fcbe531746f1530c37210c425625213
      
https://github.com/qemu/qemu/commit/3224e8786fcbe531746f1530c37210c425625213
  Author: Cao jin <address@hidden>
  Date:   2016-09-13 (Tue, 13 Sep 2016)

  Changed paths:
    M cpus.c
    M include/qemu/timer.h

  Log Message:
  -----------
  timer/cpus: fix some typos and update some comments

Signed-off-by: Cao jin <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: 5ce747cfac697f61668ab4fa4a71c1dba15cc272
      
https://github.com/qemu/qemu/commit/5ce747cfac697f61668ab4fa4a71c1dba15cc272
  Author: Paolo Bonzini <address@hidden>
  Date:   2016-09-13 (Tue, 13 Sep 2016)

  Changed paths:
    M target-m68k/helper.c

  Log Message:
  -----------
  target-m68k: fix get_mac_extf helper

val is assigned twice; the second one should be combined with "|".
Reported by Coverity.

Signed-off-by: Paolo Bonzini <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: eb83c2030aa037b4c6037bfa3cbe181343dc6a8b
      
https://github.com/qemu/qemu/commit/eb83c2030aa037b4c6037bfa3cbe181343dc6a8b
  Author: Changlong Xie <address@hidden>
  Date:   2016-09-13 (Tue, 13 Sep 2016)

  Changed paths:
    M hw/net/e1000e_core.c

  Log Message:
  -----------
  hw/net/e1000e: Fix compiler warning

slave:~/.xie/qemu-colo # gcc --version
gcc (SUSE Linux) 4.3.4 [gcc-4_3-branch revision 152973]

slave:~/.xie/qemu-colo # make -j8
CC    hw/net/e1000e_core.o
hw/net/e1000e_core.c:56: warning: ‘e1000e_set_interrupt_cause’ declared inline 
after being called
hw/net/e1000e_core.c:56: warning: previous declaration of 
‘e1000e_set_interrupt_cause’ was here
LINK  x86_64-softmmu/qemu-system-x86_64

Signed-off-by: Changlong Xie <address@hidden>
Reviewed-by: Dmitry Fleytman <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>


  Commit: 507e4ddc3abf67391bcbc9624fd60b969c159b78
      
https://github.com/qemu/qemu/commit/507e4ddc3abf67391bcbc9624fd60b969c159b78
  Author: Peter Maydell <address@hidden>
  Date:   2016-09-13 (Tue, 13 Sep 2016)

  Changed paths:
    M .gitignore
    M cpus.c
    M docs/throttle.txt
    M hw/bt/hci.c
    M hw/dma/omap_dma.c
    M hw/i386/kvm/i8259.c
    M hw/i386/trace-events
    M hw/net/e1000e_core.c
    M include/qemu/timer.h
    M linux-user/main.c
    M qemu-options.hx
    M target-arm/helper.c
    M target-m68k/helper.c
    M target-sparc/cpu.c
    M vl.c

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

trivial patches for 2016-09-13

# gpg: Signature made Tue 13 Sep 2016 16:53:11 BST
# 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:
  hw/net/e1000e: Fix compiler warning
  target-m68k: fix get_mac_extf helper
  timer/cpus: fix some typos and update some comments
  timer.h: fix inconsistency between comment and function prototype
  timer.h: fix typo
  maint: Ignore generated version file
  Document that curses usually needs -k option too
  trace-event: display "%d" instead of "0x%d"
  linux-user, trivial: display "0x%x" instead of "0x%d"
  pic: fix typo in error message: KVM_GET_IRQCHIP -> KVM_SET_IRQCHIP
  sparc: Use g_memdup() instead of g_new0() + memcpy()
  vl: remove unnecessary duplicate call to tpm_cleanup
  arm: spelling fix: mismatch
  hw/dma/omap: spelling fix: endianness
  hw/bt/hci: spelling fix: endianness
  docs: Fix description of the leaky bucket algorithm in throttle.txt

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


Compare: https://github.com/qemu/qemu/compare/2d31515bc088...507e4ddc3abf

reply via email to

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