aboutsummaryrefslogtreecommitdiff
path: root/share/man/man9/cpuset.9
Commit message (Collapse)AuthorAgeFilesLines
* Remove $FreeBSD$: two-line nroff patternWarner Losh2023-08-231-2/+0
| | | | | | | Remove /^\.\\"\n\.\\"\s*\$FreeBSD\$$\n/ Similar commit in main: (cherry picked from commit fa9896e082a1)
* cpuset(9): Refer to CPU_SETSIZE not MAXCPUBrooks Davis2022-09-261-3/+3
| | | | | | | | | | | | | | | The maximum CPU number of a cpuset_t is determined by CPU_SETSIZE. In the kernel this is MAXCPU, but in userspace it is CPU_MAXSIZE unless CPU_SETSIZE is defined before including sys/_cpuset.h. CPU_MAXSIZE is 256 and in userspace MAXCPU is generally 1 because it being set to a larger MD value is gated on SMP being defined (not generally the case in userspace). Reported by: Nathaniel Wesley Filardo <nwfilardo@gmail.com> Reviewed by: cem, jhb Differential Revision: https://reviews.freebsd.org/D36679 (cherry picked from commit 8232a1eddadd6e70ce7bee085344b182517d44a7)
* bitset.9: add description of BIT_ISSETDoug Moore2022-03-041-0/+9
| | | | | | | | | | Extracted from abandoned review https://reviews.freebsd.org/D33701. (cherry picked from commit 145c65fc5791d1e4a21c7653f68a55cfd1772aac) cpuset.9: add description of CPU_ISSET (cherry picked from commit eaf3c3af9c88dc63ea09833397f2bbeded16f553)
* Make CPU_SET macros compliant with other implementationsStefan Eßer2022-01-141-3/+5
| | | | (cherry picked from commit e2650af157bc7489deaf2c9054995f0f88a6e5da)
* bitset: rename confusing macro NAND to ANDNOTRyan Libby2019-12-131-4/+4
| | | | | | | | | | | | | | | | s/BIT_NAND/BIT_ANDNOT/, and for CPU and DOMAINSET too. The actual implementation is "and not" (or "but not"), i.e. A but not B. Fortunately this does appear to be what all existing callers want. Don't supply a NAND (not (A and B)) operation at this time. Discussed with: jeff Reviewed by: cem Sponsored by: Dell EMC Isilon Differential Revision: https://reviews.freebsd.org/D22791 Notes: svn path=/head/; revision=355709
* Fix two return types in the cpuset(9) and bitset(9) man pagesEric van Gyzen2016-07-291-3/+3
| | | | | | | | | | The *_FFS() and *_COUNT() functions return int, not size_t. MFC after: 3 days Sponsored by: Dell Inc. Notes: svn path=/head/; revision=303519
* cpuset.9: Link to/from the new pageConrad Meyer2015-10-201-0/+2
| | | | | | | | | A follow-up to r289667. Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=289668
* Document cpuset(9)Conrad Meyer2015-10-201-0/+350
A follow-up to r289467. Coerced by: jhb Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=289667