[GIT PULL] Please pull powerpc/linux.git powerpc-4.8-6 tag

2016-09-17 Thread Michael Ellerman
Hi Linus, Please pull some more powerpc fixes for 4.8: The following changes since commit f077aaf0754bcba0fffdbd925bc12f09cd1e38aa: powerpc/mm: Don't alias user region to other regions below PAGE_OFFSET (2016-09-08 13:15:33 +1000) are available in the git repository at: git://git.kernel.o

[PATCH v2 08/11] powerpc/tracing: fix compat syscall handling

2016-09-17 Thread Marcin Nowakowski
Adapt the code to make use of new syscall handling interface Signed-off-by: Marcin Nowakowski Cc: Steven Rostedt Cc: Ingo Molnar Cc: Benjamin Herrenschmidt Cc: Paul Mackerras Cc: Michael Ellerman Cc: linuxppc-dev@lists.ozlabs.org --- arch/powerpc/include/asm/ftrace.h | 11 +++ arch/

[PATCH v2 03/11] tracing/syscalls: add compat syscall metadata

2016-09-17 Thread Marcin Nowakowski
Now that compat syscalls are properly distinguished from native calls, we can add metadata for compat syscalls as well. All the macros used to generate the metadata are the same as for standard syscalls, but with a compat_ prefix to distinguish them easily. Signed-off-by: Marcin Nowakowski Cc: St