Re: [PATCH] cachestat: wire up cachestat for other architectures
Nhat Pham <[email protected]>
| Newsgroups | gmane.linux.ports.alpha,gmane.linux.kernel.mm,gmane.linux.kernel.api,gmane.linux.kernel.cross-arch,gmane.linux.kernel,gmane.linux.ports.arm.kernel,gmane.linux.ports.ia64,gmane.linux.ports.mips,gmane.linux.ports.parisc,gmane.linux.ports.ppc64.devel,gmane.linux.ports.sh.devel,gmane.linux.ports.sparc |
|---|---|
| Message-ID | <CAKEwX=OHMaUzEG9hoMz20m9DnyFD4xC78KiNV1Qu0bUhkrYhAA@mail.gmail.com> |
On Wed, May 10, 2023 at 8:23 PM Michael Ellerman <[email protected]> wrote: > > Nhat Pham <[email protected]> writes: > > cachestat is previously only wired in for x86 (and architectures using > > the generic unistd.h table): > > > > https://lore.kernel.org/lkml/[email protected]/ > > > > This patch wires cachestat in for all the other architectures. > > > > Signed-off-by: Nhat Pham <[email protected]> > > --- > > arch/alpha/kernel/syscalls/syscall.tbl | 1 + > > arch/arm/tools/syscall.tbl | 1 + > > arch/ia64/kernel/syscalls/syscall.tbl | 1 + > > arch/m68k/kernel/syscalls/syscall.tbl | 1 + > > arch/microblaze/kernel/syscalls/syscall.tbl | 1 + > > arch/mips/kernel/syscalls/syscall_n32.tbl | 1 + > > arch/mips/kernel/syscalls/syscall_n64.tbl | 1 + > > arch/mips/kernel/syscalls/syscall_o32.tbl | 1 + > > arch/parisc/kernel/syscalls/syscall.tbl | 1 + > > arch/powerpc/kernel/syscalls/syscall.tbl | 1 + > > With the change to the selftest (see my other mail), I tested this on > powerpc and all tests pass. Saw the change you proposed, Michael! It looks good to me. Thanks for helping me make the selftest suite more robust :) > > Tested-by: Michael Ellerman <[email protected]> (powerpc) > > > cheers