Tagged Questions

5
votes
2answers
2k views

Difference between statvfs() and statfs() system calls?

Why do the statfs() and statvfs() calls both exist when they're so similar? Under what circumstances would I prefer one over the other?
2
votes
1answer
385 views

Is it possible to have a Linux VFS cache with a fuse filesystem?

It seems that the Linux VFS cache does not work by default with a FUSE filesystem. For example, the "read" call seems to be systematically forwarded to the FUSE filesystem. I work on a FUSE specific ...
-5
votes
1answer
79 views

Simple virtual file system [closed]

I need to implement a simple virtual file system driver. The driver should let me mount the filesystem to some point and perform some basic file operations such as create, copy, delete. I don't care ...