Received: by 2002:a05:6a10:1d13:0:0:0:0 with SMTP id pp19csp2530958pxb; Tue, 24 Aug 2021 01:01:04 -0700 (PDT) X-Google-Smtp-Source: ABdhPJwnoaHTGAbSeeOxgLrVm8BiBtNbfIG5waqlByLb7rvHN0tXpJuYb7HRL9er4MKGEussN1Nr X-Received: by 2002:a5d:824e:: with SMTP id n14mr29881852ioo.134.1629792063738; Tue, 24 Aug 2021 01:01:03 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1629792063; cv=none; d=google.com; s=arc-20160816; b=iLznNm0X3qC0seURUqY0evgft8Lq6SMMm3oidJjjNVDD/XM83ZIRnTG2x+8bJ1GYQu dsC0C08ju3owd9chu0NeWZ/TL9AO1d0J70Q2l4xZcbQqep0iqHMjfV0wcjsbD5ZXccXI 3TDOlWoK1E5KWWXCYw+LqiERgMhmyRzVxMzuDBuz/+FKz8ZSQPuu6HuNgqoT4RIVWGQ1 i1KVJKBQ1bJoOmhG5NdCconlbVV9SUmL5BKb3ddfINwZ1FF4s/80YRsEvyH4Z9fLxuKc YAfLRPFHi3CwJmU8ElZQPOfyL8p4/y/93nRgfDJEkSIcFyrqw8bnOaYb5cr/9QOF00b8 HQog== 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=+Nzz5K3gSrdjNundhFrhQOF37VHlqj/877gE+yNgnGI=; b=mQXjWe1BCkVJq7WS6IcQ3IIKsDBBMV1hutOfnf6KhSW2SYS8noPfrarpP/F1YVxqk0 wl6l4DgD4tVgj9p3VnIlUDZFWrn4gPvgI8gWv5b+gd2og4T1SpSVcDuNwQ8KwMPv3kuW vNRPC+KN4DpRMiIJaE849NKg+snQX8zngo988YczUS0FjVq0Yg2CFqzxpmlX4hwX1dyW nbv9RdlVf7doDg8/2ftRSlQjaaxztzuRNa4OL2TxASH6uo3/qfQAZY4e/Fx5Z/P8JsXp vjP1gKl83x6v7NR2bkJeWXWw7lyeG0q5OhCSaZkxpwWjheVqN3rnUAq3mAEDtDhSBPd3 /evw== 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 o4si11126197iom.0.2021.08.24.01.00.52; Tue, 24 Aug 2021 01:01:03 -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 S235221AbhHXIAO (ORCPT + 99 others); Tue, 24 Aug 2021 04:00:14 -0400 Received: from verein.lst.de ([213.95.11.211]:50658 "EHLO verein.lst.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234954AbhHXIAO (ORCPT ); Tue, 24 Aug 2021 04:00:14 -0400 Received: by verein.lst.de (Postfix, from userid 2407) id 757AD67373; Tue, 24 Aug 2021 09:59:28 +0200 (CEST) Date: Tue, 24 Aug 2021 09:59:28 +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 2/6] fs/ntfs3: Remove unnecesarry remount flag handling Message-ID: <20210824075928.GB26733@lst.de> References: <20210819002633.689831-1-kari.argillander@gmail.com> <20210819002633.689831-3-kari.argillander@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210819002633.689831-3-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 On Thu, Aug 19, 2021 at 03:26:29AM +0300, Kari Argillander wrote: > Remove unnecesarry remount flag handling. This does not do anything for > this driver. We have already set SB_NODIRATIME when we fill super. Also > noatime should be set from mount option. Now for some reson we try to > set it when remounting. > > Lazytime part looks like it is copied from f2fs and there is own mount > parameter for it. That is why they use it. We do not set lazytime > anywhere in our code. So basically this just blocks lazytime when > remounting. > > Signed-off-by: Kari Argillander Looks good, Reviewed-by: Christoph Hellwig