]> git.proxmox.com Git - qemu.git/commit
linux-user/syscall.c: Don't warn about unimplemented get_robust_list
authorPeter Maydell <peter.maydell@linaro.org>
Fri, 8 Feb 2013 04:34:54 +0000 (04:34 +0000)
committerMichael Roth <mdroth@linux.vnet.ibm.com>
Tue, 2 Apr 2013 21:28:53 +0000 (16:28 -0500)
commit799a34a48ba609f1157bf9a7ec1170e7d67faab0
tree0baee4be5ddbcad42e49e00ff75cede0e21d964e
parent8378910554a03d54c22ab46cfaec491ee95b8315
linux-user/syscall.c: Don't warn about unimplemented get_robust_list

The nature of the kernel ABI for the get_robust_list and set_robust_list
syscalls means we cannot implement them in QEMU. Make get_robust_list
silently return ENOSYS rather than using the default "print message and
then fail ENOSYS" code path, in the same way we already do for
set_robust_list, and add a comment documenting why we do this.

This silences warnings which were being produced for emulating
even trivial programs like 'ls' in x86-64-on-x86-64.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
(cherry picked from commit e9a970a8316f9f86a6c800a9a90175bd593f862c)

Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
linux-user/syscall.c