X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Kernel%2Finclude%2Fvfs.h;h=40c611bcc801eb3ffc4953ded913f081dbb1061d;hb=62747dec23ae7ee6531ebf8e3f307726e810e84c;hp=73161a1c857aafc30af0dad831c3da24b4d35976;hpb=8b7dec58d79aad0ba8467a15c353eade8ad5592b;p=tpg%2Facess2.git diff --git a/Kernel/include/vfs.h b/Kernel/include/vfs.h index 73161a1c..40c611bc 100644 --- a/Kernel/include/vfs.h +++ b/Kernel/include/vfs.h @@ -94,7 +94,7 @@ typedef struct sVFS_Node * corresponds to. * \{ */ - Uint64 Inode; //!< Inode ID (Essentially another ImplInt) + Uint64 Inode; //!< Inode ID - Must identify the node uniquely if tVFS_Driver.GetNodeFromINode is non-NULL Uint ImplInt; //!< Implementation Usable Integer void *ImplPtr; //!< Implementation Usable Pointer /** @@ -313,16 +313,30 @@ typedef struct sVFS_Node */ typedef struct sVFS_Driver { - //! \brief Unique Identifier for this filesystem type + /** + * \brief Unique Identifier for this filesystem type + */ const char *Name; - //! \brief Flags applying to this driver + /** + * \brief Flags applying to this driver + */ Uint Flags; - //! \brief Callback to mount a device + /** + * \brief Callback to mount a device + */ tVFS_Node *(*InitDevice)(const char *Device, const char **Options); - //! \brief Callback to unmount a device + /** + * \brief Callback to unmount a device + */ void (*Unmount)(tVFS_Node *Node); - //! \brief Used internally (next driver in the chain) + /** + * \brief Retrieve a VFS node from an inode + */ + tVFS_Node *(*GetNodeFromINode)(tVFS_Node *RootNode, Uint64 InodeValue); + /** + * \brief Used internally (next driver in the chain) + */ struct sVFS_Driver *Next; } tVFS_Driver;