Release 4.14 arch/x86/lib/cache-smp.c
// SPDX-License-Identifier: GPL-2.0
#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 | 96.97% | 1 | 33.33% |
Greg Kroah-Hartman | 1 | 1.52% | 1 | 33.33% |
Paul Gortmaker | 1 | 1.52% | 1 | 33.33% |
Total | 66 | 100.00% | 3 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.