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.

Documentation: Remove redundant file names from examples

Since most examples use the ddcmd alias, remove the redundant file names

Signed-off-by: Rex Nie <rex.nie@jaguarmicro.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Link: https://lore.kernel.org/r/20231213073735.2850-1-rex.nie@jaguarmicro.com

authored by

Rex Nie and committed by
Jonathan Corbet
121d0ba2 99aa6117

+3 -3
+3 -3
Documentation/admin-guide/dynamic-debug-howto.rst
··· 321 321 :#> ddcmd 'format "nfsd: READ" +p' 322 322 323 323 // enable messages in files of which the paths include string "usb" 324 - :#> ddcmd 'file *usb* +p' > /proc/dynamic_debug/control 324 + :#> ddcmd 'file *usb* +p' 325 325 326 326 // enable all messages 327 - :#> ddcmd '+p' > /proc/dynamic_debug/control 327 + :#> ddcmd '+p' 328 328 329 329 // add module, function to all enabled messages 330 - :#> ddcmd '+mf' > /proc/dynamic_debug/control 330 + :#> ddcmd '+mf' 331 331 332 332 // boot-args example, with newlines and comments for readability 333 333 Kernel command line: ...