Kernel: Remove unnecessary FIXME in sys$posix_fallocate()

This syscall doesn't need to do anything for ENOSPC, as that is already
handled by its callees.
This commit is contained in:
Andreas Kling 2022-11-27 19:41:25 +01:00
parent 361897192c
commit 9249bcb5aa

View file

@ -51,7 +51,6 @@ ErrorOr<FlatPtr> Process::sys$posix_fallocate(int fd, Userspace<off_t const*> us
// truncate instead
TRY(file.inode().truncate(checked_size.value()));
// FIXME: ENOSPC: There is not enough space left on the device containing the file referred to by fd.
// FIXME: EINTR: A signal was caught during execution.
return 0;
}