diff options
author | Yi Wang <wang.yi59@zte.com.cn> | 2019-01-03 15:28:03 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-12-05 09:21:04 +0100 |
commit | fc38279ec51ae7c8022da085061a8b4c5f9e9c20 (patch) | |
tree | 4d327aeec269d6c0143811abdd06831eb10a6f95 /init | |
parent | 0321fe1cdd706f6f326addfd6cd90d0e92e5fe67 (diff) | |
download | linux-stable-fc38279ec51ae7c8022da085061a8b4c5f9e9c20.tar.gz linux-stable-fc38279ec51ae7c8022da085061a8b4c5f9e9c20.tar.bz2 linux-stable-fc38279ec51ae7c8022da085061a8b4c5f9e9c20.zip |
fork: fix some -Wmissing-prototypes warnings
[ Upstream commit fb5bf31722d0805a3f394f7d59f2e8cd07acccb7 ]
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 bb9d81264 (arch: remove tile port).
Link: http://lkml.kernel.org/r/1542170087-23645-1-git-send-email-wang.yi59@zte.com.cn
Signed-off-by: Yi Wang <wang.yi59@zte.com.cn>
Acked-by: Michal Hocko <mhocko@suse.com>
Acked-by: Mike Rapoport <rppt@linux.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'init')
-rw-r--r-- | init/main.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/init/main.c b/init/main.c index 020972fed117..38a603f62b7b 100644 --- a/init/main.c +++ b/init/main.c @@ -105,7 +105,6 @@ static int kernel_init(void *); extern void init_IRQ(void); -extern void fork_init(void); extern void radix_tree_init(void); /* |