All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/11] compiler: allow all arches to enable CONFIG_OPTIMIZE_INLINING
@ 2019-04-19  9:47 ` Masahiro Yamada
  0 siblings, 0 replies; 66+ messages in thread
From: Masahiro Yamada @ 2019-04-19  9:47 UTC (permalink / raw)
  To: Andrew Morton, linux-arch
  Cc: linux-s390, Heiko Carstens, Arnd Bergmann, linuxppc-dev, x86,
	linux-mips, linux-kernel, Ingo Molnar, linux-mtd,
	linux-arm-kernel, Christophe Leroy, Masahiro Yamada


Major changes in v2:
 - Eliminate more errors and warnings
 - Delete 'depends on !MIPS'
 - Split into separate patches

Arnd Bergmann (1):
  ARM: prevent tracing IPI_CPU_BACKTRACE

Masahiro Yamada (10):
  arm64: mark (__)cpus_have_const_cap as __always_inline
  MIPS: mark mult_sh_align_mod() as __always_inline
  s390/cpacf: mark scpacf_query() as __always_inline
  mtd: rawnand: vf610_nfc: add initializer to avoid
    -Wmaybe-uninitialized
  MIPS: mark __fls() as __always_inline
  ARM: mark setup_machine_tags() stub as __init __noreturn
  powerpc/prom_init: mark prom_getprop() and prom_getproplen() as __init
  powerpc/mm/radix: mark __radix__flush_tlb_range_psize() as
    __always_inline
  powerpc/mm/radix: mark as __tlbie_pid() and friends as__always_inline
  compiler: allow all arches to enable CONFIG_OPTIMIZE_INLINING

 arch/arm/include/asm/hardirq.h      |  1 +
 arch/arm/kernel/atags.h             |  2 +-
 arch/arm/kernel/smp.c               |  6 +++++-
 arch/arm64/include/asm/cpufeature.h |  4 ++--
 arch/mips/include/asm/bitops.h      |  2 +-
 arch/mips/kernel/cpu-bugs64.c       |  4 ++--
 arch/powerpc/kernel/prom_init.c     |  6 +++---
 arch/powerpc/mm/tlb-radix.c         | 12 ++++++------
 arch/s390/include/asm/cpacf.h       |  2 +-
 arch/x86/Kconfig                    |  3 ---
 arch/x86/Kconfig.debug              | 14 --------------
 drivers/mtd/nand/raw/vf610_nfc.c    |  2 +-
 include/linux/compiler_types.h      |  3 +--
 lib/Kconfig.debug                   | 14 ++++++++++++++
 14 files changed, 38 insertions(+), 37 deletions(-)

-- 
2.17.1


^ permalink raw reply	[flat|nested] 66+ messages in thread

end of thread, other threads:[~2019-04-23  3:26 UTC | newest]

Thread overview: 66+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-19  9:47 [PATCH v2 00/11] compiler: allow all arches to enable CONFIG_OPTIMIZE_INLINING Masahiro Yamada
2019-04-19  9:47 ` Masahiro Yamada
2019-04-19  9:47 ` Masahiro Yamada
2019-04-19  9:47 ` Masahiro Yamada
2019-04-19  9:47 ` [PATCH v2 01/11] ARM: prevent tracing IPI_CPU_BACKTRACE Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47 ` [PATCH v2 02/11] arm64: mark (__)cpus_have_const_cap as __always_inline Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47 ` [PATCH v2 03/11] MIPS: mark mult_sh_align_mod() " Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47 ` [PATCH v2 04/11] s390/cpacf: mark scpacf_query() " Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47 ` [PATCH v2 05/11] mtd: rawnand: vf610_nfc: add initializer to avoid -Wmaybe-uninitialized Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47 ` [PATCH v2 06/11] MIPS: mark __fls() as __always_inline Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19 15:45   ` Mathieu Malaterre
2019-04-19 15:45     ` Mathieu Malaterre
2019-04-19 15:45     ` Mathieu Malaterre
2019-04-19 15:45     ` Mathieu Malaterre
2019-04-23  3:23     ` Masahiro Yamada
2019-04-23  3:23       ` Masahiro Yamada
2019-04-23  3:23       ` Masahiro Yamada
2019-04-19  9:47 ` [PATCH v2 07/11] ARM: mark setup_machine_tags() stub as __init __noreturn Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47 ` [PATCH v2 08/11] powerpc/prom_init: mark prom_getprop() and prom_getproplen() as __init Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47 ` [PATCH v2 09/11] powerpc/mm/radix: mark __radix__flush_tlb_range_psize() as __always_inline Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47 ` [PATCH v2 10/11] powerpc/mm/radix: mark as __tlbie_pid() and friends as__always_inline Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47 ` [PATCH v2 11/11] compiler: allow all arches to enable CONFIG_OPTIMIZE_INLINING Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-19  9:47   ` Masahiro Yamada
2019-04-22 10:14   ` Borislav Petkov
2019-04-22 10:14     ` Borislav Petkov
2019-04-22 10:14     ` Borislav Petkov
2019-04-22 10:14     ` Borislav Petkov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.