X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Kernel%2Finclude%2Fvfs.h;h=e3a61d4359394773a110b150f0fa15d0d4503008;hb=827e4de5670d327f0379a80fdf2348c1e38f5434;hp=5d39a9838ee90be70ad1f2e837bdc24b94e02ac2;hpb=bd8dc898108f10c0498f4dc5d0164a50b5ff2e5c;p=tpg%2Facess2.git diff --git a/Kernel/include/vfs.h b/Kernel/include/vfs.h index 5d39a983..e3a61d43 100644 --- a/Kernel/include/vfs.h +++ b/Kernel/include/vfs.h @@ -87,12 +87,26 @@ typedef struct sVFS_Node * \} */ + /** + * \name Node State + * \brief Stores the misc information about the node + * \{ + */ int ReferenceCount; //!< Number of times the node is used Uint64 Size; //!< File Size Uint32 Flags; //!< File Flags + /** + * Pointer to cached data (FS Specific) + * \note Inode_* will free when the node is uncached this if needed + */ + void *Data; + /** + * \} + */ + /** * \name Times * \{ @@ -219,7 +233,7 @@ typedef struct sVFS_Node * \param Node Pointer to this node * \param OldName Name of the item to move/delete * \param NewName New name (or NULL if unlinking is wanted) - * \return Boolean Success + * \return Zero on Success, non-zero on error (see errno.h) */ int (*Relink)(struct sVFS_Node *Node, char *OldName, char *NewName); @@ -324,7 +338,7 @@ extern tVFS_Node *Inode_GetCache(int Handle, Uint64 Inode); */ extern tVFS_Node *Inode_CacheNode(int Handle, tVFS_Node *Node); /** - * \fn void Inode_UncacheNode(int Handle, Uint64 Inode) + * \fn int Inode_UncacheNode(int Handle, Uint64 Inode) * \brief Dereferences (and removes if needed) a node from the cache * \param Handle A handle returned by Inode_GetHandle() * \param Inode Value of the Inode field of the ::tVFS_Node you want to remove