Page MenuHomeFreeBSD

syscall.master: fix aio_suspend signature
ClosedPublic

Authored by brooks on Mar 15 2024, 10:45 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Jul 7, 3:45 PM
Unknown Object (File)
Sat, Jul 4, 9:26 PM
Unknown Object (File)
Sat, Jul 4, 8:18 PM
Unknown Object (File)
Wed, Jun 24, 3:17 PM
Unknown Object (File)
Sat, Jun 20, 8:33 AM
Unknown Object (File)
Jun 12 2026, 3:49 AM
Unknown Object (File)
May 18 2026, 4:54 PM
Unknown Object (File)
May 18 2026, 7:45 AM
Subscribers

Details

Summary

It takes a const struct iovec *iovp.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 56632
Build 53520: arc lint + arc unit

Event Timeline

Ok, but this change by itself does not change much. Do we want to consticize locals in sys_aio_suspend() and args for kern_aio_suspend()?

This revision is now accepted and ready to land.Mar 16 2024, 1:28 AM
In D44378#1012165, @kib wrote:

Ok, but this change by itself does not change much. Do we want to consticize locals in sys_aio_suspend() and args for kern_aio_suspend()?

This aligns the declaration with aio_suspend(9). It presumably also has the side effect of preventing passing uap->aiocbp argument to copyout without a cast, but my goal here is just to align with the syscall declaration.

This revision was automatically updated to reflect the committed changes.