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 BE3D4FA373F for ; Mon, 24 Oct 2022 05:02:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230159AbiJXFCZ (ORCPT ); Mon, 24 Oct 2022 01:02:25 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:50900 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230132AbiJXFCX (ORCPT ); Mon, 24 Oct 2022 01:02:23 -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 2D70079A4C; Sun, 23 Oct 2022 22:02:22 -0700 (PDT) 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 dfw.source.kernel.org (Postfix) with ESMTPS id B6E7D60FF0; Mon, 24 Oct 2022 05:02:21 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 757FDC433D6; Mon, 24 Oct 2022 05:02:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1666587741; bh=oLNeae/g3E6G/Ls0ICeBdFZ3JmsZl6TCaf+9G+ZQyuc=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=r24wFPf2OoXaZUv1hRwUhK0LG70rwvP8C4wk+P2MA2QLtc5OBc85KnMDgO5frfUt/ 4Ep80Vjk9MFiaue7+edpKlQI7zLMePRUhPgBOsO2uFwBve4/EOVn8iH4PxA2E9Kzkc zxaSOCwadEVS4BIhzeo+C2+7Hb2+R7OTJnv2Kc/s= Date: Mon, 24 Oct 2022 07:03:12 +0200 From: Greg Kroah-Hartman To: "Jason A. Donenfeld" Cc: linux-kernel@vger.kernel.org, Albert Ou , Boris Ostrovsky , Borislav Petkov , Catalin Marinas , Chris Zankel , Christophe Leroy , Dave Hansen , Guo Ren , "H . Peter Anvin" , Ingo Molnar , Juergen Gross , Max Filippov , Michael Ellerman , Nicholas Piggin , Palmer Dabbelt , Paul Walmsley , Rich Felker , Russell King , Thomas Bogendoerfer , Thomas Gleixner , Will Deacon , Yoshinori Sato , linux-arm-kernel@lists.infradead.org, linux-csky@vger.kernel.org, linux-mips@vger.kernel.org, linux-riscv@lists.infradead.org, linux-sh@vger.kernel.org, linux-xtensa@linux-xtensa.org, linuxppc-dev@lists.ozlabs.org, x86@kernel.org Subject: Re: [PATCH v1 0/2] cleanup stackprotector canary generation Message-ID: References: <20221023203208.118919-1-Jason@zx2c4.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20221023203208.118919-1-Jason@zx2c4.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, Oct 23, 2022 at 10:32:06PM +0200, Jason A. Donenfeld wrote: > Stack canary generation currently lives partially in random.h, where it > doesn't belong, and is in general a bit overcomplicated. This small > patchset fixes up both issues. I'll take these in my tree, unless > somebody else prefers to do so. > > Cc: Albert Ou > Cc: Boris Ostrovsky > Cc: Borislav Petkov > Cc: Catalin Marinas > Cc: Chris Zankel > Cc: Christophe Leroy > Cc: Dave Hansen > Cc: Greg Kroah-Hartman > Cc: Guo Ren > Cc: H. Peter Anvin > Cc: Ingo Molnar > Cc: Juergen Gross > Cc: Max Filippov > Cc: Michael Ellerman > Cc: Nicholas Piggin > Cc: Palmer Dabbelt > Cc: Paul Walmsley > Cc: Rich Felker > Cc: Russell King > Cc: Thomas Bogendoerfer > Cc: Thomas Gleixner > Cc: Will Deacon > Cc: Yoshinori Sato > Cc: linux-arm-kernel@lists.infradead.org > Cc: linux-csky@vger.kernel.org > Cc: linux-mips@vger.kernel.org > Cc: linux-riscv@lists.infradead.org > Cc: linux-sh@vger.kernel.org > Cc: linux-xtensa@linux-xtensa.org > Cc: linuxppc-dev@lists.ozlabs.org > Cc: x86@kernel.org Acked-by: Greg Kroah-Hartman