diff --git a/Documentation/RCU/Design/Requirements/Requirements.html b/Documentation/RCU/Design/Requirements/Requirements.html index 999b3ed3444e..f60adf112663 100644 --- a/Documentation/RCU/Design/Requirements/Requirements.html +++ b/Documentation/RCU/Design/Requirements/Requirements.html @@ -659,8 +659,9 @@ systems with more than one CPU: In other words, a given instance of synchronize_rcu() can avoid waiting on a given RCU read-side critical section only if it can prove that synchronize_rcu() started first. + -
+
A related question is “When rcu_read_lock() doesn't generate any code, why does it matter how it relates to a grace period?” @@ -675,8 +676,9 @@ systems with more than one CPU: within the critical section, in which case none of the accesses within the critical section may observe the effects of any access following the grace period. + -
+
As of late 2016, mathematical models of RCU take this
viewpoint, for example, see slides 62 and 63
of the
@@ -1616,8 +1618,8 @@ CPUs should at least make reasonable forward progress.
In return for its shorter latencies, synchronize_rcu_expedited()
is permitted to impose modest degradation of real-time latency
on non-idle online CPUs.
-That said, it will likely be necessary to take further steps to reduce this
-degradation, hopefully to roughly that of a scheduling-clock interrupt.
+Here, “modest” means roughly the same latency
+degradation as a scheduling-clock interrupt.
There are a number of situations where even
@@ -1913,12 +1915,9 @@ This requirement is another factor driving batching of grace periods,
but it is also the driving force behind the checks for large numbers
of queued RCU callbacks in the call_rcu() code path.
Finally, high update rates should not delay RCU read-side critical
-sections, although some read-side delays can occur when using
+sections, although some small read-side delays can occur when using
synchronize_rcu_expedited(), courtesy of this function's use
-of try_stop_cpus().
-(In the future, synchronize_rcu_expedited() will be
-converted to use lighter-weight inter-processor interrupts (IPIs),
-but this will still disturb readers, though to a much smaller degree.)
+of smp_call_function_single().
Although all three of these corner cases were understood in the early
@@ -2192,7 +2191,7 @@ Unfortunately, synchronize_rcu() can't do this until all of
its kthreads are spawned, which doesn't happen until some time during
early_initcalls() time.
But this is no excuse: RCU is nevertheless required to correctly handle
-synchronous grace periods during this time period, which it currently does.
+synchronous grace periods during this time period.
Once all of its kthreads are up and running, RCU starts running
normally.
@@ -2206,8 +2205,10 @@ normally.
During the “dead zone” between the time that the
+
+ During the “dead zone” between the time that the
scheduler spawns the first task and the time that all of RCU's
kthreads have been spawned, all synchronous grace periods are
handled by the expedited grace-period mechanism.
@@ -2220,8 +2221,10 @@ normally.
using workqueues, as is required to avoid problems that would
otherwise occur when a user task received a POSIX signal while
driving an expedited grace period.
+
- And yes, this does mean that it is unhelpful to send POSIX
+
+ And yes, this does mean that it is unhelpful to send POSIX
signals to random tasks between the time that the scheduler
spawns its first kthread and the time that RCU's kthreads
have all been spawned.
@@ -2308,12 +2311,61 @@ situation, and Dipankar Sarma incorporated rcu_barrier() into RCU.
The need for rcu_barrier() for module unloading became
apparent later.
+
+Important note: The rcu_barrier() function is not,
+repeat, not, obligated to wait for a grace period.
+It is instead only required to wait for RCU callbacks that have
+already been posted.
+Therefore, if there are no RCU callbacks posted anywhere in the system,
+rcu_barrier() is within its rights to return immediately.
+Even if there are callbacks posted, rcu_barrier() does not
+necessarily need to wait for a grace period.
+
+
+ Yes, each RCU callbacks must wait for a grace period to complete,
+ but it might well be partly (or even completely) finished waiting
+ by the time rcu_barrier() is invoked.
+ In that case, rcu_barrier() need only wait for the
+ remaining portion of the grace period to elapse.
+ So even if there are quite a few callbacks posted,
+ rcu_barrier() might well return quite quickly.
+
+
+
+ So if you need to wait for a grace period as well as for all
+ pre-existing callbacks, you will need to invoke both
+ synchronize_rcu() and rcu_barrier().
+ If latency is a concern, you can always use workqueues
+ to invoke them concurrently.
+
The Linux kernel supports CPU hotplug, which means that CPUs
can come and go.
-It is of course illegal to use any RCU API member from an offline CPU.
+It is of course illegal to use any RCU API member from an offline CPU,
+with the exception of SRCU read-side
+critical sections.
This requirement was present from day one in DYNIX/ptx, but
on the other hand, the Linux kernel's CPU-hotplug implementation
is “interesting.”
@@ -2323,19 +2375,18 @@ The Linux-kernel CPU-hotplug implementation has notifiers that
are used to allow the various kernel subsystems (including RCU)
to respond appropriately to a given CPU-hotplug operation.
Most RCU operations may be invoked from CPU-hotplug notifiers,
-including even normal synchronous grace-period operations
-such as synchronize_rcu().
-However, expedited grace-period operations such as
-synchronize_rcu_expedited() are not supported,
-due to the fact that current implementations block CPU-hotplug
-operations, which could result in deadlock.
+including even synchronous grace-period operations such as
+synchronize_rcu() and synchronize_rcu_expedited().
-In addition, all-callback-wait operations such as
+However, all-callback-wait operations such as
rcu_barrier() are also not supported, due to the
fact that there are phases of CPU-hotplug operations where
the outgoing CPU's callbacks will not be invoked until after
the CPU-hotplug operation ends, which could also result in deadlock.
+Furthermore, rcu_barrier() blocks CPU-hotplug operations
+during its execution, which results in another type of deadlock
+when invoked from a CPU-hotplug notifier.
+Also unlike other RCU flavors, SRCU's callbacks-wait function
+srcu_barrier() may be invoked from CPU-hotplug notifiers,
+though this is not necessarily a good idea.
+The reason that this is possible is that SRCU is insensitive
+to whether or not a CPU is online, which means that srcu_barrier()
+need not exclude CPU-hotplug operations.
+
+
+As of v4.12, SRCU's callbacks are maintained per-CPU, eliminating
+a locking bottleneck present in prior kernel versions.
+Although this will allow users to put much heavier stress on
+call_srcu(), it is important to note that SRCU does not
+yet take any special steps to deal with callback flooding.
+So if you are posting (say) 10,000 SRCU callbacks per second per CPU,
+you are probably totally OK, but if you intend to post (say) 1,000,000
+SRCU callbacks per second per CPU, please run some tests first.
+SRCU just might need a few adjustment to deal with that sort of load.
+Of course, your mileage may vary based on the speed of your CPUs and
+the size of your memory.
+
The
SRCU API
@@ -3034,8 +3106,8 @@ to do some redesign to avoid this scalability problem.
RCU disables CPU hotplug in a few places, perhaps most notably in the
-expedited grace-period and rcu_barrier() operations.
-If there is a strong reason to use expedited grace periods in CPU-hotplug
+rcu_barrier() operations.
+If there is a strong reason to use rcu_barrier() in CPU-hotplug
notifiers, it will be necessary to avoid disabling CPU hotplug.
This would introduce some complexity, so there had better be a very
good reason.
@@ -3109,9 +3181,5 @@ Andy Lutomirski for their help in rendering
this article human readable, and to Michelle Rankin for her support
of this effort.
Other contributions are acknowledged in the Linux kernel's git archive.
-The cartoon is copyright (c) 2013 by Melissa Broussard,
-and is provided
-under the terms of the Creative Commons Attribution-Share Alike 3.0
-United States license.
Answer:
Very carefully!
+
-
+
+
+
+Quick Quiz:
+
+ Wait a minute!
+ Each RCU callbacks must wait for a grace period to complete,
+ and rcu_barrier() must wait for each pre-existing
+ callback to be invoked.
+ Doesn't rcu_barrier() therefore need to wait for
+ a full grace period if there is even one callback posted anywhere
+ in the system?
+
+Answer:
+
+ Absolutely not!!!
+
+
+
+ Hotplug CPU
Scheduler and RCU
@@ -2876,6 +2927,27 @@ It also motivates the smp_mb__after_srcu_read_unlock()
API, which, in combination with srcu_read_unlock(),
guarantees a full memory barrier.
+