lkml.org 
[lkml]   [2004]   [Jul]   [13]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: How to find out which pages were copied-on-write?
On 07/13/04 21:04, Lutz Vieweg wrote:
>> You don't use mmap for speed but rather for convenience.
>
>
> But isn't an advantage with mmap() that there's no need for the kernel
> to copy what is to be written to a dedicated buffer? The kernel
> could initiate DMA writes directly from the working memory...

Yes, but page faults are expensive too. Each time a page is written
out it needs to be marked read only again and will cause a page fault
for the next write access from userspace. For certain workloads this
can easily add up to more than copy_(to|from)_user in read/write.

read/write also gives you more explicit control on IO batching and
scheduling (when to read or write). Less need for the kernel to employ
tricks to effectively coaslesce IOs on dirtied pages or sense
streaming access patterns.

~mc
-
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/

\
 
 \ /
  Last update: 2005-03-22 14:04    [W:0.070 / U:0.188 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site