X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;ds=sidebyside;f=Kernel%2Finclude%2Facess.h;h=6373cec51b3717520e0ed74fce3fdb528238907c;hb=7c5a60c8be053f65ecceb47be773ea21a050b186;hp=f0e537aa5092a590a74a0e6992bad2029f0019a7;hpb=dfc350d6575a28a419c47fa378123899b35e2b31;p=tpg%2Facess2.git diff --git a/Kernel/include/acess.h b/Kernel/include/acess.h index f0e537aa..6373cec5 100644 --- a/Kernel/include/acess.h +++ b/Kernel/include/acess.h @@ -280,25 +280,23 @@ extern void MM_DerefPhys(tPAddr PAddr); */ extern int MM_GetRefCount(tPAddr PAddr); /** - * \brief Set the node/offset associated with a page + * \brief Set the node associated with a page * \param PAddr Physical address of page * \param Node Node pointer (tVFS_Node) - * \param Offset File offset * \return Boolean failure * \retval 0 Success * \retval 1 Page not allocated */ -extern int MM_SetPageInfo(tPAddr PAddr, void *Node, Uint64 Offset); +extern int MM_SetPageNode(tPAddr PAddr, void *Node); /** - * \brief Get the node/offset associated with a page + * \brief Get the node associated with a page * \param PAddr Physical address of page * \param Node Node pointer (tVFS_Node) destination - * \param Offset File offset destination (pointer) * \return Boolean failure * \retval 0 Success * \retval 1 Page not allocated */ -extern int MM_GetPageInfo(tPAddr PAddr, void **Node, Uint64 *Offset); +extern int MM_GetPageNode(tPAddr PAddr, void **Node); /** * \} */