linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Miklos Szeredi <miklos@szeredi.hu>
To: staubach@redhat.com
Cc: miklos@szeredi.hu, trond.myklebust@fys.uio.no,
	akpm@linux-foundation.org, hugh@veritas.com,
	linux-fsdevel@vger.kernel.org, linux-mm@kvack.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH] update ctime and mtime for mmaped write
Date: Thu, 22 Feb 2007 23:08:24 +0100	[thread overview]
Message-ID: <E1HKM6y-0006xN-00@dorka.pomaz.szeredi.hu> (raw)
In-Reply-To: <45DE108C.6010101@redhat.com> (message from Peter Staubach on Thu, 22 Feb 2007 16:52:12 -0500)

> Miklos Szeredi wrote:
> >>>> This still does not address the situation where a file is 'permanently'
> >>>> mmap'd, does it?
> >>>>         
> >>> So?  If application doesn't do msync, then the file times won't be
> >>> updated.  That's allowed by the standard, and so portable applications
> >>> will have to call msync.
> >>>       
> >> It is allowed, but it is clearly not useful behaviour. Nowhere is it set
> >> in stone that we should be implementing just the minimum allowed.
> >>     
> >
> > You're right.  In theory, at least.  But in practice I don't think
> > this matters.  Show me an application that writes to a shared mapping
> > then doesn't call either msync or munmap and doesn't even exit.
> >
> > If there were lot of these apps, then this bug would have been fixed
> > lots of years earlier.  In fact there are _very_ few apps writing to
> > shared mappings at all.
> >
> >   
> 
> Perhaps true, although I know of at least one customer of Red Hat who
> does have an application (or more) than uses mmap'd files and is
> suffering from this lack of appropriate semantics.  They are not
> getting files backed up which need to be.

Yeah, but I bet, that just updating the times on msync and munmap will
cure the problem.  Until you prove me wrong, this is a purely
theoretical argument.

> > Applications should be encouraged to call msync(MS_ASYNC) because:
> >
> >   - it's very fast (basically a no-op) on recent linux kernels
> >
> >   - it's the only portable way to guarantee, that the data you written
> >     will _ever_ hit the disk.
> >
> > There's really no downside to using msync(MS_ASYNC) in your
> > application, so making an effort to support applications that don't do
> > this is stupid, IMO.
> 
> It may be a no-op on recent Linux kernels, but I don't think that it
> is a no-op on other systems.

Exactly.  Which is the reason applications _have_ to call msync on
these OSs if they want data to be synchronized with the file.

There are two cases:

 1) app don't cares about it's data being synchronized with the file

 2) app does care

In the first case there's no problem if the times aren't updated,
since the app didn't care.

In the second case the a portable application has to call msync, and
on linux it doesn't even lose any performance from this, so it should
be happy.

You are trying to provide for an app that requires 1) on non-linux and
2) on linux.  Does that make any sense?

Miklos

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

      reply	other threads:[~2007-02-22 22:08 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-02-21 17:51 Miklos Szeredi, Miklos Szeredi
2007-02-21 18:07 ` Peter Staubach
2007-02-21 18:23   ` Miklos Szeredi
2007-02-21 18:54     ` Peter Staubach
2007-02-21 19:07       ` Miklos Szeredi
2007-02-22 17:36         ` Peter Staubach
2007-02-22 18:16           ` Miklos Szeredi
2007-02-22 20:11             ` Peter Staubach
2007-02-22 20:43               ` Miklos Szeredi
2007-02-22 20:50                 ` Peter Staubach
2007-02-21 18:12 ` Trond Myklebust
2007-02-21 18:28   ` Miklos Szeredi
2007-02-21 18:36     ` Trond Myklebust
2007-02-21 18:50       ` Miklos Szeredi
2007-02-21 18:50       ` Peter Staubach
2007-02-22  4:26 ` Andrew Morton
2007-02-22  7:49   ` Miklos Szeredi
2007-02-22 17:39     ` Peter Staubach
2007-02-22 18:08       ` Miklos Szeredi
2007-02-22 20:14         ` Peter Staubach
2007-02-22 20:48           ` Miklos Szeredi
2007-02-22 20:55             ` Peter Staubach
2007-02-22 21:04             ` Trond Myklebust
2007-02-22 21:28               ` Miklos Szeredi
2007-02-22 21:52                 ` Peter Staubach
2007-02-22 22:08                   ` Miklos Szeredi [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1HKM6y-0006xN-00@dorka.pomaz.szeredi.hu \
    --to=miklos@szeredi.hu \
    --cc=akpm@linux-foundation.org \
    --cc=hugh@veritas.com \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=staubach@redhat.com \
    --cc=trond.myklebust@fys.uio.no \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox