将直接 IO 与 ecryptfs 和类似的可堆叠文件系统结合使用

发布于 2024-12-01 20:45:08 字数 64 浏览 0 评论 0原文

“ecryptfs”支持直接 I/O 吗?一般来说,修改用户提供的缓冲区的“可堆叠”文件系统如何支持直接 I/O?

Does "ecryptfs" support direct I/O? In general, how can a "stackable" file system, that modifies buffer provided by user support direct I/O?

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

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

发布评论

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

评论(2

〃温暖了心ぐ 2024-12-08 20:45:08

ecryptfs 不支持直接 I/O。

ecryptfs address_space_operations 中没有 direct_IO() 回调的实现。

ecryptfs does not support direct I/O.

There is no implementation of direct_IO() callback in ecryptfs address_space_operations.

清欢 2024-12-08 20:45:08

我还没有研究这么多,但我个人会为文件系统使用 装饰器模式驱动程序,以便 ecryptfs 位于任何实际设备驱动程序之上。然后,当进行调用时,它们会进入 ecryptfs 代码,然后 ecryptfs 调用设备驱动程序并进行写入。

I haven't looked into this much, but I would personally use a decorator pattern for the file system drivers, so that ecryptfs sits on top of any of the actual device drivers. Then when calls are made, they go into ecryptfs code, then ecryptfs calls the device drivers and does the writing.

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