diff options
author | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2020-09-17 13:29:25 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2020-10-16 07:28:20 +0200 |
commit | f910ce5266cc632fe9b8339fed4b01f6b1f2431a (patch) | |
tree | 1d86b8a3ab374217ad7910e93ecb4a7393769cad | |
parent | 3eb6b31bfb1732f4c48ef5a271dc15158efe8323 (diff) | |
download | linux-f910ce5266cc632fe9b8339fed4b01f6b1f2431a.tar.gz linux-f910ce5266cc632fe9b8339fed4b01f6b1f2431a.tar.bz2 linux-f910ce5266cc632fe9b8339fed4b01f6b1f2431a.zip |
mm/doc: fix a literal block markup
Literal blocks with :: markup should be indented, as otherwise
Sphinx complains:
Documentation/vm/hmm.rst:363: WARNING: Literal block expected; none found.
Fixes: f7ebd9ed7767 ("mm/doc: add usage description for migrate_vma_*()")
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
-rw-r--r-- | Documentation/vm/hmm.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/vm/hmm.rst b/Documentation/vm/hmm.rst index dd9f76a4ef29..09e28507f5b2 100644 --- a/Documentation/vm/hmm.rst +++ b/Documentation/vm/hmm.rst @@ -360,7 +360,7 @@ between device driver specific code and shared common code: system memory page, locks the page with ``lock_page()``, and fills in the ``dst`` array entry with:: - dst[i] = migrate_pfn(page_to_pfn(dpage)) | MIGRATE_PFN_LOCKED; + dst[i] = migrate_pfn(page_to_pfn(dpage)) | MIGRATE_PFN_LOCKED; Now that the driver knows that this page is being migrated, it can invalidate device private MMU mappings and copy device private memory |