Changeset 68101 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Jul 25, 2017 9:33:10 AM (7 years ago)
- Location:
- trunk/src/VBox/Additions
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/SharedFolders/driver/file.c
r63566 r68101 92 92 uint32_t cbIO; 93 93 94 /** @todo Remove the test and the fall-back path. VbglR0CanUsePhysPageList() 95 * returns true for any host version after 3.0, i.e. further back than 96 * we support. */ 94 97 if (VbglR0CanUsePhysPageList()) 95 98 { -
trunk/src/VBox/Additions/linux/sharedfolders/regops.c
r65992 r68101 233 233 } 234 234 235 #if 1 236 if (VbglR0CanUsePhysPageList()) 237 { 238 err = VbglR0SfWritePhysCont(&client_handle, &sf_g->map, sf_r->handle, 239 pos, &nwritten, tmp_phys); 240 err = RT_FAILURE(err) ? -EPROTO : 0; 241 } 242 else 243 #endif 244 err = sf_reg_write_aux(__func__, sf_g, sf_r, tmp, &nwritten, pos); 235 err = VbglR0SfWritePhysCont(&client_handle, &sf_g->map, sf_r->handle, 236 pos, &nwritten, tmp_phys); 245 237 if (err) 246 238 goto fail;
Note:
See TracChangeset
for help on using the changeset viewer.