* [Patch] Allow ia64 to CONFIG_NR_CPUS up to 4096
@ 2008-07-29 12:26 Robin Holt
2008-07-29 13:07 ` KOSAKI Motohiro
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Robin Holt @ 2008-07-29 12:26 UTC (permalink / raw)
To: linux-ia64
ia64 has compiled with NR_CPUS@96 for a couple releases, just forgot
to update Kconfig to allow it.
Signed-off-by: Robin Holt <holt@sgi.com>
Index: contention_unroll/arch/ia64/Kconfig
=================================--- contention_unroll.orig/arch/ia64/Kconfig 2008-07-28 18:19:56.000000000 -0500
+++ contention_unroll/arch/ia64/Kconfig 2008-07-29 06:29:26.248066055 -0500
@@ -322,9 +322,9 @@ config SMP
config NR_CPUS
int "Maximum number of CPUs (2-1024)"
- range 2 1024
+ range 2 4096
depends on SMP
- default "1024"
+ default "4096"
help
You should set this to the number of CPUs in your system, but
keep in mind that a kernel compiled for, e.g., 2 CPUs will boot but
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [Patch] Allow ia64 to CONFIG_NR_CPUS up to 4096
2008-07-29 12:26 [Patch] Allow ia64 to CONFIG_NR_CPUS up to 4096 Robin Holt
@ 2008-07-29 13:07 ` KOSAKI Motohiro
2008-07-29 13:18 ` Robin Holt
2008-08-02 18:29 ` [Patch] Allow ia64 to CONFIG_NR_CPUS up to 4096 v2 Robin Holt
2 siblings, 0 replies; 4+ messages in thread
From: KOSAKI Motohiro @ 2008-07-29 13:07 UTC (permalink / raw)
To: linux-ia64
> Index: contention_unroll/arch/ia64/Kconfig
> =================================> --- contention_unroll.orig/arch/ia64/Kconfig 2008-07-28 18:19:56.000000000 -0500
> +++ contention_unroll/arch/ia64/Kconfig 2008-07-29 06:29:26.248066055 -0500
> @@ -322,9 +322,9 @@ config SMP
>
> config NR_CPUS
> int "Maximum number of CPUs (2-1024)"
Should we change to 'int "Maximum number of CPUs (2-4096)"' ?
> - range 2 1024
> + range 2 4096
> depends on SMP
> - default "1024"
> + default "4096"
> help
> You should set this to the number of CPUs in your system, but
> keep in mind that a kernel compiled for, e.g., 2 CPUs will boot but
> --
> To unsubscribe from this list: send the line "unsubscribe linux-ia64" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Patch] Allow ia64 to CONFIG_NR_CPUS up to 4096
2008-07-29 12:26 [Patch] Allow ia64 to CONFIG_NR_CPUS up to 4096 Robin Holt
2008-07-29 13:07 ` KOSAKI Motohiro
@ 2008-07-29 13:18 ` Robin Holt
2008-08-02 18:29 ` [Patch] Allow ia64 to CONFIG_NR_CPUS up to 4096 v2 Robin Holt
2 siblings, 0 replies; 4+ messages in thread
From: Robin Holt @ 2008-07-29 13:18 UTC (permalink / raw)
To: linux-ia64
ia64 has compiled with NR_CPUS@96 for a couple releases, just forgot
to update Kconfig to allow it.
Signed-off-by: Robin Holt <holt@sgi.com>
Index: contention_unroll/arch/ia64/Kconfig
=================================--- contention_unroll.orig/arch/ia64/Kconfig 2008-07-29 07:03:17.514143399 -0500
+++ test-2.6.27-rc1/arch/ia64/Kconfig 2008-07-29 08:16:50.987937542 -0500
@@ -321,10 +321,10 @@ config SMP
If you don't know what to do here, say N.
config NR_CPUS
- int "Maximum number of CPUs (2-1024)"
- range 2 1024
+ int "Maximum number of CPUs (2-4096)"
+ range 2 4096
depends on SMP
- default "1024"
+ default "4096"
help
You should set this to the number of CPUs in your system, but
keep in mind that a kernel compiled for, e.g., 2 CPUs will boot but
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Patch] Allow ia64 to CONFIG_NR_CPUS up to 4096 v2
2008-07-29 12:26 [Patch] Allow ia64 to CONFIG_NR_CPUS up to 4096 Robin Holt
2008-07-29 13:07 ` KOSAKI Motohiro
2008-07-29 13:18 ` Robin Holt
@ 2008-08-02 18:29 ` Robin Holt
2 siblings, 0 replies; 4+ messages in thread
From: Robin Holt @ 2008-08-02 18:29 UTC (permalink / raw)
To: linux-ia64
ia64 has compiled with NR_CPUS@96 for a couple releases, just forgot
to update Kconfig to allow it.
Signed-off-by: Robin Holt <holt@sgi.com>
Index: contention_unroll/arch/ia64/Kconfig
=================================--- contention_unroll.orig/arch/ia64/Kconfig 2008-07-29 07:03:17.514143399 -0500
+++ contention_unroll/arch/ia64/Kconfig 2008-07-29 08:16:50.987937542 -0500
@@ -321,10 +321,10 @@ config SMP
If you don't know what to do here, say N.
config NR_CPUS
- int "Maximum number of CPUs (2-1024)"
- range 2 1024
+ int "Maximum number of CPUs (2-4096)"
+ range 2 4096
depends on SMP
- default "1024"
+ default "4096"
help
You should set this to the number of CPUs in your system, but
keep in mind that a kernel compiled for, e.g., 2 CPUs will boot but
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-08-02 18:29 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-29 12:26 [Patch] Allow ia64 to CONFIG_NR_CPUS up to 4096 Robin Holt
2008-07-29 13:07 ` KOSAKI Motohiro
2008-07-29 13:18 ` Robin Holt
2008-08-02 18:29 ` [Patch] Allow ia64 to CONFIG_NR_CPUS up to 4096 v2 Robin Holt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox