用cramfs.ko做的實驗,斷點放在init_cramfs_fs(void)函式的rv = register_filesystem(&cramfs_fs_type);行,執行register_filesystem函式:
register_filesystem (fs=0xda7142e0) at fs/filesystems.c:74
顯示cramfs的file_system_type結構提如下:
, s_lock_key = {},
s_umount_key = {}, i_lock_key = {},
i_mutex_key = {}, i_mutex_dir_key = {},
i_alloc_sem_key = {}}
先提一下,實際註冊檔案系統的時候是將file_system_type放在以file_systems為表頭的乙個鍊錶中。
先看下file_systems的內容:
(gdb) p *file_systems
$8 = , s_lock_key = {},
s_umount_key = {}, i_lock_key = {},
i_mutex_key = {}, i_mutex_dir_key = {},
i_alloc_sem_key = {}}
根據next = 0xc0751460 p *(struct file_system_type *)0xc0751460
, s_lock_key = {}, s_umount_key = {},
i_lock_key = {}, i_mutex_key = {},
i_mutex_dir_key = {}, i_alloc_sem_key = {}}
rootfs的註冊還在sysfs之後。
register_filesystem函式具體做了什麼?主要是兩點:
1、init_list_head(&fs->fs_supers);
初始化file_system_type結構體中的fs_supers雙向鍊錶,後來會看到它會與該種檔案系統型別的super_block結構體的s_instances關聯。
2、find_filesystem(fs->name, strlen(fs->name));
在find_filesystem函式中就是根據name和名字長度遍歷鍊錶進行查詢的,從而將新的檔案系統加到這個鍊錶中。
檔案系統模組的註冊應該就這麼簡單,註冊完成後,就可以mount並使用該檔案系統了。
linux 檔案系統註冊
以fat檔案系統為例 linux2.6.35 fs fat namei msdos.c module init init msdos fs insmod載入模組時呼叫init msdos fs static int init init msdos fs void 先看引數 msdos fs type...
linux檔案系統模組
makefile檔案如下 obj m gt.o gt y super.o dir.o file.o inode.o namei.o read write.o kerneldir lib modules shell uname r build modules make c kerneldir m sh...
檔案系統註冊
前面主要把vfs物件,以及他們如何串聯起來的內容介紹得差不多了。相信走大現在,大家對大概的vfs工作機制有了相應的了解,接下來要做的事,就是把那些重要的細節描述清楚。首先,linux核心支援很多不同的檔案系統型別。本篇博文,我們將討 件系統註冊 也就是通常在系統初始化期間並且在使用檔案系統型別之前必...