요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
=================
Memory Management
=================
Linux memory management subsystem is responsible, as the name implies,
for managing the memory in the system. This includes implementation of
virtual memory and demand paging, memory allocation both for kernel
internal structures and user space programs, mapping of files into
processes address space and many other cool things.
Linux memory management is a complex system with many configurable
settings. Most of these settings are available via ``/proc``
filesystem and can be queried and adjusted using ``sysctl``. These APIs
are described in Documentation/admin-guide/sysctl/vm.rst and in `man 5 proc`_.
.. _man 5 proc: http://man7.org/linux/man-pages/man5/proc.5.html
Linux memory management has its own jargon and if you are not yet
familiar with it, consider reading Documentation/admin-guide/mm/concepts.rst.
Here we document in detail how to interact with various mechanisms in
the Linux memory management.
.. toctree::
:maxdepth: 1
concepts
cma_debugfs
damon/index
hugetlbpage
idle_page_tracking
ksm
memory-hotplug
multigen_lru
nommu-mmap
numa_memory_policy
numaperf
pagemap
shrinker_debugfs
slab
soft-dirty
swap_numa
transhuge
userfaultfd
zswap
kho
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
Memory management 관리자 안내
1-22Linux memory management subsystem은 virtual memory와 demand paging, kernel 내부 구조와 user-space program의 memory allocation, process address space로의 file mapping을 비롯한 system memory 전반을 관리합니다.
설정 가능한 항목이 많고 대부분 `/proc` filesystem을 통해 제공되며 `sysctl`로 조회·조정할 수 있습니다. API는 `Documentation/admin-guide/sysctl/vm.rst`와 `man 5 proc`에 설명되어 있습니다.
Memory management 용어가 익숙하지 않다면 먼저 `Documentation/admin-guide/mm/concepts.rst`를 읽는 것이 좋습니다. 이 목록은 각 mechanism과 상호작용하는 상세 관리자 문서로 안내합니다.
Memory management 문서 목록
23-46원문의 `toctree`는 최대 깊이 1로 20개 문서를 연결합니다. 전문 번역이 완료된 문서는 로컬 페이지로, 아직 미완료인 문서는 Linux v6.18.37 source로 연결해 현재 상태를 명확히 구분합니다.
- Memory concepts
concepts.html - CMA debugfs
cma-debugfs.html - DAMON
damon/index.html - HugeTLB pages
hugetlbpage.html - Idle page tracking
idle-page-tracking.html - Kernel Samepage Merging
ksm.html - Memory hotplug
memory-hotplug.html - Multi-Gen LRU
multigen-lru.html - NOMMU mmap
nommu-mmap.html - NUMA memory policy
numa-memory-policy.html - NUMA performance
numaperf.html - pagemap
pagemap.html - Shrinker debugfs
shrinker-debugfs.html - SLAB
slab.html - Soft-dirty PTE
soft-dirty.html - NUMA swap
swap-numa.html - Transparent Hugepage
transhuge.html - Userfaultfd
userfaultfd.html - zswap
zswap.html - Kexec HandOver
kho.html
Memory management 문서 지도
index.rst:1-46Memory 기본 개념과 observability부터 allocation, reclaim, NUMA, special mapping과 kexec handover까지 관리자 관점의 문서를 묶습니다.