[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v4 00/11] linux user: Fix assorted Qemu user mode is
From: |
Aleksandar Markovic |
Subject: |
[Qemu-devel] [PATCH v4 00/11] linux user: Fix assorted Qemu user mode issues |
Date: |
Wed, 14 Sep 2016 17:21:58 +0200 |
From: Aleksandar Markovic <address@hidden>
v3->v4:
- rebased to the latest code
- added patch on clock_adjtime() support
- minor commit messages improvements
v2->v3:
- rebased to the latest code
- merged patches on adjtimex(), sysfs(), and ustat() from another series
- added patch on socketcall() support
- cleanup patches reorganized
v1->v2:
- improved usage of "#ifdefs" in patch on syslog()
- removed EIDRM-related code from patch on msgrcv(), since this error
code is already handled well
- added three cleanup patches
(also, v1 for some reason did not appear on qemu-devel, but mails are sent)
This series fix certain Qemu user mode issues. The fixes mainly originate
from observation of LTP tests failures for execution in Qemu user mode
on various platforms. The series also contains four cleanup patches.
Aleksandar Markovic (11):
linux-user: Add support for adjtimex() syscall
linux-user: Add support for clock_adjtime() syscall
linux-user: Add support for sysfs() syscall
linux-user: Add support for ustat() syscall
linux-user: Fix msgrcv() and msgsnd() syscalls support
linux-user: Fix socketcall() syscall support
linux-user: Fix syslog() syscall support
linux-user: Remove tabs and trailing spaces from linux-user/main.c
linux-user: Improve braces-related formatting in linux-user/main.c
linux-user: Improve usage of spaces in linux-user/main.c
linux-user: Remove a duplicate item from strace.list
linux-user/main.c | 1096 +++++++++++++++++++++++----------------------
linux-user/strace.c | 118 +++++
linux-user/strace.list | 12 +-
linux-user/syscall.c | 221 ++++++++-
linux-user/syscall_defs.h | 53 +++
5 files changed, 942 insertions(+), 558 deletions(-)
--
2.9.3
- [Qemu-devel] [PATCH v4 00/11] linux user: Fix assorted Qemu user mode issues,
Aleksandar Markovic <=
- [Qemu-devel] [PATCH v4 01/11] linux-user: Add support for adjtimex() syscall, Aleksandar Markovic, 2016/09/14
- [Qemu-devel] [PATCH v4 02/11] linux-user: Add support for clock_adjtime() syscall, Aleksandar Markovic, 2016/09/14
- [Qemu-devel] [PATCH v4 03/11] linux-user: Add support for sysfs() syscall, Aleksandar Markovic, 2016/09/14
- [Qemu-devel] [PATCH v4 04/11] linux-user: Add support for ustat() syscall, Aleksandar Markovic, 2016/09/14
- [Qemu-devel] [PATCH v4 05/11] linux-user: Fix msgrcv() and msgsnd() syscalls support, Aleksandar Markovic, 2016/09/14
- [Qemu-devel] [PATCH v4 06/11] linux-user: Fix socketcall() syscall support, Aleksandar Markovic, 2016/09/14
- [Qemu-devel] [PATCH v4 07/11] linux-user: Fix syslog() syscall support, Aleksandar Markovic, 2016/09/14
- [Qemu-devel] [PATCH v4 08/11] linux-user: Remove tabs and trailing spaces from linux-user/main.c, Aleksandar Markovic, 2016/09/14
- [Qemu-devel] [PATCH v4 09/11] linux-user: Improve braces-related formatting in linux-user/main.c, Aleksandar Markovic, 2016/09/14
- [Qemu-devel] [PATCH v4 10/11] linux-user: Improve usage of spaces in linux-user/main.c, Aleksandar Markovic, 2016/09/14