[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH] linux-user: erroneous fd_trans_unregister call
From: |
Laurent Vivier |
Subject: |
Re: [Qemu-devel] [PATCH] linux-user: erroneous fd_trans_unregister call |
Date: |
Fri, 23 Aug 2019 18:28:04 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.8.0 |
Le 19/08/2019 à 20:53, Shu-Chun Weng via Qemu-devel a écrit :
> timer_getoverrun returns the "overrun count" for the timer, which is not
> a file descriptor and thus should not call fd_trans_unregister on it.
>
> Signed-off-by: Shu-Chun Weng <address@hidden>
> ---
> linux-user/syscall.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/linux-user/syscall.c b/linux-user/syscall.c
> index 8367cb138d..012d79f8c1 100644
> --- a/linux-user/syscall.c
> +++ b/linux-user/syscall.c
> @@ -11846,7 +11846,6 @@ static abi_long do_syscall1(void *cpu_env, int num,
> abi_long arg1,
> timer_t htimer = g_posix_timers[timerid];
> ret = get_errno(timer_getoverrun(htimer));
> }
> - fd_trans_unregister(ret);
> return ret;
> }
> #endif
>
Applied to my linux-user branch.
Thanks,
Laurent