Skip to content

Commit bf608eb

Browse files
Hu HaowenJonathan Corbet
authored andcommitted
docs/zh_TW: add translations for zh_TW/filesystems
Create new translations for zh_TW/filesystems and link them to index. Signed-off-by: Hu Haowen <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jonathan Corbet <[email protected]>
1 parent ac8fa1b commit bf608eb

File tree

6 files changed

+843
-1
lines changed

6 files changed

+843
-1
lines changed
Lines changed: 224 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,224 @@
1+
.. SPDX-License-Identifier: GPL-2.0
2+
3+
.. include:: ../disclaimer-zh_TW.rst
4+
5+
:Original: :doc:`../../../filesystems/debugfs`
6+
7+
=======
8+
Debugfs
9+
=======
10+
11+
譯者
12+
::
13+
14+
中文版維護者:羅楚成 Chucheng Luo <[email protected]>
15+
中文版翻譯者:羅楚成 Chucheng Luo <[email protected]>
16+
中文版校譯者: 羅楚成 Chucheng Luo <[email protected]>
17+
繁體中文版校譯者: 胡皓文 Hu Haowen <[email protected]>
18+
19+
20+
21+
版權所有2020 羅楚成 <[email protected]>
22+
版權所有2021 胡皓文 Hu Haowen <[email protected]>
23+
24+
25+
Debugfs是內核開發人員在用戶空間獲取信息的簡單方法。與/proc不同,proc只提供進程
26+
信息。也不像sysfs,具有嚴格的「每個文件一個值「的規則。debugfs根本沒有規則,開發
27+
人員可以在這裡放置他們想要的任何信息。debugfs文件系統也不能用作穩定的ABI接口。
28+
從理論上講,debugfs導出文件的時候沒有任何約束。但是[1]實際情況並不總是那麼
29+
簡單。即使是debugfs接口,也最好根據需要進行設計,並儘量保持接口不變。
30+
31+
32+
Debugfs通常使用以下命令安裝::
33+
34+
mount -t debugfs none /sys/kernel/debug
35+
36+
(或等效的/etc/fstab行)。
37+
debugfs根目錄默認僅可由root用戶訪問。要更改對文件樹的訪問,請使用「 uid」,「 gid」
38+
和「 mode」掛載選項。請注意,debugfs API僅按照GPL協議導出到模塊。
39+
40+
使用debugfs的代碼應包含<linux/debugfs.h>。然後,首先是創建至少一個目錄來保存
41+
一組debugfs文件::
42+
43+
struct dentry *debugfs_create_dir(const char *name, struct dentry *parent);
44+
45+
如果成功,此調用將在指定的父目錄下創建一個名爲name的目錄。如果parent參數爲空,
46+
則會在debugfs根目錄中創建。創建目錄成功時,返回值是一個指向dentry結構體的指針。
47+
該dentry結構體的指針可用於在目錄中創建文件(以及最後將其清理乾淨)。ERR_PTR
48+
(-ERROR)返回值表明出錯。如果返回ERR_PTR(-ENODEV),則表明內核是在沒有debugfs
49+
支持的情況下構建的,並且下述函數都不會起作用。
50+
51+
在debugfs目錄中創建文件的最通用方法是::
52+
53+
struct dentry *debugfs_create_file(const char *name, umode_t mode,
54+
struct dentry *parent, void *data,
55+
const struct file_operations *fops);
56+
57+
在這裡,name是要創建的文件的名稱,mode描述了訪問文件應具有的權限,parent指向
58+
應該保存文件的目錄,data將存儲在產生的inode結構體的i_private欄位中,而fops是
59+
一組文件操作函數,這些函數中實現文件操作的具體行爲。至少,read()和/或
60+
write()操作應提供;其他可以根據需要包括在內。同樣的,返回值將是指向創建文件
61+
的dentry指針,錯誤時返回ERR_PTR(-ERROR),系統不支持debugfs時返回值爲ERR_PTR
62+
(-ENODEV)。創建一個初始大小的文件,可以使用以下函數代替::
63+
64+
struct dentry *debugfs_create_file_size(const char *name, umode_t mode,
65+
struct dentry *parent, void *data,
66+
const struct file_operations *fops,
67+
loff_t file_size);
68+
69+
file_size是初始文件大小。其他參數跟函數debugfs_create_file的相同。
70+
71+
在許多情況下,沒必要自己去創建一組文件操作;對於一些簡單的情況,debugfs代碼提供
72+
了許多幫助函數。包含單個整數值的文件可以使用以下任何一項創建::
73+
74+
void debugfs_create_u8(const char *name, umode_t mode,
75+
struct dentry *parent, u8 *value);
76+
void debugfs_create_u16(const char *name, umode_t mode,
77+
struct dentry *parent, u16 *value);
78+
struct dentry *debugfs_create_u32(const char *name, umode_t mode,
79+
struct dentry *parent, u32 *value);
80+
void debugfs_create_u64(const char *name, umode_t mode,
81+
struct dentry *parent, u64 *value);
82+
83+
這些文件支持讀取和寫入給定值。如果某個文件不支持寫入,只需根據需要設置mode
84+
參數位。這些文件中的值以十進位表示;如果需要使用十六進位,可以使用以下函數
85+
替代::
86+
87+
void debugfs_create_x8(const char *name, umode_t mode,
88+
struct dentry *parent, u8 *value);
89+
void debugfs_create_x16(const char *name, umode_t mode,
90+
struct dentry *parent, u16 *value);
91+
void debugfs_create_x32(const char *name, umode_t mode,
92+
struct dentry *parent, u32 *value);
93+
void debugfs_create_x64(const char *name, umode_t mode,
94+
struct dentry *parent, u64 *value);
95+
96+
這些功能只有在開發人員知道導出值的大小的時候才有用。某些數據類型在不同的架構上
97+
有不同的寬度,這樣會使情況變得有些複雜。在這種特殊情況下可以使用以下函數::
98+
99+
void debugfs_create_size_t(const char *name, umode_t mode,
100+
struct dentry *parent, size_t *value);
101+
102+
不出所料,此函數將創建一個debugfs文件來表示類型爲size_t的變量。
103+
104+
同樣地,也有導出無符號長整型變量的函數,分別以十進位和十六進位表示如下::
105+
106+
struct dentry *debugfs_create_ulong(const char *name, umode_t mode,
107+
struct dentry *parent,
108+
unsigned long *value);
109+
void debugfs_create_xul(const char *name, umode_t mode,
110+
struct dentry *parent, unsigned long *value);
111+
112+
布爾值可以通過以下方式放置在debugfs中::
113+
114+
struct dentry *debugfs_create_bool(const char *name, umode_t mode,
115+
struct dentry *parent, bool *value);
116+
117+
118+
讀取結果文件將產生Y(對於非零值)或N,後跟換行符寫入的時候,它只接受大寫或小寫
119+
值或1或0。任何其他輸入將被忽略。
120+
121+
同樣,atomic_t類型的值也可以放置在debugfs中::
122+
123+
void debugfs_create_atomic_t(const char *name, umode_t mode,
124+
struct dentry *parent, atomic_t *value)
125+
126+
讀取此文件將獲得atomic_t值,寫入此文件將設置atomic_t值。
127+
128+
另一個選擇是通過以下結構體和函數導出一個任意二進位數據塊::
129+
130+
struct debugfs_blob_wrapper {
131+
void *data;
132+
unsigned long size;
133+
};
134+
135+
struct dentry *debugfs_create_blob(const char *name, umode_t mode,
136+
struct dentry *parent,
137+
struct debugfs_blob_wrapper *blob);
138+
139+
讀取此文件將返回由指針指向debugfs_blob_wrapper結構體的數據。一些驅動使用「blobs」
140+
作爲一種返回幾行(靜態)格式化文本的簡單方法。這個函數可用於導出二進位信息,但
141+
似乎在主線中沒有任何代碼這樣做。請注意,使用debugfs_create_blob()命令創建的
142+
所有文件是只讀的。
143+
144+
如果您要轉儲一個寄存器塊(在開發過程中經常會這麼做,但是這樣的調試代碼很少上傳
145+
到主線中。Debugfs提供兩個函數:一個用於創建僅寄存器文件,另一個把一個寄存器塊
146+
插入一個順序文件中::
147+
148+
struct debugfs_reg32 {
149+
char *name;
150+
unsigned long offset;
151+
};
152+
153+
struct debugfs_regset32 {
154+
struct debugfs_reg32 *regs;
155+
int nregs;
156+
void __iomem *base;
157+
};
158+
159+
struct dentry *debugfs_create_regset32(const char *name, umode_t mode,
160+
struct dentry *parent,
161+
struct debugfs_regset32 *regset);
162+
163+
void debugfs_print_regs32(struct seq_file *s, struct debugfs_reg32 *regs,
164+
int nregs, void __iomem *base, char *prefix);
165+
166+
「base」參數可能爲0,但您可能需要使用__stringify構建reg32數組,實際上有許多寄存器
167+
名稱(宏)是寄存器塊在基址上的字節偏移量。
168+
169+
如果要在debugfs中轉儲u32數組,可以使用以下函數創建文件::
170+
171+
void debugfs_create_u32_array(const char *name, umode_t mode,
172+
struct dentry *parent,
173+
u32 *array, u32 elements);
174+
175+
「array」參數提供數據,而「elements」參數爲數組中元素的數量。注意:數組創建後,數組
176+
大小無法更改。
177+
178+
有一個函數來創建與設備相關的seq_file::
179+
180+
struct dentry *debugfs_create_devm_seqfile(struct device *dev,
181+
const char *name,
182+
struct dentry *parent,
183+
int (*read_fn)(struct seq_file *s,
184+
void *data));
185+
186+
「dev」參數是與此debugfs文件相關的設備,並且「read_fn」是一個函數指針,這個函數在
187+
列印seq_file內容的時候被回調。
188+
189+
還有一些其他的面向目錄的函數::
190+
191+
struct dentry *debugfs_rename(struct dentry *old_dir,
192+
struct dentry *old_dentry,
193+
struct dentry *new_dir,
194+
const char *new_name);
195+
196+
struct dentry *debugfs_create_symlink(const char *name,
197+
struct dentry *parent,
198+
const char *target);
199+
200+
調用debugfs_rename()將爲現有的debugfs文件重命名,可能同時切換目錄。 new_name
201+
函數調用之前不能存在;返回值爲old_dentry,其中包含更新的信息。可以使用
202+
debugfs_create_symlink()創建符號連結。
203+
204+
所有debugfs用戶必須考慮的一件事是:
205+
206+
debugfs不會自動清除在其中創建的任何目錄。如果一個模塊在不顯式刪除debugfs目錄的
207+
情況下卸載模塊,結果將會遺留很多野指針,從而導致系統不穩定。因此,所有debugfs
208+
用戶-至少是那些可以作爲模塊構建的用戶-必須做模塊卸載的時候準備刪除在此創建的
209+
所有文件和目錄。一份文件可以通過以下方式刪除::
210+
211+
void debugfs_remove(struct dentry *dentry);
212+
213+
dentry值可以爲NULL或錯誤值,在這種情況下,不會有任何文件被刪除。
214+
215+
很久以前,內核開發者使用debugfs時需要記錄他們創建的每個dentry指針,以便最後所有
216+
文件都可以被清理掉。但是,現在debugfs用戶能調用以下函數遞歸清除之前創建的文件::
217+
218+
void debugfs_remove_recursive(struct dentry *dentry);
219+
220+
如果將對應頂層目錄的dentry傳遞給以上函數,則該目錄下的整個層次結構將會被刪除。
221+
222+
注釋:
223+
[1] http://lwn.net/Articles/309298/
224+
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
.. SPDX-License-Identifier: GPL-2.0
2+
3+
.. include:: ../disclaimer-zh_TW.rst
4+
5+
:Original: :ref:`Documentation/filesystems/index.rst <filesystems_index>`
6+
:Translator: Wang Wenhu <[email protected]>
7+
Hu Haowen <[email protected]>
8+
9+
.. _tw_filesystems_index:
10+
11+
========================
12+
Linux Kernel中的文件系統
13+
========================
14+
15+
這份正在開發的手冊或許在未來某個輝煌的日子裡以易懂的形式將Linux虛擬\
16+
文件系統(VFS)層以及基於其上的各種文件系統如何工作呈現給大家。當前\
17+
可以看到下面的內容。
18+
19+
文件系統
20+
========
21+
22+
文件系統實現文檔。
23+
24+
.. toctree::
25+
:maxdepth: 2
26+
27+
virtiofs
28+
debugfs
29+
tmpfs
30+
31+

0 commit comments

Comments
 (0)