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.3 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 64CF5C433E2 for ; Thu, 17 Sep 2020 18:40:45 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 0AC5F21D7B for ; Thu, 17 Sep 2020 18:40:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726366AbgIQSie (ORCPT ); Thu, 17 Sep 2020 14:38:34 -0400 Received: from verein.lst.de ([213.95.11.211]:57139 "EHLO verein.lst.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726427AbgIQRSm (ORCPT ); Thu, 17 Sep 2020 13:18:42 -0400 Received: by verein.lst.de (Postfix, from userid 2407) id 4473C68BEB; Thu, 17 Sep 2020 19:18:27 +0200 (CEST) Date: Thu, 17 Sep 2020 19:18:26 +0200 From: Christoph Hellwig To: Al Viro Cc: Christoph Hellwig , Richard Henderson , Ivan Kokshaysky , Matt Turner , Trond Myklebust , Anna Schumaker , linux-alpha@vger.kernel.org, linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, linux-nfs@vger.kernel.org Subject: Re: [PATCH 2/5] fs,nfs: lift compat nfs4 mount data handling into the nfs code Message-ID: <20200917171826.GA8198@lst.de> References: <20200917082236.2518236-1-hch@lst.de> <20200917082236.2518236-3-hch@lst.de> <20200917171604.GW3421308@ZenIV.linux.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200917171604.GW3421308@ZenIV.linux.org.uk> User-Agent: Mutt/1.5.17 (2007-11-01) Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org On Thu, Sep 17, 2020 at 06:16:04PM +0100, Al Viro wrote: > On Thu, Sep 17, 2020 at 10:22:33AM +0200, Christoph Hellwig wrote: > > There is no reason the generic fs code should bother with NFS specific > > binary mount data - lift the conversion into nfs4_parse_monolithic > > instead. > > Considering the size of struct compat_nfs4_mount_data_v1... Do we really > need to bother with that "copy in place, so we go through the fields > backwards" logics? Just make that > > > +static void nfs4_compat_mount_data_conv(struct nfs4_mount_data *data) > > +{ > struct compat_nfs4_mount_data_v1 compat; > compat = *(struct compat_nfs4_mount_data_v1 *)data; > and copy the damnt thing without worrying about the field order... Maybe. But then again why bother? I just sticked to the existing code as much as possible.