Changeset 21233 in vbox for trunk/src/VBox/Additions/linux
- Timestamp:
- Jul 5, 2009 8:31:35 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/sharedfolders/regops.c
r21041 r21233 35 35 uint64_t pos) 36 36 { 37 /** @todo bird: yes, kmap() and kmalloc() input only. Since the buffer is 38 * contiguous in physical memory (kmalloc or single page), we should 39 * use a physical address here to speed things up. */ 37 40 int rc = vboxCallRead (&client_handle, &sf_g->map, sf_r->handle, 38 41 pos, nread, buf, false /* already locked? */); … … 50 53 uint64_t pos) 51 54 { 55 /** @todo bird: yes, kmap() and kmalloc() input only. Since the buffer is 56 * contiguous in physical memory (kmalloc or single page), we should 57 * use a physical address here to speed things up. */ 52 58 int rc = vboxCallWrite (&client_handle, &sf_g->map, sf_r->handle, 53 59 pos, nwritten, buf, false /* already locked? */);
Note:
See TracChangeset
for help on using the changeset viewer.