1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2 #ifndef _LINUX_MINIX_FS_H
3 #define _LINUX_MINIX_FS_H
5 #include <linux/types.h>
6 #include <linux/magic.h>
9 * The minix filesystem constants/structures
13 * Thanks to Kees J Bot for sending me the definitions of the new
14 * minix filesystem (aka V2) with bigger inodes and 32-bit block
18 #define MINIX_ROOT_INO 1
20 /* Not the same as the bogus LINK_MAX in <linux/limits.h>. Oh well. */
21 #define MINIX_LINK_MAX 250
22 #define MINIX2_LINK_MAX 65530
24 #define MINIX_I_MAP_SLOTS 8
25 #define MINIX_Z_MAP_SLOTS 64
26 #define MINIX_VALID_FS 0x0001 /* Clean fs. */
27 #define MINIX_ERROR_FS 0x0002 /* fs has errors. */
29 #define MINIX_INODES_PER_BLOCK ((BLOCK_SIZE)/(sizeof (struct minix_inode)))
32 * This is the original minix inode layout on disk.
33 * Note the 8-bit gid and atime and ctime.
46 * The new minix inode has all the time entries, as well as
47 * long block numbers and a third indirect block (7+1+1+1
48 * instead of 7+1+1). Also, some previously 8-bit values are
49 * now 16-bit. The inode is now 64 bytes instead of 32.
64 * minix super-block data on disk
66 struct minix_super_block
{
71 __u16 s_firstdatazone
;
72 __u16 s_log_zone_size
;
80 * V3 minix super-block data on disk
82 struct minix3_super_block
{
87 __u16 s_firstdatazone
;
88 __u16 s_log_zone_size
;
98 struct minix_dir_entry
{
103 struct minix3_dir_entry
{