Page MenuHomeFreeBSD

Fix range descriptions in iovctl.conf(5) man page
ClosedPublic

Authored by pkelsey on Jul 3 2015, 9:41 PM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, Apr 26, 6:38 AM
Unknown Object (File)
Fri, Apr 26, 6:23 AM
Unknown Object (File)
Mar 22 2024, 8:41 PM
Unknown Object (File)
Mar 22 2024, 8:41 PM
Unknown Object (File)
Mar 22 2024, 8:41 PM
Unknown Object (File)
Mar 8 2024, 2:47 PM
Unknown Object (File)
Mar 6 2024, 11:46 PM
Unknown Object (File)
Feb 23 2024, 10:45 PM
Subscribers

Details

Summary

The uint32_t and uint64_t range descriptions were too large
by one on the upper end. The uint8_t, uint16_t, uint32_t, and
uint64_t range descriptions have been formatted to match those in the
pci_iov_schema(9) man page.

Diff Detail

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

Event Timeline

pkelsey retitled this revision from to Fix range descriptions in iovctl.conf(5) man page.
pkelsey updated this object.
pkelsey added a reviewer: rstone.
rstone edited edge metadata.
This revision is now accepted and ready to land.Jul 3 2015, 10:26 PM
wblock added inline comments.
usr.sbin/iovctl/iovctl.conf.5
111 ↗(On Diff #6679)

This can be done with just Pq:

.Pq 2**32 - 1 ,

115 ↗(On Diff #6679)

.Pq 2**64 - 1 ,

pkelsey added inline comments.
usr.sbin/iovctl/iovctl.conf.5
111 ↗(On Diff #6679)

Would you like me to change it for this patch? There is one other place in this man page where .Pq can be used instead of .Po Pc, and there are also several in the related man pages pci(9), pci_iov_schema(9), iovctl(8), which taken together significantly add to the few other uses of .Po Pc in the tree. What do you think if I leave this patch as focused on the range correction, and follow it with another patch that converts .Po Pc usage to .Pq in all of the related man pages I've mentioned here?

wblock added a reviewer: wblock.

Value changes approved, either with .Pq included in this diff or in a separate patch. Please remember to update .Dd before commit and check the page with 'mandoc -Tlint' and 'igor -R'. Thanks!

usr.sbin/iovctl/iovctl.conf.5
111 ↗(On Diff #6679)

If you want to fix the other pages, that would be very good. But you are not obligated to do that extra work, just changing the ones in this particular page is enough, either in this patch or a separate one.

This revision was automatically updated to reflect the committed changes.
pkelsey marked an inline comment as done.