kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [kvm-unit-tests PATCH 00/18] bunch of mostly trivial patches
@ 2015-11-06  0:24 Andrew Jones
  2015-11-06  0:24 ` [kvm-unit-tests PATCH 01/18] makefiles: use bash Andrew Jones
                   ` (19 more replies)
  0 siblings, 20 replies; 44+ messages in thread
From: Andrew Jones @ 2015-11-06  0:24 UTC (permalink / raw)
  To: pbonzini, kvm; +Cc: alex.bennee, cov

Many of these patches were posted once. Some weren't, but anyway
almost everything is pretty trivial. I'd like to get these in, or
at least get definitive nacks on them (and then drop them) in order
to clean my queue before more patches (coming from Alex Bennée and
Chistopher are reposted).

All patches also available here
https://github.com/rhdrjones/kvm-unit-tests/commits/queue

Thanks,
drew


Alex Bennée (4):
  README: add some CONTRIBUTING notes
  configure: emit HOST=$host to config.mak
  lib/printf: support the %u unsigned fmt field
  lib/arm: add flush_tlb_page mmu function

Andrew Jones (13):
  makefiles: use bash
  trivial: lib: fail hard on failed mallocs
  trivial: alloc: don't use 'top' outside spinlock
  trivial: lib: missing extern in string.h
  README: add pointer to new wiki page
  run_tests: pass test name to run script
  arm/run: use ACCEL to choose between kvm and tcg
  run_tests: probe for max-smp
  arm/arm64: allow building a single test
  arm/arm64: generate map files
  lib: link in linux kernel headers (uapi)
  Revert "arm/arm64: import include/uapi/linux/psci.h"
  arm/arm64: uart0_init: check /chosen/stdout-path

Christopher Covington (1):
  arm: Fail on unknown subtest

 .gitignore                   |  2 ++
 Makefile                     |  6 ++--
 README                       | 32 +++++++++++++++++++
 arm/run                      | 43 ++++++++++++++++++++++----
 arm/selftest.c               |  3 ++
 arm/unittests.cfg            |  7 +++--
 config/config-arm-common.mak |  9 +++++-
 configure                    | 11 +++++++
 lib/alloc.c                  |  8 +++--
 lib/arm/asm/mmu.h            | 11 +++++++
 lib/arm/asm/page.h           |  2 +-
 lib/arm/asm/psci.h           |  2 +-
 lib/arm/asm/uapi-psci.h      | 73 --------------------------------------------
 lib/arm/io.c                 | 36 ++++++++++++++++------
 lib/arm64/asm/mmu.h          |  8 +++++
 lib/arm64/asm/page.h         |  2 +-
 lib/arm64/asm/psci.h         |  2 +-
 lib/arm64/asm/uapi-psci.h    |  1 -
 lib/asm-generic/page.h       |  2 +-
 lib/const.h                  | 11 -------
 lib/printf.c                 | 13 ++++++++
 lib/string.h                 |  2 +-
 lib/virtio-mmio.c            |  7 ++---
 run_tests.sh                 | 12 +++++++-
 scripts/functions.bash       |  8 +++--
 scripts/mkstandalone.sh      | 22 ++++++++++---
 x86/unittests.cfg            |  1 +
 27 files changed, 210 insertions(+), 126 deletions(-)
 delete mode 100644 lib/arm/asm/uapi-psci.h
 delete mode 100644 lib/arm64/asm/uapi-psci.h
 delete mode 100644 lib/const.h

-- 
2.4.3


^ permalink raw reply	[flat|nested] 44+ messages in thread

end of thread, other threads:[~2015-11-20 18:01 UTC | newest]

Thread overview: 44+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-06  0:24 [kvm-unit-tests PATCH 00/18] bunch of mostly trivial patches Andrew Jones
2015-11-06  0:24 ` [kvm-unit-tests PATCH 01/18] makefiles: use bash Andrew Jones
2015-11-10 16:22   ` Paolo Bonzini
2015-11-10 16:37     ` Andrew Jones
2015-11-10 16:48       ` Paolo Bonzini
2015-11-06  0:24 ` [kvm-unit-tests PATCH 02/18] trivial: lib: fail hard on failed mallocs Andrew Jones
2015-11-06 14:05   ` Thomas Huth
2015-11-07  1:02     ` Andrew Jones
2015-11-09 20:53   ` [kvm-unit-tests PATCH v2 02/19] " Andrew Jones
2015-11-09 20:55     ` Thomas Huth
2015-11-10 16:23     ` Paolo Bonzini
2015-11-06  0:24 ` [kvm-unit-tests PATCH 03/18] trivial: alloc: don't use 'top' outside spinlock Andrew Jones
2015-11-10 16:24   ` Paolo Bonzini
2015-11-06  0:24 ` [kvm-unit-tests PATCH 04/18] trivial: lib: missing extern in string.h Andrew Jones
2015-11-10 16:24   ` Paolo Bonzini
2015-11-06  0:24 ` [kvm-unit-tests PATCH 05/18] README: add pointer to new wiki page Andrew Jones
2015-11-10 16:25   ` Paolo Bonzini
2015-11-06  0:24 ` [kvm-unit-tests PATCH 06/18] README: add some CONTRIBUTING notes Andrew Jones
2015-11-10 16:25   ` Paolo Bonzini
2015-11-06  0:24 ` [kvm-unit-tests PATCH 07/18] configure: emit HOST=$host to config.mak Andrew Jones
2015-11-10 16:26   ` Paolo Bonzini
2015-11-06  0:24 ` [kvm-unit-tests PATCH 08/18] run_tests: pass test name to run script Andrew Jones
2015-11-10 16:34   ` Paolo Bonzini
2015-11-06  0:24 ` [kvm-unit-tests PATCH 09/18] arm/run: use ACCEL to choose between kvm and tcg Andrew Jones
2015-11-10 16:30   ` Paolo Bonzini
2015-11-06  0:24 ` [kvm-unit-tests PATCH 10/18] run_tests: probe for max-smp Andrew Jones
2015-11-10 16:31   ` Paolo Bonzini
2015-11-06  0:24 ` [kvm-unit-tests PATCH 11/18] lib/printf: support the %u unsigned fmt field Andrew Jones
2015-11-10 16:33   ` Paolo Bonzini
2015-11-06  0:24 ` [kvm-unit-tests PATCH 12/18] lib/arm: add flush_tlb_page mmu function Andrew Jones
2015-11-10 16:33   ` Paolo Bonzini
2015-11-06  0:24 ` [kvm-unit-tests PATCH 13/18] arm: Fail on unknown subtest Andrew Jones
2015-11-10 16:34   ` Paolo Bonzini
2015-11-06  0:24 ` [kvm-unit-tests PATCH 14/18] arm/arm64: allow building a single test Andrew Jones
2015-11-06  0:24 ` [kvm-unit-tests PATCH 15/18] arm/arm64: generate map files Andrew Jones
2015-11-06  0:24 ` [kvm-unit-tests PATCH 16/18] lib: link in linux kernel headers (uapi) Andrew Jones
2015-11-06  0:24 ` [kvm-unit-tests PATCH 17/18] Revert "arm/arm64: import include/uapi/linux/psci.h" Andrew Jones
2015-11-06  0:24 ` [kvm-unit-tests PATCH 18/18] arm/arm64: uart0_init: check /chosen/stdout-path Andrew Jones
2015-11-10 16:37   ` Paolo Bonzini
2015-11-09 20:57 ` [kvm-unit-tests PATCH 19/18] don't embed code inside asserts Andrew Jones
2015-11-10 16:37   ` Paolo Bonzini
2015-11-10 16:38 ` [kvm-unit-tests PATCH 00/18] bunch of mostly trivial patches Paolo Bonzini
2015-11-10 16:54   ` Andrew Jones
2015-11-20 18:01     ` Andrew Jones

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).