Page MenuHomeFreeBSD

Remove artificial restriction on lio_listio's operation count
ClosedPublic

Authored by asomers on Aug 24 2017, 7:35 PM.
Tags
None
Referenced Files
Unknown Object (File)
Feb 9 2024, 5:32 AM
Unknown Object (File)
Jan 27 2024, 9:21 PM
Unknown Object (File)
Jan 22 2024, 12:19 PM
Unknown Object (File)
Jan 11 2024, 9:47 PM
Unknown Object (File)
Jan 10 2024, 4:13 PM
Unknown Object (File)
Nov 27 2023, 9:33 PM
Unknown Object (File)
Oct 26 2023, 8:32 PM
Unknown Object (File)
Oct 7 2023, 9:46 AM
Subscribers

Details

Summary

Remove artificial restriction on lio_listio's operation count

In r322258 I made p1003_1b.aio_listio_max a tunable. However, further
investigation shows that there was never any good reason for that limit to
exist in the first place. It's used in two completely different ways:

  • To size a UMA zone, which globally limits the number of concurrent aio_suspend calls.
  • To artifically limit the number of operations in a single lio_listio call. There doesn't seem to be any memory allocation associated with this limit.

This change does two things:

  • Properly names aio_suspend's UMA zone, and sizes it based on a new constant.
  • Eliminates the artifical restriction on lio_listio. Instead, lio_listio calls will now be limited by the more generous max_aio_queue_per_proc. The old p1003_1b.aio_listio_max is now an alias for vfs.aio.max_aio_queue_per_proc, so sysconf(3) will still work with _SC_AIO_LISTIO_MAX.

Reported by: bde

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

sys/kern/vfs_aio.c
1959 ↗(On Diff #32370)

This should probably honor the max aio queue per proc limit rather than being its own thing.

1970 ↗(On Diff #32370)

I kind of feel like this shouldn't be a UMA zone at all, but just a plain malloc + free. It's just an array of pointers, not a structure, and will often be variable sized. If you do this, then you can just honor the current max per proc limit above and not have to worry about the fixed size of a UMA zone item.

Respond to jhb's suggestions:

  1. Use malloc instead of uma_zalloc for aio_suspend
  2. remove the MAX_AIO_SUSPEND constant
This revision is now accepted and ready to land.Sep 25 2017, 8:00 PM
This revision now requires review to proceed.Sep 25 2017, 8:28 PM

Sorry I didn't include the man page differences originally. I just realized that they need updating. I also noticed that there are a lot of other man pages that reference preprocessor symbols like IOV_MAX when they should be referencing sysconf/getconf variables like {IOV_MAX} instead. I'll update those separately.

This revision was automatically updated to reflect the committed changes.