Received: by 2002:a05:6a10:1d13:0:0:0:0 with SMTP id pp19csp2533258pxb; Tue, 24 Aug 2021 01:04:50 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzEEGrL+DaIWvcM+bmkuefl4k0Wy8yvPK8RnwxE3VkhxBvtv+3iJQyEO9cMTsEugipuXjIg X-Received: by 2002:a02:a18d:: with SMTP id n13mr89271jah.120.1629792290076; Tue, 24 Aug 2021 01:04:50 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1629792290; cv=none; d=google.com; s=arc-20160816; b=A8CTIu3NkiG53GjsdwUInVCK7MjiyXLgYPePkAnnhOydRjRu3Ge3bhsuFpcEygwFo6 NdZcfu2aJs97rQ9j5ABYiU02PMD0GtsOCNTF6612C0oWlXZonMJDAL0bvjgul4ewi9Re YUV5V2sNsYCvyD57u4pALiAOUBgmDsQSrbwYR2YOi4ljeziHRa50ujft8U/ZNTKlLZU6 o3MoyzDXT/0kuia9RCx7dxhRGcqBK1/oYNZh2cUTF25EeVaw4I4DfqtoPCGZDZHRWujw i+ExBDv6kck+94P12bZNxpJc0TYNVtqGD+xgG74tQCaRq1i6MapD2gtlD94UtkwoAouX i7ZQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:user-agent:in-reply-to:content-disposition :mime-version:references:message-id:subject:cc:to:from:date; bh=2F8yUtTLsDIIFhaGvX6TF1N0QtqGB9gXA/v+ctZ6bwc=; b=Ei+VJlw3YRdKX/199ByvBFDGH95JLS8lOko24CVjopNZkXPy3biKQ310VMsQDaXPUa ++oMdUepGYNaWUZc/RE5KtUpIKC/veFiEAeLahSlS3BH0AoNVtXX7MWwRnFWhsUWyAkE FCO70yfV4dOoD+knGSOJpk2OIeNATCyejzYhA+eWSjIINoBr3xqAOhymnkE/OSn6lv/9 sHnRuGDrghoFbl++o1cU7AzTlJZoyk9lEYLv/odlLXsa+IS+mHPZTll1mhK0t80J/kYD K22jUtQciGA8g3/w6/Lxns7bDL+X7s2kt3Gn6MoP6aVZoc7ltegiv3ZnJApzahjddVLF 5MeA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id ay23si10792715iob.33.2021.08.24.01.04.37; Tue, 24 Aug 2021 01:04:50 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234988AbhHXIDv (ORCPT + 99 others); Tue, 24 Aug 2021 04:03:51 -0400 Received: from verein.lst.de ([213.95.11.211]:50673 "EHLO verein.lst.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232038AbhHXIDt (ORCPT ); Tue, 24 Aug 2021 04:03:49 -0400 Received: by verein.lst.de (Postfix, from userid 2407) id B6D9767373; Tue, 24 Aug 2021 10:03:02 +0200 (CEST) Date: Tue, 24 Aug 2021 10:03:02 +0200 From: Christoph Hellwig To: Kari Argillander Cc: Konstantin Komarov , Christoph Hellwig , ntfs3@lists.linux.dev, linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, Pali =?iso-8859-1?Q?Roh=E1r?= , Matthew Wilcox , Christian Brauner Subject: Re: [PATCH v2 3/6] fs/ntfs3: Use new api for mounting Message-ID: <20210824080302.GC26733@lst.de> References: <20210819002633.689831-1-kari.argillander@gmail.com> <20210819002633.689831-4-kari.argillander@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210819002633.689831-4-kari.argillander@gmail.com> User-Agent: Mutt/1.5.17 (2007-11-01) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org > + /* > + * TODO: We should probably check some mount options does > + * they all work after remount. Example can we really change > + * nls. Remove this comment when all testing is done or > + * even better xfstest is made for it. > + */ Instead of the TODO I would suggest a prep patch to drop changing of any options in remount before this one and then only add them back as needed and tested. The mechanics of the conversion look good to me.