mbox series

[v3,0/3] docs/mm: remove useless markup

Message ID 20230201094156.991542-1-rppt@kernel.org (mailing list archive)
Headers show
Series docs/mm: remove useless markup | expand

Message

Mike Rapoport Feb. 1, 2023, 9:41 a.m. UTC
From: "Mike Rapoport (IBM)" <rppt@kernel.org>

Hi,

Following Jon's gripe about top-of-file labels [1], I went ahead and
updated admin-guide/mm and mm docs to use file names instead of labels for
document cross-referencing.

[1] https://lore.kernel.org/all/87r0vh9n17.fsf@meer.lwn.net

v3:
* fix more missed references in zn_CH translation (kbuild)
* add markup removal in Documentation/mm/physical_memory.rst as the
  first patch in the series to keep Fixe: and Acked-by: tags
* rebase on docs-next

v2: https://lore.kernel.org/all/20230131144220.822989-1-rppt@kernel.org
* fix missed reference in zn_CH translation (kbuild)

v1: https://lore.kernel.org/all/20230129075018.207678-1-rppt@kernel.org

Mike Rapoport (IBM) (3):
  docs/mm: Physical Memory: remove useless markup
  docs/mm: remove useless markup
  docs/admin-guide/mm: remove useless markup

 Documentation/admin-guide/mm/concepts.rst           | 13 +++++--------
 Documentation/admin-guide/mm/hugetlbpage.rst        |  4 +---
 Documentation/admin-guide/mm/idle_page_tracking.rst |  7 ++-----
 Documentation/admin-guide/mm/index.rst              |  3 +--
 Documentation/admin-guide/mm/ksm.rst                |  2 --
 Documentation/admin-guide/mm/memory-hotplug.rst     |  2 --
 Documentation/admin-guide/mm/numa_memory_policy.rst |  2 --
 Documentation/admin-guide/mm/numaperf.rst           |  2 --
 Documentation/admin-guide/mm/pagemap.rst            | 11 ++++-------
 Documentation/admin-guide/mm/shrinker_debugfs.rst   |  2 --
 Documentation/admin-guide/mm/soft-dirty.rst         |  2 --
 Documentation/admin-guide/mm/swap_numa.rst          |  2 --
 Documentation/admin-guide/mm/transhuge.rst          |  2 --
 Documentation/admin-guide/mm/userfaultfd.rst        |  2 --
 Documentation/admin-guide/mm/zswap.rst              |  2 --
 Documentation/core-api/dma-api.rst                  |  2 --
 Documentation/mm/active_mm.rst                      |  2 --
 Documentation/mm/arch_pgtable_helpers.rst           |  2 --
 Documentation/mm/balance.rst                        |  2 --
 Documentation/mm/free_page_reporting.rst            |  2 --
 Documentation/mm/frontswap.rst                      |  2 --
 Documentation/mm/highmem.rst                        |  2 --
 Documentation/mm/hmm.rst                            |  4 +---
 Documentation/mm/hugetlbfs_reserv.rst               |  4 +---
 Documentation/mm/hwpoison.rst                       |  2 --
 Documentation/mm/ksm.rst                            |  4 +---
 Documentation/mm/memory-model.rst                   |  2 --
 Documentation/mm/mmu_notifier.rst                   |  2 --
 Documentation/mm/numa.rst                           |  4 +---
 Documentation/mm/page_frags.rst                     |  2 --
 Documentation/mm/page_migration.rst                 |  6 ++----
 Documentation/mm/page_owner.rst                     |  2 --
 Documentation/mm/page_reclaim.rst                   |  2 --
 Documentation/mm/page_table_check.rst               |  2 --
 Documentation/mm/physical_memory.rst                | 12 ++++++------
 Documentation/mm/remap_file_pages.rst               |  2 --
 Documentation/mm/slub.rst                           |  2 --
 Documentation/mm/split_page_table_lock.rst          |  2 --
 Documentation/mm/transhuge.rst                      |  2 --
 Documentation/mm/unevictable-lru.rst                |  2 --
 Documentation/mm/z3fold.rst                         |  2 --
 Documentation/mm/zsmalloc.rst                       |  2 --
 .../translations/zh_CN/admin-guide/mm/index.rst     |  2 +-
 Documentation/translations/zh_CN/mm/hmm.rst         |  2 +-
 .../translations/zh_CN/mm/hugetlbfs_reserv.rst      |  2 +-
 Documentation/translations/zh_CN/mm/numa.rst        |  2 +-
 46 files changed, 29 insertions(+), 113 deletions(-)


base-commit: 747a5a95bf3e48feba8350265aeed85a6b516bbd

Comments

Jonathan Corbet Feb. 2, 2023, 5:33 p.m. UTC | #1
Mike Rapoport <rppt@kernel.org> writes:

> From: "Mike Rapoport (IBM)" <rppt@kernel.org>
>
> Hi,
>
> Following Jon's gripe about top-of-file labels [1], I went ahead and
> updated admin-guide/mm and mm docs to use file names instead of labels for
> document cross-referencing.
>
> [1] https://lore.kernel.org/all/87r0vh9n17.fsf@meer.lwn.net
>
> v3:
> * fix more missed references in zn_CH translation (kbuild)
> * add markup removal in Documentation/mm/physical_memory.rst as the
>   first patch in the series to keep Fixe: and Acked-by: tags
> * rebase on docs-next
>
> v2: https://lore.kernel.org/all/20230131144220.822989-1-rppt@kernel.org
> * fix missed reference in zn_CH translation (kbuild)
>
> v1: https://lore.kernel.org/all/20230129075018.207678-1-rppt@kernel.org
>
> Mike Rapoport (IBM) (3):
>   docs/mm: Physical Memory: remove useless markup
>   docs/mm: remove useless markup
>   docs/admin-guide/mm: remove useless markup

Applied, thanks for the cleanup!

jon