Date: Wed, 20 Aug 2014 16:05:16 +0000 (UTC) From: John Baldwin <jhb@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r270222 - head/sys/sys Message-ID: <201408201605.s7KG5G9X079868@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jhb Date: Wed Aug 20 16:05:15 2014 New Revision: 270222 URL: http://svnweb.freebsd.org/changeset/base/270222 Log: 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. MFC after: 1 week Modified: head/sys/sys/_cpuset.h Modified: head/sys/sys/_cpuset.h ============================================================================== --- head/sys/sys/_cpuset.h Wed Aug 20 16:04:30 2014 (r270221) +++ head/sys/sys/_cpuset.h Wed Aug 20 16:05:15 2014 (r270222) @@ -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?201408201605.s7KG5G9X079868>