diff options
author | Marvin Borner | 2021-04-17 22:59:57 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-17 22:59:57 +0200 |
commit | cdf029471736f43776452930b7195a06ab143654 (patch) | |
tree | f8ab7dee26c589ff3666194b814d9457482ec02c /kernel/features/proc.c | |
parent | 89b5b9acf6037fc1a87f9e85c64831187a47ba94 (diff) |
Added I/O bus implementation for efficient IPC
This was a nice coding session. See ya tomorrow!
Diffstat (limited to 'kernel/features/proc.c')
-rw-r--r-- | kernel/features/proc.c | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/kernel/features/proc.c b/kernel/features/proc.c index c972f1b..cada97d 100644 --- a/kernel/features/proc.c +++ b/kernel/features/proc.c @@ -288,15 +288,7 @@ static res procfs_write(const char *path, void *buf, u32 offset, u32 count, stru clac(); path++; - if (!memcmp_user(path, "msg", 4)) { - void *msg_data = malloc(count); - memcpy_user(msg_data, buf, count); - struct procfs_message *msg = malloc(sizeof(*msg)); - msg->data = msg_data; - msg->size = count; - stack_push_bot(p->messages, msg); // TODO: Use offset - return count; - } else if (!memcmp_user(path, "io/", 3)) { + if (!memcmp_user(path, "io/", 3)) { path += 3; enum stream_defaults id = procfs_stream(path); if (id == STREAM_UNKNOWN) @@ -346,18 +338,6 @@ static res procfs_read(const char *path, void *buf, u32 offset, u32 count, struc const char *status = p->state == PROC_RUNNING ? "running" : "sleeping"; memcpy_user(buf, status + offset, count); return count; - } else if (!memcmp_user(path, "msg", 4)) { - if (stack_empty(p->messages)) { - return -EIO; // This shouldn't happen - } else { - struct procfs_message *msg = stack_pop(p->messages); - if (!msg) - return -EIO; - memcpy_user(buf, msg->data + offset, MIN(count, msg->size)); - free(msg->data); - free(msg); - return MIN(count, msg->size); - } } else if (!memcmp_user(path, "io/", 3)) { path += 3; enum stream_defaults id = procfs_stream(path); |