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

Delete duplicate words from kernel docs

I have deleted duplicate words like

to, guest, trace, when, we

Signed-off-by: Akhil Raj <lf32.dev@gmail.com>
Link: https://lore.kernel.org/r/20220829065239.4531-1-lf32.dev@gmail.com
Signed-off-by: Jonathan Corbet <corbet@lwn.net>

authored by

Akhil Raj and committed by
Jonathan Corbet
7f77ebbf 32a3a9db

+6 -6
+1 -1
Documentation/RCU/checklist.rst
··· 477 477 So if you need to wait for both an RCU grace period and for 478 478 all pre-existing call_rcu() callbacks, you will need to execute 479 479 both rcu_barrier() and synchronize_rcu(), if necessary, using 480 - something like workqueues to to execute them concurrently. 480 + something like workqueues to execute them concurrently. 481 481 482 482 See rcubarrier.rst for more information.
+1 -1
Documentation/RCU/lockdep.rst
··· 61 61 rcu_access_pointer(p): 62 62 Return the value of the pointer and omit all barriers, 63 63 but retain the compiler constraints that prevent duplicating 64 - or coalescsing. This is useful when when testing the 64 + or coalescsing. This is useful when testing the 65 65 value of the pointer itself, for example, against NULL. 66 66 67 67 The rcu_dereference_check() check expression can be any boolean
+1 -1
Documentation/bpf/instruction-set.rst
··· 133 133 The byte swap instructions operate on the destination register 134 134 only and do not use a separate source register or immediate value. 135 135 136 - The 1-bit source operand field in the opcode is used to to select what byte 136 + The 1-bit source operand field in the opcode is used to select what byte 137 137 order the operation convert from or to: 138 138 139 139 ========= ===== =================================================
+1 -1
Documentation/trace/histogram.rst
··· 412 412 Because the default sort key above is 'hitcount', the above shows a 413 413 the list of call_sites by increasing hitcount, so that at the bottom 414 414 we see the functions that made the most kmalloc calls during the 415 - run. If instead we we wanted to see the top kmalloc callers in 415 + run. If instead we wanted to see the top kmalloc callers in 416 416 terms of the number of bytes requested rather than the number of 417 417 calls, and we wanted the top caller to appear at the top, we can use 418 418 the 'sort' parameter, along with the 'descending' modifier::
+1 -1
Documentation/trace/timerlat-tracer.rst
··· 20 20 [root@f32 ~]# cd /sys/kernel/tracing/ 21 21 [root@f32 tracing]# echo timerlat > current_tracer 22 22 23 - It is possible to follow the trace by reading the trace trace file:: 23 + It is possible to follow the trace by reading the trace file:: 24 24 25 25 [root@f32 tracing]# cat trace 26 26 # tracer: timerlat
+1 -1
Documentation/virt/kvm/x86/mmu.rst
··· 377 377 ================ 378 378 379 379 If tdp is not enabled, the host must keep cr0.wp=1 so page write protection 380 - works for the guest kernel, not guest guest userspace. When the guest 380 + works for the guest kernel, not guest userspace. When the guest 381 381 cr0.wp=1, this does not present a problem. However when the guest cr0.wp=0, 382 382 we cannot map the permissions for gpte.u=1, gpte.w=0 to any spte (the 383 383 semantics require allowing any guest kernel access plus user read access).