-
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.
core, x86: Add user return notifiers
Add a general per-cpu notifier that is called whenever the kernel is about to return to userspace. The notifier uses a thread_info flag and existing checks, so there is no impact on user return or context switch fast paths. This will be used initially to speed up KVM task switching by lazily updating MSRs. Signed-off-by: Avi Kivity <avi@redhat.com> LKML-Reference: <1253342422-13811-1-git-send-email-avi@redhat.com> Signed-off-by: H. Peter Anvin <hpa@zytor.com>
- Loading branch information
Avi Kivity
authored and
H. Peter Anvin
committed
Oct 1, 2009
1 parent
817b33d
commit 7c68af6
Showing
7 changed files
with
109 additions
and
2 deletions.
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
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,42 @@ | ||
#ifndef _LINUX_USER_RETURN_NOTIFIER_H | ||
#define _LINUX_USER_RETURN_NOTIFIER_H | ||
|
||
#ifdef CONFIG_USER_RETURN_NOTIFIER | ||
|
||
#include <linux/list.h> | ||
#include <linux/sched.h> | ||
|
||
struct user_return_notifier { | ||
void (*on_user_return)(struct user_return_notifier *urn); | ||
struct hlist_node link; | ||
}; | ||
|
||
|
||
void user_return_notifier_register(struct user_return_notifier *urn); | ||
void user_return_notifier_unregister(struct user_return_notifier *urn); | ||
|
||
static inline void propagate_user_return_notify(struct task_struct *prev, | ||
struct task_struct *next) | ||
{ | ||
if (test_tsk_thread_flag(prev, TIF_USER_RETURN_NOTIFY)) { | ||
clear_tsk_thread_flag(prev, TIF_USER_RETURN_NOTIFY); | ||
set_tsk_thread_flag(next, TIF_USER_RETURN_NOTIFY); | ||
} | ||
} | ||
|
||
void fire_user_return_notifiers(void); | ||
|
||
#else | ||
|
||
struct user_return_notifier {}; | ||
|
||
static inline void propagate_user_return_notify(struct task_struct *prev, | ||
struct task_struct *next) | ||
{ | ||
} | ||
|
||
static inline void fire_user_return_notifiers(void) {} | ||
|
||
#endif | ||
|
||
#endif |
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,46 @@ | ||
|
||
#include <linux/user-return-notifier.h> | ||
#include <linux/percpu.h> | ||
#include <linux/sched.h> | ||
#include <linux/module.h> | ||
|
||
static DEFINE_PER_CPU(struct hlist_head, return_notifier_list); | ||
|
||
#define URN_LIST_HEAD per_cpu(return_notifier_list, raw_smp_processor_id()) | ||
|
||
/* | ||
* Request a notification when the current cpu returns to userspace. Must be | ||
* called in atomic context. The notifier will also be called in atomic | ||
* context. | ||
*/ | ||
void user_return_notifier_register(struct user_return_notifier *urn) | ||
{ | ||
set_tsk_thread_flag(current, TIF_USER_RETURN_NOTIFY); | ||
hlist_add_head(&urn->link, &URN_LIST_HEAD); | ||
} | ||
EXPORT_SYMBOL_GPL(user_return_notifier_register); | ||
|
||
/* | ||
* Removes a registered user return notifier. Must be called from atomic | ||
* context, and from the same cpu registration occured in. | ||
*/ | ||
void user_return_notifier_unregister(struct user_return_notifier *urn) | ||
{ | ||
hlist_del(&urn->link); | ||
if (hlist_empty(&URN_LIST_HEAD)) | ||
clear_tsk_thread_flag(current, TIF_USER_RETURN_NOTIFY); | ||
} | ||
EXPORT_SYMBOL_GPL(user_return_notifier_unregister); | ||
|
||
/* Calls registered user return notifiers */ | ||
void fire_user_return_notifiers(void) | ||
{ | ||
struct user_return_notifier *urn; | ||
struct hlist_node *tmp1, *tmp2; | ||
struct hlist_head *head; | ||
|
||
head = &get_cpu_var(return_notifier_list); | ||
hlist_for_each_entry_safe(urn, tmp1, tmp2, head, link) | ||
urn->on_user_return(urn); | ||
put_cpu_var(); | ||
} |