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=-5.2 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, USER_AGENT_SANE_1 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 669F5C433E1 for ; Thu, 20 Aug 2020 08:05:22 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 44FD22080C for ; Thu, 20 Aug 2020 08:05:22 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726751AbgHTIFV (ORCPT ); Thu, 20 Aug 2020 04:05:21 -0400 Received: from wtarreau.pck.nerim.net ([62.212.114.60]:40533 "EHLO 1wt.eu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726731AbgHTIFT (ORCPT ); Thu, 20 Aug 2020 04:05:19 -0400 Received: (from willy@localhost) by pcw.home.local (8.15.2/8.15.2/Submit) id 07K853tv021567; Thu, 20 Aug 2020 10:05:03 +0200 Date: Thu, 20 Aug 2020 10:05:03 +0200 From: Willy Tarreau To: Sedat Dilek Cc: Eric Dumazet , George Spelvin , Linus Torvalds , Amit Klein , "Jason A. Donenfeld" , Andy Lutomirski , Kees Cook , Thomas Gleixner , Peter Zijlstra , netdev@vger.kernel.org Subject: Re: [DRAFT PATCH] random32: make prandom_u32() output unpredictable Message-ID: <20200820080503.GC21526@1wt.eu> References: <20200814160551.GA11657@1wt.eu> <20200816150133.GA17475@1wt.eu> <20200820043323.GA21461@1wt.eu> <20200820060843.GA21526@1wt.eu> <20200820065838.GB21526@1wt.eu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200820065838.GB21526@1wt.eu> User-Agent: Mutt/1.6.1 (2016-04-27) Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On Thu, Aug 20, 2020 at 08:58:38AM +0200, Willy Tarreau wrote: > I've just pushed a new branch "20200820-siphash-noise" that I also > rebased onto latest master. It's currently running make allmodconfig > here, so that will take a while, but I think it's OK as random32.o is > already OK. I've also addressed a strange build issue caused by having > an array instead of 4 ints in siprand_state. > > Please just let me know if that's OK for you now. At least it worked for me now (built with no errors on x86_64): $ time make -j 8 bzImage modules (...) real 65m7.986s user 477m22.477s sys 38m0.545s $ find . -name '*.ko' |wc -l 7983 Willy