[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [RFC 2/3] linux-user: Drop uint and ulong
From: |
Juan Quintela |
Subject: |
Re: [RFC 2/3] linux-user: Drop uint and ulong |
Date: |
Wed, 10 May 2023 17:12:07 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) |
Richard Henderson <richard.henderson@linaro.org> wrote:
> On 5/10/23 15:39, Juan Quintela wrote:
>> static bool can_passthrough_madvise(abi_ulong start, abi_ulong end)
>> {
>> - ulong addr;
>> + unsigned long addr;
>
> This should be abi_ulong, to match the parameters.
> Which should matter for 32-bit host and 64-bit guest.
>
> Otherwise,
Thanks. Changing it.
> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
>
>
> r~