Found 9 matching messages (0.032 seconds). Page 1 of 1.
Procfs interface: /proc/
linux-fsdevel - Jaroslav Sykora - Oct 18 2007 - 11:26
Documentation of the shadow directories. Signed-off-by: Jaroslav Sykora <jaroslav.sykora@gmail.com> Documentation/filesystems/shadow-directories.txt | 177 +++++++++++++ 1 file changed, 177 insertions(+) --- / ...
linux-fsdevel - Jaroslav Sykora - Oct 18 2007 - 11:28
sys_chdir and sys_fchdir changes. Signed-off-by: Jaroslav Sykora <jaroslav.sykora@gmail.com> fs/open.c | 79 ++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 73 insertions(+), 6 deletions(-) ...
linux-fsdevel - Jaroslav Sykora - Oct 18 2007 - 11:25
... struct file and struct fs_struct. Defines internal lookup flags and syscall flags. Signed-off-by: Jaroslav Sykora <jaroslav.sykora@gmail.com> include/linux/file.h | 2 ++ include/linux/fs.h | 18 ...
linux-fsdevel - Jaroslav Sykora - Oct 18 2007 - 11:22
... path_lookup_shdw(), which performs name lookup in an associated shadow directory. Signed-off-by: Jaroslav Sykora <jaroslav.sykora@gmail.com> arch/i386/kernel/syscall_table.S | 6 fs/exec.c | 4 ...
linux-fsdevel - Jaroslav Sykora - Oct 18 2007 - 11:23
... only minor problems) * probably tons of others I don't know.... The project tarball is at: http://veverka.sh.cvut.cz/~sykora/prj/rheavfs-20070523-1239.tar.gz The kernel patch is in the tarball and for your viewing pleasure I've attached it ...
linux-fsdevel - Jaroslav Sykora - May 23 2007 - 09:20
On Thursday 18 of October 2007, Jan Engelhardt wrote: > > On Oct 18 2007 17:21, Jaroslav Sykora wrote: > >Hello, > > > >Let's say we have an archive file "hello.zip" with a hello world program source > ...
linux-fsdevel - Jaroslav Sykora - Oct 18 2007 - 13:07
Hello, Let's say we have an archive file "hello.zip" with a hello world program source code. We want to do this: cat hello.zip^/hello.c gcc hello.zip^/hello.c -o hello etc.. The '^' is an escape character and it tells the computer to treat
linux-fsdevel - Jaroslav Sykora - Oct 18 2007 - 11:21
On Thursday 18 of October 2007, Jan Engelhardt wrote: > >> > > >> >The '^' is an escape character and it tells the computer to treat the file as a directory. > >> > >> But what you could do is: write a FUSE fs that mirrors the lower content > >> (
linux-fsdevel - Jaroslav Sykora - Oct 18 2007 - 16:10