Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make mnt::Mount public #1098

Merged
merged 1 commit into from
Nov 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
pub use crate::ll::fuse_abi::FUSE_ROOT_ID;
pub use crate::ll::{fuse_abi::consts, TimeOrNow};
use crate::mnt::mount_options::check_option_conflicts;
use crate::session::MAX_WRITE_SIZE;

Check warning on line 26 in src/lib.rs

View workflow job for this annotation

GitHub Actions / ci

Diff in /home/runner/work/mountpoint-s3/mountpoint-s3/src/lib.rs
#[cfg(feature = "abi-7-16")]
pub use ll::fuse_abi::fuse_forget_one;
pub use mnt::mount_options::MountOption;
pub use mnt::{Mount, mount_options::MountOption};
#[cfg(feature = "abi-7-11")]
pub use notify::{Notifier, PollHandle};
#[cfg(feature = "abi-7-11")]
Expand Down Expand Up @@ -620,7 +620,7 @@

/// Read directory.
/// Send a buffer filled using buffer.fill(), with size not exceeding the
/// requested size. Send an empty buffer on end of stream. fh will contain the

Check warning on line 623 in src/lib.rs

View workflow job for this annotation

GitHub Actions / ci

Diff in /home/runner/work/mountpoint-s3/mountpoint-s3/src/lib.rs
/// value set by the opendir method, or will be undefined if the opendir method
/// didn't set any value.
fn readdir(
Expand Down Expand Up @@ -659,7 +659,7 @@
}

/// Release an open directory.
/// For every opendir call there will be exactly one releasedir call. fh will

Check warning on line 662 in src/lib.rs

View workflow job for this annotation

GitHub Actions / ci

Diff in /home/runner/work/mountpoint-s3/mountpoint-s3/src/lib.rs
/// contain the value set by the opendir method, or will be undefined if the
/// opendir method didn't set any value.
fn releasedir(
Expand All @@ -674,7 +674,7 @@
}

/// Synchronize directory contents.
/// If the datasync parameter is set, then only the directory contents should

Check warning on line 677 in src/lib.rs

View workflow job for this annotation

GitHub Actions / ci

Diff in /home/runner/work/mountpoint-s3/mountpoint-s3/src/lib.rs
/// be flushed, not the meta data. fh will contain the value set by the opendir
/// method, or will be undefined if the opendir method didn't set any value.
fn fsyncdir(
Expand Down Expand Up @@ -716,7 +716,7 @@
}

/// Get an extended attribute.
/// If `size` is 0, the size of the value should be sent with `reply.size()`.

Check warning on line 719 in src/lib.rs

View workflow job for this annotation

GitHub Actions / ci

Diff in /home/runner/work/mountpoint-s3/mountpoint-s3/src/lib.rs
/// If `size` is not 0, and the value fits, send it with `reply.data()`, or
/// `reply.error(ERANGE)` if it doesn't.
fn getxattr(
Expand Down
Loading