Struktura
super_operations

Marcin Szuppe

struct super_operations {
  void (*read_inode) (struct inode *); // odczytywanie i kopiowanie do pamięci i-węzła dyskowego.
  void (*write_inode) (struct inode *); // zapisanie i-węzła na dysk.
  void (*put_inode) (struct inode *);
  void (*delete_inode) (struct inode *);
  int (*notify_change) (struct dentry *, struct iattr *); // przekazanie info o zmianach na i-węŸle.
  void (*put_super) (struct super_block *);
  void (*write_super) (struct super_block *);
  int (*statfs) (struct super_block *, struct statfs *, int);
  int (*remount_fs) (struct super_block *, int *, char *); // zmiana statusu systemu.
  void (*clear_inode) (struct inode *);
  void (*umount_begin) (struct super_block *);
}