read() 系统调用

发布于 2024-11-27 14:26:08 字数 413 浏览 0 评论 0原文

在使用熔断器更改文件系统中的 read() 时,我碰巧注意到 read() 在另一个 read() 完成之前被调用。有没有办法对它们进行排序?如果它们重叠,我期望从第一个 read() 获得的数据实际上是由第二个 read() 创建的。 谢谢大家

  1. 阅读(path="/location.csv", buf=0x01c16960, size=32768, offset=16384, fi=0x33eb4e40)

    start_read for 1

  2. read(path="/location .csv",buf=0x01c1eb60,大小=65536,偏移量=49152, fi=0x346b5e40)

    开始阅读 2

    结束阅读 1

    end_read for 2

While using fuse to change read() in my filesystem, I happened to notice that read() was called before the other read() finished. Is there anyway to sequentialize them? If they overlap, the data that I expect from first read() is actually created by the second.
Thanks guys

  1. read(path="/location.csv", buf=0x01c16960, size=32768, offset=16384, fi=0x33eb4e40)

    start_read for 1

  2. read(path="/location.csv", buf=0x01c1eb60, size=65536, offset=49152, fi=0x346b5e40)

    start_read for 2

    end_read for 1

    end_read for 2

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

装迷糊 2024-12-04 14:26:08

尝试使用 -s (单线程)选项运行您的文件系统。如果它成功了,您可以通过使用 fuse_opt_add_arg 将其添加到您的 fuse_args 来强制启用它。

Try running your filesystem with the -s (single-threaded) option. If it does the trick, you can force it on by using adding it to your fuse_args using fuse_opt_add_arg.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文