Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933869AbcJTJw2 (ORCPT ); Thu, 20 Oct 2016 05:52:28 -0400 Received: from atlantic540.startdedicated.de ([188.138.9.77]:46942 "EHLO atlantic540.startdedicated.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754010AbcJTJw0 (ORCPT ); Thu, 20 Oct 2016 05:52:26 -0400 From: Daniel Wagner To: linux-kernel@vger.kernel.org Cc: Ming Lei , "Luis R . Rodriguez" , Greg Kroah-Hartman , "Srivatsa S . Bhat" , "Rafael J . Wysocki" , Daniel Vetter , Takashi Iwai , Bjorn Andersson , Arend van Spriel , Daniel Wagner Subject: [PATCH v6 0/6] firmware: encapsulate firmware loading status Date: Thu, 20 Oct 2016 11:52:06 +0200 Message-Id: <1476957132-27818-1-git-send-email-wagi@monom.org> X-Mailer: git-send-email 2.7.4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2517 Lines: 72 From: Daniel Wagner Hi, Here is a updated version with the input from Luis. The firmware user helper code tracks the current state of the loading process via an member of struct firmware_buf and a completion. Let's encapsulate this simple state machine into struct fw_status. The aim is to increase readability and reduce the usage of the fw_lock. I tested this series with fw_userhelper.sh and fw_filesystem.sh under kvm and also let it run on real hardware. You can get the series as git tree: https://git.kernel.org/cgit/linux/kernel/git/wagi/linux.git/log/?h=firmware_async-9 cheers, daniel This series depends on Luis' "firmware: add SmPL grammar to avoid issues" series: http://marc.info/?l=linux-kernel&m=147320896231418&w=2 changes since v5: - add enum name (enum fw_status) - renamed function prefix and structure fw_umh to fw_state (avoid to clash with enum fw_status) - add back patch 1 from v3 - move unused functions for direct firmeware loading into UMH section changes since v4: - replaced "firmware: Move umh locking code into fw_load_from_user_helper()" with "firmware: document user mode helper lock usage" - changed prefix fw_status_ to fw_umh_ - fixed a couple of bux pointed out by Ming - changed type of fw_umh::status to u8 and updated commit message to point out that all states are exclusive changes since v3: - added 'firmware: Move umh locking code into fw_load_from_user_helper()' - dropped loading_tiemout and firmware_loading_time() for !CONFG_FW_LOADER_USER_HELPER - rebased on Luis patches changes since v2: - more splitting out - first patch factors out all the bit ops into fw_status - second patch gets rid of the bit ops - third get rid of fw_lock by using swait changes since v1: - moved swait change into its own patch - added ifdef section for FW_LOADER_USER_HELPER_FALLBACK - updated commit message highlighting the mutex usage drop a bit Daniel Wagner (6): firmware: move umh locking code into fw_load_from_user_helper() firmware: encapsulate firmware loading status firmware: rename fw_load_from_user_helper() and _request_firmware_load() firmware: drop bit ops in favor of simple state machine firmware: do not use fw_lock for fw_state protection firmware: move fw_state_is_{aborted|done}() into UHM section drivers/base/firmware_class.c | 226 ++++++++++++++++++++++++------------------ 1 file changed, 131 insertions(+), 95 deletions(-) -- 2.7.4