[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] Prevent OOM from killing init
Eli Carter wrote:
> Having not looked at the code... Why not "if( p->pid > 1 )"? (Or can
> p->pid can be negative?!, um, typecast to unsigned...)
I simply mirrored the check done in do_exit():
if (tsk->pid == 1)
panic("Attempted to kill init!");
Since PID_MAX is 32768 I do not believe pids can be negative.
I suppose one could make an argument for skipping "daemons", i.e.
pids below 300 (see the get_pid() function in kernel/fork.c), but
I think that is a larger issue.
Pat
--
Patrick O'Rourke
978.606.0236
orourke@missioncriticallinux.com
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux.eu.org/Linux-MM/