From: Tkhai Kirill Date: Thu, 31 Mar 2011 07:52:38 +0000 (-0700) Subject: sparc32: Pass task_struct to schedule_tail() in ret_from_fork X-Git-Tag: v2.6.39-rc2~32^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=47c7c97a93a5b8f719093dbf83555090b3b8228b;p=pandora-kernel.git sparc32: Pass task_struct to schedule_tail() in ret_from_fork We have to pass task_struct of previous process to function schedule_tail(). Currently in ret_from_fork previous thread_info is passed: switch_to: mov %g6, %g3 /* previous thread_info in g6 */ ret_from_fork: call schedule_tail mov %g3, %o0 /* previous thread_info is passed */ void schedule_tail(struct task_struct *prev); Signed-off-by: Tkhai Kirill Signed-off-by: David S. Miller --- Reading git-diff-tree failed