sh: Fix build alloc_thread_info_node function
By commit b6a84016bd
,
alloc_thread_info was replaced by alloc_thread_info_node.
However, the change of the function name and the addition of the argument
were incomplete.
Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
CC: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
committed by
Paul Mundt
parent
a3d3362287
commit
b15ed69166
@@ -32,7 +32,7 @@ void free_thread_xstate(struct task_struct *tsk)
|
|||||||
#if THREAD_SHIFT < PAGE_SHIFT
|
#if THREAD_SHIFT < PAGE_SHIFT
|
||||||
static struct kmem_cache *thread_info_cache;
|
static struct kmem_cache *thread_info_cache;
|
||||||
|
|
||||||
struct thread_info *alloc_thread_info(struct task_struct *tsk, int node)
|
struct thread_info *alloc_thread_info_node(struct task_struct *tsk, int node)
|
||||||
{
|
{
|
||||||
struct thread_info *ti;
|
struct thread_info *ti;
|
||||||
#ifdef CONFIG_DEBUG_STACK_USAGE
|
#ifdef CONFIG_DEBUG_STACK_USAGE
|
||||||
@@ -57,7 +57,7 @@ void thread_info_cache_init(void)
|
|||||||
THREAD_SIZE, SLAB_PANIC, NULL);
|
THREAD_SIZE, SLAB_PANIC, NULL);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
struct thread_info *alloc_thread_info(struct task_struct *tsk)
|
struct thread_info *alloc_thread_info_node(struct task_struct *tsk, int node)
|
||||||
{
|
{
|
||||||
#ifdef CONFIG_DEBUG_STACK_USAGE
|
#ifdef CONFIG_DEBUG_STACK_USAGE
|
||||||
gfp_t mask = GFP_KERNEL | __GFP_ZERO;
|
gfp_t mask = GFP_KERNEL | __GFP_ZERO;
|
||||||
|
Reference in New Issue
Block a user