Whamcloud - gitweb
82d2f3a818401b2a82158d81e892b40e84f147fb
[tools/e2fsprogs.git] / include / linux / ext2_fs.h
1 /*
2  *  linux/include/linux/ext2_fs.h
3  *
4  * Copyright (C) 1992, 1993, 1994, 1995
5  * Remy Card (card@masi.ibp.fr)
6  * Laboratoire MASI - Institut Blaise Pascal
7  * Universite Pierre et Marie Curie (Paris VI)
8  *
9  *  from
10  *
11  *  linux/include/linux/minix_fs.h
12  *
13  *  Copyright (C) 1991, 1992  Linus Torvalds
14  */
15
16 #ifndef _LINUX_EXT2_FS_H
17 #define _LINUX_EXT2_FS_H
18
19 #include <linux/types.h>
20
21 /*
22  * The second extended filesystem constants/structures
23  */
24
25 /*
26  * Define EXT2FS_DEBUG to produce debug messages
27  */
28 #undef EXT2FS_DEBUG
29
30 /*
31  * Define EXT2_PREALLOCATE to preallocate data blocks for expanding files
32  */
33 #define EXT2_PREALLOCATE
34 #define EXT2_DEFAULT_PREALLOC_BLOCKS    8
35
36 /*
37  * The second extended file system version
38  */
39 #define EXT2FS_DATE             "95/08/09"
40 #define EXT2FS_VERSION          "0.5b"
41
42 /*
43  * Debug code
44  */
45 #if 0
46 #ifdef EXT2FS_DEBUG
47 #       define ext2_debug(f, a...)      { \
48                                         printk ("EXT2-fs DEBUG (%s, %d): %s:", \
49                                                 __FILE__, __LINE__, __FUNCTION__); \
50                                         printk (f, ## a); \
51                                         }
52 #else
53 #       define ext2_debug(f, a...)      /**/
54 #endif
55 #endif
56
57 /*
58  * Special inodes numbers
59  */
60 #define EXT2_BAD_INO             1      /* Bad blocks inode */
61 #define EXT2_ROOT_INO            2      /* Root inode */
62 #define EXT2_ACL_IDX_INO         3      /* ACL inode */
63 #define EXT2_ACL_DATA_INO        4      /* ACL inode */
64 #define EXT2_BOOT_LOADER_INO     5      /* Boot loader inode */
65 #define EXT2_UNDEL_DIR_INO       6      /* Undelete directory inode */
66
67 /* First non-reserved inode for old ext2 filesystems */
68 #define EXT2_GOOD_OLD_FIRST_INO 11
69
70 /*
71  * The second extended file system magic number
72  */
73 #define EXT2_SUPER_MAGIC        0xEF53
74
75 /*
76  * Maximal count of links to a file
77  */
78 #define EXT2_LINK_MAX           32000
79
80 /*
81  * Macro-instructions used to manage several block sizes
82  */
83 #define EXT2_MIN_BLOCK_SIZE             1024
84 #define EXT2_MAX_BLOCK_SIZE             4096
85 #define EXT2_MIN_BLOCK_LOG_SIZE           10
86 #ifdef __KERNEL__
87 # define EXT2_BLOCK_SIZE(s)             ((s)->s_blocksize)
88 #else
89 # define EXT2_BLOCK_SIZE(s)             (EXT2_MIN_BLOCK_SIZE << (s)->s_log_block_size)
90 #endif
91 #define EXT2_ACLE_PER_BLOCK(s)          (EXT2_BLOCK_SIZE(s) / sizeof (struct ext2_acl_entry))
92 #define EXT2_ADDR_PER_BLOCK(s)          (EXT2_BLOCK_SIZE(s) / sizeof (__u32))
93 #ifdef __KERNEL__
94 # define EXT2_BLOCK_SIZE_BITS(s)        ((s)->s_blocksize_bits)
95 #else
96 # define EXT2_BLOCK_SIZE_BITS(s)        ((s)->s_log_block_size + 10)
97 #endif
98 #ifdef __KERNEL__
99 #define EXT2_ADDR_PER_BLOCK_BITS(s)     ((s)->u.ext2_sb.s_addr_per_block_bits)
100 #define EXT2_INODE_SIZE(s)              ((s)->u.ext2_sb.s_inode_size)
101 #define EXT2_FIRST_INO(s)               ((s)->u.ext2_sb.s_first_ino)
102 #else
103 #define EXT2_INODE_SIZE(s)      (((s)->s_rev_level == EXT2_GOOD_OLD_REV) ? \
104                                  EXT2_GOOD_OLD_INODE_SIZE : \
105                                  (s)->s_inode_size)
106 #define EXT2_FIRST_INO(s)       (((s)->s_rev_level == EXT2_GOOD_OLD_REV) ? \
107                                  EXT2_GOOD_OLD_FIRST_INO : \
108                                  (s)->s_first_ino)
109 #endif
110
111 /*
112  * Macro-instructions used to manage fragments
113  */
114 #define EXT2_MIN_FRAG_SIZE              1024
115 #define EXT2_MAX_FRAG_SIZE              4096
116 #define EXT2_MIN_FRAG_LOG_SIZE            10
117 #ifdef __KERNEL__
118 # define EXT2_FRAG_SIZE(s)              ((s)->u.ext2_sb.s_frag_size)
119 # define EXT2_FRAGS_PER_BLOCK(s)        ((s)->u.ext2_sb.s_frags_per_block)
120 #else
121 # define EXT2_FRAG_SIZE(s)              (EXT2_MIN_FRAG_SIZE << (s)->s_log_frag_size)
122 # define EXT2_FRAGS_PER_BLOCK(s)        (EXT2_BLOCK_SIZE(s) / EXT2_FRAG_SIZE(s))
123 #endif
124
125 /*
126  * ACL structures
127  */
128 struct ext2_acl_header  /* Header of Access Control Lists */
129 {
130         __u32   aclh_size;
131         __u32   aclh_file_count;
132         __u32   aclh_acle_count;
133         __u32   aclh_first_acle;
134 };
135
136 struct ext2_acl_entry   /* Access Control List Entry */
137 {
138         __u32   acle_size;
139         __u16   acle_perms;     /* Access permissions */
140         __u16   acle_type;      /* Type of entry */
141         __u16   acle_tag;       /* User or group identity */
142         __u16   acle_pad1;
143         __u32   acle_next;      /* Pointer on next entry for the */
144                                         /* same inode or on next free entry */
145 };
146
147 /*
148  * Structure of a blocks group descriptor
149  */
150 struct ext2_group_desc
151 {
152         __u32   bg_block_bitmap;                /* Blocks bitmap block */
153         __u32   bg_inode_bitmap;                /* Inodes bitmap block */
154         __u32   bg_inode_table;         /* Inodes table block */
155         __u16   bg_free_blocks_count;   /* Free blocks count */
156         __u16   bg_free_inodes_count;   /* Free inodes count */
157         __u16   bg_used_dirs_count;     /* Directories count */
158         __u16   bg_pad;
159         __u32   bg_reserved[3];
160 };
161
162 /*
163  * Macro-instructions used to manage group descriptors
164  */
165 #ifdef __KERNEL__
166 # define EXT2_BLOCKS_PER_GROUP(s)       ((s)->u.ext2_sb.s_blocks_per_group)
167 # define EXT2_DESC_PER_BLOCK(s)         ((s)->u.ext2_sb.s_desc_per_block)
168 # define EXT2_INODES_PER_GROUP(s)       ((s)->u.ext2_sb.s_inodes_per_group)
169 # define EXT2_DESC_PER_BLOCK_BITS(s)    ((s)->u.ext2_sb.s_desc_per_block_bits)
170 #else
171 # define EXT2_BLOCKS_PER_GROUP(s)       ((s)->s_blocks_per_group)
172 # define EXT2_DESC_PER_BLOCK(s)         (EXT2_BLOCK_SIZE(s) / sizeof (struct ext2_group_desc))
173 # define EXT2_INODES_PER_GROUP(s)       ((s)->s_inodes_per_group)
174 #endif
175
176 /*
177  * Constants relative to the data blocks
178  */
179 #define EXT2_NDIR_BLOCKS                12
180 #define EXT2_IND_BLOCK                  EXT2_NDIR_BLOCKS
181 #define EXT2_DIND_BLOCK                 (EXT2_IND_BLOCK + 1)
182 #define EXT2_TIND_BLOCK                 (EXT2_DIND_BLOCK + 1)
183 #define EXT2_N_BLOCKS                   (EXT2_TIND_BLOCK + 1)
184
185 /*
186  * Inode flags
187  */
188 #define EXT2_SECRM_FL                   0x00000001 /* Secure deletion */
189 #define EXT2_UNRM_FL                    0x00000002 /* Undelete */
190 #define EXT2_COMPR_FL                   0x00000004 /* Compress file */
191 #define EXT2_SYNC_FL                    0x00000008 /* Synchronous updates */
192 #define EXT2_IMMUTABLE_FL               0x00000010 /* Immutable file */
193 #define EXT2_APPEND_FL                  0x00000020 /* writes to file may only append */
194 #define EXT2_NODUMP_FL                  0x00000040 /* do not dump file */
195 #define EXT2_NOATIME_FL                 0x00000080 /* do not update atime */
196 /* Reserved for compression usage... */
197 #define EXT2_DIRTY_FL                   0x00000100
198 #define EXT2_COMPRBLK_FL                0x00000200 /* One or more compressed clusters */
199 #define EXT2_NOCOMP_FL                  0x00000400 /* Don't compress */
200 #define EXT2_ECOMPR_FL                  0x00000800 /* Compression error */
201 /* End compression flags --- maybe not all used */      
202 #define EXT2_BTREE_FL                   0x00001000 /* btree format dir */
203 #define EXT2_RESERVED_FL                0x80000000 /* reserved for ext2 lib */
204
205 #define EXT2_FL_USER_VISIBLE            0x00001FFF /* User visible flags */
206 #define EXT2_FL_USER_MODIFIABLE         0x000000FF /* User modifiable flags */
207
208 /*
209  * ioctl commands
210  */
211 #define EXT2_IOC_GETFLAGS               _IOR('f', 1, long)
212 #define EXT2_IOC_SETFLAGS               _IOW('f', 2, long)
213 #define EXT2_IOC_GETVERSION             _IOR('v', 1, long)
214 #define EXT2_IOC_SETVERSION             _IOW('v', 2, long)
215
216 /*
217  * Structure of an inode on the disk
218  */
219 struct ext2_inode {
220         __u16   i_mode;         /* File mode */
221         __u16   i_uid;          /* Owner Uid */
222         __u32   i_size;         /* Size in bytes */
223         __u32   i_atime;        /* Access time */
224         __u32   i_ctime;        /* Creation time */
225         __u32   i_mtime;        /* Modification time */
226         __u32   i_dtime;        /* Deletion Time */
227         __u16   i_gid;          /* Group Id */
228         __u16   i_links_count;  /* Links count */
229         __u32   i_blocks;       /* Blocks count */
230         __u32   i_flags;        /* File flags */
231         union {
232                 struct {
233                         __u32  l_i_reserved1;
234                 } linux1;
235                 struct {
236                         __u32  h_i_translator;
237                 } hurd1;
238                 struct {
239                         __u32  m_i_reserved1;
240                 } masix1;
241         } osd1;                         /* OS dependent 1 */
242         __u32   i_block[EXT2_N_BLOCKS];/* Pointers to blocks */
243         __u32   i_version;      /* File version (for NFS) */
244         __u32   i_file_acl;     /* File ACL */
245         __u32   i_dir_acl;      /* Directory ACL */
246         __u32   i_faddr;        /* Fragment address */
247         union {
248                 struct {
249                         __u8    l_i_frag;       /* Fragment number */
250                         __u8    l_i_fsize;      /* Fragment size */
251                         __u16   i_pad1;
252                         __u32   l_i_reserved2[2];
253                 } linux2;
254                 struct {
255                         __u8    h_i_frag;       /* Fragment number */
256                         __u8    h_i_fsize;      /* Fragment size */
257                         __u16   h_i_mode_high;
258                         __u16   h_i_uid_high;
259                         __u16   h_i_gid_high;
260                         __u32   h_i_author;
261                 } hurd2;
262                 struct {
263                         __u8    m_i_frag;       /* Fragment number */
264                         __u8    m_i_fsize;      /* Fragment size */
265                         __u16   m_pad1;
266                         __u32   m_i_reserved2[2];
267                 } masix2;
268         } osd2;                         /* OS dependent 2 */
269 };
270
271 #define i_size_high     i_dir_acl
272
273 #if defined(__KERNEL__) || defined(__linux__)
274 #define i_reserved1     osd1.linux1.l_i_reserved1
275 #define i_frag          osd2.linux2.l_i_frag
276 #define i_fsize         osd2.linux2.l_i_fsize
277 #define i_reserved2     osd2.linux2.l_i_reserved2
278 #endif
279
280 #ifdef  __hurd__
281 #define i_translator    osd1.hurd1.h_i_translator
282 #define i_frag          osd2.hurd2.h_i_frag;
283 #define i_fsize         osd2.hurd2.h_i_fsize;
284 #define i_uid_high      osd2.hurd2.h_i_uid_high
285 #define i_gid_high      osd2.hurd2.h_i_gid_high
286 #define i_author        osd2.hurd2.h_i_author
287 #endif
288
289 #ifdef  __masix__
290 #define i_reserved1     osd1.masix1.m_i_reserved1
291 #define i_frag          osd2.masix2.m_i_frag
292 #define i_fsize         osd2.masix2.m_i_fsize
293 #define i_reserved2     osd2.masix2.m_i_reserved2
294 #endif
295
296 /*
297  * File system states
298  */
299 #define EXT2_VALID_FS                   0x0001  /* Unmounted cleanly */
300 #define EXT2_ERROR_FS                   0x0002  /* Errors detected */
301
302 /*
303  * Mount flags
304  */
305 #define EXT2_MOUNT_CHECK_NORMAL         0x0001  /* Do some more checks */
306 #define EXT2_MOUNT_CHECK_STRICT         0x0002  /* Do again more checks */
307 #define EXT2_MOUNT_CHECK                (EXT2_MOUNT_CHECK_NORMAL | \
308                                          EXT2_MOUNT_CHECK_STRICT)
309 #define EXT2_MOUNT_GRPID                0x0004  /* Create files with directory's group */
310 #define EXT2_MOUNT_DEBUG                0x0008  /* Some debugging messages */
311 #define EXT2_MOUNT_ERRORS_CONT          0x0010  /* Continue on errors */
312 #define EXT2_MOUNT_ERRORS_RO            0x0020  /* Remount fs ro on errors */
313 #define EXT2_MOUNT_ERRORS_PANIC         0x0040  /* Panic on errors */
314 #define EXT2_MOUNT_MINIX_DF             0x0080  /* Mimics the Minix statfs */
315
316 #define clear_opt(o, opt)               o &= ~EXT2_MOUNT_##opt
317 #define set_opt(o, opt)                 o |= EXT2_MOUNT_##opt
318 #define test_opt(sb, opt)               ((sb)->u.ext2_sb.s_mount_opt & \
319                                          EXT2_MOUNT_##opt)
320 /*
321  * Maximal mount counts between two filesystem checks
322  */
323 #define EXT2_DFL_MAX_MNT_COUNT          20      /* Allow 20 mounts */
324 #define EXT2_DFL_CHECKINTERVAL          0       /* Don't use interval check */
325
326 /*
327  * Behaviour when detecting errors
328  */
329 #define EXT2_ERRORS_CONTINUE            1       /* Continue execution */
330 #define EXT2_ERRORS_RO                  2       /* Remount fs read-only */
331 #define EXT2_ERRORS_PANIC               3       /* Panic */
332 #define EXT2_ERRORS_DEFAULT             EXT2_ERRORS_CONTINUE
333
334 /*
335  * Structure of the super block
336  */
337 struct ext2_super_block {
338         __u32   s_inodes_count;         /* Inodes count */
339         __u32   s_blocks_count;         /* Blocks count */
340         __u32   s_r_blocks_count;       /* Reserved blocks count */
341         __u32   s_free_blocks_count;    /* Free blocks count */
342         __u32   s_free_inodes_count;    /* Free inodes count */
343         __u32   s_first_data_block;     /* First Data Block */
344         __u32   s_log_block_size;       /* Block size */
345         __s32   s_log_frag_size;        /* Fragment size */
346         __u32   s_blocks_per_group;     /* # Blocks per group */
347         __u32   s_frags_per_group;      /* # Fragments per group */
348         __u32   s_inodes_per_group;     /* # Inodes per group */
349         __u32   s_mtime;                /* Mount time */
350         __u32   s_wtime;                /* Write time */
351         __u16   s_mnt_count;            /* Mount count */
352         __s16   s_max_mnt_count;        /* Maximal mount count */
353         __u16   s_magic;                /* Magic signature */
354         __u16   s_state;                /* File system state */
355         __u16   s_errors;               /* Behaviour when detecting errors */
356         __u16   s_minor_rev_level;      /* minor revision level */
357         __u32   s_lastcheck;            /* time of last check */
358         __u32   s_checkinterval;        /* max. time between checks */
359         __u32   s_creator_os;           /* OS */
360         __u32   s_rev_level;            /* Revision level */
361         __u16   s_def_resuid;           /* Default uid for reserved blocks */
362         __u16   s_def_resgid;           /* Default gid for reserved blocks */
363         /*
364          * These fields are for EXT2_DYNAMIC_REV superblocks only.
365          *
366          * Note: the difference between the compatible feature set and
367          * the incompatible feature set is that if there is a bit set
368          * in the incompatible feature set that the kernel doesn't
369          * know about, it should refuse to mount the filesystem.
370          * 
371          * e2fsck's requirements are more strict; if it doesn't know
372          * about a feature in either the compatible or incompatible
373          * feature set, it must abort and not try to meddle with
374          * things it doesn't understand...
375          */
376         __u32   s_first_ino;            /* First non-reserved inode */
377         __u16   s_inode_size;           /* size of inode structure */
378         __u16   s_block_group_nr;       /* block group # of this superblock */
379         __u32   s_feature_compat;       /* compatible feature set */
380         __u32   s_feature_incompat;     /* incompatible feature set */
381         __u32   s_feature_ro_compat;    /* readonly-compatible feature set */
382         __u8    s_uuid[16];             /* 128-bit uuid for volume */
383         char    s_volume_name[16];      /* volume name */
384         char    s_last_mounted[64];     /* directory where last mounted */
385         __u32   s_algorithm_usage_bitmap; /* For compression */
386         /*
387          * Performance hints.  Directory preallocation should only
388          * happen if the EXT2_COMPAT_PREALLOC flag is on.
389          */
390         __u8    s_prealloc_blocks;      /* Nr of blocks to try to preallocate*/
391         __u8    s_prealloc_dir_blocks;  /* Nr to preallocate for dirs */
392         __u16   s_padding1;
393         __u32   s_reserved[204];        /* Padding to the end of the block */
394 };
395
396 #ifdef __KERNEL__
397 #define EXT2_SB(sb)     (&((sb)->u.ext2_sb))
398 #else
399 /* Assume that user mode programs are passing in an ext2fs superblock, not
400  * a kernel struct super_block.  This will allow us to call the feature-test
401  * macros from user land. */
402 #define EXT2_SB(sb)     (sb)
403 #endif
404
405 /*
406  * Codes for operating systems
407  */
408 #define EXT2_OS_LINUX           0
409 #define EXT2_OS_HURD            1
410 #define EXT2_OS_MASIX           2
411 #define EXT2_OS_FREEBSD         3
412 #define EXT2_OS_LITES           4
413
414 /*
415  * Revision levels
416  */
417 #define EXT2_GOOD_OLD_REV       0       /* The good old (original) format */
418 #define EXT2_DYNAMIC_REV        1       /* V2 format w/ dynamic inode sizes */
419
420 #define EXT2_CURRENT_REV        EXT2_GOOD_OLD_REV
421 #define EXT2_MAX_SUPP_REV       EXT2_DYNAMIC_REV
422
423 #define EXT2_GOOD_OLD_INODE_SIZE 128
424
425 /*
426  * Feature set definitions
427  */
428
429 #define EXT2_HAS_COMPAT_FEATURE(sb,mask)                        \
430         ( EXT2_SB(sb)->s_feature_compat & (mask) )
431 #define EXT2_HAS_RO_COMPAT_FEATURE(sb,mask)                     \
432         ( EXT2_SB(sb)->s_feature_ro_compat & (mask) )
433 #define EXT2_HAS_INCOMPAT_FEATURE(sb,mask)                      \
434         ( EXT2_SB(sb)->s_feature_incompat & (mask) )
435
436 #define EXT2_FEATURE_COMPAT_DIR_PREALLOC        0x0001
437
438 #define EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER     0x0001
439 #define EXT2_FEATURE_RO_COMPAT_LARGE_FILE       0x0002
440 #define EXT2_FEATURE_RO_COMPAT_BTREE_DIR        0x0004
441
442 #define EXT2_FEATURE_INCOMPAT_COMPRESSION       0x0001
443 #define EXT2_FEATURE_INCOMPAT_FILETYPE          0x0002
444
445 #define EXT2_FEATURE_COMPAT_SUPP        0
446 #define EXT2_FEATURE_INCOMPAT_SUPP      EXT2_FEATURE_INCOMPAT_FILETYPE
447 #define EXT2_FEATURE_RO_COMPAT_SUPP     (EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER| \
448                                          EXT2_FEATURE_RO_COMPAT_LARGE_FILE| \
449                                          EXT2_FEATURE_RO_COMPAT_BTREE_DIR)
450
451 /*
452  * Default values for user and/or group using reserved blocks
453  */
454 #define EXT2_DEF_RESUID         0
455 #define EXT2_DEF_RESGID         0
456
457 /*
458  * Structure of a directory entry
459  */
460 #define EXT2_NAME_LEN 255
461
462 struct ext2_dir_entry {
463         __u32   inode;                  /* Inode number */
464         __u16   rec_len;                /* Directory entry length */
465         __u16   name_len;               /* Name length */
466         char    name[EXT2_NAME_LEN];    /* File name */
467 };
468
469 /*
470  * The new version of the directory entry.  Since EXT2 structures are
471  * stored in intel byte order, and the name_len field could never be
472  * bigger than 255 chars, it's safe to reclaim the extra byte for the
473  * file_type field.
474  */
475 struct ext2_dir_entry_2 {
476         __u32   inode;                  /* Inode number */
477         __u16   rec_len;                /* Directory entry length */
478         __u8    name_len;               /* Name length */
479         __u8    file_type;
480         char    name[EXT2_NAME_LEN];    /* File name */
481 };
482
483 /*
484  * Ext2 directory file types.  Only the low 3 bits are used.  The
485  * other bits are reserved for now.
486  */
487 #define EXT2_FT_UNKNOWN         0
488 #define EXT2_FT_REG_FILE        1
489 #define EXT2_FT_DIR             2
490 #define EXT2_FT_CHRDEV          3
491 #define EXT2_FT_BLKDEV          4
492 #define EXT2_FT_FIFO            5
493 #define EXT2_FT_SOCK            6
494 #define EXT2_FT_SYMLINK         7
495
496 #define EXT2_FT_MAX             8
497
498 /*
499  * EXT2_DIR_PAD defines the directory entries boundaries
500  *
501  * NOTE: It must be a multiple of 4
502  */
503 #define EXT2_DIR_PAD                    4
504 #define EXT2_DIR_ROUND                  (EXT2_DIR_PAD - 1)
505 #define EXT2_DIR_REC_LEN(name_len)      (((name_len) + 8 + EXT2_DIR_ROUND) & \
506                                          ~EXT2_DIR_ROUND)
507
508 #ifdef __KERNEL__
509 /*
510  * Function prototypes
511  */
512
513 /*
514  * Ok, these declarations are also in <linux/kernel.h> but none of the
515  * ext2 source programs needs to include it so they are duplicated here.
516  */
517 # define NORET_TYPE    /**/
518 # define ATTRIB_NORET  __attribute__((noreturn))
519 # define NORET_AND     noreturn,
520
521 /* acl.c */
522 extern int ext2_permission (struct inode *, int);
523
524 /* balloc.c */
525 extern int ext2_new_block (const struct inode *, unsigned long,
526                            __u32 *, __u32 *, int *);
527 extern void ext2_free_blocks (const struct inode *, unsigned long,
528                               unsigned long);
529 extern unsigned long ext2_count_free_blocks (struct super_block *);
530 extern void ext2_check_blocks_bitmap (struct super_block *);
531
532 /* bitmap.c */
533 extern unsigned long ext2_count_free (struct buffer_head *, unsigned);
534
535 /* dir.c */
536 extern int ext2_check_dir_entry (const char *, struct inode *,
537                                  struct ext2_dir_entry_2 *, struct buffer_head *,
538                                  unsigned long);
539
540 /* file.c */
541 extern int ext2_read (struct inode *, struct file *, char *, int);
542 extern int ext2_write (struct inode *, struct file *, char *, int);
543
544 /* fsync.c */
545 extern int ext2_sync_file (struct file *, struct dentry *);
546
547 /* ialloc.c */
548 extern struct inode * ext2_new_inode (const struct inode *, int, int *);
549 extern void ext2_free_inode (struct inode *);
550 extern unsigned long ext2_count_free_inodes (struct super_block *);
551 extern void ext2_check_inodes_bitmap (struct super_block *);
552
553 /* inode.c */
554 extern int ext2_bmap (struct inode *, int);
555
556 extern struct buffer_head * ext2_getblk (struct inode *, long, int, int *);
557 extern struct buffer_head * ext2_bread (struct inode *, int, int, int *);
558
559 extern int ext2_getcluster (struct inode * inode, long block);
560 extern void ext2_read_inode (struct inode *);
561 extern void ext2_write_inode (struct inode *);
562 extern void ext2_put_inode (struct inode *);
563 extern void ext2_delete_inode (struct inode *);
564 extern int ext2_sync_inode (struct inode *);
565 extern void ext2_discard_prealloc (struct inode *);
566
567 /* ioctl.c */
568 extern int ext2_ioctl (struct inode *, struct file *, unsigned int,
569                        unsigned long);
570
571 /* namei.c */
572 extern void ext2_release (struct inode *, struct file *);
573 extern int ext2_lookup (struct inode *, struct dentry *);
574 extern int ext2_create (struct inode *,struct dentry *,int);
575 extern int ext2_mkdir (struct inode *,struct dentry *,int);
576 extern int ext2_rmdir (struct inode *,struct dentry *);
577 extern int ext2_unlink (struct inode *,struct dentry *);
578 extern int ext2_symlink (struct inode *,struct dentry *,const char *);
579 extern int ext2_link (struct dentry *, struct inode *, struct dentry *);
580 extern int ext2_mknod (struct inode *, struct dentry *, int, int);
581 extern int ext2_rename (struct inode *, struct dentry *,
582                         struct inode *, struct dentry *);
583
584 /* super.c */
585 extern void ext2_error (struct super_block *, const char *, const char *, ...)
586         __attribute__ ((format (printf, 3, 4)));
587 extern NORET_TYPE void ext2_panic (struct super_block *, const char *,
588                                    const char *, ...)
589         __attribute__ ((NORET_AND format (printf, 3, 4)));
590 extern void ext2_warning (struct super_block *, const char *, const char *, ...)
591         __attribute__ ((format (printf, 3, 4)));
592 extern void ext2_put_super (struct super_block *);
593 extern void ext2_write_super (struct super_block *);
594 extern int ext2_remount (struct super_block *, int *, char *);
595 extern struct super_block * ext2_read_super (struct super_block *,void *,int);
596 extern int init_ext2_fs(void);
597 extern int ext2_statfs (struct super_block *, struct statfs *, int);
598
599 /* truncate.c */
600 extern void ext2_truncate (struct inode *);
601
602 /*
603  * Inodes and files operations
604  */
605
606 /* dir.c */
607 extern struct inode_operations ext2_dir_inode_operations;
608
609 /* file.c */
610 extern struct inode_operations ext2_file_inode_operations;
611
612 /* symlink.c */
613 extern struct inode_operations ext2_symlink_inode_operations;
614
615 #endif  /* __KERNEL__ */
616
617 #endif  /* _LINUX_EXT2_FS_H */