Hi Linus, Please pull some more powerpc fixes for 4.10: The following changes since commit 178f358208ceb8b38e5cff3f815e0db4a6a70a07: powerpc: Ignore reserved field in DCSR and PVR reads and writes (2017-01-20 15:21:35 +1100) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git tags/powerpc-4.10-3 for you to fetch changes up to a0615a16f7d0ceb5804d295203c302d496d8ee91: powerpc/mm: Use the correct pointer when setting a 2MB pte (2017-01-30 15:35:13 +1100) ---------------------------------------------------------------- powerpc fixes for 4.10 #3 The main change is we're reverting the initial stack protector support we merged this cycle. It turns out to not work on toolchains built with libc support, and fixing it will be need to wait for another release. And the rest are all fairly minor: - Some pasemi machines were not booting due to a missing error check in prom_find_boot_cpu(). - In EEH we were checking a pointer rather than the bool it pointed to. - The clang build was broken by a BUILD_BUG_ON() we added. - The radix (Power9 only) version of map_kernel_page() was broken if our memory size was a multiple of 2MB, which it generally isn't. Thanks to: Darren Stevens, Gavin Shan, Reza Arbab. ---------------------------------------------------------------- Darren Stevens (1): powerpc: Add missing error check to prom_find_boot_cpu() Gavin Shan (1): powerpc/eeh: Fix wrong flag passed to eeh_unfreeze_pe() Michael Ellerman (2): powerpc: Revert the initial stack protector support powerpc: Fix build failure with clang due to BUILD_BUG_ON() Reza Arbab (1): powerpc/mm: Use the correct pointer when setting a 2MB pte arch/powerpc/Kconfig | 1 - arch/powerpc/include/asm/cpu_has_feature.h | 2 ++ arch/powerpc/include/asm/mmu.h | 2 ++ arch/powerpc/include/asm/stackprotector.h | 40 ------------------------------ arch/powerpc/kernel/Makefile | 4 --- arch/powerpc/kernel/asm-offsets.c | 3 --- arch/powerpc/kernel/eeh_driver.c | 2 +- arch/powerpc/kernel/entry_32.S | 6 +---- arch/powerpc/kernel/process.c | 6 ----- arch/powerpc/kernel/prom_init.c | 3 +++ arch/powerpc/mm/pgtable-radix.c | 4 +-- 11 files changed, 11 insertions(+), 62 deletions(-) delete mode 100644 arch/powerpc/include/asm/stackprotector.h