root/include/linux/ext2_fs.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


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

/* [previous][next][first][last][top][bottom][index][help] */