Lines Matching refs:minor
462 udecl16(s_minor_rev_level) /* The minor revision level of the filesystem */ \
1377 mknod_fs(filesystem *fs, uint32 parent_nod, const char *name, uint16 mode, uint16 uid, uint16 gid, uint8 major, uint8 minor, uint32 ctime, uint32 mtime)
1393 ((uint8*)get_nod(fs, nod)->i_block)[0] = minor;
1489 <path> <type> <mode> <uid> <gid> <major> <minor> <start> <inc> <count>
1509 unsigned long mode, uid, gid, major, minor;
1522 mode = uid = gid = major = minor = 0;
1536 SCANF_STRING(path), &type, &mode, &uid, &gid, &major, &minor,
1608 mknod_fs(fs, nod, dname, mode, uid, gid, major, minor + (i * increment - start), ctime, mtime);
1618 mknod_fs(fs, nod, name, mode, uid, gid, major, minor, ctime, mtime);
1745 nod = mknod_fs(fs, this_nod, name, mode|FM_IFCHR, uid, gid, major(st.st_rdev), minor(st.st_rdev), ctime, mtime);
1748 nod = mknod_fs(fs, this_nod, name, mode|FM_IFBLK, uid, gid, major(st.st_rdev), minor(st.st_rdev), ctime, mtime);
2202 // print block/char device minor and major
2206 int minor, major;
2207 minor = ((uint8*)get_nod(fs, nod)->i_block)[0];
2209 printf("major: %d, minor: %d\n", major, minor);