diff options
| author | Denys Vlasenko <[email protected]> | 2015-09-28 14:23:57 +0200 |
|---|---|---|
| committer | Thomas Gleixner <[email protected]> | 2015-09-30 21:54:40 +0200 |
| commit | dae0f305d61b07933a129dfe975342f3177277d5 (patch) | |
| tree | 21c79885f9c49ea0563585dd3db54a1072b3febd | |
| parent | c368ef2866adbfc0e90fdecc09e3b3fe2cddcd14 (diff) | |
x86/signal: Deinline get_sigframe, save 240 bytes
This function compiles to 277 bytes of machine code and has 4 callsites.
Signed-off-by: Denys Vlasenko <[email protected]>
Cc: Andy Lutomirski <[email protected]>
Cc: Borislav Petkov <[email protected]>
Cc: Brian Gerst <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Thomas Gleixner <[email protected]>
| -rw-r--r-- | arch/x86/kernel/signal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/signal.c b/arch/x86/kernel/signal.c index da52e6bb5c7f..2c3336b6b264 100644 --- a/arch/x86/kernel/signal.c +++ b/arch/x86/kernel/signal.c @@ -196,7 +196,7 @@ static unsigned long align_sigframe(unsigned long sp) return sp; } -static inline void __user * +static void __user * get_sigframe(struct k_sigaction *ka, struct pt_regs *regs, size_t frame_size, void __user **fpstate) { |