mbox

[PULL,0/7] Linux user for 2.13 patches

Message ID 20180514181928.18034-1-laurent@vivier.eu
State New
Headers show

Pull-request

git://github.com/vivier/qemu.git tags/linux-user-for-2.13-pull-request

Message

Laurent Vivier May 14, 2018, 6:19 p.m. UTC
The following changes since commit c74e62ee3e2dc2955e07d004c71badecb68a84eb:

  Merge remote-tracking branch 'remotes/rth/tags/cota-target-pull-request' into staging (2018-05-11 15:41:29 +0100)

are available in the Git repository at:

  git://github.com/vivier/qemu.git tags/linux-user-for-2.13-pull-request

for you to fetch changes up to f606e4d6258fa82c3f6c1cc762ebe483db5f5db6:

  linux-user: correctly align types in thunking code (2018-05-14 12:01:21 +0200)

----------------------------------------------------------------
Mostly sparc fixes, allowing to do a "debootstrap --second-stage",
including some structures alignment fixes.
This series fixes following LTP 20180118 tests on a x86_64 host:
armhf:    epoll_wait02 getpriority01 nice03 pselect01 pselect01_64
arm64:    epoll_wait02 getpriority01 nice03 poll02 pselect01 pselect01_64 select04
s390x:    epoll_wait02 getpriority01 nice03 poll02 pselect01 pselect01_64 select04
mips:     epoll_wait02 getpriority01 nice03 poll02 pselect01 pselect01_64
mips64el: epoll_wait02 getpriority01 nice03 pselect01 pselect01_64 select04
mipsel:   epoll_wait02 getpriority01 nice03 madvise06 poll02 select04
ppc64:    epoll_wait02 getpriority01 nice03 poll02 select04
ppc64el:  getpriority01 nice03 pselect01 select04      
sh4:      getpriority01 nice03 madvise06 poll02 pselect01 select04     
----------------------------------------------------------------

Laurent Vivier (7):
  linux-user: define correct fcntl() values for sparc
  linux-user: fix flock/flock64 padding
  linux-user: update sparc/syscall_nr.h to linux header 4.16
  linux-user: fix conversion of flock/flock64 l_type field
  linux-user: add sparc/sparc64 specific errno
  linux-user: fix UNAME_MACHINE for sparc/sparc64
  linux-user: correctly align types in thunking code

 include/exec/user/thunk.h           |  22 +++-
 linux-user/sparc/syscall_nr.h       |  32 +++++-
 linux-user/sparc/target_errno.h     | 207 ++++++++++++++++++++++++++++++++++++
 linux-user/sparc/target_syscall.h   |   4 +-
 linux-user/sparc64/syscall_nr.h     |  20 ++--
 linux-user/sparc64/target_syscall.h |   5 +-
 linux-user/syscall.c                |  66 ++++++++----
 linux-user/syscall_defs.h           |  25 ++++-
 8 files changed, 343 insertions(+), 38 deletions(-)
 create mode 100644 linux-user/sparc/target_errno.h

Comments

Peter Maydell May 15, 2018, 10:11 a.m. UTC | #1
On 14 May 2018 at 19:19, Laurent Vivier <laurent@vivier.eu> wrote:
> The following changes since commit c74e62ee3e2dc2955e07d004c71badecb68a84eb:
>
>   Merge remote-tracking branch 'remotes/rth/tags/cota-target-pull-request' into staging (2018-05-11 15:41:29 +0100)
>
> are available in the Git repository at:
>
>   git://github.com/vivier/qemu.git tags/linux-user-for-2.13-pull-request
>
> for you to fetch changes up to f606e4d6258fa82c3f6c1cc762ebe483db5f5db6:
>
>   linux-user: correctly align types in thunking code (2018-05-14 12:01:21 +0200)
>
> ----------------------------------------------------------------
> Mostly sparc fixes, allowing to do a "debootstrap --second-stage",
> including some structures alignment fixes.
> This series fixes following LTP 20180118 tests on a x86_64 host:
> armhf:    epoll_wait02 getpriority01 nice03 pselect01 pselect01_64
> arm64:    epoll_wait02 getpriority01 nice03 poll02 pselect01 pselect01_64 select04
> s390x:    epoll_wait02 getpriority01 nice03 poll02 pselect01 pselect01_64 select04
> mips:     epoll_wait02 getpriority01 nice03 poll02 pselect01 pselect01_64
> mips64el: epoll_wait02 getpriority01 nice03 pselect01 pselect01_64 select04
> mipsel:   epoll_wait02 getpriority01 nice03 madvise06 poll02 select04
> ppc64:    epoll_wait02 getpriority01 nice03 poll02 select04
> ppc64el:  getpriority01 nice03 pselect01 select04
> sh4:      getpriority01 nice03 madvise06 poll02 pselect01 select04
> ----------------------------------------------------------------
>

Applied, thanks.

-- PMM