Break ioctl() up into smaller syscalls

This commit is contained in:
2025-10-14 20:05:41 +02:00
parent c34a253d11
commit 406434fed0
21 changed files with 375 additions and 320 deletions

View File

@ -10,7 +10,7 @@ void fs_mkd(void) {
char *path = *(args()+1);
int32_t r = ioctl(IOCTL_NOHANDLE, IOCTL_MKDIR, (uint64_t)path, 0, 0);
int32_t r = fs_mkdir(path);
if (r != E_OK) {
uprintf("fs: could not create %s\n", path);
}