active questions tagged mmap - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T11:41:55Zhttp://stackoverflow.com/feeds/tag/mmaphttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/45972/mmap-vs-reading-blocks14mmap() vs. reading blocksjbl2008-09-05T14:52:14Z2009-12-13T16:59:37Z
<p>I'm working on a program that will be processing files that could potentially be 100GB or more in size. The files contain sets of variable length records. I've got a first implementation up and running and am now looking towards improving performance, particularly at doing I/O more efficiently since the input file gets scanned many times.</p>
<p>Is there a rule of thumb for using mmap() versus reading in blocks via C++'s fstream library? What I'd like to do is read large blocks from disk into a buffer, process complete records from the buffer, and then read more.</p>
<p>The mmap() code could potentially get very messy since mmap'd blocks need to lie on page sized boundaries (my understanding) and records could potentially like across page boundaries. With fstreams, I can just seek to the start of a record and begin reading again, since we're not limited to reading blocks that lie on page sized boundaries.</p>
<p>How can I decide between these two options without actually writing up a complete implementation first? Any rules of thumb (e.g., mmap() is 2x faster) or simple tests?</p>
http://stackoverflow.com/questions/1863703/what-are-the-most-efficient-idioms-for-streaming-data-from-disk-with-constant-spa2What are the most efficient idioms for streaming data from disk with constant space usage?Jason Dagit2009-12-07T23:50:50Z2009-12-08T13:52:26Z
<h2>Problem Description</h2>
<p>I need to stream large files from disk. Assume the files are larger than will fit in memory. Furthermore, suppose that I'm doing some calculation on the data and the result is small enough to fit in memory. As a hypothetical example, suppose I need to calculate an md5sum of a 200GB file and I need to do so with guarantees about how much ram will be used.</p>
<p>In summary:</p>
<ul>
<li>Needs to be constant space</li>
<li>Fast as possible</li>
<li>Assume very large files</li>
<li>Result fits in memory</li>
</ul>
<h2>Question</h2>
<p>What are the fastest ways to read/stream data from a file using constant space?</p>
<h2>Ideas I've had</h2>
<p>If the file was small enough to fit in memory, then <code>mmap</code> on POSIX systems would be very fast, unfortunately that's not the case here. Is there any performance advantage to using <code>mmap</code> with a small buffer size to buffer successive chunks of the file? Would the system call overhead of moving the <code>mmap</code> buffer down the file dominate any advantages Or should I use a fixed buffer that I read into with <code>fread</code>?</p>
http://stackoverflow.com/questions/1819725/why-does-the-memory-mappped-region-grow-down-in-linux0why does the memory mappped region grow down in Linuxiamrohitbanga2009-11-30T13:05:51Z2009-11-30T14:02:53Z
<p>Consider <a href="http://duartes.org/gustavo/blog/post/anatomy-of-a-program-in-memory" rel="nofollow">this</a>
because this region maps the files like dynamically loaded libraries, i feel it should ideally grow up. this can be implemented by starting the mmap region between RLIMIT_STACK and heap beginning. what problems would occur in this case.</p>
<p>if it grows down, then how is a new memory mapped region created. suppose we wish to map the code for abc.so in the virtual address space, then we would have to create sizeof(abc.so) space, in the downward direction and map file starting at the bottom of this region.
is this how it works?</p>
http://stackoverflow.com/questions/1754451/memory-mapped-files-system-call-linux0memory mapped files system call - linuxiamrohitbanga2009-11-18T08:28:48Z2009-11-18T10:28:15Z
<p>When we map a file to memory, a system call is required. Do subsequent accesses to the file require system calls or is the virtual memory page of the process mapped to the actual page cache in memory?</p>
<p><strong>update</strong>:
what i also want to know is that if multiple processes are accessing the same file through mmap. they will be accessing the same physical memory portion write.</p>
http://stackoverflow.com/questions/1739296/malloc-vs-mmap-in-c3malloc vs mmap in CPeter2009-11-15T23:35:40Z2009-11-15T23:49:21Z
<p>Hi, </p>
<p>I built two programs, one using <code>malloc</code> and other one using <code>mmap</code>. The execution time using <code>mmap</code> is much less than using <code>malloc</code>.</p>
<p>I know for example that when you're using <code>mmap</code> you avoid read/writes calls to the system. And the memory access are less.</p>
<p>But are there any other reasons for the advantages when using <code>mmap</code> over <code>malloc</code>?</p>
<p>Thanks a lot</p>
http://stackoverflow.com/questions/1737582/file-projection-into-memory-using-mmap0File projection into memory using mmapPeter2009-11-15T13:56:17Z2009-11-15T17:12:39Z
<p>Hi,</p>
<p>I'm trying to project a file into memory to operate with it. The file contais structs so I'm trying to use a pointer to the start of one struct and then read it and modify some variable.
The problem is that the time of execution is high and I suppose that using mmap the time will be less.
This is the code, any suggestion?</p>
<pre><code>#include <unistd.h>
#include <sys/stat.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/mman.h>
int revisanotas(int fd)
{
int nbytes=1;
int nbytese=0;
int i=0;
int n=0;
struct stat datos;
fstat(fd, &datos);
evaluacion buf;
evaluacion* buffer=mmap(0,datos.st_size, PROT_READ | PROT_WRITE, MAP_PRIVATE, fd, 0);
int actual = read(fd,buffer,datos.st_size);
{
i++;
if (buffer[i].notamedia >= 4.5 && buffer[i].notamedia < 5)
{
n=n+1;
printf("Notamedia = %f\n",buffer[i].notamedia);
buffer[i].notamedia=5;
}
}while (i<(datos.st_size/(sizeof(evaluacion))));
return
</code></pre>
http://stackoverflow.com/questions/1661986/why-doesnt-pythons-mmap-work-with-large-files5Why doesn't Python's mmap work with large files?Scott Griffiths2009-11-02T15:34:22Z2009-11-05T17:50:15Z
<p>I am writing a module that amongst other things allows bitwise read access to files. The files can potentially be large (hundreds of GB) so I wrote a simple class that lets me treat the file like a string and hides all the seeking and reading.</p>
<p>At the time I wrote my wrapper class I didn't know about the <a href="http://docs.python.org/library/mmap.html" rel="nofollow">mmap module</a>. On reading the documentation for mmap I thought <em>"great - this is just what I needed, I'll take out my code and replace it with an mmap. It's probably much more efficient and it's always good to delete code."</em></p>
<p>The problem is that mmap doesn't work for large files! This is very surprising to me as I thought it was perhaps the most obvious application. If the file is above a few gigabytes then I get an <code>EnvironmentError: [Errno 12] Cannot allocate memory</code>. This only happens with a 32-bit Python build so it seems it is running out of address space, but I can't find any documentation on this.</p>
<p>My code is just</p>
<pre><code>f = open('somelargefile', 'rb')
map = mmap.mmap(f.fileno(), 0, access=mmap.ACCESS_READ)
</code></pre>
<p>So my question is <strong>am I missing something obvious here?</strong> Is there a way to get mmap to work portably on large files or should I go back to my naïve file wrapper?</p>
<p><hr /></p>
<p>Update: There seems to be a feeling that the Python mmap should have the same restrictions as the POSIX mmap. To better express my frustration here is a simple class that has a small part of the functionality of mmap.</p>
<pre><code>import os
class Mmap(object):
def __init__(self, f):
"""Initialise with a file object."""
self.source = f
def __getitem__(self, key):
try:
# A slice
self.source.seek(key.start, os.SEEK_SET)
return self.source.read(key.stop - key.start)
except AttributeError:
# single element
self.source.seek(key, os.SEEK_SET)
return self.source.read(1)
</code></pre>
<p>It's read-only and doesn't do anything fancy, but I can do this just the same as with an mmap:</p>
<pre><code>map2 = Mmap(f)
print map2[0:10]
print map2[10000000000:10000000010]
</code></pre>
<p>except that there are no restrictions on filesize. Not too difficult really...</p>
http://stackoverflow.com/questions/1632673/python-file-slurp-w-endian-conversion3Python File Slurp w/ endian conversionRayjan2009-10-27T18:11:43Z2009-10-28T20:39:08Z
<p>It was recently asked how to do a file slurp in python:
<a href="http://stackoverflow.com/questions/1631897/python-file-slurp">link text</a></p>
<p>And it was recommended to use something like</p>
<pre><code>with open('x.txt') as x: f = x.read()
</code></pre>
<p>How would I go about doing this to read the file in and convert the endian representation of the data? </p>
<p>For example, I have a 1GB binary file that's just a bunch of single precision floats packed as a big endian and i want to convert it to little endian and dump into a numpy array. Below is the function I wrote to accomplish this and some real code that calls it. I use struct.unpack do the endian conversion and tried to speed everything up by using mmap.</p>
<p>My question then is, am I using the slurp correctly with mmap and struct.unpack? Is there a cleaner, faster way to do this? Right now what I have works, but I'd really like to learn how to do this better.</p>
<p>Thanks in advance</p>
<pre><code>#!/usr/bin/python
from struct import unpack
import mmap
import numpy as np
def mmapChannel(arrayName, fileName, channelNo, line_count, sample_count):
with open(fileName, "rb") as f:
"""
We need to read in the asf internal file and convert it into a numpy array.
It is stored as a single row, and is binary. Thenumber of lines (rows), samples (columns),
and channels all come from the .meta text file
Also, internal format files are packed big endian, but most systems use little endian, so we need
to make that conversion as well.
Memory mapping seemed to improve the ingestion speed a bit
"""
# memory-map the file, size 0 means whole file
#length = line_count * sample_count * arrayName.itemsize
print "\tMemory Mapping..."
map = mmap.mmap(f.fileno(), 0, access=mmap.ACCESS_READ)
map.seek(channelNo*line_count*sample_count*arrayName.itemsize)
for i in xrange(line_count*sample_count):
arrayName[0, i] = unpack('>f', map.read(arrayName.itemsize) )[0]
#same method as above, just more verbose for the maintenance programmer
# for i in xrange(line_count*sample_count): #row
# be_float = map.read(arrayName.itemsize) # arrayName.itemsize should be 4 for float32
# le_float = unpack('>f', be_float)[0] # > for big endian, < for little endian
# arrayName[0, i]= le_float
map.close()
return arrayName
print "Initializing the Amp HH HV, and Phase HH HV arrays..."
HHamp = np.ones((1, line_count*sample_count), dtype='float32')
HHphase = np.ones((1, line_count*sample_count), dtype='float32')
HVamp = np.ones((1, line_count*sample_count), dtype='float32')
HVphase = np.ones((1, line_count*sample_count), dtype='float32')
print "Ingesting HH_Amp..."
HHamp = mmapChannel(HHamp, 'ALPSRP042301700-P1.1__A.img', 0, line_count, sample_count)
print "Ingesting HH_phase..."
HHphase = mmapChannel(HHphase, 'ALPSRP042301700-P1.1__A.img', 1, line_count, sample_count)
print "Ingesting HV_AMP..."
HVamp = mmapChannel(HVamp, 'ALPSRP042301700-P1.1__A.img', 2, line_count, sample_count)
print "Ingesting HV_phase..."
HVphase = mmapChannel(HVphase, 'ALPSRP042301700-P1.1__A.img', 3, line_count, sample_count)
print "Reshaping...."
HHamp_orig = HHamp.reshape(line_count, -1)
HHphase_orig = HHphase.reshape(line_count, -1)
HVamp_orig = HVamp.reshape(line_count, -1)
HVphase_orig = HVphase.reshape(line_count, -1)
</code></pre>
http://stackoverflow.com/questions/726471/how-big-can-a-memory-mapped-file-be1How big can a memory-mapped file be?jeff.zanooda2009-04-07T16:01:27Z2009-10-27T10:09:46Z
<p>What limits the size of a memory-mapped file? I know it can't be bigger than the largest continuous chunk of unallocated address space, and that there should be enough free disk space. But are there other limits?</p>
http://stackoverflow.com/questions/1349604/what-is-the-fastest-way-to-read-10-gb-file-from-the-disk6What is the fastest way to read 10 GB file from the disk?alex2009-08-28T22:03:40Z2009-10-12T18:04:30Z
<p>We need to read and count different types of messages/run
some statistics on a 10 GB text file, e.g a <a href="http://en.wikipedia.org/wiki/Financial%5FInformation%5FeXchange" rel="nofollow">FIX</a> engine
log. We use Linux, 32-bit, 4 CPUs, Intel, coding in Perl but
the language doesn't really matter.</p>
<p>I have found some interesting tips in Tim Bray's
<a href="http://www.tbray.org/ongoing/When/200x/2007/09/20/Wide-Finder" rel="nofollow">WideFinder project</a>. However, we've found that using memory mapping
is inherently limited by the 32 bit architecture.</p>
<p>We tried using multiple processes, which seems to work
faster if we process the file in parallel using 4 processes
on 4 CPUs. Adding multi-threading slows it down, maybe
because of the cost of context switching. We tried changing
the size of thread pool, but that is still slower than
simple multi-process version.</p>
<p>The memory mapping part is not very stable, sometimes it
takes 80 sec and sometimes 7 sec on a 2 GB file, maybe from
page faults or something related to virtual memory usage.
Anyway, Mmap cannot scale beyond 4 GB on a 32 bit
architecture.</p>
<p>We tried Perl's <a href="http://search.cpan.org/dist/IPC-Mmap" rel="nofollow">IPC::Mmap</a> and <a href="http://search.cpan.org/dist/Sys%3A%3AMmap" rel="nofollow">Sys::Mmap</a>. Looked
into Map-Reduce as well, but the problem is really I/O
bound, the processing itself is sufficiently fast.</p>
<p>So we decided to try optimize the basic I/O by tuning
buffering size, type, etc.</p>
<p>Can anyone who is aware of an existing project where this
problem was efficiently solved in any language/platform
point to a useful link or suggest a direction?</p>
http://stackoverflow.com/questions/1542838/mmap-and-access-to-gpio-config-registers-in-an-arm-processor1mmap and access to GPIO config registers in an ARM processortf2009-10-09T09:40:38Z2009-10-09T10:09:08Z
<p>Im struggling to read(and write) to HW registers from Linux user space. The goal is to configure some GPIO pins from and be able to set and read this pins.</p>
<p>According to the spec for the processor(imx27 from Freescale) the physical address for the register bank controlling GPIO this is 0x10015000</p>
<p>My assumption was that I could use something like this:
unsigned long *gpio;
fd = open("/dev/mem", O_RDWR);
gpio = (unsigned long *) mmap(0, getpagesize(), PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0x10015000);</p>
<p>I now expected to be able to read and set data to the registers in the processor. The proble is that it does not matter which location i read, I always get 0.</p>
<p>For example register in physical location 0x10015220 contains a register showing which pins are in us as GPIO. This Defaults to 0xFFFFFFFF. Reading this register I expected to get something different than 0:</p>
<p>printf("PTC_GIUS: 0x%08lX\n", gpio[0x220]);
gives PTC_GIUS: 0x00000000</p>
<p>Where am I going wrong ?</p>
http://stackoverflow.com/questions/1172014/linux-mmap-error0Linux mmap() errorDhruv 2009-07-23T14:06:57Z2009-10-04T04:35:30Z
<p>I have a memory mapped file, from which I wish to parse the contents of the buffer. The mmap() returns success, and I can print out the buffer contents to a file using fprintf successfully. However, when I try to access the buffer as an array in my program directly, I get a segmentation fault. Why is this happening?
Here is the code:</p>
<pre><code> #define PTT_DUMP "/home/dhruv/somefile"
.
.
.
int fd_ptt_dump = open(PTT_DUMP, O_RDONLY);
struct stat struct_ptt_dump;
fstat(fd_ptt_dump, &struct_ptt_dump);
printf("\n\n\t\t\t --- The size of the dump is = %d -----\n\n", struct_ptt_dump.st_size);
char *membuffer;
char pid_num[100];
char cycles[100], instr[100], cpi[100] ;
int pid_index =0;
int cycles_index = 0;
int instr_index = 0;
int cpi_index = 0 ;
int len = (int)struct_ptt_dump.st_size;
int newline_count = 0;
int n = 0;
if( (membuffer = mmap(0, struct_ptt_dump.st_size, PROT_READ, MAP_FILE | MAP_PRIVATE, fd_ptt_dump, 0)) == (caddr_t) -1)
err_sys("mmap error");
/* If the following is uncommented, it prints fine */
/*
for ( n =0; n < struct_ptt_dump.st_size ; n++)
fprintf(fp_logfile,"%c", membuffer[n]);
*/
/* But, I really want to access the buffer as an array for speed if possible */
/* Here is where everything goes haywire */
while (newline_count != 5)
if ( membuffer[n++] == '\n' )
newline_count++ ;
/* printf returns OK, and I am able to skip newlines */
printf("\n\n newlines = %d\n\n 10 buffer characters", newline_count);
int k =0;
/* All code from here gives segmentation fault */
while ( membuffer[n++] != ' ' )
pid_num[pid_index++] = membuffer[n] ;
/* Even if I comment out everything from here on, the above assignment itself results in a segmentation fault */
pid_num[pid_index] = '\0';
printf("\n\n pid = %s", pid_num);
while ( membuffer[len--] != ' ' )
if ( membuffer[len] != '\n' )
cpi[cpi_index++] = membuffer[len];
cpi[cpi_index] = '\0';
for( ; membuffer[len] == ' ' ; len-- )
;
for(n=0; membuffer[len-n] != ' '; n++)
instr[instr_index++] = membuffer[len-n] ;
instr[instr_index] = '\0' ;
n++;
for( ; membuffer[len-n] != ' ' ; n++)
cycles[cycles_index++] = membuffer[len-n];
cycles[cycles_index] = '\0';
printf("\n\n\t\t\t\t ********** buffer values *************\n\n");
printf("\t\t\t\tdominant pid = %s\t cycles = %s\t instructions = %s\t cpi = %s \n\n", pid_num, cycles, instr, cpi);
fflush(STDOUT_FILENO);
</code></pre>
http://stackoverflow.com/questions/1507075/wx-textctrl-loadfile0wx.TextCtrl.LoadFile()RTK2009-10-01T23:44:31Z2009-10-03T05:32:18Z
<p>I am trying to display search result data quickly. I have all absolute file paths for files on my network drive(s) in a single, ~50MB text file. The python script makes a single pass over every line in this file [kept on the local drive] in a second or less, and that is acceptable. That is the time it takes to gather results.</p>
<p>However, the results are given in a wx.TextCtrl widget. Appending them line by line to a wx TextCtrl would be ridiculous. The best method I have come up with is to write the results to a text file, and call wx.TextCtrl's LoadFile native, which, depending on the number of results, loads the lines of text into the pane in between 0.1 to 5 seconds or so. However there must be a faster way for 10+MB of text inbound. The results are immediately calculated and available in the same process as the GUI... so please, tell me is there any way I can pipe/proxy/hack that data directly into the TextCtrl? Would mmap help this transfer?</p>
http://stackoverflow.com/questions/598444/how-to-share-apc-cache-between-several-php-processes-when-running-under-fastcgi2How to share APC cache between several PHP processes when running under FastCGI?mjs2009-02-28T18:35:20Z2009-09-04T02:48:27Z
<p>I'm currently running several copies of PHP/FastCGI, with APC enabled (under Apache+mod_fastcgi, if that matters). Can I share cache between the processes? How can I check if it's shared already? (I think the <code>apc.mmap_file_mask</code> ini setting might be involved, but I don't know how to use it.)</p>
<p>(One of the reasons I think its <em>not</em> shared at the moment is that the <code>apc.mmap_file_mask</code>, as reported by the apc.php web interface flips between about 3 different values as I reload.)</p>
http://stackoverflow.com/questions/1354335/mmap2-vs-mmap32mmap(2) vs mmap(3)EQvan2009-08-30T17:09:51Z2009-08-30T17:19:38Z
<p>Does anyone know what the difference between <code>mmap(2)</code> and <code>mmap(3)</code> is? Man section 3 is described as "This chapter describes all library functions excluding the library functions described in chapter 2, which implement system calls." Doesn't <code>mmap(3)</code> perform a system call?</p>
<p>Reading the two man pages, I see that <code>mmap(2)</code> seems to accept a much wider variety of flags than <code>mmap(3)</code> does, and claims to be able to map device I/O spaces. <code>mmap(3)</code> claims to be able to map "shared memory objects" and "typed memory objects" in addtion to files, but doesn't mention device I/O.</p>
<p>Since the two functions have the same name, I'm not even sure how I can choose one rather than the other.</p>
http://stackoverflow.com/questions/1212874/mmap-to-overlay-vme-bus-into-user-space-memory-over-a-pci3mmap to overlay VME bus into user space memory over a PCI?IanVaughan2009-07-31T14:32:21Z2009-07-31T23:24:40Z
<p>I'm trying to map a VME address space through a PCI bus into user space so I can perform regular read/writes on the memory.
I have done this with another PCI device like this :-</p>
<pre><code>unsigned long *mapArea(unsigned int barAddr, unsigned int mapSize, int *fd)
{
unsigned long *mem;
*fd = open("/dev/mem", O_RDWR);
if ( *fd<0 ) {
printf("Cannot open /dev/vme_mem\n");
exit(-1);
}
unsigned long *mem = (unsigned long*) mmap ( 0, mapSize, PROT_READ | PROT_WRITE, MAP_FILE | MAP_SHARED, *fd, barAddr);
if ( (mem == NULL) || (mem == (unsigned long*)-1) ) {
printf ( "Cannot map memory, error is %s\n", strerror(errno) );
exit(-1);
}
return mem;
}
volatile unsigned long *bar = (volatile unsigned long *)mapArea(barAddr, mapSize, &fd);
</code></pre>
<p>And then "bar" can be used normally for read/writes.</p>
<p>So to VME, and with a Tundra Universe II PCI-VME Bridge chip :-</p>
<p>Should I open "/dev/vme_m0"
Where do I map my BAR from? the lspci -vv : "Region 1: Memory at 80020000"</p>
<p>Also the addresses within the VME BUS are offset by 0x20000000, so how does that work wrt accessing/mapping it?!</p>
<p>(Using Linux 2.6.18-128.el5 #1 SMP)
(Need new tag "vme"!)</p>
http://stackoverflow.com/questions/1187587/mmaping-large-filesfor-persistent-large-arrays1mmaping large files(for persistent large arrays)Anton Kazennikov2009-07-27T11:03:51Z2009-07-29T04:15:03Z
<p>Hello!</p>
<p>I'm implementing persistent large constant arrays via mmap. Is there any tips and tricks or gotchas one should be aware when using mmap?</p>
http://stackoverflow.com/questions/654393/examining-mmaped-addresses-using-gdb2Examining mmaped addresses using GDBMikeage2009-03-17T14:01:32Z2009-07-14T03:11:48Z
<p>I'm using the driver I posted at <a href="http://stackoverflow.com/questions/647783/direct-memory-access-in-linux/">http://stackoverflow.com/questions/647783/direct-memory-access-in-linux/</a> to mmap some physical ram into a userspace address. However, I can't use GDB to look at any of the address; i.e., x 0x12345678 (where 0x12345678 is the return value of mmap) fails with an error "Cannot access memory at address 0x12345678".</p>
<p>Is there any way to tell GDB that this memory can be viewed? Alternatively, is there something different I can do in the mmap (either the call or the implementation of foo_mmap there) that will allow it to access this memory?</p>
<p>Note that I'm not asking about /dev/mem (as in the first snippet there) but amount a mmap to memory acquired via ioremap(), virt_to_phys() and remap_pfn_range()</p>
http://stackoverflow.com/questions/1083172/how-to-mmap-the-stack-for-the-clone-system-call-on-linux0How to mmap the stack for the clone() system call on linux?Joseph Garvin2009-07-04T23:30:28Z2009-07-09T15:02:01Z
<p>The clone() system call on Linux takes a parameter pointing to the stack for the new created thread to use. The obvious way to do this is to simply malloc some space and pass that, but then you have to be sure you've malloc'd as much stack space as that thread will ever use (hard to predict).</p>
<p>I remembered that when using pthreads I didn't have to do this, so I was curious what it did instead. I came across <a href="http://evanjones.ca/software/threading.html" rel="nofollow">this site</a> which explains, "The best solution, used by the Linux pthreads implementation, is to use mmap to allocate memory, with flags specifying a region of memory which is allocated as it is used. This way, memory is allocated for the stack as it is needed, and a segmentation violation will occur if the system is unable to allocate additional memory."</p>
<p>The only context I've ever heard mmap used in is for mapping files into memory, and indeed reading the mmap man page it takes a file descriptor. How can this be used for allocating a stack of dynamic length to give to clone()? Is that site just crazy? ;)</p>
<p>In either case, doesn't the kernel need to know how to find a free bunch of memory for a new stack anyway, since that's something it has to do all the time as the user launches new processes? Why does a stack pointer even need to be specified in the first place if the kernel can already figure this out?</p>
http://stackoverflow.com/questions/1052765/linux-perl-mmap-performance5Linux/perl mmap performanceMarius Kjeldahl2009-06-27T12:37:08Z2009-06-29T21:57:25Z
<p>I'm trying to optimize handling of large datasets using mmap. A dataset is in the gigabyte range. The idea was to mmap the whole file into memory, allowing multiple processes to work on the dataset concurrently (read-only). It isn't working as expected though.</p>
<p>As a simple test I simply mmap the file (using perl's Sys::Mmap module, using the "mmap" sub which I believe maps directly to the underlying C function) and have the process sleep. When doing this, the code spends more than a minute before it returns from the mmap call, despite this test doing nothing - not even a read - from the mmap'ed file.</p>
<p>Guessing, I though maybe linux required the whole file to be read when first mmap'ed, so after the file had been mapped in the first process (while it was sleeping), I invoked a simple test in another process which tried to read the first few megabytes of the file.</p>
<p>Suprisingly, it seems the second process also spends a lot of time before returning from the mmap call, about the same time as mmap'ing the file the first time.</p>
<p>I've made sure that MAP_SHARED is being used and that the process that mapped the file the first time is still active (that it has not terminated, and that the mmap hasn't been unmapped).</p>
<p>I expected a mmapped file would allow me to give multiple worker processes effective random access to the large file, but if every mmap call requires reading the whole file first, it's a bit harder. I haven't tested using long-running processes to see if access is fast after the first delay, but I expected using MAP_SHARED and another separate process would be sufficient.</p>
<p>My theory was that mmap would return more or less immediately, and that linux would load the blocks more or less on-demand, but the behaviour I am seeing is the opposite, indicating it requires reading through the whole file on each call to mmap.</p>
<p>Any idea what I'm doing wrong, or if I've completely misunderstood how mmap is supposed to work?</p>
http://stackoverflow.com/questions/1025783/mmap-big-endian-vs-little-endian1mmap big endian vs. little endianSam Lee2009-06-22T06:48:36Z2009-06-22T07:20:42Z
<p>If I use <code>mmap</code> to write <code>uint32_t</code>'s, will I run into issues with big endian/little endian conventions? In particular, if I write some data <code>mmap</code>'ed on a big-endian machine, will I run into issues when I try to read that data on a little-endian machine?</p>
http://stackoverflow.com/questions/904581/shmem-vs-tmpfs-vs-mmap3Shmem vs tmpfs vs mmapSyRenity2009-05-24T20:30:47Z2009-05-24T22:25:19Z
<p>Hi.</p>
<p>Does someone know how well the following 3 compare in terms of speed:</p>
<ul>
<li><p>shared memory</p></li>
<li><p>tmpfs (/dev/shm)</p></li>
<li><p>mmap (/dev/shm)</p></li>
</ul>
<p>Thanks!</p>
http://stackoverflow.com/questions/839668/will-mmap-use-user-cpu-instead-of-whole-sys-cpu-solaris0will mmap use user cpu instead of whole sys cpu? (solaris)Daniel2009-05-08T12:55:30Z2009-05-08T19:25:47Z
<p>when use mmap to allocate some anonymous mem, we often set the start address as 0/null so mmap will figure out the starting address by itself. And to get the start address, it will work thought the whole virtual memory space to find a hole which could put the chuck of mem to be allocated. I guess this is calculated as user cpu instead of sys cpu. If the virtual memory is fragmented, then the time to find the starting address will use more user cpu, is my understanding correct </p>
http://stackoverflow.com/questions/839230/memory-usage-of-filechannelmap1Memory usage of FileChannel#mapSii2009-05-08T10:34:45Z2009-05-08T14:37:41Z
<p>Does <a href="http://java.sun.com/javase/6/docs/api/java/nio/channels/FileChannel.html#map%28java.nio.channels.FileChannel.MapMode,%20long,%20long%29" rel="nofollow"><code>FileChannel#map</code></a> allocate all the memory needed for the resulting <code>ByteBuffer</code> immediately, or is it only allocated on-demand during reads from the buffer?</p>
<p>I just tried mapping all of a 500+ MB file in a trivial test program, and looked at the memory usage of the process. (Using both <code>Runtime#totalMemory</code> and eyeballing it in the OS X Activity Monitor for a groovysh process.) The memory usage never passed 30-ish MB.</p>
<p>So, could a Java implementation "hide" some of its memory usage in native calls? And if so, is there a way to find out how much that is on OS X?</p>
http://stackoverflow.com/questions/837863/will-mmap-use-continuous-memory-on-solaris1Will mmap use continuous memory? (on solaris)Daniel2009-05-08T01:35:07Z2009-05-08T02:35:38Z
<p>I used mmap(just try to understand how mmap works) to allocate 96k anonymous memory, but looks like it split the 96k into 64k and 32k. But when allocate 960k, it allocate only one chunk whose size is 960k. When solaris will split the allocate mem into several part?
Code:</p>
<pre><code>#define PROT PROT_READ | PROT_WRITE
#define MAP MAP_ANON | MAP_PRIVATE
if ((src = mmap(0, 88304, PROT, MAP, -1, 0)) == MAP_FAILED)
printf("mmap error for input");
if ((src = mmap(0, 983040, PROT, MAP, -1, 0)) == MAP_FAILED)
printf("mmap error for input");
if ((src = mmap(0, 98304, PROT, MAP, -1, 0)) == MAP_FAILED)
printf("mmap error for input");
</code></pre>
<p>Truss: </p>
<pre><code>mmap(0x00000000, 88304, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, -1, 0)
= 0xFFFFFFFF7E900000
mmap(0x00000000, 983040, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, -1, 0)
= 0xFFFFFFFF7E800000
mmap(0x00000000, 98304, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, -1, 0)
= 0xFFFFFFFF7E700000
</code></pre>
<p>Pmap:</p>
<pre><code>FFFFFFFF7E700000 64 - - - rw--- [anon]
==> strange is that for 96k, it was broken into 2 part.
FFFFFFFF7E710000 32 - - - rw--- [anon]
FFFFFFFF7E800000 960 - - - rw--- [anon]
FFFFFFFF7E900000 64 - - - rw--- [anon]
FFFFFFFF7E910000 24 - - - rw--- [anon]
FFFFFFFF7EA00000 64 - - - rw--- [anon]
FFFFFFFF7EA10000 32 - - - rw--- [anon]
</code></pre>
http://stackoverflow.com/questions/752192/linux-mmap-internals2Linux MMAP internalsMr Jay2009-04-15T15:20:11Z2009-04-30T09:48:44Z
<p>I have several questions regarding the <code>mmap</code> implementation in Linux systems which don't seem to be very much documented:</p>
<p>When mapping a file to memory using <code>mmap</code>, how would you handle prefetching the data in such file?</p>
<p>I.e. what happens when you read data from the mmaped region? Is that data moved to the L1/L2 caches? Is it read directly from disk cache? Does the <code>prefetchnta</code> and similar ASM instructions work on <code>mmap</code>ed zones?</p>
<p>What's the overhead of the actual <code>mmap</code> call? Is it relative to the amount of mapped data, or constant?</p>
<p>Hope somebody has some insight into this. Thanks in advance.</p>
http://stackoverflow.com/questions/769364/mmap-internals0mmap() internalsMaxim Kazantsev2009-04-20T17:50:32Z2009-04-20T19:06:45Z
<p>It's widely known that the most significant mmap() feature is that file mapping is shared between many processes. But it's not less widely known that every process has its own address space.</p>
<p>The question is where are memmapped files (more specifically, its data) truly kept, and how processes can get access to this memory?
I mean not *(pa+i) and other high-level stuff, but I mean the internals of the process.</p>
http://stackoverflow.com/questions/742564/using-mmap-over-a-file2Using mmap over a filesamoz2009-04-12T22:49:08Z2009-04-13T01:31:01Z
<p>I'm trying to allow two different processes to communicate by using memory mapping the same file. However, I'm having some problems with this. I have a feeling this has to do with the way I'm using the open() call and passing my file descriptor to mmap. </p>
<p>Here is my code, can you see anything wrong with it?</p>
<p>Object 1's code:</p>
<pre><code> 16 FILE* temp = fopen(theSharedFileName, "w");
17 fseek(temp, fileSize-1, SEEK_SET);
18 fprintf(temp, "0"); // make the file a certain size
19 fseek(temp, 0, SEEK_CUR);
20
21 int sharedFileName = fileno(temp);
...
31 sharedArea = (MyStruct*)mmap(0, fileSize,
32 PROT_READ | PROT_WRITE | PROT_EXEC, MAP_SHARED, sharedFileName, 0);
</code></pre>
<p>I use the "w" file mode since Object 1 will only ever be made once and I want it to reset any previously existing data.</p>
<p>Object 2's Code:</p>
<pre><code> 130 FILE* tempFile = fopen(sharedFileName, "a");
131 int theFile = fileno(tempFile);
...
135 sharedArea = (MyStruct*)mmap(NULL, fileSize,
136 PROT_READ | PROT_WRITE | PROT_EXEC, MAP_SHARED, theFile, 0);
</code></pre>
http://stackoverflow.com/questions/624691/passing-a-pointer-to-process-spawned-with-exec1Passing a pointer to process spawned with exec()Kamil Zadora2009-03-09T01:19:24Z2009-03-18T07:02:12Z
<p>I would like to pass a pointer (I am putting a file with data in memory with mmap) to processes spawned using fork + exec, but I am stuck on how to pass a pointer to the exec() spawned process?</p>
<p>UPDATE1:</p>
<p>Thanks for your inputs, I do use shared memory creating it with mmap with MAP_INHERIT flag:</p>
<p>Each mapped file and shared memory region created with the mmap() function
is unmapped by a successful call to any of the exec functions, except those
regions mapped with the MAP_INHERIT option. Regions mapped with the
MAP_INHERIT option remain mapped in the new process image.</p>
<p>source: <a href="http://www.uwm.edu/cgi-bin/IMT/wwwman?topic=exec%282%29&msection=" rel="nofollow">http://www.uwm.edu/cgi-bin/IMT/wwwman?topic=exec(2)&msection=</a></p>
<p>UPDATE2:</p>
<p>This is homework excercise, but I think I must stop thinking about pointers and think about the IPC itself. I guess I will go with trying to mmap the same file in child process.</p>
<p>Short code example much appreciated. </p>
<p>Thanks in advance for your help.</p>
http://stackoverflow.com/questions/601806/mmap-protection-flag-effect-to-sharing-between-processes1mmap protection flag effect to sharing between processesCheery2009-03-02T09:57:05Z2009-03-02T17:49:38Z
<p>Does protection flag affect the sharing between processes? If I have PROT_READ|PROT_WRITE -protected mmapped memory region, is it still fully shared as long as I haven't written into it?</p>
<pre><code>int prot = PROT_READ|PROT_EXEC;
image = mmap(NULL, filesize, prot, MAP_PRIVATE, fildes, 0);
</code></pre>
<p>vs:</p>
<pre><code>int prot = PROT_READ|PROT_WRITE|PROT_EXEC;
image = mmap(...)
</code></pre>
<p>I'd want to make small modification to small portion of the memory region after I've mapped it, then re-mprotect it all, because it's simpler than mprotecting small portions when I need to do so.</p>
<p>The question is whether it ends up forcing the whole file copied per process or just the portions I modified per process?</p>