aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/include/vfs.h
Commit message (Collapse)AuthorAgeFilesLines
* Add mutexes everywhere ; spam debug log (sorry)Alex Auvolat2015-03-141-0/+3
|
* Add mk_shm syscall ; replace get_mode by fctl.Alex Auvolat2015-03-101-1/+0
|
* Pass more information to FS driver on some ops (TODO bugcheck).Alex Auvolat2015-03-101-6/+6
|
* Add simple shared memory facility to IPC (no syscall yet)Alex Auvolat2015-03-101-5/+5
|
* Rename & cleanup.Alex Auvolat2015-03-101-1/+1
|
* VESA mode setting ; displays kogata logo!Alex Auvolat2015-03-091-2/+2
|
* Partial implement VFS pager (enough for ISO9660!)Alex Auvolat2015-03-091-2/+2
| | | | Also add some debugging facilities (especially stack trace).
* Add pager interface ; implement basic functionnality to replace private maps.Alex Auvolat2015-03-091-0/+4
|
* Require all fs_handle_t objects to point to a node.Alex Auvolat2015-03-091-6/+2
|
* Implement select ; add two tests for channels.Alex Auvolat2015-03-081-0/+2
|
* Change prototypes for read, write, readdir, close ; implement blocking IPC.Alex Auvolat2015-03-081-4/+4
|
* Change VFS a bit in preparation for IPC code : ...Alex Auvolat2015-03-081-1/+8
| | | | | Handles now have a copy of data and ops, and may reference a null node in the case of an IPC channel.
* Add comment about vfs_handle_tAlex Auvolat2015-03-021-0/+3
|
* Change VFS interface : handles no longer visible to underlying FS.Alex Auvolat2015-03-021-23/+10
|
* Implement fs_subfs (it's simple, really) ; add placeholders for more syscallsAlex Auvolat2015-02-241-1/+4
|
* Change VFS a bit : the root directory of a fs is now a pointer. Fix tests.Alex Auvolat2015-02-241-2/+1
|
* Change mode of operation for mmap_file (see readme)Alex Auvolat2015-02-201-1/+12
|
* Think a bit ; ioctls only on open file descriptors.Alex Auvolat2015-02-201-2/+1
|
* Remove global locking on handles by VFS ; adapt nullfs.Alex Auvolat2015-02-191-1/+0
|
* Add syscall for ioctl on open handleAlex Auvolat2015-02-191-3/+9
|
* Make VFS thread-safe, probably.Alex Auvolat2015-02-191-8/+23
|
* Complete nullfs : create, delete, trunc, read, writeAlex Auvolat2015-02-131-0/+1
|
* Unlink function now called delete() (becaue that's what it does)Alex Auvolat2015-02-131-4/+4
|
* Change semantics of VFS :Alex Auvolat2015-02-131-3/+11
| | | | | - 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-6/+5
|
* Adjust nullfs headerAlex Auvolat2015-02-121-1/+4
|
* Begin ajusting vfs.cAlex Auvolat2015-02-121-3/+27
|
* kmain.c is kind of an example of how the VFS should be used from the outside...Alex Auvolat2015-02-121-7/+18
|
* DOES NOT COMPILE | VFS structure change (VFS centralises more stuff)Alex Auvolat2015-02-121-13/+45
|
* Add stating on open filesAlex Auvolat2015-02-091-11/+2
|
* Nullfs in good shape : can read a ram file.Alex Auvolat2015-02-091-0/+1
|
* Start work on filesystems.Alex Auvolat2015-02-091-0/+86