From 3b8b63bf133e855d942abb67de931ce08b7a4452 Mon Sep 17 00:00:00 2001 From: dzwdz Date: Tue, 20 Sep 2022 23:35:33 +0200 Subject: shared: rename ufs_request to better fit its role in userland The old name could have suggested that it held a response to a request received by fs_wait. The new name is unfortunately very similar to the `struct vfs_request` already used internally in the kernel, but it's better at conveying that it contains a filesystem request yet to be handled. vfs_request - virtual filesystem request (a bad name in hindsight) ufs_request - user filesystem request --- src/user/lib/fs/misc.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/user/lib/fs') diff --git a/src/user/lib/fs/misc.c b/src/user/lib/fs/misc.c index 059e1eb..3a04649 100644 --- a/src/user/lib/fs/misc.c +++ b/src/user/lib/fs/misc.c @@ -58,7 +58,7 @@ void fs_passthru(const char *prefix) { if (!buf) exit(1); for (;;) { - struct fs_wait_response res; + struct ufs_request res; handle_t reqh = _syscall_fs_wait(buf, buflen, &res); if (reqh < 0) break; switch (res.op) { @@ -89,7 +89,7 @@ void fs_whitelist(const char **list) { char *buf = malloc(buflen); if (!buf) exit(1); for (;;) { - struct fs_wait_response res; + struct ufs_request res; handle_t reqh = _syscall_fs_wait(buf, buflen, &res); if (reqh < 0) break; @@ -163,7 +163,7 @@ void fs_whitelist(const char **list) { } void fs_union(const char **list) { - struct fs_wait_response res; + struct ufs_request res; /* the buffer is split into two halves: * the second one is filled out with the path by fs_wait @@ -241,7 +241,7 @@ void fs_dir_inject(const char *path) { if (!buf) exit(1); for (;;) { - struct fs_wait_response res; + struct ufs_request res; handle_t reqh = _syscall_fs_wait(buf, buflen, &res); if (reqh < 0) break; struct fs_dir_handle *data = res.id; -- cgit v1.2.3