(
fs_fd: BorrowedFd<'_>,
flags: super::types::FsMountFlags,
attr_flags: super::types::MountAttrFlags,
)
| 43 | |
| 44 | #[inline] |
| 45 | pub(crate) fn fsmount( |
| 46 | fs_fd: BorrowedFd<'_>, |
| 47 | flags: super::types::FsMountFlags, |
| 48 | attr_flags: super::types::MountAttrFlags, |
| 49 | ) -> io::Result<OwnedFd> { |
| 50 | unsafe { ret_owned_fd(syscall_readonly!(__NR_fsmount, fs_fd, flags, attr_flags)) } |
| 51 | } |
| 52 | |
| 53 | #[inline] |
| 54 | pub(crate) fn move_mount( |
nothing calls this directly
no test coverage detected