Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754095AbbKLLGX (ORCPT ); Thu, 12 Nov 2015 06:06:23 -0500 Received: from mx2.suse.de ([195.135.220.15]:50536 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752679AbbKLLGV (ORCPT ); Thu, 12 Nov 2015 06:06:21 -0500 Date: Thu, 12 Nov 2015 12:06:17 +0100 From: Jan Kara To: Baolin Wang Cc: Jan Kara , Christoph Hellwig , axboe@kernel.dk, Alasdair G Kergon , Mike Snitzer , dm-devel@redhat.com, neilb@suse.com, tj@kernel.org, jmoyer@redhat.com, keith.busch@intel.com, bart.vanassche@sandisk.com, linux-raid@vger.kernel.org, Mark Brown , Arnd Bergmann , "Garg, Dinesh" , LKML Subject: Re: [PATCH 0/2] Introduce the request handling for dm-crypt Message-ID: <20151112110617.GA26662@quack.suse.cz> References: <20151111094811.GA3641@infradead.org> <20151112091732.GA23780@quack.suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3319 Lines: 62 On Thu 12-11-15 17:40:59, Baolin Wang wrote: > On 12 November 2015 at 17:17, Jan Kara wrote: > > On Thu 12-11-15 10:15:32, Baolin Wang wrote: > >> On 11 November 2015 at 17:48, Christoph Hellwig wrote: > >> > On Wed, Nov 11, 2015 at 05:31:43PM +0800, Baolin Wang wrote: > >> >> Now the dm-crypt code only implemented the 'based-bio' method to encrypt/ > >> >> decrypt block data, which can only hanle one bio at one time. As we know, > >> >> one bio must use the sequential physical address and it also has a limitation > >> >> of length. Thus it may limit the big block encyrtion/decryption when some > >> >> hardware support the big block data encryption. > >> >> > >> >> This patch series introduc the 'based-request' method to handle the data > >> >> encryption/decryption. One request can contain multiple bios, so it can > >> >> handle big block data to improve the efficiency. > >> > > >> > NAK for more request based stacking or DM drivers. They are a major > >> > pain to deal with, and adding more with different requirements then > >> > dm-multipath is not helping in actually making that one work properly. > >> > >> But now many vendors supply the hardware engine to handle the > >> encyrtion/decryption. The hardware really need a big block to indicate > >> its performance with request based things. Another thing is now the > >> request based things is used by many vendors (Qualcomm, Spreadtrum and > >> so on) to improve their performance and there's a real performance > >> requirement here (I can show the performance result later). > > > > So you've mentioned several times that hardware needs big blocks. How big > > those blocks need to be? Ideally, can you give some numbers on how the > > throughput of the encryption hw grows with the block size? > > It depends on the hardware design. My beaglebone black board's AES > engine can handle 1M at one time which is not big. As I know some > other AES engine can handle 16M data at one time or more. Well, one question is "can handle" and other question is how big gain in throughput it will bring compared to say 1M chunks. I suppose there's some constant overhead to issue a request to the crypto hw and by the time it is encrypting 1M it may be that this overhead is well amortized by the cost of the encryption itself which is in principle linear in the size of the block. That's why I'd like to get idea of the real numbers... > > You mentioned that you use requests because of size limitations on bios - I > > had a look and current struct bio can easily describe 1MB requests (that's > > assuming 64-bit architecture, 4KB pages) when we have 1 page worth of > > struct bio_vec. Is that not enough? > > Usually one bio does not always use the full 1M, maybe some 1k/2k/8k > or some other small chunks. But request can combine some sequential > small bios to be a big block and it is better than bio at least. As Christoph mentions 4.3 should be better in submitting larger bios. Did you check it? Honza -- Jan Kara SUSE Labs, CR -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/