[Qemu-devel] [PULL v2 0/5] Linux user for 3.1 patches

Laurent Vivier posted 5 patches 5 years, 6 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20180925205129.25261-1-laurent@vivier.eu
Test docker-clang@ubuntu failed
Test checkpatch passed
linux-user/Makefile.objs  |    2 +-
linux-user/elfload.c      |   10 +-
linux-user/fd-trans.c     | 1409 ++++++++++++++++++++++++++++++++++
linux-user/fd-trans.h     |   97 +++
linux-user/syscall.c      | 1519 ++-----------------------------------
linux-user/syscall_defs.h |    5 +
6 files changed, 1589 insertions(+), 1453 deletions(-)
create mode 100644 linux-user/fd-trans.c
create mode 100644 linux-user/fd-trans.h
[Qemu-devel] [PULL v2 0/5] Linux user for 3.1 patches
Posted by Laurent Vivier 5 years, 6 months ago
The following changes since commit 19b599f7664b2ebfd0f405fb79c14dd241557452:

  Merge remote-tracking branch 'remotes/armbru/tags/pull-error-2018-08-27-v2' into staging (2018-08-27 16:44:20 +0100)

are available in the Git repository at:

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

for you to fetch changes up to 5dfa88f7162f390463b227940e84a23af5407744:

  linux-user: do setrlimit selectively (2018-09-25 22:36:49 +0200)

----------------------------------------------------------------
- some fixes for setrlimit() and write()
- fixes ELF loader when host page size is greater than target page size
- add SO_LINGER to getsockopt()/setsockopt()
- move TargetFdTrans from syscall.c
  v2: add "#include <linux/netlink.h>" in linux-user/fd-trans.c

----------------------------------------------------------------

Carlo Marcelo Arenas Belón (1):
  linux-user: add SO_LINGER to {g,s}etsockopt

Laurent Vivier (1):
  linux-user: move TargetFdTrans functions to their own file

Max Filippov (1):
  linux-user: do setrlimit selectively

Shivaprasad G Bhat (1):
  linux-user: elf: mmap all the target-pages of hostpage for data
    segment

Tony Garnock-Jones (1):
  linux-user: write(fd, NULL, 0) parity with linux's treatment of same

 linux-user/Makefile.objs  |    2 +-
 linux-user/elfload.c      |   10 +-
 linux-user/fd-trans.c     | 1409 ++++++++++++++++++++++++++++++++++
 linux-user/fd-trans.h     |   97 +++
 linux-user/syscall.c      | 1519 ++-----------------------------------
 linux-user/syscall_defs.h |    5 +
 6 files changed, 1589 insertions(+), 1453 deletions(-)
 create mode 100644 linux-user/fd-trans.c
 create mode 100644 linux-user/fd-trans.h

-- 
2.17.1


Re: [Qemu-devel] [PULL v2 0/5] Linux user for 3.1 patches
Posted by Peter Maydell 5 years, 6 months ago
On 25 September 2018 at 21:51, Laurent Vivier <laurent@vivier.eu> wrote:
> The following changes since commit 19b599f7664b2ebfd0f405fb79c14dd241557452:
>
>   Merge remote-tracking branch 'remotes/armbru/tags/pull-error-2018-08-27-v2' into staging (2018-08-27 16:44:20 +0100)
>
> are available in the Git repository at:
>
>   git://github.com/vivier/qemu.git tags/linux-user-for-3.1-pull-request
>
> for you to fetch changes up to 5dfa88f7162f390463b227940e84a23af5407744:
>
>   linux-user: do setrlimit selectively (2018-09-25 22:36:49 +0200)
>
> ----------------------------------------------------------------
> - some fixes for setrlimit() and write()
> - fixes ELF loader when host page size is greater than target page size
> - add SO_LINGER to getsockopt()/setsockopt()
> - move TargetFdTrans from syscall.c
>   v2: add "#include <linux/netlink.h>" in linux-user/fd-trans.c
>
> ----------------------------------------------------------------

Applied, thanks.

-- PMM