diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-02-06 07:43:13 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-02-06 07:43:13 -0500 |
commit | b2faf597d93bdf5e2d12d93ea0815935a73f749e (patch) | |
tree | 1876616290ff282b8a0814e2429d23e0104f3701 /Documentation/RCU/checklist.txt | |
parent | 638e174688f58200d0deb7435093435e7d737b09 (diff) | |
parent | 410c05427a69f53851637ccb85c2212131409fbd (diff) |
Merge branch 'origin'
Diffstat (limited to 'Documentation/RCU/checklist.txt')
-rw-r--r-- | Documentation/RCU/checklist.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Documentation/RCU/checklist.txt b/Documentation/RCU/checklist.txt index e118a7c1a092..49e27cc19385 100644 --- a/Documentation/RCU/checklist.txt +++ b/Documentation/RCU/checklist.txt | |||
@@ -177,3 +177,9 @@ over a rather long period of time, but improvements are always welcome! | |||
177 | 177 | ||
178 | If you want to wait for some of these other things, you might | 178 | If you want to wait for some of these other things, you might |
179 | instead need to use synchronize_irq() or synchronize_sched(). | 179 | instead need to use synchronize_irq() or synchronize_sched(). |
180 | |||
181 | 12. Any lock acquired by an RCU callback must be acquired elsewhere | ||
182 | with irq disabled, e.g., via spin_lock_irqsave(). Failing to | ||
183 | disable irq on a given acquisition of that lock will result in | ||
184 | deadlock as soon as the RCU callback happens to interrupt that | ||
185 | acquisition's critical section. | ||