3

我想知道Linux 内核中的哪个函数取代了 get_sb_nodev和 get_sb 函数?

它不再在 3.5+ 内核中可用

4

1 回答 1

1

get_sb曾经出现在的函数struct file_system_type,在最新的 Linux 内核中,它被一个mount函数替换

struct dentry *(*mount) (struct file_system_type *, int, const char *, void *);

于 2013-05-22T09:30:53.843 回答