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 25232C433EF for ; Tue, 8 Feb 2022 23:08:17 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235201AbiBHXIP (ORCPT ); Tue, 8 Feb 2022 18:08:15 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34122 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235172AbiBHXIL (ORCPT ); Tue, 8 Feb 2022 18:08:11 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D720BC06157A; Tue, 8 Feb 2022 15:08:10 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 94B07B81DA0; Tue, 8 Feb 2022 23:08:09 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 442ABC340ED; Tue, 8 Feb 2022 23:08:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1644361688; bh=HHLDK0gdiu6mDdxkccPZJ03JgjiezwhJUW2MRc88A9I=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=LE6VHe3/21VfERQewKclqDF5EJ9iVsjJRkB7//XHu+DbUvV74qk2QJ2rYQDZcCRkE /PxU52NAqVAURdHbgOjSOMrndra3gtrDrFgpBR7AJUP9aKziksZz9QwsGQ76jxt+mY gMLAL39PU+lTph+X6frYI8u1JNzh7twkGWJXbckGBUO/acto6O+i65/Ut3VNXOzChc EIs6LjXLcPv4vGib9zLhGRh9yTYQDYHwvcgirQJ20MtTWhGh3y/IdZqV0LzxdX3yL4 YSIAKMMONgaJYE2bbxe3RGSgj2/9kA+3ibKHRB8zZYZnkeKOZ5xA4u1mcp7tkAInnk iHV3USmx+4GIg== Date: Tue, 8 Feb 2022 15:08:06 -0800 From: Eric Biggers To: "Jason A. Donenfeld" Cc: linux-kernel@vger.kernel.org, linux-crypto@vger.kernel.org, Theodore Ts'o , Dominik Brodowski Subject: Re: [PATCH v1 3/7] random: inline leaves of rand_initialize() Message-ID: References: <20220208155335.378318-1-Jason@zx2c4.com> <20220208155335.378318-4-Jason@zx2c4.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220208155335.378318-4-Jason@zx2c4.com> Precedence: bulk List-ID: X-Mailing-List: linux-crypto@vger.kernel.org On Tue, Feb 08, 2022 at 04:53:31PM +0100, Jason A. Donenfeld wrote: > This is a preparatory commit for the following one. We simply inline the > various functions that rand_initialize() calls that have no other > callers. The compiler was doing this anyway before. Doing this will > allow us to reorganize this after. > > Cc: Theodore Ts'o > Cc: Dominik Brodowski > Signed-off-by: Jason A. Donenfeld > --- > drivers/char/random.c | 90 ++++++++++++++++--------------------------- > 1 file changed, 33 insertions(+), 57 deletions(-) Looks good, Reviewed-by: Eric Biggers - Eric