[ext2] remove STOP from inode allocator
This commit is contained in:
parent
a9555e28ce
commit
cf6b4081b2
5
TODO.md
5
TODO.md
@ -46,3 +46,8 @@
|
||||
* Fix user-mode `fork`
|
||||
* Add user-mode `wait` (with queues!)
|
||||
* Signals (`signal()`, `kill()`, etc.)
|
||||
|
||||
|
||||
## Signals and Exceptions
|
||||
|
||||
SIGDIAF (Die in a fire)
|
||||
|
@ -159,7 +159,6 @@ ext2_inodetable_t * ext2_disk_alloc_inode(ext2_inodetable_t * parent, char * nam
|
||||
kprintf("%d\n", BGD[group].free_inodes_count);
|
||||
kprintf("\nOkay, writing the block descriptors back to disk.\n");
|
||||
ext2_disk_write_block(2, (uint8_t *)BGD);
|
||||
STOP;
|
||||
kprintf("Alright, we have an inode (%d), time to write it out to disk and make the file in the directory.\n", node_no);
|
||||
free(inode);
|
||||
free(bg_buffer);
|
||||
|
Loading…
Reference in New Issue
Block a user