Skip to content

Commit df5cbb2

Browse files
standby24x7Jiri Kosina
authored andcommitted
doc: fix double words
Fix double words "the the" in various files within Documentations. Signed-off-by: Masanari Iida <[email protected]> Signed-off-by: Jiri Kosina <[email protected]>
1 parent 2509671 commit df5cbb2

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

Documentation/filesystems/autofs4-mount-control.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ AUTOFS_DEV_IOCTL_OPENMOUNT and AUTOFS_DEV_IOCTL_CLOSEMOUNT
255255

256256
Obtain and release a file descriptor for an autofs managed mount point
257257
path. The open call requires an initialized struct autofs_dev_ioctl with
258-
the the path field set and the size field adjusted appropriately as well
258+
the path field set and the size field adjusted appropriately as well
259259
as the arg1 field set to the device number of the autofs mount. The
260260
device number can be obtained from the mount options shown in
261261
/proc/mounts. The close call requires an initialized struct

Documentation/futex-requeue-pi.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ pthread_cond_wait_pi(cond, mutex)
6767
lock(cond->__data.__lock);
6868
} while(...)
6969
unlock(cond->__data.__lock);
70-
/* the kernel acquired the the mutex for us */
70+
/* the kernel acquired the mutex for us */
7171
}
7272

7373
pthread_cond_broadcast_pi(cond)

Documentation/input/multi-touch-protocol.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ simple scheme, which is compatible with earlier usage, is:
372372

373373
Rationale: We have no information about the orientation of the touching
374374
ellipse, so approximate it with an inscribed circle instead. The tool
375-
ellipse should align with the the vector (T - C), so the diameter must
375+
ellipse should align with the vector (T - C), so the diameter must
376376
increase with distance(T, C). Finally, assume that the touch diameter is
377377
equal to the tool thickness, and we arrive at the formulas above.
378378

Documentation/kmemcheck.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ initialized. This is the beginning of the struct:
541541
92 } _sifields;
542542
93 } siginfo_t;
543543

544-
On 64-bit, the int is 4 bytes long, so it must the the union member that has
544+
On 64-bit, the int is 4 bytes long, so it must the union member that has
545545
not been initialized. We can verify this using gdb:
546546

547547
$ gdb vmlinux

Documentation/memory-barriers.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1371,7 +1371,7 @@ code. Here are some examples of these sorts of optimizations:
13711371
process_message(msg);
13721372
}
13731373

1374-
There is nothing to prevent the the compiler from transforming
1374+
There is nothing to prevent the compiler from transforming
13751375
process_level() to the following, in fact, this might well be a
13761376
win for single-threaded code:
13771377

Documentation/networking/spider_net.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Thus, in an idle system, the GDACTDPA, tail and head pointers will
7373
all be pointing at the same descr, which should be "empty". All of the
7474
other descrs in the ring should be "empty" as well.
7575

76-
The show_rx_chain() routine will print out the the locations of the
76+
The show_rx_chain() routine will print out the locations of the
7777
GDACTDPA, tail and head pointers. It will also summarize the contents
7878
of the ring, starting at the tail pointer, and listing the status
7979
of the descrs that follow.

Documentation/power/devices.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ When resuming from freeze, standby or memory sleep, the phases are:
391391
the resume methods. This generally involves undoing the actions of the
392392
preceding suspend_late phase.
393393

394-
3 The resume methods should bring the the device back to its operating
394+
3 The resume methods should bring the device back to its operating
395395
state, so that it can perform normal I/O. This generally involves
396396
undoing the actions of the suspend phase.
397397

Documentation/security/Smack.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"Good for you, you've decided to clean the elevator!"
44
- The Elevator, from Dark Star
55

6-
Smack is the the Simplified Mandatory Access Control Kernel.
6+
Smack is the Simplified Mandatory Access Control Kernel.
77
Smack is a kernel based implementation of mandatory access
88
control that includes simplicity in its primary design goals.
99

Documentation/trace/ring-buffer-design.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ against nested writers.
683683
cmpxchg(tail_page, temp_page, next_page)
684684

685685
The above will update the tail page if it is still pointing to the expected
686-
page. If this fails, a nested write pushed it forward, the the current write
686+
page. If this fails, a nested write pushed it forward, the current write
687687
does not need to push it.
688688

689689

Documentation/usb/WUSB-Design-overview.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ updated content.
2525
* Design-overview.txt-1.8
2626

2727
This code implements a Ultra Wide Band stack for Linux, as well as
28-
drivers for the the USB based UWB radio controllers defined in the
28+
drivers for the USB based UWB radio controllers defined in the
2929
Wireless USB 1.0 specification (including Wireless USB host controller
3030
and an Intel WiNET controller).
3131

Documentation/virtual/kvm/api.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1462,7 +1462,7 @@ struct kvm_lapic_state {
14621462
char regs[KVM_APIC_REG_SIZE];
14631463
};
14641464

1465-
Copies the input argument into the the Local APIC registers. The data format
1465+
Copies the input argument into the Local APIC registers. The data format
14661466
and layout are the same as documented in the architecture manual.
14671467

14681468

Documentation/vm/unevictable-lru.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ putback_lru_page() function to add migrated pages back to the LRU.
453453
mmap(MAP_LOCKED) SYSTEM CALL HANDLING
454454
-------------------------------------
455455

456-
In addition the the mlock()/mlockall() system calls, an application can request
456+
In addition the mlock()/mlockall() system calls, an application can request
457457
that a region of memory be mlocked supplying the MAP_LOCKED flag to the mmap()
458458
call. Furthermore, any mmap() call or brk() call that expands the heap by a
459459
task that has previously called mlockall() with the MCL_FUTURE flag will result

0 commit comments

Comments
 (0)