Changeset 19091 in vbox for trunk/src/VBox/Additions/common/VBoxGuestLib
- Timestamp:
- Apr 21, 2009 8:57:38 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 46239
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/SysHlp.cpp
r15606 r19091 36 36 int rc = VINF_SUCCESS; 37 37 38 /* Ugly edge case - zero size buffers shouldn't be locked. */ 39 if (u32Size == 0) 40 { 41 *ppvCtx = NIL_RTR0MEMOBJ; 42 return VINF_SUCCESS; 43 } 38 44 #ifdef RT_OS_WINDOWS 39 45 PMDL pMdl = IoAllocateMdl (pv, u32Size, FALSE, FALSE, NULL); … … 68 74 /** @todo r=frank: Linux: pv is at least in some cases, e.g. with VBoxMapFolder, 69 75 * an R0 address -- the memory was allocated with kmalloc(). I don't know 70 * if this is true in any case. */ 76 * if this is true in any case. 77 * r=michael: on Linux, we sometimes have R3 addresses (e.g. shared 78 * clipboard) and sometimes R0 (e.g. shared folders). We really ought 79 * to have two separate paths here - at any rate, Linux R0 shouldn't 80 * end up calling this API. In practice, Linux R3 does it's own thing 81 * before winding up in the R0 path - which calls this stub API. 82 */ 71 83 NOREF(ppvCtx); 72 84 NOREF(pv); … … 92 104 NOREF(u32Size); 93 105 106 /* Ugly edge case - zero size buffers aren't be locked. */ 107 if (pvCtx == NIL_RTR0MEMOBJ) 108 return; 94 109 #ifdef RT_OS_WINDOWS 95 110 PMDL pMdl = (PMDL)pvCtx;
Note:
See TracChangeset
for help on using the changeset viewer.