aboutsummaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorMarvin Borner2020-11-22 19:22:31 +0100
committerMarvin Borner2020-11-22 19:22:31 +0100
commitd82b18c90710baf16239257272a740488fddf11c (patch)
tree9a59f9c4eb16a5d5050d430f1946d9997ae5e6db /kernel
parent608fcc4075c1f28207aa177ec2d9408cc3e5e0da (diff)
Added file-based HTTP server
And fixed/added some other things
Diffstat (limited to 'kernel')
-rw-r--r--kernel/features/fs.c19
1 files changed, 8 insertions, 11 deletions
diff --git a/kernel/features/fs.c b/kernel/features/fs.c
index c17a721..480f199 100644
--- a/kernel/features/fs.c
+++ b/kernel/features/fs.c
@@ -63,7 +63,8 @@ void *read_inode(struct inode *in)
if (!num_blocks)
return NULL;
- u32 sz = BLOCK_SIZE * num_blocks;
+ /* u32 sz = BLOCK_SIZE * num_blocks; */
+ u32 sz = in->size;
void *buf = malloc(sz);
printf("Loading %dKiB\n", sz >> 10);
assert(buf != NULL);
@@ -164,22 +165,18 @@ struct inode *find_inode_by_path(char *path)
void *file_read(char *path)
{
- return read_inode(find_inode_by_path(path));
+ struct inode *in = find_inode_by_path(path);
+ if (in)
+ return read_inode(in);
+ else
+ return NULL;
}
u32 file_stat(char *path)
{
struct inode *in = find_inode_by_path(path);
- assert(in);
if (!in)
return 0;
- u32 num_blocks = in->blocks / (BLOCK_SIZE / SECTOR_SIZE);
-
- assert(num_blocks != 0);
- if (!num_blocks)
- return 0;
-
- u32 sz = BLOCK_SIZE * num_blocks;
- return sz;
+ return in->size;
}