我想知道是什么函数取代了Linux内核中的get_sb_nodev和get_sb函数?
它在3.5+内核中不再可用
get_sb
函数曾出现在struct file_system_type
中,在最新的Linux内核中,它被mount
函数取代
struct dentry *(*mount) (struct file_system_type *, int, const char *, void *);