Release 4.11 arch/x86/lib/cache-smp.c
#include <linux/smp.h>
#include <linux/export.h>
static void __wbinvd(void *dummy)
{
wbinvd();
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Borislav Petkov | 13 | 100.00% | 1 | 100.00% |
Total | 13 | 100.00% | 1 | 100.00% |
void wbinvd_on_cpu(int cpu)
{
smp_call_function_single(cpu, __wbinvd, NULL, 1);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Borislav Petkov | 19 | 100.00% | 1 | 100.00% |
Total | 19 | 100.00% | 1 | 100.00% |
EXPORT_SYMBOL(wbinvd_on_cpu);
int wbinvd_on_all_cpus(void)
{
return on_each_cpu(__wbinvd, NULL, 1);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Borislav Petkov | 17 | 100.00% | 1 | 100.00% |
Total | 17 | 100.00% | 1 | 100.00% |
EXPORT_SYMBOL(wbinvd_on_all_cpus);
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Borislav Petkov | 64 | 98.46% | 1 | 50.00% |
Paul Gortmaker | 1 | 1.54% | 1 | 50.00% |
Total | 65 | 100.00% | 2 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.