History log of /netbsd/usr.sbin/puffs/rump_nqmfs/rump_nqmfs.c (Results 1 – 3 of 3)
Revision Date Author Comments
# f53fd22c 31-Mar-2010 pooka <pooka@NetBSD.org>

fix typo (at least it was in an error string instead of a comment)


# 5e15c7d5 31-Mar-2010 pooka <pooka@NetBSD.org>

MAP_COPY is available only in _KERNEL .... uh, so don't use it here.


# c11c0f21 08-Mar-2010 pooka <pooka@NetBSD.org>

Not Quite MFS

Instead of copulating with newfs to produce a new FFS image into
memory, mmap() a given existing image and pass that as the backing
store. If -s is given, mmap is done with MAP_SHARED

Not Quite MFS

Instead of copulating with newfs to produce a new FFS image into
memory, mmap() a given existing image and pass that as the backing
store. If -s is given, mmap is done with MAP_SHARED and changes
are kept across mounts, else MAP_COPY (i.e. MAP_PRIVATE for us) is
done and changes are lost when the server exits.

Note: -s does not guarantee any kind of file system safety whatsoever
and in case of kill, crash, exit or other form of elusion,
everything will be, according to our theme, quite screwed.

show more ...