summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2021-09-12move `enum vs_operation` to shared/flags.hdzwdz
2021-09-12allow vfs_request_finish to returndzwdz
2021-09-12implement part of `fs_respond`dzwdz
2021-09-12force init's main to be in .text.startupdzwdz
2021-09-12log cr2 on page faultsdzwdz
2021-09-12make the inline functions staticdzwdz
2021-09-12init: allocate bss at runtimedzwdz
2021-09-12barebones `memflag()` implementation - letting the user allocate pagesdzwdz
2021-09-12remove `shared/vfs.h`, it was unuseddzwdz
2021-09-12remove some useless code from initdzwdz
2021-09-12implement most of fs_waitdzwdz
2021-09-12vfs_request refactor pt2dzwdz
2021-09-12vfs request refactor pt1dzwdz
2021-09-12remove some dead codedzwdz
2021-09-12remove obsolete commentdzwdz
2021-09-11add some helper functions for copying between virtual and physical memorydzwdz
2021-09-11replace `user_ptr` with a linux-style `__user` annotationdzwdz
2021-09-11fix the `sparse` warningsdzwdz
2021-09-11add support for `sparse`dzwdz
2021-09-09basic _syscall_fs_wait() impl, doesn't pass the req yetdzwdz
2021-09-08style: simplify the `kmalloc(sizeof(...` callsdzwdz
2021-09-08save the vfs_op_request in the process structdzwdz
2021-09-08copy _syscall_fs_open's argument to a new buffer instead of a shared onedzwdz
2021-09-08process struct: replace the generic saved_addr with an uniondzwdz
2021-09-08scaffolding for user fs dispatchdzwdz
2021-09-07reimplement _syscall_mountdzwdz
2021-09-07implement fs_create(), front/back fs handlesdzwdz
2021-09-05error out when <*/types.h> isn't included in headers which need itdzwdz
2021-09-05fix some warningsdzwdz
2021-09-05rename virt_user_cpy to virt_cpy, since it's no longer limited to virtual memorydzwdz
2021-09-05make virt_iter support iterating over physical memory toodzwdz
2021-09-05move most of the memory stuff to kernel/mem/dzwdz
2021-09-05remove the fd_ / fs_ prefixes from syscall namesdzwdz
2021-09-05remove unused variabledzwdz
2021-09-05don't allow calling open() if there are no empty handles leftdzwdz
2021-09-05root vfs: implement writing to /ttydzwdz
2021-09-04new vfs impl pt. 1: implement open()dzwdz
2021-09-04refactor finding empty handles to a functiondzwdz
2021-09-04nuke the old handle codedzwdz
2021-09-04shitty handle docsdzwdz
2021-09-04rename file descriptors to handlesdzwdz
2021-08-27make vfs_mount_resolve pass all the testsdzwdz
2021-08-27basic vfs_mount_resolve testsdzwdz
2021-08-26separate mount resolving into vfs_mount_resolvedzwdz
2021-08-25reorganise init/main.c, add some "tests"dzwdz
2021-08-25remove FD_STDOUTdzwdz
2021-08-25implement open() for FD_SPECIAL_TTY (`/tty`)dzwdz
2021-08-25implement vfs_mount_seed, which creates the vfs passed to initdzwdz
2021-08-25implement FDOP_MOUNTdzwdz
2021-08-25use a tagged union for the fdop argsdzwdz