[Qemu-devel] [PATCH v3 0/2] target/s390x: Implement STCK et al for CONFIG_USER_ONLY

Richard Henderson posted 2 patches 5 years, 1 month ago
Test docker-mingw@fedora passed
Test asan passed
Test checkpatch passed
Test docker-clang@ubuntu passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20190212053044.29015-1-richard.henderson@linaro.org
Maintainers: Christian Borntraeger <borntraeger@de.ibm.com>, Richard Henderson <rth@twiddle.net>, David Hildenbrand <david@redhat.com>, Halil Pasic <pasic@linux.ibm.com>, Cornelia Huck <cohuck@redhat.com>
include/hw/s390x/tod.h     | 16 +---------------
target/s390x/helper.h      |  2 +-
target/s390x/s390-tod.h    | 29 +++++++++++++++++++++++++++++
target/s390x/misc_helper.c | 34 ++++++++++++++++++++++------------
target/s390x/translate.c   |  2 ++
target/s390x/insn-data.def | 11 ++++++-----
6 files changed, 61 insertions(+), 33 deletions(-)
create mode 100644 target/s390x/s390-tod.h
[Qemu-devel] [PATCH v3 0/2] target/s390x: Implement STCK et al for CONFIG_USER_ONLY
Posted by Richard Henderson 5 years, 1 month ago
Changes since v2:
  * Fix botched subject line, include r-b tags.

Changes since v1:
  * Move more of hw/s390x/tod.h to a new header.
  * Use time2tod.


r~


Richard Henderson (2):
  target/s390x: Split out s390-tod.h
  target/s390x: Implement STCK et al for CONFIG_USER_ONLY

 include/hw/s390x/tod.h     | 16 +---------------
 target/s390x/helper.h      |  2 +-
 target/s390x/s390-tod.h    | 29 +++++++++++++++++++++++++++++
 target/s390x/misc_helper.c | 34 ++++++++++++++++++++++------------
 target/s390x/translate.c   |  2 ++
 target/s390x/insn-data.def | 11 ++++++-----
 6 files changed, 61 insertions(+), 33 deletions(-)
 create mode 100644 target/s390x/s390-tod.h

-- 
2.17.2


Re: [Qemu-devel] [PATCH v3 0/2] target/s390x: Implement STCK et al for CONFIG_USER_ONLY
Posted by Cornelia Huck 5 years, 1 month ago
On Mon, 11 Feb 2019 21:30:42 -0800
Richard Henderson <richard.henderson@linaro.org> wrote:

> Changes since v2:
>   * Fix botched subject line, include r-b tags.
> 
> Changes since v1:
>   * Move more of hw/s390x/tod.h to a new header.
>   * Use time2tod.
> 
> 
> r~
> 
> 
> Richard Henderson (2):
>   target/s390x: Split out s390-tod.h
>   target/s390x: Implement STCK et al for CONFIG_USER_ONLY
> 
>  include/hw/s390x/tod.h     | 16 +---------------
>  target/s390x/helper.h      |  2 +-
>  target/s390x/s390-tod.h    | 29 +++++++++++++++++++++++++++++
>  target/s390x/misc_helper.c | 34 ++++++++++++++++++++++------------
>  target/s390x/translate.c   |  2 ++
>  target/s390x/insn-data.def | 11 ++++++-----
>  6 files changed, 61 insertions(+), 33 deletions(-)
>  create mode 100644 target/s390x/s390-tod.h
> 

Thanks, applied.