From b45968a8eabcc2d987dfc191b268441dd328318f Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Wed, 20 Aug 2014 16:05:15 +0000 Subject: [PATCH] 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 --- sys/sys/_cpuset.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/_cpuset.h b/sys/sys/_cpuset.h index a488700ff2c0..cd3848489417 100644 --- a/sys/sys/_cpuset.h +++ b/sys/sys/_cpuset.h @@ -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