[Patch 1/1] init: Provide a kernel start parameter to increase pid_max

From: Mike Travis
Date: Tue Apr 20 2010 - 21:40:54 EST


Subject: [Patch 1/1] init: Provide a kernel start parameter to increase pid_max
From: Hedi Berriche <hedi@xxxxxxx>

On a system with a substantial number of processors, the early default pid_max
of 32k will not be enough. A system with 1664 CPU's, there are 25163 processes
started before the login prompt. It's estimated that with 2048 CPU's we will pass
the 32k limit. With 4096, we'll reach that limit very early during the boot cycle,
and processes would stall waiting for an available pid.

This provides a kernel start parameter to increase the early maximum number of
pids available. It does not change any of the defaults.

Signed-off-by: Hedi Berriche <hedi@xxxxxxx>
Signed-off-by: Mike Travis <travis@xxxxxxx>
Signed-off-by: Robin Holt <holt@xxxxxxx>

---
Documentation/kernel-parameters.txt | 11 +++++++++++
kernel/pid.c | 30 ++++++++++++++++++++++++++++++
2 files changed, 41 insertions(+)

--- linux-2.6.32.orig/Documentation/kernel-parameters.txt
+++ linux-2.6.32/Documentation/kernel-parameters.txt
@@ -1327,6 +1327,17 @@ and is between 256 and 4096 characters.
max_luns= [SCSI] Maximum number of LUNs to probe.
Should be between 1 and 2^32-1.

+ max_pid=nn[KMG] [KNL] Maximum number of PID's to use. On a system
+ with a large amount of processors, the default
+ pid_max may not be sufficient to allow the system
+ to boot. The range of allowed values is limited from
+ pid_max_min to pid_max_max (configuration dependent.)
+ See kernel/pid.c and include/linux/threads.h for
+ specific values. Note that specifying a value
+ too small may cause the system to fail to boot,
+ so that value is ignored. Using a value too large,
+ and the largest allowed value will be used instead.
+
max_report_luns=
[SCSI] Maximum number of LUNs received.
Should be between 1 and 16384.
--- linux-2.6.32.orig/kernel/pid.c
+++ linux-2.6.32/kernel/pid.c
@@ -53,6 +53,36 @@ int pid_max_max = PID_MAX_LIMIT;
#define BITS_PER_PAGE (PAGE_SIZE*8)
#define BITS_PER_PAGE_MASK (BITS_PER_PAGE-1)

+static int __init set_pid_max(char *str)
+{
+ u64 maxp;
+
+ if (!str)
+ return -EINVAL;
+
+ maxp = memparse(str, &str);
+
+ if (maxp < pid_max_min) {
+ pr_warning(
+ "pid_max smaller than minimum allowed value (%u)\n",
+ pid_max_min);
+ return -EINVAL;
+ }
+ if (maxp > pid_max_max) {
+ pr_warning(
+ "pid_max larger than maximum allowed value, using %u\n",
+ pid_max_max);
+ pid_max = pid_max_max;
+ } else {
+ pid_max = maxp;
+ pr_info("pid_max set to %u\n", pid_max);
+ }
+
+ return 0;
+}
+
+early_param("pid_max", set_pid_max);
+
static inline int mk_pid(struct pid_namespace *pid_ns,
struct pidmap *map, int off)
{
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/