Wireshark mailing list archives

Re: Reduce memory consumption by re-reading data from file for reassembled packets.


From: Jakub Zawadzki <darkjames () darkjames ath cx>
Date: Wed, 3 Nov 2010 21:28:22 +0100

On Wed, Nov 03, 2010 at 03:00:10PM -0400, Jeff Morriss wrote:
Memory mapped files count as part of the process' address space so 
mapping the capture file means that, for reassembly, we'd be trading 
malloc'd memory for mmap()'d memory *and* it would mean we're holding 
the whole file--including the bits not used in reassembly--in memory. 
(We don't currently do this.)

Well I'm not expert in mmap()'ed files, but afair they won't be read until page fault, 
and madvise(..., MADV_DONTNEED) should free memory.

Still it's lot easier to work with than fread() + fseek()

Memory-mapped files also are problematic when doing live captures: as 
the file grows we'd have to remap the memory (yikes!)

Ok, I agree this is problem. But why yikes?
___________________________________________________________________________
Sent via:    Wireshark-dev mailing list <wireshark-dev () wireshark org>
Archives:    http://www.wireshark.org/lists/wireshark-dev
Unsubscribe: https://wireshark.org/mailman/options/wireshark-dev
             mailto:wireshark-dev-request () wireshark org?subject=unsubscribe


Current thread: