Next Internals of ext2fs 14

        union {
                ...
                struct ext2_sb_info     ext2_sb;
                ...
        } u;

Superblocks

     static struct super_block * read_super(kdev_t dev, struct block_device *bdev,
                                            struct file_system_type *type, int flags,
                                            void *data, int silent)
     {
        struct super_block * s;
        s = get_empty_super();
        ...
        s->s_type = type;
        ...
        if (!type->read_super(s, data, silent))
                goto out_fail;
        ...
        return s;
     } 


Next Copyright © 2001 M. J. Dominus