Release 4.14 arch/x86/um/tls_64.c
// SPDX-License-Identifier: GPL-2.0
#include <linux/sched.h>
#include <asm/ptrace-abi.h>
void clear_flushed_tls(struct task_struct *task)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Paolo 'Blaisorblade' Giarrusso | 9 | 100.00% | 1 | 100.00% |
Total | 9 | 100.00% | 1 | 100.00% |
int arch_copy_tls(struct task_struct *t)
{
/*
* If CLONE_SETTLS is set, we need to save the thread id
* (which is argument 5, child_tid, of clone) so it can be set
* during context switches.
*/
t->thread.arch.fs = t->thread.regs.regs.gp[R8 / sizeof(long)];
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jeff Dike | 27 | 67.50% | 2 | 66.67% |
Paolo 'Blaisorblade' Giarrusso | 13 | 32.50% | 1 | 33.33% |
Total | 40 | 100.00% | 3 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jeff Dike | 27 | 48.21% | 2 | 33.33% |
Paolo 'Blaisorblade' Giarrusso | 24 | 42.86% | 1 | 16.67% |
Richard Weinberger | 3 | 5.36% | 1 | 16.67% |
Al Viro | 1 | 1.79% | 1 | 16.67% |
Greg Kroah-Hartman | 1 | 1.79% | 1 | 16.67% |
Total | 56 | 100.00% | 6 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.