diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2012-11-01 14:03:47 +0400 |
---|---|---|
committer | Minda Chen <minda.chen@starfivetech.com> | 2023-11-06 14:24:51 +0300 |
commit | b824ffe7d30adf721b7ff53b67bf2f90f17164a1 (patch) | |
tree | c5512095b6036fb235d6389430d46cb01328d3e3 /include/linux/entry-common.h | |
parent | 3a2082769702a96b80d8f1c7c6420df7237ec826 (diff) | |
download | linux-b824ffe7d30adf721b7ff53b67bf2f90f17164a1.tar.xz |
x86: Support for lazy preemption
Implement the x86 pieces for lazy preempt.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/linux/entry-common.h')
-rw-r--r-- | include/linux/entry-common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/entry-common.h b/include/linux/entry-common.h index 2e2b8d6140ed..572fac3dd288 100644 --- a/include/linux/entry-common.h +++ b/include/linux/entry-common.h @@ -59,7 +59,7 @@ #define EXIT_TO_USER_MODE_WORK \ (_TIF_SIGPENDING | _TIF_NOTIFY_RESUME | _TIF_UPROBE | \ - _TIF_NEED_RESCHED | _TIF_PATCH_PENDING | _TIF_NOTIFY_SIGNAL | \ + _TIF_NEED_RESCHED_MASK | _TIF_PATCH_PENDING | _TIF_NOTIFY_SIGNAL | \ ARCH_EXIT_TO_USER_MODE_WORK) /** |