]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - arch/powerpc/include/asm/livepatch.h
Merge tag 'powerpc-5.2-2' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc...
[mirror_ubuntu-hirsute-kernel.git] / arch / powerpc / include / asm / livepatch.h
CommitLineData
f63e6d89
ME
1/*
2 * livepatch.h - powerpc-specific Kernel Live Patching Core
3 *
4 * Copyright (C) 2015-2016, SUSE, IBM Corp.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
18 */
19#ifndef _ASM_POWERPC_LIVEPATCH_H
20#define _ASM_POWERPC_LIVEPATCH_H
21
22#include <linux/module.h>
23#include <linux/ftrace.h>
ed1cd6de 24#include <linux/sched/task_stack.h>
f63e6d89
ME
25
26#ifdef CONFIG_LIVEPATCH
f63e6d89
ME
27static inline void klp_arch_set_pc(struct pt_regs *regs, unsigned long ip)
28{
29 regs->nip = ip;
30}
31
32#define klp_get_ftrace_location klp_get_ftrace_location
33static inline unsigned long klp_get_ftrace_location(unsigned long faddr)
34{
35 /*
36 * Live patch works only with -mprofile-kernel on PPC. In this case,
37 * the ftrace location is always within the first 16 bytes.
38 */
39 return ftrace_location_range(faddr, faddr + 16);
40}
5d31a96e 41
ed1cd6de 42static inline void klp_init_thread_info(struct task_struct *p)
5d31a96e
ME
43{
44 /* + 1 to account for STACK_END_MAGIC */
ed1cd6de 45 task_thread_info(p)->livepatch_sp = end_of_stack(p) + 1;
5d31a96e
ME
46}
47#else
ed1cd6de 48static inline void klp_init_thread_info(struct task_struct *p) { }
f63e6d89
ME
49#endif /* CONFIG_LIVEPATCH */
50
51#endif /* _ASM_POWERPC_LIVEPATCH_H */