Commit bff9e34c authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

docs: fix broken doc references due to renames



Some files got renamed but probably due to some merge conflicts,
a few references still point to the old locations.

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent 08a69058
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
Using hlist_nulls to protect read-mostly linked lists and
objects using SLAB_TYPESAFE_BY_RCU allocations.

Please read the basics in Documentation/RCU/listRCU.txt
Please read the basics in Documentation/RCU/listRCU.rst

Using special makers (called 'nulls') is a convenient way
to solve following problem :
+1 −1
Original line number Diff line number Diff line
@@ -703,4 +703,4 @@ cpus {
    https://www.devicetree.org/specifications/

[6] ARM Linux Kernel documentation - Booting AArch64 Linux
    Documentation/arm64/booting.txt
    Documentation/arm64/booting.rst
+2 −2
Original line number Diff line number Diff line
@@ -82,7 +82,7 @@ itself. The read lock allows many concurrent readers. Anything that
**changes** the list will have to get the write lock.

   NOTE! RCU is better for list traversal, but requires careful
   attention to design detail (see Documentation/RCU/listRCU.txt).
   attention to design detail (see Documentation/RCU/listRCU.rst).

Also, you cannot "upgrade" a read-lock to a write-lock, so if you at _any_
time need to do any changes (even if you don't do it every time), you have
@@ -90,7 +90,7 @@ to get the write-lock at the very beginning.

   NOTE! We are working hard to remove reader-writer spinlocks in most
   cases, so please don't add a new one without consensus.  (Instead, see
   Documentation/RCU/rcu.txt for complete information.)
   Documentation/RCU/rcu.rst for complete information.)

----

+1 −1
Original line number Diff line number Diff line
@@ -548,7 +548,7 @@ There are certain things that the Linux kernel memory barriers do not guarantee:

	[*] For information on bus mastering DMA and coherency please read:

	    Documentation/PCI/pci.rst
	    Documentation/driver-api/pci/pci.rst
	    Documentation/DMA-API-HOWTO.txt
	    Documentation/DMA-API.txt

+1 −1
Original line number Diff line number Diff line
@@ -569,7 +569,7 @@ ACQUIRE 는 해당 오퍼레이션의 로드 부분에만 적용되고 RELEASE

	[*] 버스 마스터링 DMA 와 일관성에 대해서는 다음을 참고하시기 바랍니다:

	    Documentation/PCI/pci.rst
	    Documentation/driver-api/pci/pci.rst
	    Documentation/DMA-API-HOWTO.txt
	    Documentation/DMA-API.txt

Loading