VirtualBox

Ignore:
Timestamp:
Feb 10, 2019 11:48:54 PM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
128753
Message:

HGCM,SharedFolders: Added new variation on the HGCM page list type that does not use a bounce buffer. bugref:9172 [fix]

  • Added VMMDevHGCMParmType_NoBouncePageList.
  • Made VMMDevHGCMParmType_Embedded and VMMDevHGCMParmType_ContiguousPageList return updated buffer size to the guest.
  • Changed the SHFL_FN_READ and SHFL_FN_WRITE function to accept VMMDevHGCMParmType_NoBouncePageList as buffer parameter type, using the RTFileSgReadAt/WriteAt functions to do the work.
  • Modified the offset parameter of SHFL_FN_WRITE to return an update offset to assist in the RTFILE_O_APPEND scenarios where other parties have extended the file without the guest knowing. The guest now gets the file size returned after each write to an handle opened with RTFILE_O_APPEND.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostServices/SharedFolders/vbsf.cpp

    r77243 r77246  
    10411041            void *pvSeg;
    10421042            paSegs[iSeg].pvSeg = pvSeg = pPages->papvPages[iPage];
    1043             size_t cbSeg = PAGE_SIZE - ((uintptr_t)pvSeg & PAGE_OFFSET_MASK);
     1043            uint32_t cbSeg = PAGE_SIZE - (uint32_t)((uintptr_t)pvSeg & PAGE_OFFSET_MASK);
    10441044            iPage++;
    10451045
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette