git: 87767249233f - stable/13 - cpuset(9): Refer to CPU_SETSIZE not MAXCPU

From: Brooks Davis <brooks_at_FreeBSD.org>
Date: Mon, 26 Sep 2022 18:13:23 UTC
The branch stable/13 has been updated by brooks:

URL: https://cgit.FreeBSD.org/src/commit/?id=87767249233f6ffef5d215c163cda4d306f813fd

commit 87767249233f6ffef5d215c163cda4d306f813fd
Author:     Brooks Davis <brooks@FreeBSD.org>
AuthorDate: 2022-09-23 20:20:52 +0000
Commit:     Brooks Davis <brooks@FreeBSD.org>
CommitDate: 2022-09-26 18:12:48 +0000

    cpuset(9): Refer to CPU_SETSIZE not MAXCPU
    
    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)
---
 share/man/man9/cpuset.9 | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/share/man/man9/cpuset.9 b/share/man/man9/cpuset.9
index 29dbc8fc733b..1320cd9f4350 100644
--- a/share/man/man9/cpuset.9
+++ b/share/man/man9/cpuset.9
@@ -24,7 +24,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd December 12, 2019
+.Dd September 23, 2022
 .Dt CPUSET 9
 .Os
 .Sh NAME
@@ -110,9 +110,9 @@ Each CPU is represented by a single bit.
 The maximum number of CPUs representable by
 .Vt cpuset_t
 is
-.Va MAXCPU .
+.Va CPU_SETSIZE .
 Individual CPUs in cpusets are referenced with indices zero through
-.Fa MAXCPU - 1 .
+.Fa CPU_SETSIZE - 1 .
 .Pp
 The
 .Fn CPUSET_T_INITIALIZER