Annotation of linux/fs/minix/minix_op.c, revision 1.1

1.1     ! root        1: /*
        !             2:  * linux/fs/minix/minix_op.c
        !             3:  *
        !             4:  * structures for the minix super_block/inode/file-operations
        !             5:  */
        !             6: 
        !             7: #include <linux/fs.h>
        !             8: #include <linux/minix_fs.h>
        !             9: 
        !            10: /*
        !            11:  * These are the low-level inode operations for minix filesystem inodes.
        !            12:  */
        !            13: struct inode_operations minix_inode_operations = {
        !            14:        minix_create,
        !            15:        minix_lookup,
        !            16:        minix_link,
        !            17:        minix_unlink,
        !            18:        minix_symlink,
        !            19:        minix_mkdir,
        !            20:        minix_rmdir,
        !            21:        minix_mknod,
        !            22:        minix_rename,
        !            23:        minix_readlink,
        !            24:        minix_open,
        !            25:        minix_release,
        !            26:        minix_follow_link
        !            27: };
        !            28: 
        !            29: /*
        !            30:  * We have just NULL's here: the current defaults are ok for
        !            31:  * the minix filesystem.
        !            32:  */
        !            33: struct file_operations minix_file_operations = {
        !            34:        NULL,   /* lseek */
        !            35:        NULL,   /* read */
        !            36:        NULL    /* write */
        !            37: };
        !            38:        

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.