64435eabdc
Update to v4.1.0. Also includes other major packaging changes as follows: There is a new package maintenance workflow - see README.PACKAGING for details. The sibling packages qemu-linux-user and qemu-testsuite are now created with the Build Service's MultiBuild feature. This also necessitates combining the qemu-linux-user changelog content back into qemu's. Luckily the delta there is quite small. Note that the qemu spec file is now that much busier, but added section markers should help reduce the confusion. Also qemu is being enabled for RISCV host compatibility, so some changes are related to that as well. OBS-URL: https://build.opensuse.org/request/show/730437 OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=487
30 lines
1.1 KiB
Diff
30 lines
1.1 KiB
Diff
From: Andreas Schwab <schwab@linux-m68k.org>
|
|
Date: Thu, 8 Sep 2016 11:21:05 +0200
|
|
Subject: linux-user: properly test for infinite timeout in poll (#8)
|
|
|
|
After "linux-user: use target_ulong" the poll syscall was no longer
|
|
handling infinite timeout.
|
|
|
|
/home/abuild/rpmbuild/BUILD/qemu-2.7.0-rc5/linux-user/syscall.c:9773:26: warning: comparison of unsigned expression >= 0 is always true [-Wtype-limits]
|
|
if (arg3 >= 0) {
|
|
^~
|
|
|
|
Signed-off-by: Andreas Schwab <schwab@suse.de>
|
|
---
|
|
linux-user/syscall.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
|
|
index 5360786be3466c44554b373b4238..330fbecb120ebc9ebc1c0ec121f6 100644
|
|
--- a/linux-user/syscall.c
|
|
+++ b/linux-user/syscall.c
|
|
@@ -9646,7 +9646,7 @@ static abi_long do_syscall1(void *cpu_env, int num, abi_ulong arg1,
|
|
{
|
|
struct timespec ts, *pts;
|
|
|
|
- if (arg3 >= 0) {
|
|
+ if ((abi_long)arg3 >= 0) {
|
|
/* Convert ms to secs, ns */
|
|
ts.tv_sec = arg3 / 1000;
|
|
ts.tv_nsec = (arg3 % 1000) * 1000000LL;
|