summaryrefslogtreecommitdiffstats
path: root/src/include/kernel/vmmmgr.H
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/kernel/vmmmgr.H')
-rw-r--r--src/include/kernel/vmmmgr.H9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/include/kernel/vmmmgr.H b/src/include/kernel/vmmmgr.H
index 3782bb762..46f283e18 100644
--- a/src/include/kernel/vmmmgr.H
+++ b/src/include/kernel/vmmmgr.H
@@ -86,7 +86,7 @@ class VmmManager
static bool pteMiss(task_t* t, uint64_t effAddr);
/**
- * @brief Map a device into the device segment(2TB)
+ * @brief Map a device into the device segment
* @param ra[in] - Void pointer to real address to be mapped in
* @param i_devDataSize[in] - Size of device segment block
* @return void* - Pointer to beginning virtual address, NULL otherwise
@@ -94,7 +94,7 @@ class VmmManager
static void* devMap(void* ra, uint64_t i_devDataSize);
/**
- * @brief Unmap a device from the device segment(2TB)
+ * @brief Unmap a device from the device segment
* @param ea[in] - Void pointer to effective address
* @return int - 0 for successful unmap, non-zero otherwise
*/
@@ -198,6 +198,11 @@ class VmmManager
int _mmRemovePages(VmmManager::PAGE_REMOVAL_OPS i_op,void* i_vaddr,
uint64_t i_size,task_t* i_task);
+ /** See devMap */
+ void* _devMap(void* ra, uint64_t i_devDataSize);
+ /** See devUnmap */
+ int _devUnmap(void* ea);
+
public:
friend class Block;
friend class StackSegment;
OpenPOWER on IntegriCloud