X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Kernel%2Finclude%2Fvfs.h;h=f6659430c6070596e4ceafbb6886b8f085e823bb;hb=8be652c8915e16cd64b0b34c84ca43d9f892ded9;hp=a7821048bc7be96e10b3bfe71e6018b7b5a10643;hpb=48c3c3735e3445cb2f182a12be4b24507b4a995a;p=tpg%2Facess2.git diff --git a/Kernel/include/vfs.h b/Kernel/include/vfs.h index a7821048..f6659430 100644 --- a/Kernel/include/vfs.h +++ b/Kernel/include/vfs.h @@ -67,7 +67,7 @@ */ /** - * \brief VFS Node + * \brief Represents a node (file or directory) in the VFS tree * * This structure provides the VFS with the functions required to read/write * the file (or directory) that it represents. @@ -97,6 +97,13 @@ typedef struct sVFS_Node Uint64 Size; //!< File Size Uint32 Flags; //!< File Flags + + /** + * \brief Pointer to cached data (FS Specific) + * \note The Inode_* functions will free when the node is uncached + * this if needed + */ + void *Data; /** * \} */ @@ -154,7 +161,7 @@ typedef struct sVFS_Node int (*IOCtl)(struct sVFS_Node *Node, int Id, void *Data); /** - * } + * \} */ /** @@ -184,7 +191,7 @@ typedef struct sVFS_Node Uint64 (*Write)(struct sVFS_Node *Node, Uint64 Offset, Uint64 Length, void *Buffer); /** - * } + * \} */ /** @@ -218,7 +225,7 @@ typedef struct sVFS_Node * \param Node Pointer to this node * \param Name Name of the new child * \param Flags Flags to apply to the new child (directory or symlink) - * \return Boolean success + * \return Zero on Success, non-zero on error (see errno.h) */ int (*MkNod)(struct sVFS_Node *Node, char *Name, Uint Flags); @@ -230,9 +237,18 @@ typedef struct sVFS_Node * \return Zero on Success, non-zero on error (see errno.h) */ int (*Relink)(struct sVFS_Node *Node, char *OldName, char *NewName); + + /** + * \brief Link a node to a name + * \param Node Pointer to this node (directory) + * \param Child Node to create a new link to + * \param NewName Name for the new link + * \return Zeron on success, non-zero on error (see errno.h) + */ + int (*Link)(struct sVFS_Node *Node, struct sVFS_Node *Child, char *NewName); /** - * } + * \} */ } tVFS_Node; @@ -310,11 +326,11 @@ extern tVFS_ACL *VFS_UnixToAcessACL(Uint Mode, Uint Owner, Uint Group); * \{ */ /** - * \fn int Inode_GetHandle() + * \fn int Inode_GetHandle(void) * \brief Gets a unique handle to the Node Cache * \return A unique handle for use for the rest of the Inode_* functions */ -extern int Inode_GetHandle(); +extern int Inode_GetHandle(void); /** * \fn tVFS_Node *Inode_GetCache(int Handle, Uint64 Inode) * \brief Gets an inode from the node cache