linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Documentation: fix vm/slub.rst warning
@ 2019-02-11  6:34 Randy Dunlap
  2019-02-11  7:35 ` Mike Rapoport
  2019-02-11 15:27 ` Jonathan Corbet
  0 siblings, 2 replies; 5+ messages in thread
From: Randy Dunlap @ 2019-02-11  6:34 UTC (permalink / raw)
  To: LKML, Linux MM, Andrew Morton, Jonathan Corbet, linux-doc
  Cc: Christoph Lameter, Sergey Senozhatsky

From: Randy Dunlap <rdunlap@infradead.org>

Fix markup warning by quoting the '*' character with a backslash.

Documentation/vm/slub.rst:71: WARNING: Inline emphasis start-string without end-string.

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Christoph Lameter <cl@linux.com>
Cc: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
---
 Documentation/vm/slub.rst |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- lnx-50-rc6.orig/Documentation/vm/slub.rst
+++ lnx-50-rc6/Documentation/vm/slub.rst
@@ -68,7 +68,7 @@ end of the slab name, in order to cover
 example, here's how you can poison the dentry cache as well as all kmalloc
 slabs:
 
-	slub_debug=P,kmalloc-*,dentry
+	slub_debug=P,kmalloc-\*,dentry
 
 Red zoning and tracking may realign the slab.  We can just apply sanity checks
 to the dentry cache with::



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] Documentation: fix vm/slub.rst warning
  2019-02-11  6:34 [PATCH] Documentation: fix vm/slub.rst warning Randy Dunlap
@ 2019-02-11  7:35 ` Mike Rapoport
  2019-02-11  7:43   ` Sergey Senozhatsky
  2019-02-11 15:27 ` Jonathan Corbet
  1 sibling, 1 reply; 5+ messages in thread
From: Mike Rapoport @ 2019-02-11  7:35 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: LKML, Linux MM, Andrew Morton, Jonathan Corbet, linux-doc,
	Christoph Lameter, Sergey Senozhatsky

On Sun, Feb 10, 2019 at 10:34:11PM -0800, Randy Dunlap wrote:
> From: Randy Dunlap <rdunlap@infradead.org>
> 
> Fix markup warning by quoting the '*' character with a backslash.
> 
> Documentation/vm/slub.rst:71: WARNING: Inline emphasis start-string without end-string.
> 
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
> Cc: Christoph Lameter <cl@linux.com>
> Cc: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>

Acked-by: Mike Rapoport <rppt@linux.ibm.com>
> ---
>  Documentation/vm/slub.rst |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> --- lnx-50-rc6.orig/Documentation/vm/slub.rst
> +++ lnx-50-rc6/Documentation/vm/slub.rst
> @@ -68,7 +68,7 @@ end of the slab name, in order to cover
>  example, here's how you can poison the dentry cache as well as all kmalloc
>  slabs:
> 
> -	slub_debug=P,kmalloc-*,dentry
> +	slub_debug=P,kmalloc-\*,dentry
> 
>  Red zoning and tracking may realign the slab.  We can just apply sanity checks
>  to the dentry cache with::
> 
> 

-- 
Sincerely yours,
Mike.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] Documentation: fix vm/slub.rst warning
  2019-02-11  7:35 ` Mike Rapoport
@ 2019-02-11  7:43   ` Sergey Senozhatsky
  0 siblings, 0 replies; 5+ messages in thread
From: Sergey Senozhatsky @ 2019-02-11  7:43 UTC (permalink / raw)
  To: Mike Rapoport
  Cc: Randy Dunlap, LKML, Linux MM, Andrew Morton, Jonathan Corbet,
	linux-doc, Christoph Lameter, Sergey Senozhatsky

On (02/11/19 09:35), Mike Rapoport wrote:
> On Sun, Feb 10, 2019 at 10:34:11PM -0800, Randy Dunlap wrote:
> > From: Randy Dunlap <rdunlap@infradead.org>
> > 
> > Fix markup warning by quoting the '*' character with a backslash.
> > 
> > Documentation/vm/slub.rst:71: WARNING: Inline emphasis start-string without end-string.
> > 
> > Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
> > Cc: Christoph Lameter <cl@linux.com>
> > Cc: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
> 
> Acked-by: Mike Rapoport <rppt@linux.ibm.com>

FWIW,
Reviewed-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>

	-ss

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] Documentation: fix vm/slub.rst warning
  2019-02-11  6:34 [PATCH] Documentation: fix vm/slub.rst warning Randy Dunlap
  2019-02-11  7:35 ` Mike Rapoport
@ 2019-02-11 15:27 ` Jonathan Corbet
  2019-02-11 17:31   ` Randy Dunlap
  1 sibling, 1 reply; 5+ messages in thread
From: Jonathan Corbet @ 2019-02-11 15:27 UTC (permalink / raw)
  To: Randy Dunlap, Linux MM
  Cc: LKML, Andrew Morton, linux-doc, Christoph Lameter,
	Sergey Senozhatsky, Tobin C. Harding

On Sun, 10 Feb 2019 22:34:11 -0800
Randy Dunlap <rdunlap@infradead.org> wrote:

> From: Randy Dunlap <rdunlap@infradead.org>
> 
> Fix markup warning by quoting the '*' character with a backslash.
> 
> Documentation/vm/slub.rst:71: WARNING: Inline emphasis start-string without end-string.
> 
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
> Cc: Christoph Lameter <cl@linux.com>
> Cc: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
> ---
>  Documentation/vm/slub.rst |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> --- lnx-50-rc6.orig/Documentation/vm/slub.rst
> +++ lnx-50-rc6/Documentation/vm/slub.rst
> @@ -68,7 +68,7 @@ end of the slab name, in order to cover
>  example, here's how you can poison the dentry cache as well as all kmalloc
>  slabs:
>  
> -	slub_debug=P,kmalloc-*,dentry
> +	slub_debug=P,kmalloc-\*,dentry
>  
>  Red zoning and tracking may realign the slab.  We can just apply sanity checks
>  to the dentry cache with::

The better fix here is to make that a literal block ("slabs::").  Happily
for all of us, Tobin already did that in 11ede50059d0.

Thanks,

jon

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] Documentation: fix vm/slub.rst warning
  2019-02-11 15:27 ` Jonathan Corbet
@ 2019-02-11 17:31   ` Randy Dunlap
  0 siblings, 0 replies; 5+ messages in thread
From: Randy Dunlap @ 2019-02-11 17:31 UTC (permalink / raw)
  To: Jonathan Corbet, Linux MM
  Cc: LKML, Andrew Morton, linux-doc, Christoph Lameter,
	Sergey Senozhatsky, Tobin C. Harding

On 2/11/19 7:27 AM, Jonathan Corbet wrote:
> On Sun, 10 Feb 2019 22:34:11 -0800
> Randy Dunlap <rdunlap@infradead.org> wrote:
> 
>> From: Randy Dunlap <rdunlap@infradead.org>
>>
>> Fix markup warning by quoting the '*' character with a backslash.
>>
>> Documentation/vm/slub.rst:71: WARNING: Inline emphasis start-string without end-string.
>>
>> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
>> Cc: Christoph Lameter <cl@linux.com>
>> Cc: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
>> ---
>>  Documentation/vm/slub.rst |    2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> --- lnx-50-rc6.orig/Documentation/vm/slub.rst
>> +++ lnx-50-rc6/Documentation/vm/slub.rst
>> @@ -68,7 +68,7 @@ end of the slab name, in order to cover
>>  example, here's how you can poison the dentry cache as well as all kmalloc
>>  slabs:
>>  
>> -	slub_debug=P,kmalloc-*,dentry
>> +	slub_debug=P,kmalloc-\*,dentry
>>  
>>  Red zoning and tracking may realign the slab.  We can just apply sanity checks
>>  to the dentry cache with::
> 
> The better fix here is to make that a literal block ("slabs::").  Happily
> for all of us, Tobin already did that in 11ede50059d0.

Thanks for the info.

-- 
~Randy

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-02-11 17:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-11  6:34 [PATCH] Documentation: fix vm/slub.rst warning Randy Dunlap
2019-02-11  7:35 ` Mike Rapoport
2019-02-11  7:43   ` Sergey Senozhatsky
2019-02-11 15:27 ` Jonathan Corbet
2019-02-11 17:31   ` Randy Dunlap

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).