4

Before Linux kernel 2.6, super_operations (include/linux/fs.h) have both read_inode and write_inode functions. But newer kernel does not have read_inode any more, then when and how does the VFS read in inode information from specific file system implementation? What is the new course of inode related processing in VFS?

Do you have any updated materials on how to implement file systems under NEW kernel VFS?

vcsjones
  • 138,677
  • 31
  • 291
  • 286
basicthinker
  • 308
  • 3
  • 7

1 Answers1

5

The answer is practically in the commit log. Edit: See the immediate parent commits of that one for how the practical transformation looks in the file systems.

jørgensen
  • 10,149
  • 2
  • 20
  • 27
  • Thank you so much. You made me learn a new source of reference that I did not know before. That information is very useful. – basicthinker Mar 18 '12 at 13:28