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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id AED3FEB64DA for ; Thu, 15 Jun 2023 23:32:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S239387AbjFOXcF (ORCPT ); Thu, 15 Jun 2023 19:32:05 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:54758 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229588AbjFOXcA (ORCPT ); Thu, 15 Jun 2023 19:32:00 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 82D85B3; Thu, 15 Jun 2023 16:31:59 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 0214C62CED; Thu, 15 Jun 2023 23:31:59 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B9C07C433C8; Thu, 15 Jun 2023 23:31:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1686871918; bh=t+QI63HrVrYITHLWjMqCtcO/Gehz+b2j1pbFfeAxwsI=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=j8YjWMm3BG13woqCmxETSdl8VSFNt+gRyz2TSTbj4d+zgUYGBDcvBIbq0ZJqTlz4f 6pyuJf1J3IKUCqbS4PPRQ57r2kSoCRiOmZ2a2zPTtmKpzcCmvqSLA3qzxdZIiXHnLN m91/sI1BlT13ZUnDEzanf27QNwMjiS9eWyrK7tR0UDBHFCP5Wh+79B+EWYnYfBfckr RbcA6/g5C56bzpWgEMTvVVVB90aQQH2whmU3udOM7737StCUGQNZfx5XtszD2bKVek aPaQToLm3RFm3+L10CCV/fSD6r37jNUhLJ2oy0R6GgVb7rkjWPvfIU5ZhdoLLKqJ3O FIj2XX/5vY7Ug== Date: Thu, 15 Jun 2023 16:31:56 -0700 From: Eric Biggers To: Dmitry Safonov Cc: Herbert Xu , linux-kernel@vger.kernel.org, Bob Gilligan , David Ahern , "David S. Miller" , Dmitry Safonov <0x7f454c46@gmail.com>, Eric Dumazet , "Eric W. Biederman" , Francesco Ruggeri , Jakub Kicinski , Paolo Abeni , Salam Noureddine , linux-crypto@vger.kernel.org Subject: Re: [PATCH-next 1/3] crypto: api - Remove crypto_init_ops() Message-ID: <20230615233156.GA25295@sol.localdomain> References: <20230614174643.3836590-1-dima@arista.com> <20230614174643.3836590-2-dima@arista.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230614174643.3836590-2-dima@arista.com> Precedence: bulk List-ID: X-Mailing-List: linux-crypto@vger.kernel.org On Wed, Jun 14, 2023 at 06:46:41PM +0100, Dmitry Safonov wrote: > Purge crypto_type::init() as well. > The last user seems to be gone with commit d63007eb954e ("crypto: > ablkcipher - remove deprecated and unused ablkcipher support"). > > Signed-off-by: Dmitry Safonov > --- > crypto/api.c | 14 -------------- > include/crypto/algapi.h | 1 - > 2 files changed, 15 deletions(-) > Reviewed-by: Eric Biggers - Eric