projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6454b3b
)
x86: Remove unused parameter of prepare_switch_to
author
rodrigosiqueira
<rodrigosiqueiramelo@gmail.com>
Fri, 15 Dec 2017 13:15:33 +0000
(11:15 -0200)
committer
Thomas Gleixner
<tglx@linutronix.de>
Wed, 27 Dec 2017 19:37:41 +0000
(20:37 +0100)
Commit
e37e43a497d5
("x86/mm/64: Enable vmapped stacks
(CONFIG_HAVE_ARCH_VMAP_STACK=y)") added prepare_switch_to with one extra
parameter which is not used by the function, remove it.
Signed-off-by: Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: kernel-janitors@vger.kernel.org
Link:
https://lkml.kernel.org/r/20171215131533.hp6kqebw45o7uvsb@smtp.gmail.com
arch/x86/include/asm/switch_to.h
patch
|
blob
|
history
diff --git
a/arch/x86/include/asm/switch_to.h
b/arch/x86/include/asm/switch_to.h
index 8c6bd6863db9d6b737cd0649324c154f9b9798a3..1008d462270980bcb9bf2111fa69725677794b91 100644
(file)
--- a/
arch/x86/include/asm/switch_to.h
+++ b/
arch/x86/include/asm/switch_to.h
@@
-16,8
+16,7
@@
void __switch_to_xtra(struct task_struct *prev_p, struct task_struct *next_p,
struct tss_struct *tss);
/* This runs runs on the previous thread's stack. */
-static inline void prepare_switch_to(struct task_struct *prev,
- struct task_struct *next)
+static inline void prepare_switch_to(struct task_struct *next)
{
#ifdef CONFIG_VMAP_STACK
/*
@@
-70,7
+69,7
@@
struct fork_frame {
#define switch_to(prev, next, last) \
do { \
- prepare_switch_to(
prev, next);
\
+ prepare_switch_to(
next);
\
\
((last) = __switch_to_asm((prev), (next))); \
} while (0)