Skip to content

Commit eb5afc8

Browse files
committed
vfs: ipc performance improvement
1 parent 7673683 commit eb5afc8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

fs/vfs/src/main.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ int main(int argc, char **argv) {
6565
luxLogf(KPRINT_LEVEL_DEBUG, "loaded file system driver for '%s'\n", servers[i].type);
6666
} else if(req->header.command >= 0x8000 && req->header.command <= MAX_SYSCALL_COMMAND) {
6767
if(req->header.command == COMMAND_MOUNT) registerMountpoint((MountCommand *)req);
68-
luxSendLumen(req); // relay responses to lumen
68+
//luxSendLumen(req); // relay responses to lumen
69+
luxSendKernel(req); // relay response directly to the kernel
6970
} else {
7071
luxLogf(KPRINT_LEVEL_WARNING, "unimplemented response to command 0x%X from file system driver for '%s'\n", req->header.command, servers[i].type);
7172
}

0 commit comments

Comments
 (0)