Re: [PATCH v3] docs: kernel-parameters.txt: Fix whitespace

2018-04-27 Thread Jonathan Corbet
On Wed, 18 Apr 2018 20:51:39 +0200
Thymo van Beers  wrote:

> Some lines used spaces instead of tabs at line start.
> This can cause mangled lines in editors due to inconsistency.
> 
> Replace spaces for tabs where appropriate.

Applied, thanks.

jon
--
To unsubscribe from this list: send the line "unsubscribe linux-doc" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[RESEND PATCH v3] docs: kernel-parameters.txt: Fix whitespace

2018-04-26 Thread Thymo van Beers
Some lines used spaces instead of tabs at line start.
This can cause mangled lines in editors due to inconsistency.

Replace spaces for tabs where appropriate.

Signed-off-by: Thymo van Beers 
Reviewed-by: Randy Dunlap 
---
Changes in v3:
 - Change indentation in intel_pstate to reduce overrunning 80-column
   mark
 - Indent "nohrst, nosrst, norst:" like "rstonce"

Changes in v2:
 - Rebase against docs-next
 - Fix indentation modifications

 Documentation/admin-guide/kernel-parameters.txt | 136 
 1 file changed, 68 insertions(+), 68 deletions(-)

diff --git a/Documentation/admin-guide/kernel-parameters.txt 
b/Documentation/admin-guide/kernel-parameters.txt
index 3487be79847c..865a24e4d516 100644
--- a/Documentation/admin-guide/kernel-parameters.txt
+++ b/Documentation/admin-guide/kernel-parameters.txt
@@ -106,11 +106,11 @@
use by PCI
Format: ,...
 
-   acpi_mask_gpe=  [HW,ACPI]
+   acpi_mask_gpe=  [HW,ACPI]
Due to the existence of _Lxx/_Exx, some GPEs triggered
by unsupported hardware/firmware features can result in
-GPE floodings that cannot be automatically disabled by
-the GPE dispatcher.
+   GPE floodings that cannot be automatically disabled by
+   the GPE dispatcher.
This facility can be used to prevent such uncontrolled
GPE floodings.
Format: 
@@ -472,10 +472,10 @@
for platform specific values (SB1, Loongson3 and
others).
 
-   ccw_timeout_log [S390]
+   ccw_timeout_log [S390]
See Documentation/s390/CommonIO for details.
 
-   cgroup_disable= [KNL] Disable a particular controller
+   cgroup_disable= [KNL] Disable a particular controller
Format: {name of the controller(s) to disable}
The effects of cgroup_disable=foo are:
- foo isn't auto-mounted if you mount all cgroups in
@@ -641,8 +641,8 @@
hvc  Use the hypervisor console device . This is for
both Xen and PowerPC hypervisors.
 
-If the device connected to the port is not a TTY but a braille
-device, prepend "brl," before the device type, for instance
+   If the device connected to the port is not a TTY but a braille
+   device, prepend "brl," before the device type, for instance
console=brl,ttyS0
For now, only VisioBraille is supported.
 
@@ -662,7 +662,7 @@
 
consoleblank=   [KNL] The console blank (screen saver) timeout in
seconds. A value of 0 disables the blank timer.
-   Defaults to 0.
+   Defaults to 0.
 
coredump_filter=
[KNL] Change the default value for
@@ -730,7 +730,7 @@
or memory reserved is below 4G.
 
cryptomgr.notests
-[KNL] Disable crypto self-tests
+   [KNL] Disable crypto self-tests
 
cs89x0_dma= [HW,NET]
Format: 
@@ -746,7 +746,7 @@
Format: ,
See also 
Documentation/input/devices/joystick-parport.rst
 
-   ddebug_query=   [KNL,DYNAMIC_DEBUG] Enable debug messages at early boot
+   ddebug_query=   [KNL,DYNAMIC_DEBUG] Enable debug messages at early boot
time. See
Documentation/admin-guide/dynamic-debug-howto.rst for
details.  Deprecated, see dyndbg.
@@ -833,7 +833,7 @@
causing system reset or hang due to sending
INIT from AP to BSP.
 
-   disable_ddw [PPC/PSERIES]
+   disable_ddw [PPC/PSERIES]
Disable Dynamic DMA Window support. Use this if
to workaround buggy firmware.
 
@@ -1188,7 +1188,7 @@
parameter will force ia64_sal_cache_flush to call
ia64_pal_cache_flush instead of SAL_CACHE_FLUSH.
 
-   forcepae [X86-32]
+   forcepae[X86-32]
Forcefully enable Physical Address Extension (PAE).
Many Pentium M systems disable PAE but may have a
functionally usable PAE implementation.
@@ -1247,7 +1247,7 @@
 
gamma=  [HW,DRM]
 
-   gart_fix_e820=  [X86_64] disable the fix e820 for K8 GART
+   gart_fix_e820=  [X86_64] disable the fix e820 for K8 GART
Format: off | on
default: on
 
@@ -1341,11 +1341,11 @@
x86-64 are 2M (when the CPU supports 

Re: [PATCH v3] docs: kernel-parameters.txt: Fix whitespace

2018-04-18 Thread Randy Dunlap
On 04/18/18 11:51, Thymo van Beers wrote:
> Some lines used spaces instead of tabs at line start.
> This can cause mangled lines in editors due to inconsistency.
> 
> Replace spaces for tabs where appropriate.
> 
> Signed-off-by: Thymo van Beers 

Reviewed-by: Randy Dunlap 

> ---
> Changes in v3:
>   - Change indentation in intel_pstate to reduce overrunning 80-column
> mark
>   - Indent "nohrst, nosrst, norst:" like "rstonce"

intel_pstate, isolcpus, maxcpus, onenand.bdry, reboot (and a few others)
do still go beyond 80 columns.  Those could be fixed later (or not).

Thanks.


> Changes in v2:
>   - Rebase against docs-next
>   - Fix indentation modifications
> 
>  Documentation/admin-guide/kernel-parameters.txt | 136 
> 
>  1 file changed, 68 insertions(+), 68 deletions(-)


-- 
~Randy
--
To unsubscribe from this list: send the line "unsubscribe linux-doc" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH v3] docs: kernel-parameters.txt: Fix whitespace

2018-04-18 Thread Thymo van Beers
Some lines used spaces instead of tabs at line start.
This can cause mangled lines in editors due to inconsistency.

Replace spaces for tabs where appropriate.

Signed-off-by: Thymo van Beers 
---
Changes in v3:
  - Change indentation in intel_pstate to reduce overrunning 80-column
mark
  - Indent "nohrst, nosrst, norst:" like "rstonce"

Changes in v2:
  - Rebase against docs-next
  - Fix indentation modifications

 Documentation/admin-guide/kernel-parameters.txt | 136 
 1 file changed, 68 insertions(+), 68 deletions(-)

diff --git a/Documentation/admin-guide/kernel-parameters.txt 
b/Documentation/admin-guide/kernel-parameters.txt
index 3487be79847c..865a24e4d516 100644
--- a/Documentation/admin-guide/kernel-parameters.txt
+++ b/Documentation/admin-guide/kernel-parameters.txt
@@ -106,11 +106,11 @@
use by PCI
Format: ,...
 
-   acpi_mask_gpe=  [HW,ACPI]
+   acpi_mask_gpe=  [HW,ACPI]
Due to the existence of _Lxx/_Exx, some GPEs triggered
by unsupported hardware/firmware features can result in
-GPE floodings that cannot be automatically disabled by
-the GPE dispatcher.
+   GPE floodings that cannot be automatically disabled by
+   the GPE dispatcher.
This facility can be used to prevent such uncontrolled
GPE floodings.
Format: 
@@ -472,10 +472,10 @@
for platform specific values (SB1, Loongson3 and
others).
 
-   ccw_timeout_log [S390]
+   ccw_timeout_log [S390]
See Documentation/s390/CommonIO for details.
 
-   cgroup_disable= [KNL] Disable a particular controller
+   cgroup_disable= [KNL] Disable a particular controller
Format: {name of the controller(s) to disable}
The effects of cgroup_disable=foo are:
- foo isn't auto-mounted if you mount all cgroups in
@@ -641,8 +641,8 @@
hvc  Use the hypervisor console device . This is for
both Xen and PowerPC hypervisors.
 
-If the device connected to the port is not a TTY but a braille
-device, prepend "brl," before the device type, for instance
+   If the device connected to the port is not a TTY but a braille
+   device, prepend "brl," before the device type, for instance
console=brl,ttyS0
For now, only VisioBraille is supported.
 
@@ -662,7 +662,7 @@
 
consoleblank=   [KNL] The console blank (screen saver) timeout in
seconds. A value of 0 disables the blank timer.
-   Defaults to 0.
+   Defaults to 0.
 
coredump_filter=
[KNL] Change the default value for
@@ -730,7 +730,7 @@
or memory reserved is below 4G.
 
cryptomgr.notests
-[KNL] Disable crypto self-tests
+   [KNL] Disable crypto self-tests
 
cs89x0_dma= [HW,NET]
Format: 
@@ -746,7 +746,7 @@
Format: ,
See also 
Documentation/input/devices/joystick-parport.rst
 
-   ddebug_query=   [KNL,DYNAMIC_DEBUG] Enable debug messages at early boot
+   ddebug_query=   [KNL,DYNAMIC_DEBUG] Enable debug messages at early boot
time. See
Documentation/admin-guide/dynamic-debug-howto.rst for
details.  Deprecated, see dyndbg.
@@ -833,7 +833,7 @@
causing system reset or hang due to sending
INIT from AP to BSP.
 
-   disable_ddw [PPC/PSERIES]
+   disable_ddw [PPC/PSERIES]
Disable Dynamic DMA Window support. Use this if
to workaround buggy firmware.
 
@@ -1188,7 +1188,7 @@
parameter will force ia64_sal_cache_flush to call
ia64_pal_cache_flush instead of SAL_CACHE_FLUSH.
 
-   forcepae [X86-32]
+   forcepae[X86-32]
Forcefully enable Physical Address Extension (PAE).
Many Pentium M systems disable PAE but may have a
functionally usable PAE implementation.
@@ -1247,7 +1247,7 @@
 
gamma=  [HW,DRM]
 
-   gart_fix_e820=  [X86_64] disable the fix e820 for K8 GART
+   gart_fix_e820=  [X86_64] disable the fix e820 for K8 GART
Format: off | on
default: on
 
@@ -1341,11 +1341,11 @@
x86-64 are 2M (when the CPU supports "pse") and 1G
(when