Date: Fri, 5 Sep 2014 15:45:20 +0000 (UTC) From: John Baldwin <jhb@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r271172 - stable/10/sys/sys Message-ID: <201409051545.s85FjKn4079402@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201409051545.s85FjKn4079402>