All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL v2 00/16] linux-user changes for v2.7
@ 2016-07-19 16:50 riku.voipio
  2016-07-20 11:38 ` Laurent Vivier
  2016-07-20 11:47 ` Peter Maydell
  0 siblings, 2 replies; 4+ messages in thread
From: riku.voipio @ 2016-07-19 16:50 UTC (permalink / raw)
  To: qemu-devel; +Cc: Riku Voipio

From: Riku Voipio <riku.voipio@linaro.org>

The following changes since commit ad31cd4c6945d7e0f0546d92d29dcd12325b4e4a:

  Merge remote-tracking branch 'remotes/jnsnow/tags/ide-pull-request' into staging (2016-07-19 11:47:07 +0100)

are available in the git repository at:

  git://git.linaro.org/people/riku.voipio/qemu.git tags/pull-linux-user-20160719-2

for you to fetch changes up to c4e1cbd437776f99d45d7d2ddd7543ee3883ac98:

  linux-user: AArch64 has sync_file_range, not sync_file_range2 (2016-07-19 16:18:11 +0300)

----------------------------------------------------------------
linux-user fixes before 2.7 freeze, v2: fix Timothys commit message

----------------------------------------------------------------
Laurent Vivier (6):
      linux-user: fd_trans_*_data() returns the length
      linux-user: fix netlink memory corruption
      linux-user: add fd_trans helper in do_recvfrom()
      linux-user: convert sockaddr_ll from host to target
      linux-user: add nested netlink types
      linux-user: define missing sparc syscalls

Peter Maydell (9):
      linux-user: Check sigsetsize argument to syscalls
      linux-user: Add loop control ioctls
      linux-user: Correct type for BLKSSZGET
      linux-user: Correct type for LOOP_GET_STATUS{,64} ioctls
      linux-user: Forget about synchronous signal once it is delivered
      linux-user: Handle short lengths in host_to_target_sockaddr()
      linux-user: Add some new blk ioctls
      linux-user: Fix type for SIOCATMARK ioctl
      linux-user: AArch64 has sync_file_range, not sync_file_range2

Timothy Pearson (1):
      linux-user: Fix terminal control ioctls

 linux-user/aarch64/syscall_nr.h |   3 +-
 linux-user/ioctls.h             |  41 ++++-
 linux-user/linux_loop.h         |  11 +-
 linux-user/signal.c             |   8 +-
 linux-user/sparc/syscall_nr.h   |   3 +
 linux-user/syscall.c            | 454 +++++++++++++++++++++++++++++++++++++++++++++++++++---
 linux-user/syscall_defs.h       |  15 ++
 linux-user/syscall_types.h      |   9 +-
 linux-user/x86_64/termbits.h    |  12 +-
 9 files changed, 516 insertions(+), 40 deletions(-)

2.1.4

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

* Re: [Qemu-devel] [PULL v2 00/16] linux-user changes for v2.7
  2016-07-19 16:50 [Qemu-devel] [PULL v2 00/16] linux-user changes for v2.7 riku.voipio
@ 2016-07-20 11:38 ` Laurent Vivier
  2016-07-20 11:48   ` Peter Maydell
  2016-07-20 11:47 ` Peter Maydell
  1 sibling, 1 reply; 4+ messages in thread
From: Laurent Vivier @ 2016-07-20 11:38 UTC (permalink / raw)
  To: qemu-devel, Peter Maydell; +Cc: riku.voipio

Hi,

Is this too late to have this pushed before -rc0?

Some of them are important bugfixes for netlink...

Thanks,
Laurent

Le 19/07/2016 à 18:50, riku.voipio@linaro.org a écrit :
> From: Riku Voipio <riku.voipio@linaro.org>
> 
> The following changes since commit ad31cd4c6945d7e0f0546d92d29dcd12325b4e4a:
> 
>   Merge remote-tracking branch 'remotes/jnsnow/tags/ide-pull-request' into staging (2016-07-19 11:47:07 +0100)
> 
> are available in the git repository at:
> 
>   git://git.linaro.org/people/riku.voipio/qemu.git tags/pull-linux-user-20160719-2
> 
> for you to fetch changes up to c4e1cbd437776f99d45d7d2ddd7543ee3883ac98:
> 
>   linux-user: AArch64 has sync_file_range, not sync_file_range2 (2016-07-19 16:18:11 +0300)
> 
> ----------------------------------------------------------------
> linux-user fixes before 2.7 freeze, v2: fix Timothys commit message
> 
> ----------------------------------------------------------------
> Laurent Vivier (6):
>       linux-user: fd_trans_*_data() returns the length
>       linux-user: fix netlink memory corruption
>       linux-user: add fd_trans helper in do_recvfrom()
>       linux-user: convert sockaddr_ll from host to target
>       linux-user: add nested netlink types
>       linux-user: define missing sparc syscalls
> 
> Peter Maydell (9):
>       linux-user: Check sigsetsize argument to syscalls
>       linux-user: Add loop control ioctls
>       linux-user: Correct type for BLKSSZGET
>       linux-user: Correct type for LOOP_GET_STATUS{,64} ioctls
>       linux-user: Forget about synchronous signal once it is delivered
>       linux-user: Handle short lengths in host_to_target_sockaddr()
>       linux-user: Add some new blk ioctls
>       linux-user: Fix type for SIOCATMARK ioctl
>       linux-user: AArch64 has sync_file_range, not sync_file_range2
> 
> Timothy Pearson (1):
>       linux-user: Fix terminal control ioctls
> 
>  linux-user/aarch64/syscall_nr.h |   3 +-
>  linux-user/ioctls.h             |  41 ++++-
>  linux-user/linux_loop.h         |  11 +-
>  linux-user/signal.c             |   8 +-
>  linux-user/sparc/syscall_nr.h   |   3 +
>  linux-user/syscall.c            | 454 +++++++++++++++++++++++++++++++++++++++++++++++++++---
>  linux-user/syscall_defs.h       |  15 ++
>  linux-user/syscall_types.h      |   9 +-
>  linux-user/x86_64/termbits.h    |  12 +-
>  9 files changed, 516 insertions(+), 40 deletions(-)
> 
> 2.1.4
> 
> 

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

* Re: [Qemu-devel] [PULL v2 00/16] linux-user changes for v2.7
  2016-07-19 16:50 [Qemu-devel] [PULL v2 00/16] linux-user changes for v2.7 riku.voipio
  2016-07-20 11:38 ` Laurent Vivier
@ 2016-07-20 11:47 ` Peter Maydell
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Maydell @ 2016-07-20 11:47 UTC (permalink / raw)
  To: Riku Voipio; +Cc: QEMU Developers

On 19 July 2016 at 17:50,  <riku.voipio@linaro.org> wrote:
> From: Riku Voipio <riku.voipio@linaro.org>
>
> The following changes since commit ad31cd4c6945d7e0f0546d92d29dcd12325b4e4a:
>
>   Merge remote-tracking branch 'remotes/jnsnow/tags/ide-pull-request' into staging (2016-07-19 11:47:07 +0100)
>
> are available in the git repository at:
>
>   git://git.linaro.org/people/riku.voipio/qemu.git tags/pull-linux-user-20160719-2
>
> for you to fetch changes up to c4e1cbd437776f99d45d7d2ddd7543ee3883ac98:
>
>   linux-user: AArch64 has sync_file_range, not sync_file_range2 (2016-07-19 16:18:11 +0300)
>
> ----------------------------------------------------------------
> linux-user fixes before 2.7 freeze, v2: fix Timothys commit message
>
> ----------------------------------------------------------------
> Laurent Vivier (6):
>       linux-user: fd_trans_*_data() returns the length
>       linux-user: fix netlink memory corruption
>       linux-user: add fd_trans helper in do_recvfrom()
>       linux-user: convert sockaddr_ll from host to target
>       linux-user: add nested netlink types
>       linux-user: define missing sparc syscalls
>
> Peter Maydell (9):
>       linux-user: Check sigsetsize argument to syscalls
>       linux-user: Add loop control ioctls
>       linux-user: Correct type for BLKSSZGET
>       linux-user: Correct type for LOOP_GET_STATUS{,64} ioctls
>       linux-user: Forget about synchronous signal once it is delivered
>       linux-user: Handle short lengths in host_to_target_sockaddr()
>       linux-user: Add some new blk ioctls
>       linux-user: Fix type for SIOCATMARK ioctl
>       linux-user: AArch64 has sync_file_range, not sync_file_range2
>
> Timothy Pearson (1):
>       linux-user: Fix terminal control ioctls

Applied, thanks.

-- PMM

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

* Re: [Qemu-devel] [PULL v2 00/16] linux-user changes for v2.7
  2016-07-20 11:38 ` Laurent Vivier
@ 2016-07-20 11:48   ` Peter Maydell
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Maydell @ 2016-07-20 11:48 UTC (permalink / raw)
  To: Laurent Vivier; +Cc: QEMU Developers, Riku Voipio

On 20 July 2016 at 12:38, Laurent Vivier <laurent@vivier.eu> wrote:
> Hi,
>
> Is this too late to have this pushed before -rc0?
>
> Some of them are important bugfixes for netlink...

I'm still working through the accumulated pull requests
before tagging rc0, 8 or 9 to go yet.

thanks
-- PMM

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

end of thread, other threads:[~2016-07-20 11:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-19 16:50 [Qemu-devel] [PULL v2 00/16] linux-user changes for v2.7 riku.voipio
2016-07-20 11:38 ` Laurent Vivier
2016-07-20 11:48   ` Peter Maydell
2016-07-20 11:47 ` Peter Maydell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.