[Qemu-devel] [PULL 0/7] Linux user for 4.1 patches

Laurent Vivier posted 7 patches 4 years, 11 months ago
Test docker-mingw@fedora passed
Test docker-clang@ubuntu passed
Test checkpatch failed
Test asan passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20190510071557.30126-1-laurent@vivier.eu
Maintainers: Riku Voipio <riku.voipio@iki.fi>, Laurent Vivier <laurent@vivier.eu>
There is a newer version of this series
linux-user/ioctls.h  |  2 +-
linux-user/elfload.c | 20 +++++++++++++------
linux-user/exit.c    |  3 +++
linux-user/signal.c  |  5 +++++
linux-user/syscall.c | 47 +++++++++++++++++++++++++++++++++++++++++---
linux-user/uname.c   |  5 ++---
6 files changed, 69 insertions(+), 13 deletions(-)
[Qemu-devel] [PULL 0/7] Linux user for 4.1 patches
Posted by Laurent Vivier 4 years, 11 months ago
The following changes since commit 68a7b9724fe80bedb85060bde605213ce3f9baec:

  Merge remote-tracking branch 'remotes/vivier2/tags/trivial-branch-pull-request' into staging (2019-05-09 13:36:10 +0100)

are available in the Git repository at:

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

for you to fetch changes up to 6b333239ab1a4fa98f07f907f6268484a8514d1e:

  linux-user: fix GPROF build failure (2019-05-09 19:08:13 +0200)

----------------------------------------------------------------
GPROF fixes, GCC9 fixes, SIOCGIFNAME fix, new IPV6 sockopts, elf fix

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

Alex Bennée (2):
  linux-user: avoid treading on gprof's SIGPROF signals
  linux-user: fix GPROF build failure

Alistair Francis (1):
  linux-user/elfload: Fix GCC 9 build warnings

Daniel P. Berrangé (1):
  linux-user: avoid string truncation warnings in uname field copying

Erik Kline via Qemu-devel (1):
  The ioctl(SIOCGIFNAME) call requires a struct ifreq.

Giuseppe Musacchio (1):
  linux-user: elf: Map empty PT_LOAD segments

Helge Deller (1):
  linux-user: Add missing IPV6 sockopts

 linux-user/ioctls.h  |  2 +-
 linux-user/elfload.c | 20 +++++++++++++------
 linux-user/exit.c    |  3 +++
 linux-user/signal.c  |  5 +++++
 linux-user/syscall.c | 47 +++++++++++++++++++++++++++++++++++++++++---
 linux-user/uname.c   |  5 ++---
 6 files changed, 69 insertions(+), 13 deletions(-)

-- 
2.20.1


Re: [Qemu-devel] [PULL 0/7] Linux user for 4.1 patches
Posted by Peter Maydell 4 years, 11 months ago
On Fri, 10 May 2019 at 08:18, Laurent Vivier <laurent@vivier.eu> wrote:
>
> The following changes since commit 68a7b9724fe80bedb85060bde605213ce3f9baec:
>
>   Merge remote-tracking branch 'remotes/vivier2/tags/trivial-branch-pull-request' into staging (2019-05-09 13:36:10 +0100)
>
> are available in the Git repository at:
>
>   git://github.com/vivier/qemu.git tags/linux-user-for-4.1-pull-request
>
> for you to fetch changes up to 6b333239ab1a4fa98f07f907f6268484a8514d1e:
>
>   linux-user: fix GPROF build failure (2019-05-09 19:08:13 +0200)
>
> ----------------------------------------------------------------
> GPROF fixes, GCC9 fixes, SIOCGIFNAME fix, new IPV6 sockopts, elf fix
>
> ----------------------------------------------------------------
>
> Alex Bennée (2):
>   linux-user: avoid treading on gprof's SIGPROF signals
>   linux-user: fix GPROF build failure
>
> Alistair Francis (1):
>   linux-user/elfload: Fix GCC 9 build warnings
>
> Daniel P. Berrangé (1):
>   linux-user: avoid string truncation warnings in uname field copying
>
> Erik Kline via Qemu-devel (1):
>   The ioctl(SIOCGIFNAME) call requires a struct ifreq.

Hi Laurent -- it looks like you forgot to fix up the
author email in this patch, so my pullreq-application
script complains:

[staging 181447e27a] Merge remote-tracking branch
'remotes/vivier2/tags/linux-user-for-4.1-pull-request' into staging
 Date: Fri May 10 10:06:35 2019 +0100
Erik Kline via Qemu-devel (1):
      The ioctl(SIOCGIFNAME) call requires a struct ifreq.
ERROR: pull request includes commits attributed to list

Could you fix it up and resubmit the pull, please?

thanks
-- PMM

Re: [Qemu-devel] [PULL 0/7] Linux user for 4.1 patches
Posted by Laurent Vivier 4 years, 11 months ago
On 10/05/2019 11:16, Peter Maydell wrote:
> On Fri, 10 May 2019 at 08:18, Laurent Vivier <laurent@vivier.eu> wrote:
>>
>> The following changes since commit 68a7b9724fe80bedb85060bde605213ce3f9baec:
>>
>>    Merge remote-tracking branch 'remotes/vivier2/tags/trivial-branch-pull-request' into staging (2019-05-09 13:36:10 +0100)
>>
>> are available in the Git repository at:
>>
>>    git://github.com/vivier/qemu.git tags/linux-user-for-4.1-pull-request
>>
>> for you to fetch changes up to 6b333239ab1a4fa98f07f907f6268484a8514d1e:
>>
>>    linux-user: fix GPROF build failure (2019-05-09 19:08:13 +0200)
>>
>> ----------------------------------------------------------------
>> GPROF fixes, GCC9 fixes, SIOCGIFNAME fix, new IPV6 sockopts, elf fix
>>
>> ----------------------------------------------------------------
>>
>> Alex Bennée (2):
>>    linux-user: avoid treading on gprof's SIGPROF signals
>>    linux-user: fix GPROF build failure
>>
>> Alistair Francis (1):
>>    linux-user/elfload: Fix GCC 9 build warnings
>>
>> Daniel P. Berrangé (1):
>>    linux-user: avoid string truncation warnings in uname field copying
>>
>> Erik Kline via Qemu-devel (1):
>>    The ioctl(SIOCGIFNAME) call requires a struct ifreq.
> 
> Hi Laurent -- it looks like you forgot to fix up the
> author email in this patch, so my pullreq-application
> script complains:
> 
> [staging 181447e27a] Merge remote-tracking branch
> 'remotes/vivier2/tags/linux-user-for-4.1-pull-request' into staging
>   Date: Fri May 10 10:06:35 2019 +0100
> Erik Kline via Qemu-devel (1):
>        The ioctl(SIOCGIFNAME) call requires a struct ifreq.
> ERROR: pull request includes commits attributed to list
> 
> Could you fix it up and resubmit the pull, please?

Done.

And thank you to have checked that.

Laurent