Re: [PATCH] linux-user: Replace __u64 with uint64_t

2021-11-10 Thread Khem Raj
On Wed, Nov 10, 2021 at 8:03 AM Warner Losh wrote: > > > > On Wed, Nov 10, 2021 at 8:19 AM Richard Henderson > wrote: >> >> On 11/10/21 4:12 PM, Richard Henderson wrote: >> > On 11/10/21 10:25 AM, Richard Henderson wrote: >> >> On 11/8/21 8:42 PM, Khem Raj wrote: >> >>> uint64_t is available in

Re: [PATCH] linux-user: Replace __u64 with uint64_t

2021-11-10 Thread Warner Losh
On Wed, Nov 10, 2021 at 8:19 AM Richard Henderson < richard.hender...@linaro.org> wrote: > On 11/10/21 4:12 PM, Richard Henderson wrote: > > On 11/10/21 10:25 AM, Richard Henderson wrote: > >> On 11/8/21 8:42 PM, Khem Raj wrote: > >>> uint64_t is available in all userspaces via compiler include

Re: [PATCH] linux-user: Replace __u64 with uint64_t

2021-11-10 Thread Richard Henderson
On 11/10/21 4:12 PM, Richard Henderson wrote: On 11/10/21 10:25 AM, Richard Henderson wrote: On 11/8/21 8:42 PM, Khem Raj wrote: uint64_t is available in all userspaces via compiler include stdint.h therefore use it instead of __u64 which is linux internal type, it fixes build on some

Re: [PATCH] linux-user: Replace __u64 with uint64_t

2021-11-10 Thread Richard Henderson
On 11/10/21 10:25 AM, Richard Henderson wrote: On 11/8/21 8:42 PM, Khem Raj wrote: uint64_t is available in all userspaces via compiler include stdint.h therefore use it instead of __u64 which is linux internal type, it fixes build on some platforms eg. aarch64 systems using musl C library

Re: [PATCH] linux-user: Replace __u64 with uint64_t

2021-11-10 Thread Richard Henderson
On 11/8/21 8:42 PM, Khem Raj wrote: uint64_t is available in all userspaces via compiler include stdint.h therefore use it instead of __u64 which is linux internal type, it fixes build on some platforms eg. aarch64 systems using musl C library Signed-off-by: Khem Raj ---

Re: [PATCH] linux-user: Replace __u64 with uint64_t

2021-11-09 Thread Warner Losh
> On Nov 8, 2021, at 12:42 PM, Khem Raj wrote: > > uint64_t is available in all userspaces via compiler include stdint.h > therefore use it instead of __u64 which is linux internal type, it fixes > build on some platforms eg. aarch64 systems using musl C library > > Signed-off-by: Khem Raj

Re: [PATCH] linux-user: Replace __u64 with uint64_t

2021-11-09 Thread Philippe Mathieu-Daudé
On 11/8/21 20:42, Khem Raj wrote: > uint64_t is available in all userspaces via compiler include stdint.h > therefore use it instead of __u64 which is linux internal type, it fixes > build on some platforms eg. aarch64 systems using musl C library > > Signed-off-by: Khem Raj > --- >

[PATCH] linux-user: Replace __u64 with uint64_t

2021-11-08 Thread Khem Raj
uint64_t is available in all userspaces via compiler include stdint.h therefore use it instead of __u64 which is linux internal type, it fixes build on some platforms eg. aarch64 systems using musl C library Upstream-Status: Submitted [] Signed-off-by: Khem Raj ---

[PATCH] linux-user: Replace __u64 with uint64_t

2021-11-08 Thread Khem Raj
uint64_t is available in all userspaces via compiler include stdint.h therefore use it instead of __u64 which is linux internal type, it fixes build on some platforms eg. aarch64 systems using musl C library Signed-off-by: Khem Raj --- linux-user/host/aarch64/hostdep.h | 2 +- 1 file changed, 1