From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1DC92C433E0 for ; Thu, 11 Jun 2020 10:54:31 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id EE9B9207C3 for ; Thu, 11 Jun 2020 10:54:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1591872871; bh=80uubE3dNVN39nZNbsDqyk0sI6supmeMUDV8kVu2jYg=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=yjw5jiwkTsAzr99JkuR2zNuyjk37D/dHSRABhQNUD2cIZx9IILXhcp3hrVQMlEF5O to8CdcGiUbt3q+47ogN+24wWJgF0NRNs+8M0tqlpL+i4tHbO2ZkXJPYd+4nHrRkq3K 4hcZ8PKVZvfWtsMnbERG/Rh6MaRTUY6C4u/DhneM= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727114AbgFKKya (ORCPT ); Thu, 11 Jun 2020 06:54:30 -0400 Received: from mail.kernel.org ([198.145.29.99]:38524 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726407AbgFKKya (ORCPT ); Thu, 11 Jun 2020 06:54:30 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 507682072F; Thu, 11 Jun 2020 10:54:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1591872869; bh=80uubE3dNVN39nZNbsDqyk0sI6supmeMUDV8kVu2jYg=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=S56k98nXcJaD2+CE+2qM17zrmLz3+qoUNu3luUjLD4GcrVAfUVlM8W6tkFSpmtRtH FBM6sTIX3X/GUQLEh0/VCPOOKztl8AsE41tTBWmR2DoQPxSFFRWVzeieK96JK8k3y+ iFV/iMMx7hv6e660ViYLi5cP2ORzFUW7o6ByycqQ= Date: Thu, 11 Jun 2020 12:54:23 +0200 From: Greg KH To: Su Kang Yin Cc: linux-crypto@vger.kernel.org, christophe.leroy@c-s.fr, Herbert Xu , "David S. Miller" , linux-kernel@vger.kernel.org Subject: Re: [PATCH] crypto: talitos - fix ECB and CBC algs ivsize Message-ID: <20200611105423.GB3802953@kroah.com> References: <20200611100745.6513-1-cantona@cantona.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200611100745.6513-1-cantona@cantona.net> Sender: linux-crypto-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-crypto@vger.kernel.org On Thu, Jun 11, 2020 at 06:07:45PM +0800, Su Kang Yin wrote: > Patch for 4.9 upstream: > > commit e1de42fdfc6a ("crypto: talitos - fix ECB algs ivsize") > wrongly modified CBC algs ivsize instead of ECB aggs ivsize. > > This restore the CBC algs original ivsize of removes ECB's ones. > > Signed-off-by: Su Kang Yin > --- > drivers/crypto/talitos.c | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) Nice catch, sorry about that, patch now queued up. greg k-h