From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S941170AbcJGREd (ORCPT ); Fri, 7 Oct 2016 13:04:33 -0400 Received: from mout.gmx.net ([212.227.17.22]:57186 "EHLO mout.gmx.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S936419AbcJGREU (ORCPT ); Fri, 7 Oct 2016 13:04:20 -0400 Date: Fri, 7 Oct 2016 19:04:07 +0200 From: Helge Deller To: Linus Torvalds , linux-kernel@vger.kernel.org, linux-parisc@vger.kernel.org, James Bottomley , John David Anglin Subject: [GIT PULL] parisc architecture updates for v4.9-rc1 Message-ID: <20161007170407.GA13520@p100.box> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) X-Provags-ID: V03:K0:T61gHIepTYJmoR9/GScDmFkcepyMLmrEFflBT4KQ0MpTdF/CVUY GX48VomwPodsh2p/dsS94FzKtE78nEyKAF0SaXIutCrvJcHXYqwp63qJHqnETr1jKva07Hx 2O1+PPprRmBTd+GXPzRQGtNAmzkCuiqlzZSzHUwkR6EQQjZev7L65qXH1TcX2nbebV7cyp0 DDwSkecKqyo3dVBIUWDWA== X-UI-Out-Filterresults: notjunk:1;V01:K0:Mas7IuQWPuI=:wzizRWbywhCrih295V2Wpk S6FX/NzaEbLnJOpx2qEo1xn08K4EokyKIeQJSbL77mDx59jSLx2D9wHTtNDS0kB4vsVivtoil p4loxcGnCy6YvhoMCeA9jaSKt9Y0wuoRW5Tr7D8jJk6L0Sm0XDbdL7JDBrlTcczfk6xeNu/8I clFxeuuEf1/xERDbmQ4/l5C8jVXjBQDR3dMYmIgWl9EQFqY7BRMxNkY6pgloCKSRWnrBmTQ0d DZPD+Tus8C3BO2O9L7JO/+KcP+4SUhU+0jM0Up0c8iQ74XQ4QYD9NsErhnVNu1m1EvHTLskzQ 6awOf5iNKWCJzRhA/lqJ4A/77dbPAmFNEWgVRVb7qUwh6FngY+jrCeeC0kscoCHMuvnCtrn6E CG28CFPw8y8hxElhE5ucm/SYtwilTzQ/zn5EVTFVT/WtbcABXpkC2wO8dPkHZA5yo2W5hxpsz xgWD4uoHHngvXjKj2romy4Z/oDgTu3c0rM0YE7Fjbp5z4hPLCD5WqXpd+CjfUib0VYOZkEAuf VAppjl813l7eUtAipVW1mSA+YsTwOTdXU8lZHn6TJW0lB0PN5kb1ERP6z9UqyzAARARPykvzC GklBZXuYc0jGS7n0W+MTXGRw+DdmUGhaYEAsnGKqsthaSVxrRlLrGw+wy1mnexDlr1f64kvs7 u/X29ThfkEY7ExxNe7nHY70jNAQAb/7EGLpMzStvU6K8Kp5ZFMBUuMD0iEiLw28YnRZZGTz20 f9nMyNkEzMBe5Lf3nY9jCbVB41Mr2/j2nWVtNX478TKZmpLIOVcyrstTIVg= Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Linus, please pull the updates for 4.9-rc1 for the parisc architecture from: git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git parisc-4.9-1 Changes include: - Fix boot of 32bit SMP kernel (initial kernel mapping was too small) - Added hardened usercopy checks - Drop bootmem and switch to memblock and NO_BOOTMEM implementation - Drop the BROKEN_RODATA config option (and thus remove the relevant code from the generic headers and files because parisc was the last architecture which used this config option) - Improve segfault reporting by printing human readable error strings - Various smaller changes, e.g. dwarf debug support for assembly code, update comments regarding copy_user_page_asm, switch to kmalloc_array() Thanks, Helge ---------------------------------------------------------------- Helge Deller (9): parisc: Drop BROKEN_RODATA config option parisc: Check return value of smp_boot_one_cpu() parisc: Report trap type as human readable string parisc: Fix self-detected CPU stall warnings on Mako machines parisc: Move hpmc stack into page aligned bss section parisc: Add cfi_startproc and cfi_endproc to assembly code parisc: Add hardened usercopy feature parisc: Drop bootmem and switch to memblock parisc: Increase KERNEL_INITIAL_SIZE for 32-bit SMP kernels John David Anglin (1): parisc: Update comment regarding implementation of copy_user_page_asm Markus Elfring (1): parisc: Use kmalloc_array() in add_system_map_addresses() arch/parisc/Kconfig | 4 +- arch/parisc/include/asm/dwarf.h | 23 +++++++ arch/parisc/include/asm/linkage.h | 12 ++++ arch/parisc/include/asm/pgtable.h | 2 +- arch/parisc/include/asm/uaccess.h | 48 ++++++++++----- arch/parisc/kernel/entry.S | 46 +++++++------- arch/parisc/kernel/hpmc.S | 16 +++-- arch/parisc/kernel/inventory.c | 2 +- arch/parisc/kernel/pacache.S | 84 +++++++++++++------------ arch/parisc/kernel/real2.S | 24 +++++--- arch/parisc/kernel/setup.c | 8 +++ arch/parisc/kernel/smp.c | 4 +- arch/parisc/kernel/time.c | 6 -- arch/parisc/kernel/vmlinux.lds.S | 2 - arch/parisc/lib/fixup.S | 16 ++--- arch/parisc/lib/lusercopy.S | 8 +-- arch/parisc/lib/memcpy.c | 11 ++-- arch/parisc/mm/fault.c | 48 ++++++++++++++- arch/parisc/mm/init.c | 126 +++++++++++++++++++------------------- include/linux/init.h | 19 ++---- init/Kconfig | 6 -- 21 files changed, 308 insertions(+), 207 deletions(-) create mode 100644 arch/parisc/include/asm/dwarf.h