Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751971AbbEGA0f (ORCPT ); Wed, 6 May 2015 20:26:35 -0400 Received: from ipmail06.adl6.internode.on.net ([150.101.137.145]:37192 "EHLO ipmail06.adl6.internode.on.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751489AbbEGA0d (ORCPT ); Wed, 6 May 2015 20:26:33 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A2AiDQB9sEpVPH8+LHlcgwyBMoZMrSoBAQEBAQEGmUYEAgKBIk0BAQEBAQEHAQEBAUE/hCABAQEDATocIwULCAMOCgklDwUlAwcaE4gkB8UNAQEIAiAYhX+FIoQZbAeELQWLJ5FYgSWLMIImhz+BBIMnLDGCRQEBAQ Date: Thu, 7 May 2015 10:26:17 +1000 From: Dave Chinner To: Zach Brown Cc: Alexander Viro , Sage Weil , linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, linux-api@vger.kernel.org Subject: Re: [PATCH RFC] vfs: add a O_NOMTIME flag Message-ID: <20150507002617.GJ4327@dastard> References: <1430949612-21356-1-git-send-email-zab@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1430949612-21356-1-git-send-email-zab@redhat.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2976 Lines: 65 On Wed, May 06, 2015 at 03:00:12PM -0700, Zach Brown wrote: > Add the O_NOMTIME flag which prevents mtime from being updated which can > greatly reduce the IO overhead of writes to allocated and initialized > regions of files. Hmmm. How do backup programs now work out if the file has changed and hence needs copying again? ie. applications using this will break other critical infrastructure in subtle ways. > ceph servers can have loads where they perform O_DIRECT overwrites of > allocated file data and then sync to make sure that the O_DIRECT writes > are flushed from write caches. If the writes dirty the inode with mtime > updates then the syncs also write out the metadata needed to track the > inodes which can add significant iop and latency overhead. > > The ceph servers don't use mtime at all. They're using the local file > system as a backing store and any backups would be driven by their upper > level ceph metadata. For ceph, slow IO from mtime updates in the file > system is as daft as if we had block devices slowing down IO for > per-block write timestamps that file systems never use. > > In simple tests a O_DIRECT|O_NOMTIME overwriting write followed by a > sync went from 2 serial write round trips to 1 in XFS and from 4 serial > IO round trips to 1 in ext4. > > file_update_time() checks for O_NOMTIME and aborts the update if it's > set, just like the current check for the in-kernel inode flag > S_NOCMTIME. I didn't update any other mtime update sites. They could be > added as we decide that it's appropriate to do so. > > I opted not to name the flag O_NOCMTIME because I didn't want the name > to imply that ctime updates would be prevented for other inode changes > like updating i_size in truncate. Not updating ctime is a side-effect > of removing mtime updates when it's the only thing changing in the > inode. If adding this, wouldn't we want to unify O_NOMTIME and FMODE_NOCMTIME at the same time? i.e. it makes no sense to add O_NOMTIME and not add O_NOCMTIME, likewise it makes no sense to have two different "no mtime" detection mechanisms. i.e. file_is_nomtime(file)) should return true for both files opened with O_NOMTIME, files that have had FMODE_NOCMTIME added to them and inodes with the S_NOCMTIME flag set on them. > The criteria for using O_NOMTIME is the same as for using O_NOATIME: > owning the file or having the CAP_FOWNER capability. If we're not > comfortable allowing owners to prevent mtime/ctime updates then we > should add a tunable to allow O_NOMTIME. Maybe a mount option? I dislike "turn off safety for performance" options because Joe SpeedRacer will always select performance over safety. Cheers, Dave. -- Dave Chinner david@fromorbit.com -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/