Changeset 39009 in vbox for trunk/src/VBox/Additions/solaris/SharedFolders
- Timestamp:
- Oct 17, 2011 3:20:40 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 74412
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/solaris/SharedFolders/vboxfs_vnode.c
r38943 r39009 53 53 * the vnode becomes completely inactive. 54 54 * 55 * No file data is cached in the guest. This means we don't support mmap() yet. 56 * A future version could relatively easily add support for read-only 57 * mmap(MAP_SHARED) and any mmap(MAP_PRIVATE). But a la ZFS, this data caching 58 * would not be coherent with normal simultaneous read()/write() operations, 59 * nor will it be coherent with data access on the host. Writable 60 * mmap(MAP_SHARED) access is possible, but guaranteeing any kind of coherency 61 * with concurrent activity on the host would be near impossible with the 62 * existing interfaces. 55 * We suppport only read-only mmap (VBOXVFS_WITH_MMAP) i.e. MAP_SHARED, 56 * MAP_PRIVATE in PROT_READ, this data caching would not be coherent with 57 * normal simultaneous read()/write() operations, nor will it be coherent 58 * with data access on the host. Writable mmap(MAP_SHARED) access is not 59 * implemented, as guaranteeing any kind of coherency with concurrent 60 * activity on the host would be near impossible with the existing 61 * interfaces. 63 62 * 64 63 * A note about locking. sffs is not a high performance file system.
Note:
See TracChangeset
for help on using the changeset viewer.