#include <ubixos/types.h>#include <vfs/file.h>#include <vfs/mount.h>#include <sys/sysproto.h>#include <sys/thread.h>Go to the source code of this file.
Data Structures | |
| struct | fileSystem |
| filesSystem Structure More... | |
Defines | |
| #define | fdAvail 1 |
| #define | fdEof 4 |
| #define | fdOpen 2 |
| #define | fdRead 3 |
| #define | fileAppend 0x0008 |
| #define | fileBinary 0x0004 |
| #define | fileRead 0x0001 |
| #define | fileWrite 0x0002 |
| #define | maxFd 32 |
Functions | |
| int | open (struct thread *td, struct open_args *uap) |
| fileSystem * | vfs_findFS (int) |
| int | vfs_init () |
| int | vfsRegisterFS (struct fileSystem) |
| register a file system | |
| #define fdEof 4 |
| #define fdOpen 2 |
| #define fdRead 3 |
| #define fileRead 0x0001 |
| #define fileWrite 0x0002 |
| struct fileSystem* vfs_findFS | ( | int | ) |
| int vfs_init | ( | ) |
Definition at line 47 of file vfs.c.
References vitalsStruct::fileSystems, kprintf(), and systemVitals.
| int vfsRegisterFS | ( | struct fileSystem | newFS | ) |
register a file system
This registers a new filesystem into the vfs which is referenced when trying to mount a device
| newFS | pointer to fileSystem structure |
Definition at line 80 of file vfs.c.
References vitalsStruct::fileSystems, kmalloc(), kprintf(), memcpy(), fileSystem::next, NULL, fileSystem::prev, systemVitals, vfsFindFS(), fileSystem::vfsType, and x1.
Referenced by devfs_init(), ubixfs_init(), and ufs_init().
1.4.7