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 EC73DC4332F for ; Mon, 21 Mar 2022 10:02:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1346080AbiCUKD1 (ORCPT ); Mon, 21 Mar 2022 06:03:27 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59898 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1346152AbiCUKCz (ORCPT ); Mon, 21 Mar 2022 06:02:55 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 29C73A76F2; Mon, 21 Mar 2022 03:01:30 -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 B9E41612EC; Mon, 21 Mar 2022 10:01:29 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 80947C340ED; Mon, 21 Mar 2022 10:01:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1647856889; bh=wdbi2VTR/6EnOH98OJIzcSlXpTD0lK64z90gLmxW3IU=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=0W7kuXR3smZYcZpTUHe2Whd9BvPzbhEBBeZVAQEHFbgEanCt/AP9jXVLFfKLvi1TC bw+xutcH2tkQects92jDXPM2EjZutYgCEM6vqsLh1w7OFO4Qi7XRpgMDMfzJwfZv9W sOfYPdhrUfyi1NINrMYGexKCJAaUOosTcoqQVcNI= Date: Mon, 21 Mar 2022 11:01:25 +0100 From: Greg Kroah-Hartman To: Miklos Szeredi Cc: Carlos Llamas , Alessio Balsini , Masahiro Yamada , Arnd Bergmann , kernel-team , linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] fuse: fix integer type usage in uapi header Message-ID: References: <20220318171405.2728855-1-cmllamas@google.com> 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-kernel@vger.kernel.org On Mon, Mar 21, 2022 at 10:36:20AM +0100, Miklos Szeredi wrote: > On Mon, 21 Mar 2022 at 09:50, Greg Kroah-Hartman > wrote: > > > > On Mon, Mar 21, 2022 at 09:40:56AM +0100, Miklos Szeredi wrote: > > > On Mon, 21 Mar 2022 at 03:07, Carlos Llamas wrote: > > > > > > > > On Fri, Mar 18, 2022 at 08:24:55PM +0100, Miklos Szeredi wrote: > > > > > On Fri, 18 Mar 2022 at 18:14, Carlos Llamas wrote: > > > > > > > > > > > > Kernel uapi headers are supposed to use __[us]{8,16,32,64} defined by > > > > > > instead of 'uint32_t' and similar. This patch changes > > > > > > all the definitions in this header to use the correct type. Previous > > > > > > discussion of this topic can be found here: > > > > > > > > > > > > https://lkml.org/lkml/2019/6/5/18 > > > > > > > > > > This is effectively a revert of these two commits: > > > > > > > > > > 4c82456eeb4d ("fuse: fix type definitions in uapi header") > > > > > 7e98d53086d1 ("Synchronize fuse header with one used in library") > > > > > > > > > > And so we've gone full circle and back to having to modify the header > > > > > to be usable in the cross platform library... > > > > > > > > > > And also made lots of churn for what reason exactly? > > > > > > > > There are currently only two uapi headers making use of C99 types and > > > > one is . This approach results in different typedefs being > > > > selected when compiling for userspace vs the kernel. > > > > > > Why is this a problem if the size of the resulting types is the same? > > > > uint* are not "valid" variable types to cross the user/kernel boundary. > > They are part of the userspace variable type namespace, not the kernel > > variable type namespace. Linus wrong a long post about this somewhere > > in the past, I'm sure someone can dig it up... > > Looking forward to the details. I cannot imagine why this would matter... Here's the huge thread on the issue: https://lore.kernel.org/all/19865.1101395592@redhat.com/ and specifically here's Linus's answer: https://lore.kernel.org/all/Pine.LNX.4.58.0411281710490.22796@ppc970.osdl.org/ The whole thread is actually relevant for this .h file as well. Some things never change :) thanks, greg k-h