From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752292AbcAFWe0 (ORCPT ); Wed, 6 Jan 2016 17:34:26 -0500 Received: from mail-wm0-f43.google.com ([74.125.82.43]:38470 "EHLO mail-wm0-f43.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750938AbcAFWeY (ORCPT ); Wed, 6 Jan 2016 17:34:24 -0500 From: Sylvain Chouleur To: sylvain.chouleur@gmail.com Cc: Sylvain Chouleur , linux-efi@vger.kernel.org, Ard Biesheuvel , "H. Peter Anvin" , linux-kernel@vger.kernel.org, Ingo Molnar , Thomas Gleixner Subject: [PATCH v2 0/3] efi interruptible runtime services Date: Wed, 6 Jan 2016 23:33:54 +0100 Message-Id: <1452119637-10958-1-git-send-email-sylvain.chouleur@gmail.com> X-Mailer: git-send-email 2.6.4 In-Reply-To: <1450434591-31104-1-git-send-email-sylvain.chouleur@gmail.com> References: <1450434591-31104-1-git-send-email-sylvain.chouleur@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Sylvain Chouleur Changes in v2: - Split patch 1 in patches 1 and 2 - Document (un)registration of __efivars protection - Return early from efivars_sysfs_exit() in case of failure - Improve readability - Update functions documentation - Fix typo - Fix checkpatch warnings - Warning in KConfig description Sylvain Chouleur (3): efi: implement interruptible runtime services efi: don't use spinlocks for efi vars efi: use a file local lock for efivars arch/x86/Kconfig | 17 +++++ arch/x86/include/asm/efi.h | 1 arch/x86/platform/efi/Makefile | 1 arch/x86/platform/efi/efi_32.c | 5 + arch/x86/platform/efi/efi_64.c | 5 + arch/x86/platform/efi/efi_interruptible.c | 191 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ drivers/firmware/efi/efi-pstore.c | 36 +++++++--- drivers/firmware/efi/efivars.c | 20 ++++- drivers/firmware/efi/vars.c | 230 ++++++++++++++++++++++++++++++++++++++++---------------------------- fs/efivarfs/inode.c | 5 + fs/efivarfs/super.c | 9 ++ include/linux/efi.h | 12 --- 12 files changed, 415 insertions(+), 117 deletions(-)