Linux Manual Pages development
 help / color / mirror / Atom feed
* Re: Unexpected splice "always copy" behavior observed
       [not found]                 ` <alpine.LFD.2.00.1005191659100.23538@i5.linux-foundation.org>
@ 2010-05-20  1:56                   ` Mathieu Desnoyers
  2010-05-20 14:18                     ` Linus Torvalds
  0 siblings, 1 reply; 2+ messages in thread
From: Mathieu Desnoyers @ 2010-05-20  1:56 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Nick Piggin, Steven Rostedt, Miklos Szeredi, peterz, fweisbec,
	tardyp, mingo, acme, tzanussi, paulus, linux-kernel, arjan,
	ziga.mahkovec, davem, linux-mm, akpm, kosaki.motohiro, cl, tj,
	jens.axboe, Michael Kerrisk, linux-man

* Linus Torvalds (torvalds@linux-foundation.org) wrote:
> 
> 
> On Wed, 19 May 2010, Mathieu Desnoyers wrote:
> > 
> > A faced a small counter-intuitive fadvise behavior though.
> > 
> >   posix_fadvise(fd, 0, 0, POSIX_FADV_DONTNEED);
> > 
> > only seems to affect the parts of a file that already exist.
> 
> POSIX_FADV_DONTNEED does not have _any_ long-term behavior. So when you do 
> a 
> 
> 	posix_fadvise(fd, 0, 0, POSIX_FADV_DONTNEED);
> 
> it only affects the pages that are there right now, it has no effect on 
> any future actions.

Hrm, someone should tell the author of posix_fadvise(2) about the benefit of
some clarifications (I'm CCing the manpage maintainer)

Quoting man posix_fadvise, annotated:


       Programs  can  use  posix_fadvise()  to announce an intention to access
       file data in a specific pattern in the future, thus allowing the kernel
       to perform appropriate optimizations.

This only talks about future accesses, not past. From what I understand, you are
saying that in the writeback case it's better to think of posix_fadvise() as
applying to pages that have been written in the past too.


       The  advice  applies to a (not necessarily existent) region starting at
       offset and extending for len bytes (or until the end of the file if len
       is 0) within the file referred to by fd.  The advice is not binding; it
       merely constitutes an expectation on behalf of the application.
 
This could be enhanced by saying that it applies up to the current file size if
0 is specified, and does not extend as the file grows. The formulation as it is
currently stated is a bit misleading.

> > So after each splice() that appends to the file, I have to call fadvise 
> > again. I would have expected the "0" len parameter to tell the kernel to 
> > apply the hint to the whole file, even parts that will be added in the 
> > future.
> 
> It's not a hint about future at all. It's a "throw current pages away".
> 
> I would also suggest against doing that kind of thing in a streaming write 
> situation. The behavior for dirty page writeback is _not_ welldefined, and 
> if you do POSIX_FADV_DONTNEED, I would suggest you do it as part of that 
> writeback logic, ie you do it only on ranges that you have just waited on.
> 
> IOW, in my example, you'd couple the
> 
> 	sync_file_range(fd, (index-1)*BUFSIZE, BUFSIZE, SYNC_FILE_RANGE_WAIT_BEFORE|SYNC_FILE_RANGE_WRITE|SYNC_FILE_RANGE_WAIT_AFTER);
> 
> with a
> 
> 	posix_fadvise(fd, (index-1)*BUFSIZE, BUFSIZE, POSIX_FADV_DONTNEED);
> 
> afterwards to throw out the pages that you just waited for.

OK, so it's better to do the writeback as part of sync_file_range rather than
relying on the dirty page writeback to do it for us. I guess the I/O scheduler
will have more room to ensure that writes are contiguous.

Thanks for the feedback,

Mathieu

-- 
Mathieu Desnoyers
Operating System Efficiency R&D Consultant
EfficiOS Inc.
http://www.efficios.com

--
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>

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Unexpected splice "always copy" behavior observed
  2010-05-20  1:56                   ` Unexpected splice "always copy" behavior observed Mathieu Desnoyers
@ 2010-05-20 14:18                     ` Linus Torvalds
  0 siblings, 0 replies; 2+ messages in thread
From: Linus Torvalds @ 2010-05-20 14:18 UTC (permalink / raw)
  To: Mathieu Desnoyers
  Cc: Nick Piggin, Steven Rostedt, Miklos Szeredi,
	peterz-wEGCiKHe2LqWVfeAwA7xHQ, fweisbec-Re5JQEeQqe8AvxtiuMwx3w,
	tardyp-Re5JQEeQqe8AvxtiuMwx3w, mingo-X9Un+BFzKDI,
	acme-H+wXaHxf7aLQT0dZR+AlfA, tzanussi-Re5JQEeQqe8AvxtiuMwx3w,
	paulus-eUNUBHrolfbYtjvyW6yDsg,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, arjan-wEGCiKHe2LqWVfeAwA7xHQ,
	ziga.mahkovec-Re5JQEeQqe8AvxtiuMwx3w,
	davem-fT/PcQaiUtIeIZ0/mPfg9Q, linux-mm-Bw31MaZKKs3YtjvyW6yDsg,
	akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b,
	kosaki.motohiro-+CUm20s59erQFUHtdCDX3A,
	cl-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b, tj-DgEjT+Ai2ygdnm+yROfE0A,
	jens.axboe-QHcLZuEGTsvQT0dZR+AlfA, Michael Kerrisk,
	linux-man-u79uwXL29TY76Z2rM5mHXA



On Wed, 19 May 2010, Mathieu Desnoyers wrote:
> 
>        Programs  can  use  posix_fadvise()  to announce an intention to access
>        file data in a specific pattern in the future, thus allowing the kernel
>        to perform appropriate optimizations.

It's true for some of them. The random-vs-linear behavior is a flag for 
the future, for example (relevant for prefetching).

In fact, it's technically true even for DONTNEED. It's true that we won't 
need the pages in the future! So we throw the pages away. But that means 
that we throw the _current_ pages away.

If we actually touch pages later, than that obviously invalidates the fact 
that we said 'DONTNEED' - we clearly needed them.

		Linus
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-05-20 14:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1274280968.26328.774.camel@gandalf.stny.rr.com>
     [not found] ` <alpine.LFD.2.00.1005190758070.23538@i5.linux-foundation.org>
     [not found]   ` <E1OElGh-0005wc-I8@pomaz-ex.szeredi.hu>
     [not found]     ` <1274283942.26328.783.camel@gandalf.stny.rr.com>
     [not found]       ` <20100519155732.GB2039@Krystal>
     [not found]         ` <20100519162729.GE2516@laptop>
     [not found]           ` <20100519191439.GA2845@Krystal>
     [not found]             ` <alpine.LFD.2.00.1005191220370.23538@i5.linux-foundation.org>
     [not found]               ` <20100519214905.GA22486@Krystal>
     [not found]                 ` <alpine.LFD.2.00.1005191659100.23538@i5.linux-foundation.org>
2010-05-20  1:56                   ` Unexpected splice "always copy" behavior observed Mathieu Desnoyers
2010-05-20 14:18                     ` Linus Torvalds

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox