Author: jhb Date: Fri Sep 5 15:45:20 2014 New Revision: 271172 URL: http://svnweb.freebsd.org/changeset/base/271172
Log: MFC 270222: Bump the default size of cpuset_t masks in userland from 128 bits to 256. This should not be an ABI change since the various public APIs that use cpusets all include an explicit size parameter in addition to the cpuset parameter. Approved by: re (gjb) Modified: stable/10/sys/sys/_cpuset.h Directory Properties: stable/10/ (props changed) Modified: stable/10/sys/sys/_cpuset.h ============================================================================== --- stable/10/sys/sys/_cpuset.h Fri Sep 5 15:13:41 2014 (r271171) +++ stable/10/sys/sys/_cpuset.h Fri Sep 5 15:45:20 2014 (r271172) @@ -38,7 +38,7 @@ #define CPU_SETSIZE MAXCPU #endif -#define CPU_MAXSIZE 128 +#define CPU_MAXSIZE 256 #ifndef CPU_SETSIZE #define CPU_SETSIZE CPU_MAXSIZE _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"