-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
aio: remove write-only jobid & kernelinfo
The jobid (which was stored in kernelinfo) was used to look up jobs until 1ce9182, where it became essentially write only. Remove it to simplify the code and pave the way for future work to make aio scale better. Note this has been slated for removal "soon" for 18 years. Suggested by: jhb Reviewed by: kib Sponsored by: Netflix Differential Revision: https://reviews.freebsd.org/D47583
- Loading branch information
Andrew Gallatin
authored and
Andrew Gallatin
committed
Nov 15, 2024
1 parent
79af8f7
commit 4605a99
Showing
2 changed files
with
2 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -97,7 +97,7 @@ | |
struct __aiocb_private { | ||
long status; | ||
long error; | ||
void *kernelinfo; | ||
void *spare; | ||
}; | ||
|
||
/* | ||
|