diff options
author | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-10-18 10:12:27 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-10-24 08:12:35 -0200 |
commit | 8c27ceff3604b249a9efafbd1bd8b141b79e619d (patch) | |
tree | 82e4ab0c2825fa25c3168e648268883c0b23ee30 /Documentation/atomic_ops.txt | |
parent | 9d85025b0418163fae079c9ba8f8445212de8568 (diff) | |
download | linux-stable-8c27ceff3604b249a9efafbd1bd8b141b79e619d.tar.gz linux-stable-8c27ceff3604b249a9efafbd1bd8b141b79e619d.tar.bz2 linux-stable-8c27ceff3604b249a9efafbd1bd8b141b79e619d.zip |
docs: fix locations of several documents that got moved
The previous patch renamed several files that are cross-referenced
along the Kernel documentation. Adjust the links to point to
the right places.
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'Documentation/atomic_ops.txt')
-rw-r--r-- | Documentation/atomic_ops.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/atomic_ops.txt b/Documentation/atomic_ops.txt index c9d1cacb4395..7281bf939779 100644 --- a/Documentation/atomic_ops.txt +++ b/Documentation/atomic_ops.txt @@ -16,7 +16,7 @@ will fail. Something like the following should suffice: typedef struct { long counter; } atomic_long_t; Historically, counter has been declared volatile. This is now discouraged. -See Documentation/volatile-considered-harmful.txt for the complete rationale. +See Documentation/process/volatile-considered-harmful.rst for the complete rationale. local_t is very similar to atomic_t. If the counter is per CPU and only updated by one CPU, local_t is probably more appropriate. Please see |