From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751661AbcHABCh (ORCPT ); Sun, 31 Jul 2016 21:02:37 -0400 Received: from ozlabs.org ([103.22.144.67]:45119 "EHLO ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750997AbcHABC3 (ORCPT ); Sun, 31 Jul 2016 21:02:29 -0400 From: Rusty Russell To: Cc: "lkml" Cc: Ben Hutchings Cc: Jessica Yu Cc: Jiri Kosina Cc: Kees Cook Cc: Libor Pechacek Cc: Paul Gortmaker Cc: Prarit Bhargava Cc: Steven Rostedt Subject: [PULL] modules-next User-Agent: Notmuch/0.21 (http://notmuchmail.org) Emacs/24.5.1 (x86_64-pc-linux-gnu) Date: Mon, 01 Aug 2016 10:32:21 +0930 Message-ID: <87y44hxpwi.fsf@rustcorp.com.au> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The following changes since commit 3fc9d690936fb2e20e180710965ba2cc3a0881f8: Merge branch 'for-4.8/drivers' of git://git.kernel.dk/linux-block (2016-07-26 15:37:51 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux.git tags/modules-next-for-linus for you to fetch changes up to 8acc0026b0f3046c9929d1f33cf840cd190d1b12: extable.h: add stddef.h so "NULL" definition is not implicit (2016-07-28 15:23:47 +0930) ---------------------------------------------------------------- Only interesting thing here is Jessica's patch to add ro_after_init support to modules. The rest are all trivia. Cheers, Rusty. ---------------------------------------------------------------- Ben Hutchings (3): module: Invalidate signatures on force-loaded modules Documentation/module-signing.txt: Note need for version info if reusing a key module: Disable MODULE_FORCE_LOAD when MODULE_SIG_FORCE is enabled Jessica Yu (1): modules: add ro_after_init support Jiri Kosina (1): module: fix noreturn attribute for __module_put_and_exit() Libor Pechacek (1): module: Issue warnings when tainting kernel Paul Gortmaker (2): exceptions: fork exception table content from module.h into extable.h extable.h: add stddef.h so "NULL" definition is not implicit Prarit Bhargava (1): modules: Add kernel parameter to blacklist modules Rusty Russell (2): module: fix redundant test. jump_label: disable preemption around __module_text_address(). Steven Rostedt (1): module: Do a WARN_ON_ONCE() for assert module mutex not held Documentation/kernel-parameters.txt | 3 + Documentation/module-signing.txt | 6 ++ include/linux/extable.h | 32 ++++++++++ include/linux/module.h | 37 +++-------- include/uapi/linux/elf.h | 1 + init/Kconfig | 1 + kernel/jump_label.c | 5 +- kernel/livepatch/core.c | 2 +- kernel/module.c | 121 +++++++++++++++++++++++++++++------- 9 files changed, 156 insertions(+), 52 deletions(-) create mode 100644 include/linux/extable.h