将直接 IO 与 ecryptfs 和类似的可堆叠文件系统结合使用
“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
我还没有研究这么多,但我个人会为文件系统使用 装饰器模式驱动程序,以便 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.