Re: [PATCH 03/22] [RESEND] kprobes: unify kprobes_exceptions_nofify() prototypes

2023-11-08 Thread Google
h so it is visible to all > the definitions. Thanks, let me pick this to linux-trace tree. > > Acked-by: Masami Hiramatsu (Google) > Signed-off-by: Arnd Bergmann > --- > arch/arc/include/asm/kprobes.h | 3 --- > arch/arm/include/asm/kprobes.h | 2 -- > arch/arm64/inclu

Re: [PATCH v2 4/4] locking/atomic: hexagon: arch_cmpxchg[64]_local undefined

2023-11-07 Thread Google
t; Reported-by: kernel test robot > Closes: > https://lore.kernel.org/oe-kbuild-all/202310272207.tlpflya4-...@intel.com/ > Looks good to me. Reviewed-by: Masami Hiramatsu (Google) But I need hexagon's maintainer's comment too. Thank you, > Signed-off-by: wuqiang

Re: [PATCH v2 3/4] locking/atomic: openrisc: arch_cmpxchg[64]_local undefined

2023-11-07 Thread Google
ks good to me. Reviewed-by: Masami Hiramatsu (Google) > > Signed-off-by: wuqiang.matt > --- > arch/openrisc/include/asm/cmpxchg.h | 6 ++ > 1 file changed, 6 insertions(+) > > diff --git a/arch/openrisc/include/asm/cmpxchg.h > b/arch/openrisc/include/asm/cmpxchg.h >

Re: [PATCH v2 2/4] locking/atomic: arc: arch_cmpxchg[64]_local undefined

2023-11-07 Thread Google
Looks good to me. Reviewed-by: Masami Hiramatsu (Google) > Signed-off-by: wuqiang.matt > --- > arch/arc/include/asm/cmpxchg.h | 28 > 1 file changed, 28 insertions(+) > > diff --git a/arch/arc/include/asm/cmpxchg.h b/arch/arc/include/asm/cmpxchg.h &

Re: [PATCH v2 1/4] locking/atomic: arc: data size checking in arch_cmpxchg

2023-11-07 Thread Google
NFIG_ARC_HAS_LLSC is undefined, arch_cmpxchg() uses spinlock > to accomplish SMP-safety, so the BUILD_BUG_ON checking is uncecessary. > Looks good to me. Reviewed-by: Masami Hiramatsu (Google) > Signed-off-by: wuqiang.matt > --- > arch/arc/include/asm/cmpxchg.h | 12 ++-- &g

Re: [PATCH 3/3] locking/atomic: openrisc: use generic_cmpxchg[64]_local for arch_cmpxchg[64]_local

2023-10-28 Thread Google
On Sun, 29 Oct 2023 00:40:17 +0800 "wuqiang.matt" wrote: > On 2023/10/28 20:49, Masami Hiramatsu (Google) wrote: > > Hi Wuqiang, > > > > On Thu, 26 Oct 2023 19:05:51 +0800 > > "wuqiang.matt" wrote: > > > >> On 2023/10/26 16

Re: [PATCH 14/17] kprobes: unify kprobes_exceptions_nofify() prototypes

2023-08-11 Thread Google
is visible to all > the definitions. Good catch! and it seems x86 has no implementation, so this is more resonable. Acked-by: Masami Hiramatsu (Google) Thank you, > > Signed-off-by: Arnd Bergmann > --- > arch/arc/include/asm/kprobes.h | 3 --- > arch/arm/include/asm/k

Re: [PATCH v3 35/51] trace,hardirq: No moar _rcuidle() tracing

2023-01-16 Thread Google
if (!in_nmi()) > - trace_irq_disable_rcuidle(CALLER_ADDR0, CALLER_ADDR1); > + trace(irq_disable)(CALLER_ADDR0, CALLER_ADDR1); > } > } > EXPORT_SYMBOL(trace_hardirqs_off); > > -- Masami Hiramatsu (Google) ___ linux-snps-arc mailing list linux-snps-arc@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-snps-arc

[PATCH 1/4] treewide: remove unused address argument from pte_alloc functions (v2)

2018-10-12 Thread Joel Fernandes (Google)
e + #define fn(a, b) e | - #define fn(a, b) e + #define fn(a) e ) Suggested-by: Kirill A. Shutemov Cc: Kirill A. Shutemov Cc: Michal Hocko Cc: Julia Lawall Signed-off-by: Joel Fernandes (Google) --- arch/alpha/include/asm/pgalloc.h | 6 +++--- arch/arc/include/asm/pgalloc.h

[PATCH 4/4] x86: select HAVE_MOVE_PMD for faster mremap (v1)

2018-10-12 Thread Joel Fernandes (Google)
Moving page-tables at the PMD-level on x86 is known to be safe. Enable this option so that we can do fast mremap when possible. Signed-off-by: Joel Fernandes (Google) --- arch/x86/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 1a0be022f91d

[PATCH 2/4] mm: speed up mremap by 500x on large regions (v2)

2018-10-12 Thread Joel Fernandes (Google)
4 and arm64. Cc: minc...@kernel.org Cc: pan...@google.com Cc: hu...@google.com Cc: lokeshgi...@google.com Cc: dan...@google.com Cc: mho...@kernel.org Cc: kir...@shutemov.name Cc: a...@linux-foundation.org Cc: kernel-t...@android.com Signed-off-by: Joel Fernandes (Google) --- arch/Kconfig | 5 +++

[PATCH 3/4] arm64: select HAVE_MOVE_PMD for faster mremap (v1)

2018-10-12 Thread Joel Fernandes (Google)
Moving page-tables at the PMD-level on arm64 is known to be safe. Enable this option so that we can do fast mremap when possible. Signed-off-by: Joel Fernandes (Google) --- arch/arm64/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm64/Kconfig b/arch/arm64/Kconfig index

[PATCH 0/4] Add support for fast mremap

2018-10-12 Thread Joel Fernandes (Google)
v1 (Anton Ivanov) update changelog with manual fixups for m68k and microblaze. Joel Fernandes (Google) (4): treewide: remove unused address argument from pte_alloc functions (v2) mm: speed up mremap by 500x on large regions (v2) arm64: select HAVE_MOVE_PMD for faster mremap (v

[PATCH v2 1/2] treewide: remove unused address argument from pte_alloc functions

2018-10-11 Thread Joel Fernandes (Google)
e | - #define fn(a, b)@p e + #define fn(a) e ) Suggested-by: Kirill A. Shutemov Cc: Michal Hocko Cc: Julia Lawall Cc: elfr...@users.sourceforge.net Signed-off-by: Joel Fernandes (Google) --- arch/alpha/include/asm/pgalloc.h | 6 +++--- arch/arc/include/asm/pgalloc.h

[PATCH v2 2/2] mm: speed up mremap by 500x on large regions

2018-10-11 Thread Joel Fernandes (Google)
4 and arm64. Cc: minc...@kernel.org Cc: pan...@google.com Cc: hu...@google.com Cc: lokeshgi...@google.com Cc: dan...@google.com Cc: mho...@kernel.org Cc: kir...@shutemov.name Cc: a...@linux-foundation.org Signed-off-by: Joel Fernandes (Google) --- mm/mremap.c