On Sun, Feb 10, 2019 at 10:34:11PM -0800, Randy Dunlap wrote: > From: Randy Dunlap <[email protected]> > > 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 <[email protected]> > Cc: Christoph Lameter <[email protected]> > Cc: Sergey Senozhatsky <[email protected]>
Acked-by: Mike Rapoport <[email protected]> > --- > 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.

