在线程模式下运行的 FUSE 问题
我已经用 FUSE
编写了一个文件系统,并且一切都在单线程模式下按预期工作(-s
标志)。
在常规线程模式下,如果我发出 open()
然后发出 read()
,操作会起作用,但文件系统似乎挂起。我在前台运行它,但 ctrl-c 没有执行任何操作。但是,如果我运行任何稳定的操作,例如 ls
,我可以使用 ctrl-c
关闭 FUSE
。
有什么方法可以调试这个问题或者有人知道从哪里开始寻找错误吗?
I've written a filesystem with FUSE
and everything works as expected in single threaded mode (-s
flag).
In regular threaded mode, if I issue an open()
then read()
, the operation works, but the filesystem seems to hang. I run it in the foreground and ctrl-c
doesn't do anything. However, if I run any stable operations like ls
, I can shut down FUSE
with ctrl-c
just fine.
Is there any way to debug this issue or might anybody know of where to start looking for the bug?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以尝试一下! http://old.nabble.com/Debugging-FUSE-Filesystems-td22730976.html
You could give this a try! http://old.nabble.com/Debugging-FUSE-Filesystems-td22730976.html