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

Add Mount Config to select use OsxFuse or Fuse-T #154

Open
labulakalia opened this issue Dec 21, 2023 · 2 comments
Open

Add Mount Config to select use OsxFuse or Fuse-T #154

labulakalia opened this issue Dec 21, 2023 · 2 comments

Comments

@labulakalia
Copy link
Contributor

labulakalia commented Dec 21, 2023

fuse/mount_darwin.go

Lines 409 to 419 in 2b0495a

func mount(
dir string,
cfg *MountConfig,
ready chan<- error) (dev *os.File, err error) {
fusekernel.IsPlatformFuseT = false
if fuset_bin, err := fusetBinary(); err == nil {
return mountFuset(fuset_bin, dir, cfg, ready)
}
return mountOsxFuse(dir, cfg, ready)
}

@stapelberg
Copy link
Collaborator

Can you explain why you need to work with both?

Can you send a PR to introduce an option?

cc @macos-fuse-t

@labulakalia
Copy link
Contributor Author

@stapelberg i want to make some performance test for osxfuse and fuse-t,and free to choice

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants