hc
2023-12-11 6778948f9de86c3cfaf36725a7c87dcff9ba247f
kernel/arch/powerpc/include/asm/livepatch.h
....@@ -1,33 +1,17 @@
1
+/* SPDX-License-Identifier: GPL-2.0-or-later */
12 /*
23 * livepatch.h - powerpc-specific Kernel Live Patching Core
34 *
45 * 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/>.
186 */
197 #ifndef _ASM_POWERPC_LIVEPATCH_H
208 #define _ASM_POWERPC_LIVEPATCH_H
219
2210 #include <linux/module.h>
2311 #include <linux/ftrace.h>
12
+#include <linux/sched/task_stack.h>
2413
2514 #ifdef CONFIG_LIVEPATCH
26
-static inline int klp_check_compiler_support(void)
27
-{
28
- return 0;
29
-}
30
-
3115 static inline void klp_arch_set_pc(struct pt_regs *regs, unsigned long ip)
3216 {
3317 regs->nip = ip;
....@@ -43,13 +27,13 @@
4327 return ftrace_location_range(faddr, faddr + 16);
4428 }
4529
46
-static inline void klp_init_thread_info(struct thread_info *ti)
30
+static inline void klp_init_thread_info(struct task_struct *p)
4731 {
4832 /* + 1 to account for STACK_END_MAGIC */
49
- ti->livepatch_sp = (unsigned long *)(ti + 1) + 1;
33
+ task_thread_info(p)->livepatch_sp = end_of_stack(p) + 1;
5034 }
5135 #else
52
-static void klp_init_thread_info(struct thread_info *ti) { }
36
+static inline void klp_init_thread_info(struct task_struct *p) { }
5337 #endif /* CONFIG_LIVEPATCH */
5438
5539 #endif /* _ASM_POWERPC_LIVEPATCH_H */