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 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 38BDDC433E1 for ; Thu, 11 Jun 2020 13:57:38 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 13E36206C3 for ; Thu, 11 Jun 2020 13:57:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1591883858; bh=AfDuKbF9OtpsediGNO+3NynP+WMOL5HhOuy8v9ZFhPg=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=ElWzcm6KcAlknwF7bMEXhaH33mfxs9UoqlUMDeWs0LPVc15iuiEcSMlpQ8/ejTPjR OpYM4lIP81w00lv2urmafqpxk8FW5HemWSQoEouvHtuca/o7bbqbsso1EjZeRvPxPb wf6PJ8dIp3hevpTHFX0DFpPokVMoQdq2TxDI6GqE= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727093AbgFKN5h (ORCPT ); Thu, 11 Jun 2020 09:57:37 -0400 Received: from mail.kernel.org ([198.145.29.99]:56558 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726157AbgFKN5g (ORCPT ); Thu, 11 Jun 2020 09:57:36 -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 306B7206C3; Thu, 11 Jun 2020 13:57:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1591883854; bh=AfDuKbF9OtpsediGNO+3NynP+WMOL5HhOuy8v9ZFhPg=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=vhHLcpTFHd5cdFwhK1QvbC2PJlU8vaMJ4jssfpO82j97kOmBjBzZXIrUNvMvYVbqM dN+AKheH9BbEQcFRN9rdXB3E0cg044n2CYS/iX7XfRVMLAJeQvK6AC4tIZHMDDo658 pTChFlwMIZuZhdpEyUNYhd6nzJR3310o2lY98sDU= Date: Thu, 11 Jun 2020 15:57:27 +0200 From: Greg KH To: Su Kang Yin Cc: linux-crypto@vger.kernel.org, christophe.leroy@c-s.fr, stable@vger.kernel.org, Herbert Xu , "David S. Miller" , linux-kernel@vger.kernel.org Subject: Re: [PATCH V2] crypto: talitos - fix ECB and CBC algs ivsize Message-ID: <20200611135727.GA1060798@kroah.com> References: <20200611115048.21677-1-cantona@cantona.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200611115048.21677-1-cantona@cantona.net> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Jun 11, 2020 at 07:50:47PM +0800, Su Kang Yin wrote: > 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. > > Fixes: e1de42fdfc6a ("crypto: talitos - fix ECB algs ivsize") > Signed-off-by: Su Kang Yin > --- > Patch for 4.9 upstream. Also seems to be an issue for the 4.14 and 4.19 backport, so I'll queue it up there too, thanks! greg k-h