aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/user/vfs.c
Commit message (Collapse)AuthorAgeFilesLines
* Change VFS interface : handles no longer visible to underlying FS.Alex Auvolat2015-03-021-24/+13
|
* Fix VFS reference counting.Alex Auvolat2015-03-021-17/+16
|
* Implement fs_subfs (it's simple, really) ; add placeholders for more syscallsAlex Auvolat2015-02-241-1/+38
|
* Change VFS a bit : the root directory of a fs is now a pointer. Fix tests.Alex Auvolat2015-02-241-38/+48
|
* Change mode of operation for mmap_file (see readme)Alex Auvolat2015-02-201-0/+12
|
* Think a bit ; ioctls only on open file descriptors.Alex Auvolat2015-02-201-15/+2
|
* Remove global locking on handles by VFS ; adapt nullfs.Alex Auvolat2015-02-191-28/+4
|
* Add syscall for ioctl on open handleAlex Auvolat2015-02-191-1/+12
|
* Make VFS thread-safe, probably.Alex Auvolat2015-02-191-26/+120
|
* Change hashtbl memory freeing methodAlex Auvolat2015-02-141-2/+2
|
* Complete nullfs : create, delete, trunc, read, writeAlex Auvolat2015-02-131-2/+12
|
* Unlink function now called delete() (becaue that's what it does)Alex Auvolat2015-02-131-2/+2
|
* Change semantics of VFS :Alex Auvolat2015-02-131-10/+48
| | | | | - nodes can be loaded in ram only once (nodes identified by their path) - unlink() can only be called if the node to be deleted is not used (not in ram)
* Begin implementation of nullfs.Alex Auvolat2015-02-121-10/+20
|
* Adjust nullfs headerAlex Auvolat2015-02-121-3/+11
|
* Implement walk_path_except_lastAlex Auvolat2015-02-121-5/+52
|
* Begin ajusting vfs.cAlex Auvolat2015-02-121-14/+144
|
* Nullfs in good shape : can read a ram file.Alex Auvolat2015-02-091-3/+8
|
* Work on nullfsAlex Auvolat2015-02-091-0/+6
|
* Start work on filesystems.Alex Auvolat2015-02-091-0/+126