What replaced get_sb_nodev and get_sb in latest Linux kernel?

630 views Asked by At

I'm wondering what function replaced get_sb_nodev and get_sb function in Linux kernel ?

It's no longer available in 3.5+ kernel

1

There are 1 answers

0
marshel On

get_sb function used to appear in struct file_system_type, In latest Linux Kernel this is replace by a mount function

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