From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36088) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z7Dh5-00073J-Su for qemu-devel@nongnu.org; Mon, 22 Jun 2015 22:12:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z7Dh1-0006XZ-35 for qemu-devel@nongnu.org; Mon, 22 Jun 2015 22:12:11 -0400 Received: from szxga02-in.huawei.com ([119.145.14.65]:14266) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z7Dh0-0006XC-Iv for qemu-devel@nongnu.org; Mon, 22 Jun 2015 22:12:07 -0400 Message-ID: <5588C06A.2090609@huawei.com> Date: Tue, 23 Jun 2015 10:11:54 +0800 From: Gonglei MIME-Version: 1.0 References: <1434646944-24040-1-git-send-email-berrange@redhat.com> <1434646944-24040-3-git-send-email-berrange@redhat.com> In-Reply-To: <1434646944-24040-3-git-send-email-berrange@redhat.com> Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v3 02/10] crypto: move built-in AES implementation into crypto/ List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Daniel P. Berrange" , qemu-devel@nongnu.org Cc: Kevin Wolf , Paolo Bonzini , Gerd Hoffmann , Richard Henderson On 2015/6/19 1:02, Daniel P. Berrange wrote: > To prepare for a generic internal cipher API, move the > built-in AES implementation into the crypto/ directory > > Signed-off-by: Daniel P. Berrange > --- > block/qcow.c | 2 +- > block/qcow2.c | 1 - > block/qcow2.h | 2 +- > crypto/Makefile.objs | 1 + > {util => crypto}/aes.c | 2 +- > include/{qemu => crypto}/aes.h | 0 > target-arm/crypto_helper.c | 2 +- > target-i386/fpu_helper.c | 1 - > target-i386/ops_sse.h | 2 +- > target-ppc/int_helper.c | 2 +- > util/Makefile.objs | 2 +- > 11 files changed, 8 insertions(+), 9 deletions(-) > rename {util => crypto}/aes.c (99%) > rename include/{qemu => crypto}/aes.h (100%) Reviewed-by: Gonglei