diff options
author | Laura Abbott <labbott@redhat.com> | 2019-08-15 15:17:19 -0400 |
---|---|---|
committer | Laura Abbott <labbott@redhat.com> | 2019-09-16 10:48:39 -0400 |
commit | 9742e529b878106143a0a68c4734af4328688a99 (patch) | |
tree | 027268c8f130d929b433fcb44f8cd271e335a18b /configs | |
parent | 9a47638b3daa0c79fd58469e4846a4c1c125a58a (diff) | |
download | kernel-9742e529b878106143a0a68c4734af4328688a99.tar.gz kernel-9742e529b878106143a0a68c4734af4328688a99.tar.xz kernel-9742e529b878106143a0a68c4734af4328688a99.zip |
Drop cpumask auto select patch and set NR_CPUS appropriately
We've been carrying a patch to make CPUMASK_OFFSTACK selectable
without debugging for a long time now. The comment said this was
going to be replaced with something else but that never seemed
to happen. We're carrying it to have a higher number of CPUs but
at this point, adjusting NR_CPUS doesn't really get us that much
benfit. Drop the patch and just use 8192 or NR_CPUS on x86.
Signed-off-by: Laura Abbott <labbott@redhat.com>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/fedora/generic/x86/CONFIG_MAXSMP | 2 | ||||
-rw-r--r-- | configs/fedora/generic/x86/x86_64/CONFIG_NR_CPUS | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/configs/fedora/generic/x86/CONFIG_MAXSMP b/configs/fedora/generic/x86/CONFIG_MAXSMP index d0d71de53..8d0fa581d 100644 --- a/configs/fedora/generic/x86/CONFIG_MAXSMP +++ b/configs/fedora/generic/x86/CONFIG_MAXSMP @@ -1 +1 @@ -# CONFIG_MAXSMP is not set +CONFIG_MAXSMP=y diff --git a/configs/fedora/generic/x86/x86_64/CONFIG_NR_CPUS b/configs/fedora/generic/x86/x86_64/CONFIG_NR_CPUS index 27d187f4d..441191641 100644 --- a/configs/fedora/generic/x86/x86_64/CONFIG_NR_CPUS +++ b/configs/fedora/generic/x86/x86_64/CONFIG_NR_CPUS @@ -1 +1 @@ -CONFIG_NR_CPUS=1024 +CONFIG_NR_CPUS=8192 |