diff --git a/src/kits/storage/LibBeAdapter.cpp b/src/kits/storage/LibBeAdapter.cpp index 57cef33c4a..9e046a344a 100644 --- a/src/kits/storage/LibBeAdapter.cpp +++ b/src/kits/storage/LibBeAdapter.cpp @@ -43,6 +43,8 @@ _kern_dir_node_ref_to_path(dev_t device, ino_t inode, char *buffer, size_t size) // private libroot.so functions +extern "C" status_t _kwfsstat_(dev_t device, const struct fs_info *info, long mask); + extern "C" status_t _kstart_watching_vnode_(dev_t device, ino_t node, uint32 flags, port_id port, int32 handlerToken); @@ -54,6 +56,13 @@ extern "C" status_t _kstop_watching_vnode_(dev_t device, ino_t node, extern "C" status_t _kstop_notifying_(port_id port, int32 handlerToken); +status_t +_kern_write_fs_info(dev_t device, const struct fs_info *info, int mask) +{ + return _kwfsstat_(device, info, mask); +} + + status_t _kern_stop_notifying(port_id port, uint32 token) {