mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 05:58:11 +00:00
Kernel: VFS::open/create should take base Inode& instead of InodeIdentifier.
This commit is contained in:
parent
6618411fba
commit
feed67ede2
4 changed files with 14 additions and 14 deletions
|
@ -122,7 +122,7 @@ void init_ksyms()
|
|||
void load_ksyms()
|
||||
{
|
||||
int error;
|
||||
auto descriptor = VFS::the().open("/kernel.map", error, 0, 0);
|
||||
auto descriptor = VFS::the().open("/kernel.map", error, 0, 0, *VFS::the().root_inode());
|
||||
if (!descriptor) {
|
||||
kprintf("Failed to open /kernel.map\n");
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue