Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
cache-smp.c
Go to the documentation of this file.
1 #include <linux/smp.h>
2 #include <linux/module.h>
3 
4 static void __wbinvd(void *dummy)
5 {
6  wbinvd();
7 }
8 
9 void wbinvd_on_cpu(int cpu)
10 {
11  smp_call_function_single(cpu, __wbinvd, NULL, 1);
12 }
14 
16 {
17  return on_each_cpu(__wbinvd, NULL, 1);
18 }