Re: [PATCH 0/2] fix perf tool build error on MUSL libc

2020-12-10 Thread Namhyung Kim
Adding people in the original patch + kbuild folks. On Thu, Dec 10, 2020 at 11:48 PM Chanho Park wrote: > > __always_inline can cause build error on musl libc because it's not > defined. We need to include before asm/byteorder.h. > tools/include/uapi/linux/perf_event.h is copied version from > i

[PATCH 0/2] fix perf tool build error on MUSL libc

2020-12-10 Thread Chanho Park
__always_inline can cause build error on musl libc because it's not defined. We need to include before asm/byteorder.h. tools/include/uapi/linux/perf_event.h is copied version from include/uapi/linux/perf_event.h. To fix this, we need to apply this change both header files. Cc: Mathieu Poirier C