Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'docs-5.17-3' of git://git.lwn.net/linux

Pull documentation fixes from Jonathan Corbet:
"A few documentation fixes for 5.17"

* tag 'docs-5.17-3' of git://git.lwn.net/linux:
docs/vm: Fix typo in *harden*
Documentation: arm: marvell: Extend Avanta list
docs: fix typo in Documentation/kernel-hacking/locking.rst
docs: Hook the RTLA documents into the kernel docs build

+51 -2
+2
Documentation/arm/marvell.rst
··· 266 266 ------------- 267 267 268 268 Flavors: 269 + - 88F6500 269 270 - 88F6510 270 271 - 88F6530P 271 272 - 88F6550 272 273 - 88F6560 274 + - 88F6601 273 275 274 276 Homepage: 275 277 https://web.archive.org/web/20181005145041/http://www.marvell.com/broadband/
+1
Documentation/index.rst
··· 166 166 .. toctree:: 167 167 :maxdepth: 2 168 168 169 + tools/index 169 170 staging/index 170 171 watch_queue 171 172
+1 -1
Documentation/kernel-hacking/locking.rst
··· 295 295 296 296 - If you are in a process context (any syscall) and want to lock other 297 297 process out, use a mutex. You can take a mutex and sleep 298 - (``copy_from_user*(`` or ``kmalloc(x,GFP_KERNEL)``). 298 + (``copy_from_user()`` or ``kmalloc(x,GFP_KERNEL)``). 299 299 300 300 - Otherwise (== data can be touched in an interrupt), use 301 301 spin_lock_irqsave() and
+20
Documentation/tools/index.rst
··· 1 + .. SPDX-License-Identifier: GPL-2.0 2 + 3 + ============ 4 + Kernel tools 5 + ============ 6 + 7 + This book covers user-space tools that are shipped with the kernel source; 8 + more additions are needed here: 9 + 10 + .. toctree:: 11 + :maxdepth: 1 12 + 13 + rtla/index 14 + 15 + .. only:: subproject and html 16 + 17 + Indices 18 + ======= 19 + 20 + * :ref:`genindex`
+26
Documentation/tools/rtla/index.rst
··· 1 + .. SPDX-License-Identifier: GPL-2.0 2 + 3 + ================================ 4 + The realtime Linux analysis tool 5 + ================================ 6 + 7 + RTLA provides a set of tools for the analysis of the kernel's realtime 8 + behavior on specific hardware. 9 + 10 + .. toctree:: 11 + :maxdepth: 1 12 + 13 + rtla 14 + rtla-osnoise 15 + rtla-osnoise-hist 16 + rtla-osnoise-top 17 + rtla-timerlat 18 + rtla-timerlat-hist 19 + rtla-timerlat-top 20 + 21 + .. only:: subproject and html 22 + 23 + Indices 24 + ======= 25 + 26 + * :ref:`genindex`
+1 -1
Documentation/vm/page_table_check.rst
··· 9 9 Introduction 10 10 ============ 11 11 12 - Page table check allows to hardern the kernel by ensuring that some types of 12 + Page table check allows to harden the kernel by ensuring that some types of 13 13 the memory corruptions are prevented. 14 14 15 15 Page table check performs extra verifications at the time when new pages become