diff options
author | Paul E. McKenney <paulmck@linux.ibm.com> | 2018-11-07 18:25:13 -0500 |
---|---|---|
committer | Paul E. McKenney <paulmck@linux.ibm.com> | 2018-12-01 15:38:51 -0500 |
commit | 4a67e3a79e3bdc47dfd0c85a1888067d95a0282c (patch) | |
tree | d4c78f1e9acf06345ceab3174bd6112c57d441c0 /tools/include/linux/kernel.h | |
parent | dd06d25d06f4932c570540877eba88d868dbba9b (diff) |
tools/kernel.h: Replace synchronize_sched() with synchronize_rcu()
Now that synchronize_rcu() waits for preempt-disable regions of code
as well as RCU read-side critical sections, synchronize_sched() can be
replaced by synchronize_rcu(). This commit therefore makes this change,
even though it is but a comment.
Signed-off-by: Paul E. McKenney <paulmck@linux.ibm.com>
Cc: Matthew Wilcox <willy@infradead.org>
Cc: <linux-kernel@vger.kernel.org>
Diffstat (limited to 'tools/include/linux/kernel.h')
-rw-r--r-- | tools/include/linux/kernel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/include/linux/kernel.h b/tools/include/linux/kernel.h index 6935ef94e77a..857d9e22826e 100644 --- a/tools/include/linux/kernel.h +++ b/tools/include/linux/kernel.h | |||
@@ -116,6 +116,6 @@ int scnprintf(char * buf, size_t size, const char * fmt, ...); | |||
116 | #define round_down(x, y) ((x) & ~__round_mask(x, y)) | 116 | #define round_down(x, y) ((x) & ~__round_mask(x, y)) |
117 | 117 | ||
118 | #define current_gfp_context(k) 0 | 118 | #define current_gfp_context(k) 0 |
119 | #define synchronize_sched() | 119 | #define synchronize_rcu() |
120 | 120 | ||
121 | #endif | 121 | #endif |