docs: fix locations of several documents that got moved
[linux-2.6-block.git] / Documentation / atomic_ops.txt
index c9d1cacb439590a02dbfb1282cbe0d3abe3a9b0d..7281bf939779b8f12acb6aa4c7f754cf2334b9fc 100644 (file)
@@ -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