Commit fb5bf317 authored by Yi Wang's avatar Yi Wang Committed by Linus Torvalds

fork: fix some -Wmissing-prototypes warnings

We get a warning when building kernel with W=1:

  kernel/fork.c:167:13: warning: no previous prototype for `arch_release_thread_stack' [-Wmissing-prototypes]
  kernel/fork.c:779:13: warning: no previous prototype for `fork_init' [-Wmissing-prototypes]

Add the missing declaration in head file to fix this.

Also, remove arch_release_thread_stack() completely because no arch
seems to implement it since bb9d8126 (arch: remove tile port).

Link: http://lkml.kernel.org/r/1542170087-23645-1-git-send-email-wang.yi59@zte.com.cnSigned-off-by: default avatarYi Wang <wang.yi59@zte.com.cn>
Acked-by: default avatarMichal Hocko <mhocko@suse.com>
Acked-by: default avatarMike Rapoport <rppt@linux.ibm.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 306790f7
...@@ -39,6 +39,8 @@ void __noreturn do_task_dead(void); ...@@ -39,6 +39,8 @@ void __noreturn do_task_dead(void);
extern void proc_caches_init(void); extern void proc_caches_init(void);
extern void fork_init(void);
extern void release_task(struct task_struct * p); extern void release_task(struct task_struct * p);
#ifdef CONFIG_HAVE_COPY_THREAD_TLS #ifdef CONFIG_HAVE_COPY_THREAD_TLS
......
...@@ -105,7 +105,6 @@ ...@@ -105,7 +105,6 @@
static int kernel_init(void *); static int kernel_init(void *);
extern void init_IRQ(void); extern void init_IRQ(void);
extern void fork_init(void);
extern void radix_tree_init(void); extern void radix_tree_init(void);
/* /*
......
...@@ -164,10 +164,6 @@ static inline void free_task_struct(struct task_struct *tsk) ...@@ -164,10 +164,6 @@ static inline void free_task_struct(struct task_struct *tsk)
} }
#endif #endif
void __weak arch_release_thread_stack(unsigned long *stack)
{
}
#ifndef CONFIG_ARCH_THREAD_STACK_ALLOCATOR #ifndef CONFIG_ARCH_THREAD_STACK_ALLOCATOR
/* /*
...@@ -422,7 +418,6 @@ static void release_task_stack(struct task_struct *tsk) ...@@ -422,7 +418,6 @@ static void release_task_stack(struct task_struct *tsk)
return; /* Better to leak the stack than to free prematurely */ return; /* Better to leak the stack than to free prematurely */
account_kernel_stack(tsk, -1); account_kernel_stack(tsk, -1);
arch_release_thread_stack(tsk->stack);
free_thread_stack(tsk); free_thread_stack(tsk);
tsk->stack = NULL; tsk->stack = NULL;
#ifdef CONFIG_VMAP_STACK #ifdef CONFIG_VMAP_STACK
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment