[PULL 00/17] Linux user for 5.0 patches

Laurent Vivier posted 17 patches 4 years, 3 months ago
Test FreeBSD passed
Test docker-mingw@fedora passed
Test checkpatch passed
Test docker-quick@centos7 passed
Failed in applying to current master (apply log)
There is a newer version of this series
configure                  |  9 +++++
linux-user/elfload.c       | 75 +++++++++++++++++++++++++++++---------
linux-user/ioctls.h        | 41 +++++++++++++++++++++
linux-user/qemu.h          |  1 +
linux-user/syscall.c       |  6 +++
linux-user/syscall_defs.h  | 59 ++++++++++++++++++++++++++++--
linux-user/syscall_types.h | 37 +++++++++++++++++++
7 files changed, 207 insertions(+), 21 deletions(-)
[PULL 00/17] Linux user for 5.0 patches
Posted by Laurent Vivier 4 years, 3 months ago
The following changes since commit 3e08b2b9cb64bff2b73fa9128c0e49bfcde0dd40:

  Merge remote-tracking branch 'remotes/philmd-gitlab/tags/edk2-next-20200121' into staging (2020-01-21 15:29:25 +0000)

are available in the Git repository at:

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

for you to fetch changes up to a7b09746679c1815115249ec69197e454efdfb15:

  linux-user: Add support for read/clear RTC voltage low detector using ioctls (2020-01-22 15:21:37 +0100)

----------------------------------------------------------------
Fix mmap guest space and brk
Add FS/FD/RTC/KCOV ioctls

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

Aleksandar Markovic (8):
  linux-user: Add support for FS_IOC_<GET|SET>VERSION ioctls
  linux-user: Add support for FS_IOC32_<GET|SET>FLAGS ioctls
  linux-user: Add support for FS_IOC32_<GET|SET>VERSION ioctls
  linux-user: Add support for FD<SETEMSGTRESH|SETMAXERRS|GETMAXERRS>
    ioctls
  linux-user: Add support for FDFMT<BEG|TRK|END> ioctls
  configure: Detect kcov support and introduce CONFIG_KCOV
  linux-user: Add support for KCOV_<ENABLE|DISABLE> ioctls
  linux-user: Add support for KCOV_INIT_TRACE ioctl

Filip Bozuta (7):
  linux-user: Add support for TYPE_LONG and TYPE_ULONG in do_ioctl()
  linux-user: Add support for enabling/disabling RTC features using
    ioctls
  linux-user: Add support for getting/setting RTC time and alarm using
    ioctls
  linux-user: Add support for getting/setting RTC periodic interrupt and
    epoch using ioctls
  linux-user: Add support for getting/setting RTC wakeup alarm using
    ioctls
  linux-user: Add support for getting/setting RTC PLL correction using
    ioctls
  linux-user: Add support for read/clear RTC voltage low detector using
    ioctls

Richard Henderson (1):
  linux-user: Reserve space for brk

Xinyu Li (1):
  linux-user:Fix align mistake when mmap guest space

 configure                  |  9 +++++
 linux-user/elfload.c       | 75 +++++++++++++++++++++++++++++---------
 linux-user/ioctls.h        | 41 +++++++++++++++++++++
 linux-user/qemu.h          |  1 +
 linux-user/syscall.c       |  6 +++
 linux-user/syscall_defs.h  | 59 ++++++++++++++++++++++++++++--
 linux-user/syscall_types.h | 37 +++++++++++++++++++
 7 files changed, 207 insertions(+), 21 deletions(-)

-- 
2.24.1


Re: [PULL 00/17] Linux user for 5.0 patches
Posted by Peter Maydell 4 years, 3 months ago
On Thu, 23 Jan 2020 at 08:25, Laurent Vivier <laurent@vivier.eu> wrote:
>
> The following changes since commit 3e08b2b9cb64bff2b73fa9128c0e49bfcde0dd40:
>
>   Merge remote-tracking branch 'remotes/philmd-gitlab/tags/edk2-next-20200121' into staging (2020-01-21 15:29:25 +0000)
>
> are available in the Git repository at:
>
>   git://github.com/vivier/qemu.git tags/linux-user-for-5.0-pull-request
>
> for you to fetch changes up to a7b09746679c1815115249ec69197e454efdfb15:
>
>   linux-user: Add support for read/clear RTC voltage low detector using ioctls (2020-01-22 15:21:37 +0100)
>
> ----------------------------------------------------------------
> Fix mmap guest space and brk
> Add FS/FD/RTC/KCOV ioctls
>

Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/5.0
for any user-visible changes.

-- PMM