Re: [PATCH 3/3] kernel/sysctl.c: threads-max observe limits

2015-02-25 Thread David Rientjes
On Wed, 25 Feb 2015, Heinrich Schuchardt wrote: > > I believe this information should be added to the documentation cited > > above which mentions threads-max since users will otherwise be unfamiliar > > with the limits imposed. > > Hello David, > > I guess the documentation fix should be put

Re: [PATCH 3/3] kernel/sysctl.c: threads-max observe limits

2015-02-25 Thread Heinrich Schuchardt
On 24.02.2015 23:20, David Rientjes wrote: > On Tue, 24 Feb 2015, Heinrich Schuchardt wrote: > Users can change the maximum number of threads by writing to /proc/sys/kernel/threads-max. With the patch the value entered is checked against the same limits that apply when for

Re: [PATCH 3/3] kernel/sysctl.c: threads-max observe limits

2015-02-24 Thread David Rientjes
On Tue, 24 Feb 2015, Heinrich Schuchardt wrote: > >> Users can change the maximum number of threads by writing to > >> /proc/sys/kernel/threads-max. > >> > >> With the patch the value entered is checked against the same > >> limits that apply when fork_init is called. > >> > > > > Correct me if I

Re: [PATCH 3/3] kernel/sysctl.c: threads-max observe limits

2015-02-24 Thread Heinrich Schuchardt
On 24.02.2015 22:17, David Rientjes wrote: > On Tue, 24 Feb 2015, Heinrich Schuchardt wrote: > >> Users can change the maximum number of threads by writing to >> /proc/sys/kernel/threads-max. >> >> With the patch the value entered is checked against the same >> limits that apply when fork_init is

Re: [PATCH 3/3] kernel/sysctl.c: threads-max observe limits

2015-02-24 Thread David Rientjes
On Tue, 24 Feb 2015, Heinrich Schuchardt wrote: > Users can change the maximum number of threads by writing to > /proc/sys/kernel/threads-max. > > With the patch the value entered is checked against the same > limits that apply when fork_init is called. > Correct me if I'm wrong, but this is a

[PATCH 3/3] kernel/sysctl.c: threads-max observe limits

2015-02-24 Thread Heinrich Schuchardt
Users can change the maximum number of threads by writing to /proc/sys/kernel/threads-max. With the patch the value entered is checked against the same limits that apply when fork_init is called. Signed-off-by: Heinrich Schuchardt --- include/linux/sysctl.h | 3 +++ kernel/fork.c | 24