super_block結構是所有檔案系統所共同使用的一個結構
union {
struct minix_sb_info minix_sb;
struct ext
…
struct hpfs_sb_info hpfs_sb;
struct hfs_sb_info hfs_sb;
struct adfs_sb_info adfs_sb;
struct qnx
void *generic_sbp;
} u;
因為每個super_block在同一時間內最多只會記錄一個檔案系統的資料
From:http://tw.wingwit.com/Article/program/Oracle/201311/18123.html