Tagged Questions
5
votes
1answer
322 views
Reading an on-disk inode to in-memory
I believe there are two types of inodes - on-disk and in-core inode ('struct inode' in fs.h). An on-disk inode is based on filesystem implementation. I am trying to understand the underlying concept ...
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?
4
votes
3answers
535 views
Implementing symlinks in a virtual file system
I'm working on a virtual file system which isn't disk based, kind of like /proc. Now I want to create a symlink within it to a target on a ext3 file system. I haven't found any standard documentation ...
2
votes
3answers
206 views
Is rename() atomic?
I am not being able to check this via experiments and could not gather it from the man pages as well.
Say I have two processes , one moving(rename) file1 from directory1 to directory2. Say the other ...
2
votes
1answer
407 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 ...
1
vote
0answers
51 views
lookup a directory in kernel module
I am writing a stackable file system which would rename unlinked files to a particular folder say abc by default. So as any file /xyz is unlinked its renamed to /abc/xyz. I want to do this by ...
1
vote
1answer
190 views
Linux buffer cache for DVD/FUSE?
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.
0
votes
1answer
618 views
VFS: file-max limit 1231582 reached
I'm running a Linux 2.6.36 kernel, and I'm seeing some random errors. Things like
ls: error while loading shared libraries: libpthread.so.0: cannot open shared object file: Error 23
Yes, my system ...
0
votes
3answers
118 views
How to change a file that used to be a directory back to directory on linux?
I was playing around with Apache VFS API to move files back and forth between my local machine and remote linux host over sftp and it converted some directories to files somehow on my linux host from ...