Received: by 2002:a25:4158:0:0:0:0:0 with SMTP id o85csp708325yba; Thu, 18 Apr 2019 08:17:49 -0700 (PDT) X-Google-Smtp-Source: APXvYqw3l6wuMyi7Nkwn/1eeIBeMjD7/s20ETPDuCYWDv6U786m/zWtT3yQDkzpT1Y8lCLrtj1cR X-Received: by 2002:a65:6107:: with SMTP id z7mr89216933pgu.313.1555600669843; Thu, 18 Apr 2019 08:17:49 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1555600669; cv=none; d=google.com; s=arc-20160816; b=os8VKip76svBmgNjD1seFVpG6+Gvzil0Cs1zHHXnqvZnzF7jIa/K3L/TvMFn/HIQd/ vA4fJyVbsculg/+n0+F4rVKyvSx4l6tiYSvL4TKQgK/7F/uLW8E38pycVV2rGw9vzN87 83t06mJDn1Ba94tMrzAuyiVzhbkqd0uPA5MfgMcl+Wb3eq1cxcELjom3ywSfPswFPT0m InJ20eWGR8MMdRR4yL9hU3b7nYM+hBvQuxqDR2aEQ0OxWXIGj8FpCzR7S9vih0me8+5r YgnF7yzNLm6mL4wZw67Xpy1SUbgChQNFN2o31mu/7NNdQx2vHy45qYukkZLQq2jZCLJ0 U5mw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=1ZJ9FSiwSOYrsCYCrPk4NKYxbF5r88NJAmlaFxijZjw=; b=oMrW2lUbi0InSi8fh052ANAkmHEt6Hbljy9QmCAWQR/lCo1WaJz+tkYD+rLWvxkGvP /0XZ5JANChQHq0J/GoAXqq3CPp4olDhjsPfghH5/5hQI5j+vB43m9BjvS1jGjedsrAHf 9Wp6zrVGoTHG33cErmZgIS+5QJs4vncO/ml43Ep3OQRFrm8Tx6EvyhdITxnjtJOA6L8c v03JZZDbJBmEJrHkS6VgjZH2EZcwWr9ppnOZsIVom8imlOHNyVi3J8TYZAxOePJrG+b8 jUmkjRGU25MG+eOhl5HxuBBMgSWztQTT8MGgr4DhHVJIzJDp/cfyFBbHpX9BdL/npmP2 6rDQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id r17si2018818pgv.128.2019.04.18.08.17.34; Thu, 18 Apr 2019 08:17:49 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2389520AbfDRPQF (ORCPT + 99 others); Thu, 18 Apr 2019 11:16:05 -0400 Received: from [5.180.42.13] ([5.180.42.13]:55656 "EHLO deadmen.hmeau.com" rhost-flags-FAIL-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1731317AbfDRPQF (ORCPT ); Thu, 18 Apr 2019 11:16:05 -0400 Received: from gondobar.mordor.me.apana.org.au ([192.168.128.4] helo=gondobar) by deadmen.hmeau.com with esmtps (Exim 4.89 #2 (Debian)) id 1hH7wv-0004kN-SE; Thu, 18 Apr 2019 22:23:37 +0800 Received: from herbert by gondobar with local (Exim 4.89) (envelope-from ) id 1hH7wm-0004B7-WD; Thu, 18 Apr 2019 22:23:29 +0800 Date: Thu, 18 Apr 2019 22:23:28 +0800 From: Herbert Xu To: Lionel Debieve Cc: "David S . Miller" , Maxime Coquelin , Alexandre Torgue , linux-crypto@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Benjamin Gaignard , Fabien Dessenne , Ludovic Barre , linux-stm32@st-md-mailman.stormreply.com Subject: Re: [PATCH 1/1] crypto: stm32/hash - Fix self test issue during export Message-ID: <20190418142328.g2wmr3kueaj6h55g@gondor.apana.org.au> References: <1554709318-25389-1-git-send-email-lionel.debieve@st.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1554709318-25389-1-git-send-email-lionel.debieve@st.com> User-Agent: NeoMutt/20170113 (1.7.2) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Apr 08, 2019 at 09:41:58AM +0200, Lionel Debieve wrote: > Change the wait condition to check if the hash is busy. > Context can be saved as soon as hash has finishing processing > data. Remove unused lock in the device structure. > > Signed-off-by: Lionel Debieve > --- > drivers/crypto/stm32/stm32-hash.c | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) Patch applied. Thanks. -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt