I want to know whether the buffer cache in Linux kernel is present for file systems like UDF for DVD and FUSE?
I tried to search for this but unfortunately found little information.
Thanks.
|
I want to know whether the buffer cache in Linux kernel is present for file systems like UDF for DVD and FUSE? I tried to search for this but unfortunately found little information. Thanks.
| ||||
|
feedback
|
|
The buffer cache will be used for any access to a filehandle opened against a block device, unless the file handle is opened with For in-kernel filesystems such as UDF, the buffer cache will be used for all IO. For blocks containing file data, the block will simultaneously be in both the buffer and page caches (using the same underlying memory). This will be accounted as page cache, not buffer cache, in memory usage statistics. | |||
|
feedback
|