← Documents Documentation/filesystems/ext4/dynamic.rst GitHub 원문 ↗

Linux 6.18.37 · Filesystems

Dynamic Structures

파일과 블록 할당 시 생성되는 ext4 동적 메타데이터 문서 목록의 전문 번역입니다.

Source pathDocumentation/filesystems/ext4/dynamic.rst
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.

1. 요약·해설

원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.

요약·해설

dynamic.rst:1-14

동적 구조는 파일 생성과 데이터 할당에 따라 생기고 변하는 메타데이터입니다.

요약·해설 핵심 흐름
inode 할당데이터 블록 매핑디렉터리 이름 연결확장 속성 저장

문서의 핵심 관계를 짧게 정리합니다.

2. 영어 원문 전체

번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.

원문 전체 펼치기
1 .. SPDX-License-Identifier: GPL-2.0
2
3 Dynamic Structures
4 ==================
5
6 Dynamic metadata are created on the fly when files and blocks are
7 allocated to files.
8
9 .. toctree::
10
11 inodes
12 ifork
13 directory
14 attributes
15

3. 한국어 전문 번역

영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.

동적 구조

1-14

동적 메타데이터는 파일이 만들어지고 파일에 블록이 할당될 때 그때그때 생성됩니다.

이 범주에는 `inodes`, `ifork`, `directory`, `attributes` 문서가 포함됩니다. 각각 inode의 디스크 형식, inode 내부의 데이터 매핑, 디렉터리 엔트리, 확장 속성 구조를 설명합니다.

동적 메타데이터의 구성
파일 생성과 inode 할당`inodes`: inode 메타데이터 기록`ifork`: 파일 데이터 블록 매핑`directory`: 이름과 inode 연결`attributes`: 확장 속성 저장

파일 및 블록 할당 과정에서 생성되는 네 가지 주요 구조입니다.

.. SPDX-License-Identifier: GPL-2.0

Dynamic Structures
==================

Dynamic metadata are created on the fly when files and blocks are
allocated to files.

.. toctree::

   inodes
   ifork
   directory
   attributes