-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add wbinvd_on_cpu and wbinvd_on_all_cpus stubs for executing wbinvd on a particular CPU. [ hpa: renamed lib/smp.c to lib/cache-smp.c ] [ hpa: wbinvd_on_all_cpus() returns int, but wbinvd() returns void. Thus, the former cannot be a macro for the latter, replace with an inline function. ] Signed-off-by: Borislav Petkov <borislav.petkov@amd.com> LKML-Reference: <1264172467-25155-2-git-send-email-bp@amd64.org> Signed-off-by: H. Peter Anvin <hpa@zytor.com>
- Loading branch information
Borislav Petkov
authored and
H. Peter Anvin
committed
Jan 23, 2010
1 parent
92dcffb
commit a7b480e
Showing
3 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#include <linux/smp.h> | ||
#include <linux/module.h> | ||
|
||
static void __wbinvd(void *dummy) | ||
{ | ||
wbinvd(); | ||
} | ||
|
||
void wbinvd_on_cpu(int cpu) | ||
{ | ||
smp_call_function_single(cpu, __wbinvd, NULL, 1); | ||
} | ||
EXPORT_SYMBOL(wbinvd_on_cpu); | ||
|
||
int wbinvd_on_all_cpus(void) | ||
{ | ||
return on_each_cpu(__wbinvd, NULL, 1); | ||
} | ||
EXPORT_SYMBOL(wbinvd_on_all_cpus); |