// SPDX-License-Identifier: GPL-2.0 /* * Copyright IBM Corp. 2012 * Author(s): Jan Glauber <jang@linux.vnet.ibm.com> */ #include <linux/kernel.h> #include <linux/syscalls.h> #include <linux/signal.h> #include <linux/mm.h> #include <linux/slab.h> #include <linux/init.h> #include <linux/errno.h> #include <linux/kernel_stat.h> #include <linux/sched/task_stack.h> #include <asm/runtime_instr.h> #include <asm/cpu_mf.h> #include <asm/irq.h> #include "entry.h" /* empty control block to disable RI by loading it */ struct runtime_instr_cb runtime_instr_empty_cb;
void runtime_instr_release(struct task_struct *tsk) { kfree(tsk->thread.ri_cb); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Heiko Carstens | 19 | 100.00% | 1 | 100.00% |
Total | 19 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Heiko Carstens | 45 | 59.21% | 1 | 50.00% |
Jan Glauber | 31 | 40.79% | 1 | 50.00% |
Total | 76 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Jan Glauber | 47 | 88.68% | 1 | 50.00% |
Alice Frosi | 6 | 11.32% | 1 | 50.00% |
Total | 53 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Jan Glauber | 247 | 73.73% | 1 | 14.29% |
Heiko Carstens | 74 | 22.09% | 2 | 28.57% |
Alice Frosi | 6 | 1.79% | 1 | 14.29% |
Martin Schwidefsky | 4 | 1.19% | 1 | 14.29% |
Ingo Molnar | 3 | 0.90% | 1 | 14.29% |
Greg Kroah-Hartman | 1 | 0.30% | 1 | 14.29% |
Total | 335 | 100.00% | 7 | 100.00% |