From d2c1859973d858607d2732e7ca222da3187df5dc Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Wed, 17 Apr 2024 23:32:21 -0400 Subject: kernel: vfs_subr: Add vfs_write() Signed-off-by: Ian Moffett --- sys/include/sys/vfs.h | 1 + 1 file changed, 1 insertion(+) (limited to 'sys/include') diff --git a/sys/include/sys/vfs.h b/sys/include/sys/vfs.h index d79409e..a55af12 100644 --- a/sys/include/sys/vfs.h +++ b/sys/include/sys/vfs.h @@ -52,6 +52,7 @@ int vfs_rootname(const char *path, char **new_path); bool vfs_is_valid_path(const char *path); ssize_t vfs_hash_path(const char *path); ssize_t vfs_read(struct vnode *vp, struct sio_txn *sio); +ssize_t vfs_write(struct vnode *vp, struct sio_txn *sio); int vfs_getattr(struct vnode *vp, struct vattr *vattr); #endif /* defined(_KERNEL) */ -- cgit v1.2.3