From: Hiroshi Shimamoto Date: Thu, 14 Feb 2008 18:26:24 +0000 (-0800) Subject: latencytop: fix kernel panic while reading latency proc file X-Git-Tag: v2.6.25-rc4~160^2~2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ae0027869db7d28563cd783865fab04ffd18419c;p=pandora-kernel.git latencytop: fix kernel panic while reading latency proc file Reading /proc//latency or /proc//task//latency could cause NULL pointer dereference. In lstats_open(), get_proc_task() can return NULL, in which case the kernel will oops at lstats_show_proc() because m->private is NULL. When get_proc_task() returns NULL, the kernel should return -ENOENT. This can be reproduced by the following script. while : do date bash -c 'ls > ls.$$' & pid=$! cat /proc/$pid/latency & cat /proc/$pid/latency & cat /proc/$pid/latency & cat /proc/$pid/latency done Signed-off-by: Hiroshi Shimamoto Signed-off-by: Ingo Molnar --- Reading git-diff-tree failed