3

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

daisy
  • 22,498
  • 29
  • 129
  • 265

1 Answers1

1

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 *);

Abhijeet Kasurde
  • 3,937
  • 1
  • 24
  • 33
marshel
  • 19
  • 3