Re: [PATCH] cachestat: wire up cachestat for other architectures

2023-05-11 Thread Nhat Pham
On Wed, May 10, 2023 at 8:23 PM Michael Ellerman wrote: > > Nhat Pham writes: > > cachestat is previously only wired in for x86 (and architectures using > > the generic unistd.h table): > > > > https://lore.kernel.org/lkml/20230503013608.2431726-1-npha...@gmail.com/ > > > > This patch wires

Re: [PATCH] cachestat: wire up cachestat for other architectures

2023-05-11 Thread Nhat Pham
On Thu, May 11, 2023 at 12:05 AM Arnd Bergmann wrote: > > On Wed, May 10, 2023, at 21:58, Nhat Pham wrote: > > cachestat is previously only wired in for x86 (and architectures using > > the generic unistd.h table): > > > > https://lore.kernel.org/lkml/20230503013608.2431726-1-npha...@gmail.com/ >

Re: [PATCH] cachestat: wire up cachestat for other architectures

2023-05-11 Thread Nhat Pham
On Thu, May 11, 2023 at 12:01 AM Geert Uytterhoeven wrote: > > Hi Nat, > > On Wed, May 10, 2023 at 9:58 PM Nhat Pham wrote: > > cachestat is previously only wired in for x86 (and architectures using > > the generic unistd.h table): > > > >

Re: [PATCH] cachestat: wire up cachestat for other architectures

2023-05-11 Thread Heiko Carstens
On Wed, May 10, 2023 at 12:58:06PM -0700, Nhat Pham wrote: > cachestat is previously only wired in for x86 (and architectures using > the generic unistd.h table): > > https://lore.kernel.org/lkml/20230503013608.2431726-1-npha...@gmail.com/ > > This patch wires cachestat in for all the other

Re: [PATCH] cachestat: wire up cachestat for other architectures

2023-05-11 Thread Arnd Bergmann
On Wed, May 10, 2023, at 21:58, Nhat Pham wrote: > cachestat is previously only wired in for x86 (and architectures using > the generic unistd.h table): > > https://lore.kernel.org/lkml/20230503013608.2431726-1-npha...@gmail.com/ > > This patch wires cachestat in for all the other architectures. >

Re: [PATCH] cachestat: wire up cachestat for other architectures

2023-05-11 Thread Geert Uytterhoeven
Hi Nat, On Wed, May 10, 2023 at 9:58 PM Nhat Pham wrote: > cachestat is previously only wired in for x86 (and architectures using > the generic unistd.h table): > > https://lore.kernel.org/lkml/20230503013608.2431726-1-npha...@gmail.com/ > > This patch wires cachestat in for all the other

Re: [PATCH] cachestat: wire up cachestat for other architectures

2023-05-10 Thread Michael Ellerman
Nhat Pham writes: > cachestat is previously only wired in for x86 (and architectures using > the generic unistd.h table): > > https://lore.kernel.org/lkml/20230503013608.2431726-1-npha...@gmail.com/ > > This patch wires cachestat in for all the other architectures. > > Signed-off-by: Nhat Pham >

[PATCH] cachestat: wire up cachestat for other architectures

2023-05-10 Thread Nhat Pham
cachestat is previously only wired in for x86 (and architectures using the generic unistd.h table): https://lore.kernel.org/lkml/20230503013608.2431726-1-npha...@gmail.com/ This patch wires cachestat in for all the other architectures. Signed-off-by: Nhat Pham ---