diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-01-06 08:18:58 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-01-06 08:18:58 -0600 |
| commit | b3a9082a8b81c28ef81dbaaffe171f646b1f2777 (patch) | |
| tree | d878ad0185657eff76426888d46420b48e47725b /src/ops/mod.rs | |
| parent | a65325e15844f880132a69b447e4aec983cb30ab (diff) | |
Implement Fsync/Fsyncdir
Diffstat (limited to '')
| -rw-r--r-- | src/ops/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ops/mod.rs b/src/ops/mod.rs index bc486b1..de13ac6 100644 --- a/src/ops/mod.rs +++ b/src/ops/mod.rs @@ -15,7 +15,7 @@ pub use dir::{BufferedReaddir, Lookup, Readdir}; pub use entry::{Forget, Getattr, Link, Mkdir, Rmdir, Symlink, Unlink}; pub use global::{Init, Statfs}; pub use open::{Access, Open, Opendir, Release, Releasedir}; -pub use rw::{Flush, Read, Readlink, Write}; +pub use rw::{Flush, Fsync, Fsyncdir, Read, Readlink, Write}; pub use xattr::{Getxattr, Listxattr, Removexattr, Setxattr}; mod dir; |
