Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道Linux 内核中的哪个函数取代了 get_sb_nodev和 get_sb 函数?
它不再在 3.5+ 内核中可用
get_sb曾经出现在的函数struct file_system_type,在最新的 Linux 内核中,它被一个mount函数替换
get_sb
struct file_system_type
mount
struct dentry *(*mount) (struct file_system_type *, int, const char *, void *);