From: KOSAKI Motohiro Date: Fri, 25 Jul 2008 08:46:55 +0000 (-0700) Subject: cgroup: list_for_each cleanup X-Git-Tag: v2.6.27-rc1~392 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=71cbb949d17d4d776abd547135feb7f3282405c8;p=pandora-kernel.git cgroup: list_for_each cleanup -------------------------- while() { list_entry(); ... } -------------------------- is equivalent to following code. -------------------------- list_for_each_entry(){ ... } -------------------------- later can review easily more. this patch is just clean up. it doesn't have any behavor change. Signed-off-by: KOSAKI Motohiro Cc: Paul Menage Cc: Li Zefan Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- Reading git-diff-tree failed