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: Fix typos and grammatical errors

Fix various typos and grammatical errors across documentation files:

- Fix missing preposition 'in' in process/changes.rst
- Correct 'result by' to 'result from' in admin-guide/README.rst
- Fix 'before hand' to 'beforehand' in cgroup-v1/hugetlb.rst
- Correct 'allows to limit' to 'allows limiting' in hugetlb.rst,
cgroup-v2.rst, and kconfig-language.rst
- Fix 'needs precisely know' to 'needs to precisely know'
- Correct 'overcommited' to 'overcommitted' in hugetlb.rst
- Fix subject-verb agreement: 'never causes' to 'never cause'
- Fix 'there is enough' to 'there are enough' in hugetlb.rst
- Fix 'metadatas' to 'metadata' in filesystems/erofs.rst
- Fix 'hardwares' to 'hardware' in scsi/ChangeLog.sym53c8xx

Signed-off-by: Nauman Sabir <officialnaumansabir@gmail.com>
Acked-by: Tejun Heo <tj@kernel.org>
Message-ID: <20260115230110.7734-1-officialnaumansabir@gmail.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>

authored by

Nauman Sabir and committed by
Jonathan Corbet
89136329 a02857e7

+17 -17
+1 -1
Documentation/admin-guide/README.rst
··· 53 53 these typically contain kernel-specific installation notes for some 54 54 drivers for example. Please read the 55 55 :ref:`Documentation/process/changes.rst <changes>` file, as it 56 - contains information about the problems, which may result by upgrading 56 + contains information about the problems which may result from upgrading 57 57 your kernel. 58 58 59 59 Installing the kernel source
+9 -9
Documentation/admin-guide/cgroup-v1/hugetlb.rst
··· 77 77 doesn't support page reclaim, enforcing the limit at page fault time implies 78 78 that, the application will get SIGBUS signal if it tries to fault in HugeTLB 79 79 pages beyond its limit. Therefore the application needs to know exactly how many 80 - HugeTLB pages it uses before hand, and the sysadmin needs to make sure that 80 + HugeTLB pages it uses beforehand, and the sysadmin needs to make sure that 81 81 there are enough available on the machine for all the users to avoid processes 82 82 getting SIGBUS. 83 83 ··· 91 91 hugetlb.<hugepagesize>.rsvd.usage_in_bytes 92 92 hugetlb.<hugepagesize>.rsvd.failcnt 93 93 94 - The HugeTLB controller allows to limit the HugeTLB reservations per control 94 + The HugeTLB controller allows limiting the HugeTLB reservations per control 95 95 group and enforces the controller limit at reservation time and at the fault of 96 96 HugeTLB memory for which no reservation exists. Since reservation limits are 97 - enforced at reservation time (on mmap or shget), reservation limits never causes 98 - the application to get SIGBUS signal if the memory was reserved before hand. For 97 + enforced at reservation time (on mmap or shget), reservation limits never cause 98 + the application to get SIGBUS signal if the memory was reserved beforehand. For 99 99 MAP_NORESERVE allocations, the reservation limit behaves the same as the fault 100 100 limit, enforcing memory usage at fault time and causing the application to 101 101 receive a SIGBUS if it's crossing its limit. 102 102 103 103 Reservation limits are superior to page fault limits described above, since 104 104 reservation limits are enforced at reservation time (on mmap or shget), and 105 - never causes the application to get SIGBUS signal if the memory was reserved 106 - before hand. This allows for easier fallback to alternatives such as 105 + never cause the application to get SIGBUS signal if the memory was reserved 106 + beforehand. This allows for easier fallback to alternatives such as 107 107 non-HugeTLB memory for example. In the case of page fault accounting, it's very 108 - hard to avoid processes getting SIGBUS since the sysadmin needs precisely know 109 - the HugeTLB usage of all the tasks in the system and make sure there is enough 110 - pages to satisfy all requests. Avoiding tasks getting SIGBUS on overcommited 108 + hard to avoid processes getting SIGBUS since the sysadmin needs to precisely know 109 + the HugeTLB usage of all the tasks in the system and make sure there are enough 110 + pages to satisfy all requests. Avoiding tasks getting SIGBUS on overcommitted 111 111 systems is practically impossible with page fault accounting. 112 112 113 113
+1 -1
Documentation/admin-guide/cgroup-v2.rst
··· 2816 2816 HugeTLB 2817 2817 ------- 2818 2818 2819 - The HugeTLB controller allows to limit the HugeTLB usage per control group and 2819 + The HugeTLB controller allows limiting the HugeTLB usage per control group and 2820 2820 enforces the controller limit during page fault. 2821 2821 2822 2822 HugeTLB Interface Files
+1 -1
Documentation/filesystems/erofs.rst
··· 154 154 0 +1K 155 155 156 156 All data areas should be aligned with the block size, but metadata areas 157 - may not. All metadatas can be now observed in two different spaces (views): 157 + may not. All metadata can be now observed in two different spaces (views): 158 158 159 159 1. Inode metadata space 160 160
+1 -1
Documentation/kbuild/kconfig-language.rst
··· 216 216 217 217 - numerical ranges: "range" <symbol> <symbol> ["if" <expr>] 218 218 219 - This allows to limit the range of possible input values for int 219 + This allows limiting the range of possible input values for int 220 220 and hex symbols. The user can only input a value which is larger than 221 221 or equal to the first symbol and smaller than or equal to the second 222 222 symbol.
+1 -1
Documentation/process/changes.rst
··· 218 218 Linux documentation for functions is transitioning to inline 219 219 documentation via specially-formatted comments near their 220 220 definitions in the source. These comments can be combined with ReST 221 - files the Documentation/ directory to make enriched documentation, which can 221 + files in the Documentation/ directory to make enriched documentation, which can 222 222 then be converted to PostScript, HTML, LaTex, ePUB and PDF files. 223 223 In order to convert from ReST format to a format of your choice, you'll need 224 224 Sphinx.
+3 -3
Documentation/scsi/ChangeLog.sym53c8xx
··· 2 2 * version sym53c8xx-1.7.3c 3 3 - Ensure LEDC bit in GPCNTL is cleared when reading the NVRAM. 4 4 Fix sent by Stig Telfer <stig@api-networks.com>. 5 - - Backport from SYM-2 the work-around that allows to support 6 - hardwares that fail PCI parity checking. 7 - - Check that we received at least 8 bytes of INQUIRY response 5 + - Backport from SYM-2 the work-around that allows to support 6 + hardware that fails PCI parity checking. 7 + - Check that we received at least 8 bytes of INQUIRY response 8 8 for byte 7, that contains device capabilities, to be valid. 9 9 - Define scsi_set_pci_device() as nil for kernel < 2.4.4. 10 10 - + A couple of minor changes.