From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753335AbbIKSte (ORCPT ); Fri, 11 Sep 2015 14:49:34 -0400 Received: from mga03.intel.com ([134.134.136.65]:8938 "EHLO mga03.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751532AbbIKStd (ORCPT ); Fri, 11 Sep 2015 14:49:33 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,512,1437462000"; d="scan'208";a="643129942" Message-ID: <1441997372.4322.37.camel@schen9-desk2.jf.intel.com> Subject: Re: [PATCH 3/4] crypto: [sha] glue code for Intel SHA extensions optimized SHA1 & SHA256 From: Tim Chen To: Stephan Mueller Cc: Herbert Xu , "H. Peter Anvin" , "David S.Miller" , Sean Gulley , Chandramouli Narayanan , Vinodh Gopal , James Guilford , Wajdi Feghali , Jussi Kivilinna , linux-crypto@vger.kernel.org, linux-kernel@vger.kernel.org Date: Fri, 11 Sep 2015 11:49:32 -0700 In-Reply-To: <1671234.vBOzL28The@tauon.atsec.com> References: <4887557.26yiVA9gU0@tauon.atsec.com> <1441929871.4322.15.camel@schen9-desk2.jf.intel.com> <1671234.vBOzL28The@tauon.atsec.com> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.8.5 (3.8.5-2.fc19) Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 2015-09-11 at 19:02 +0200, Stephan Mueller wrote: > Am Donnerstag, 10. September 2015, 17:04:31 schrieb Tim Chen: > > Hi Tim, > > > >Is there a scenario you can think of > >when a lower performing sha1 transform needs to > >be exposed as a separate driver? > > My immediate concern is testing: it is hard to test the individual > implementations. > > Not hard, just one line in the glue code to set the transform to the one you need it you really want to test individual implementation. Usually user of sha don't care which sha driver they got, but just the highest priority one. So you will anyway need to patch and change the priority of the sha driver to expose a specific one for testing. > >Otherwise the glue code logic will only expose the > >best performing one for a cpu and hide the others, which was intentional > >on our part to prevent a lower performing sha from getting used. > > Agreed, but the kernel crypto API does that already using the priorities -- > IMHO a very clean and easy to interpret solution. > > Furthermore, if somebody really has a need to not use the fastest HW > implementation, the kernel crypto API allows him to do that. With the hard- > wired approach in the glue file, you are stuck. Still, why would some kernel module specifically not want to use the fastest HW implementation, and explicitly ask for a slower driver? Tim