Kernel: Refactor storage stack with u64 as mmap offset

This commit is contained in:
Jean-Baptiste Boric 2021-03-18 22:57:25 +01:00 committed by Andreas Kling
commit 6698fd84ff
Notes: sideshowbarker 2024-07-18 21:14:29 +09:00
15 changed files with 21 additions and 21 deletions

View file

@ -59,7 +59,7 @@ int File::ioctl(FileDescription&, unsigned, FlatPtr)
return -ENOTTY;
}
KResultOr<Region*> File::mmap(Process&, FileDescription&, const Range&, size_t, int, bool)
KResultOr<Region*> File::mmap(Process&, FileDescription&, const Range&, u64, int, bool)
{
return ENODEV;
}