Changeset 93628 in vbox for trunk/include/VBox
- Timestamp:
- Feb 6, 2022 11:44:05 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 149773
- Location:
- trunk/include/VBox
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/param.h
r93554 r93628 120 120 #define MM_MMIO_32_MAX _2G 121 121 122 /** @} */ 123 124 /** @defgroup grp_vbox_param_pdm Pluggable Device Manager Parameters 125 * @{ 126 */ 127 /** Max number of network shaper groups. */ 128 #define PDM_NET_SHAPER_MAX_GROUPS 32 129 /** Max length of a network shaper group name (excluding terminator). */ 130 #define PDM_NET_SHAPER_MAX_NAME_LEN 63 122 131 /** @} */ 123 132 -
trunk/include/VBox/vmm/mm.h
r93620 r93628 163 163 NOREF(pVM); 164 164 return R3Ptr; 165 }166 #endif167 168 169 #ifndef IN_RING0170 VMMDECL(RTR0PTR) MMHyperCCToR0(PVM pVM, void *pv);171 #else172 DECLINLINE(RTR0PTR) MMHyperCCToR0(PVM pVM, void *pv)173 {174 NOREF(pVM);175 return pv;176 165 } 177 166 #endif -
trunk/include/VBox/vmm/pdmdrv.h
r93609 r93628 1307 1307 1308 1308 /** 1309 * Attaches network filter driver to abandwidth group.1309 * Attaches a network filter driver to a named bandwidth group. 1310 1310 * 1311 1311 * @returns VBox status code. 1312 * @retval VERR_ALREADY_INITIALIZED if already attached to a group. 1312 1313 * @param pDrvIns The driver instance. 1313 1314 * @param pszBwGroup Name of the bandwidth group to attach to. … … 1317 1318 1318 1319 /** 1319 * Detaches network filter driver to a bandwidth group.1320 * Detaches a network filter driver from its current bandwidth group (if any). 1320 1321 * 1321 1322 * @returns VBox status code. -
trunk/include/VBox/vmm/pdmnetshaper.h
r93115 r93628 32 32 #include <VBox/types.h> 33 33 #include <VBox/vmm/pdmnetifs.h> 34 #include <iprt/list.h> 34 35 #include <iprt/sg.h> 35 36 … … 46 47 RT_C_DECLS_BEGIN 47 48 49 /** 50 * A network shaper filter entry. 51 * 52 * This is used by DrvNetShaper and any similar drivers. 53 */ 48 54 typedef struct PDMNSFILTER 49 55 { 50 /** Pointer to the next group in the list (ring-3). */ 51 R3PTRTYPE(struct PDMNSFILTER *) pNextR3; 52 /** Pointer to the bandwidth group (ring-3). */ 53 R3PTRTYPE(struct PDMNSBWGROUP *) pBwGroupR3; 54 /** Pointer to the bandwidth group (ring-0). */ 55 R0PTRTYPE(struct PDMNSBWGROUP *) pBwGroupR0; 56 /** Set when the filter fails to obtain bandwidth. */ 56 /** Entry in the group's filter list. 57 * Both members are NULL when not associated with a group. */ 58 RTLISTNODER3 ListEntry; 59 /** The group index + 1. 60 * @note For safety reasons the value zero is invalid and this is 1-based 61 * (like pascal) rather than 0-based indexing. 62 * @note Volatile to prevent re-reading after validation. */ 63 uint32_t volatile iGroup; 64 /** Set when the filter fails to obtain bandwidth. 65 * This will then cause pIDrvNetR3 to be called before long. */ 57 66 bool fChoked; 58 67 /** Aligment padding. */ 59 bool afPadding[ HC_ARCH_BITS == 32 ? 3 : 7];68 bool afPadding[3]; 60 69 /** The driver this filter is aggregated into (ring-3). */ 61 70 R3PTRTYPE(PPDMINETWORKDOWN) pIDrvNetR3; … … 63 72 64 73 VMM_INT_DECL(bool) PDMNetShaperAllocateBandwidth(PVMCC pVM, PPDMNSFILTER pFilter, size_t cbTransfer); 65 VMMR3_INT_DECL(int) PDMR3NsAttach(P UVM pUVM, PPDMDRVINS pDrvIns, const char *pcszBwGroup, PPDMNSFILTER pFilter);66 VMMR3_INT_DECL(int) PDMR3NsDetach(P UVM pUVM, PPDMDRVINS pDrvIns, PPDMNSFILTER pFilter);67 VMMR3DECL(int) PDMR3NsBwGroupSetLimit(PUVM pUVM, const char *psz BwGroup, uint64_t cbPerSecMax);74 VMMR3_INT_DECL(int) PDMR3NsAttach(PVM pVM, PPDMDRVINS pDrvIns, const char *pszName, PPDMNSFILTER pFilter); 75 VMMR3_INT_DECL(int) PDMR3NsDetach(PVM pVM, PPDMDRVINS pDrvIns, PPDMNSFILTER pFilter); 76 VMMR3DECL(int) PDMR3NsBwGroupSetLimit(PUVM pUVM, const char *pszName, uint64_t cbPerSecMax); 68 77 69 78 /** @} */ -
trunk/include/VBox/vmm/vm.h
r93609 r93628 1323 1323 struct PDM s; 1324 1324 #endif 1325 uint8_t padding[ 8448];/* multiple of 64 */1325 uint8_t padding[20864]; /* multiple of 64 */ 1326 1326 } pdm; 1327 1327 … … 1458 1458 1459 1459 /** Padding for aligning the structure size on a page boundrary. */ 1460 uint8_t abAlignment2[ 6488- sizeof(PVMCPUR3) * VMM_MAX_CPU_COUNT];1460 uint8_t abAlignment2[10456 - sizeof(PVMCPUR3) * VMM_MAX_CPU_COUNT]; 1461 1461 1462 1462 /* ---- end small stuff ---- */ -
trunk/include/VBox/vmm/vm.mac
r93609 r93628 143 143 .mm resb 192 144 144 alignb 64 145 .pdm resb 8448145 .pdm resb 20864 146 146 alignb 64 147 147 .iom resb 1152
Note:
See TracChangeset
for help on using the changeset viewer.