Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
现在,readdir()in FUSE 是一种阻塞方法,这意味着在任何时候都只能调用一个 readdir() 操作。我的文件系统可能需要同时支持繁重的目录操作。有什么建议么?
readdir()
谢谢
挂载 fuse 文件系统时,您必须启用多线程模式。现在默认启用。
在启用多线程之前,您必须确保您的 fuse fs 实现是线程安全的。