| From | devnull@spaans ... | | Date | Wed, 21 Mar 2001 18:40:50 -0500 | | Subject | 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 from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|