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 ADA7DC3DA71 for ; Mon, 19 Dec 2022 17:01:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231572AbiLSRB4 (ORCPT ); Mon, 19 Dec 2022 12:01:56 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41912 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231967AbiLSRBt (ORCPT ); Mon, 19 Dec 2022 12:01:49 -0500 Received: from desiato.infradead.org (desiato.infradead.org [IPv6:2001:8b0:10b:1:d65d:64ff:fe57:4e05]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id CEB042BDF; Mon, 19 Dec 2022 09:01:47 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=desiato.20200630; h=In-Reply-To:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=AoHsdXMGtwYoivDhVzS8Gq7Q9pcIfze83OdOHhDQbg8=; b=eUjaapgCBm8IxeFah4OJ2c3/Gl HBpuz5Hc/VGKJoE4PzptLz+cPQR9Xt79XOnii253NhACRZCZyFsdYBtw/dUP0vNtUyQrrLnz8eK0H pDahAmGnkSiSzlfmiR+YfDMQuDK9uqwJ5svoOU0m50n0azB/jkZmVxAPOENcE0hxmwwHiQ697SFtL GMS8KKr/SzrKgE2+lD9tHsYu7O6r5oRKLBoEWTZJ7luxQeSC7JoIukZksM+c11hwKokzR8DMCWrzY 64LKnvuoRISfjz3PCJNJlBnRf3VPpqu+IdfGzNxa5a9rJkb28NicDPnkjPvSN9aPTgWpLoEG9Bl0T ajTbWNPA==; Received: from j130084.upc-j.chello.nl ([24.132.130.84] helo=noisy.programming.kicks-ass.net) by desiato.infradead.org with esmtpsa (Exim 4.96 #2 (Red Hat Linux)) id 1p7JVP-00CfUx-2C; Mon, 19 Dec 2022 17:00:48 +0000 Received: from hirez.programming.kicks-ass.net (hirez.programming.kicks-ass.net [192.168.1.225]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by noisy.programming.kicks-ass.net (Postfix) with ESMTPS id 586D230006D; Mon, 19 Dec 2022 18:00:44 +0100 (CET) Received: by hirez.programming.kicks-ass.net (Postfix, from userid 1000) id 0695F20B13018; Mon, 19 Dec 2022 18:00:44 +0100 (CET) Date: Mon, 19 Dec 2022 18:00:43 +0100 From: Peter Zijlstra To: "Jason A. Donenfeld" Cc: torvalds@linux-foundation.org, corbet@lwn.net, will@kernel.org, boqun.feng@gmail.com, mark.rutland@arm.com, catalin.marinas@arm.com, dennis@kernel.org, tj@kernel.org, cl@linux.com, hca@linux.ibm.com, gor@linux.ibm.com, agordeev@linux.ibm.com, borntraeger@linux.ibm.com, svens@linux.ibm.com, Herbert Xu , davem@davemloft.net, tglx@linutronix.de, mingo@redhat.com, bp@alien8.de, dave.hansen@linux.intel.com, x86@kernel.org, hpa@zytor.com, joro@8bytes.org, suravee.suthikulpanit@amd.com, robin.murphy@arm.com, dwmw2@infradead.org, baolu.lu@linux.intel.com, Arnd Bergmann , penberg@kernel.org, rientjes@google.com, iamjoonsoo.kim@lge.com, Andrew Morton , vbabka@suse.cz, roman.gushchin@linux.dev, 42.hyeyoo@gmail.com, linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, linux-mm@kvack.org, linux-s390@vger.kernel.org, linux-crypto@vger.kernel.org, iommu@lists.linux.dev, linux-arch@vger.kernel.org Subject: Re: [RFC][PATCH 01/12] crypto: Remove u128 usage Message-ID: References: <20221219153525.632521981@infradead.org> <20221219154118.889543494@infradead.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-doc@vger.kernel.org On Mon, Dec 19, 2022 at 04:56:33PM +0100, Jason A. Donenfeld wrote: > Why not just use `u128` from types.h in this file? Ordering, I can't very well introduce it in types.h while other definitions exist in the tree. So I first have to clean up the u128 namespace.