Skip to content

Commit 58bf76a

Browse files
unexgeujinho
authored andcommitted
Make mnt::Mount public (awslabs#1098)
## Description of change fuser v0.15.0 added support for creating sessions from FUSE fd. I'm working on a PR to add this support to Mountpoint. We still need to open the FUSE device and call `mount` syscall in order to test this new behavior, and all this logic is already exists with `mnt::Mount`. We could just copy the logic from `mnt::Mount` - but since we already have this fork, making this change seemed fine to me. Maybe we can also consider upstreaming it. ## Does this change impact existing behavior? No ## Does this change need a changelog entry in any of the crates? No --- By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license and I agree to the terms of the [Developer Certificate of Origin (DCO)](https://developercertificate.org/). Signed-off-by: Burak Varli <[email protected]>
1 parent eb382eb commit 58bf76a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ use crate::mnt::mount_options::check_option_conflicts;
2626
use crate::session::MAX_WRITE_SIZE;
2727
#[cfg(feature = "abi-7-16")]
2828
pub use ll::fuse_abi::fuse_forget_one;
29-
pub use mnt::mount_options::MountOption;
29+
pub use mnt::{Mount, mount_options::MountOption};
3030
#[cfg(feature = "abi-7-11")]
3131
pub use notify::{Notifier, PollHandle};
3232
#[cfg(feature = "abi-7-11")]

0 commit comments

Comments
 (0)