Lines Matching full:are

11 filesystem in use by Linux.  There are also implementations available
17 Most defaults are determined by the filesystem superblock, and can be
18 set using tune2fs(8). Kernel-determined defaults are indicated by (*).
78 compression though these are not yet implemented (some are available as
86 The space in the device or file is split up into blocks. These are
95 Blocks are clustered into block groups in order to reduce fragmentation
99 Two blocks near the start of each group are reserved for the block usage
101 are in use. Since each bitmap is limited to a single block, this means
104 The block(s) following the bitmaps in each block group are designated
105 as the inode table for that block group and the remainder are the data
116 the superblock are stored in block groups throughout the filesystem.
122 superblock feature). The groups chosen are 0, 1 and powers of 3, 5 and 7.
125 number of inodes and blocks in the filesystem and how many are free,
126 how many inodes and blocks are in each block group, when the filesystem
131 If the filesystem is revision 1 or higher, then there are extra fields,
135 All fields in the superblock (as in all other ext2 structures) are stored
151 There are some reserved fields which are currently unused in the inode
152 structure and several which are overloaded. One field is reserved for the
162 There are pointers to the first 12 blocks which contain the file's data
171 behaviour on a per-file basis. There are flags for secure deletion,
174 of these are supported yet.
187 The inode allocation code tries to assign inodes which are in the same
188 block group as the directory in which they are first created.
200 Symbolic links are also filesystem objects with inodes. They deserve
205 block for the symlink, and most symlinks are less than 60 characters long.
240 revision 1. There are three 32-bit fields, one for compatible features
294 scheme but less reliable. Both methods are equally resolvable by their
297 If you're exceptionally paranoid, there are 3 ways of making metadata
304 the first and last are not ext2 specific but do force the metadata to
310 There are various limits imposed by the on-disk layout of ext2. Other
311 limits are imposed by the current implementation of the kernel code.
312 Many of the limits are determined at the time the filesystem is first
332 so 8kB blocks are only allowed on Alpha systems (and other architectures
346 is over 130 trillion files. It would be higher except there are not
348 have to be 8 character filenames, even then we are fairly close to
363 When changes to the filesystem (e.g. a file is renamed) they are stored in
367 in that transaction are guaranteed to represent a valid filesystem state,
368 and are copied into the filesystem. If a transaction is incomplete at
370 the blocks in that transaction so they are discarded (which means any
371 filesystem changes they represent are also lost).