From: Steffen Klassert Date: Thu, 29 Apr 2010 12:37:32 +0000 (+0200) Subject: padata: Dont scale the parallel objects with the cpus X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=97e3d94aac1c3e95bd04d1b186479a4df3663ab8;p=openwrt%2Fstaging%2Fblogic.git padata: Dont scale the parallel objects with the cpus Scaling the maximum number of objects in the parallel codepath can lead to out of memory problems on bigsmp machines. Signed-off-by: Steffen Klassert Signed-off-by: Herbert Xu --- diff --git a/kernel/padata.c b/kernel/padata.c index 0282478bc584..5085046d83fb 100644 --- a/kernel/padata.c +++ b/kernel/padata.c @@ -28,7 +28,7 @@ #include #define MAX_SEQ_NR INT_MAX - NR_CPUS -#define MAX_OBJ_NUM 10000 * NR_CPUS +#define MAX_OBJ_NUM 1000 static int padata_index_to_cpu(struct parallel_data *pd, int cpu_index) {