<html><body><p><tt><font size="4">>I also see that the first 1024 inodes are immediately allocated upon<br>>creation. I assume these are allocated to internal data structures and<br>>are a copy of a subset of the first 4038 inodes allocated for new file<br>>systems? It would be useful to know if these internal structures are<br>>fixed for independent filesets and if they are not, what factors<br>>determine their layout (for performance purposes).</font></tt><br><br>Independent filesets don't have the internal structures that the file system has. Other than the fileset's root directory all of the remaining inodes can be allocated to user files.  Inodes are always allocated in full metadata blocks. The inodes for an independent fileset are allocated  in their own blocks. This makes fileset snapshots more efficient, since a copy-on-write of the block of inodes will only copy inodes in the fileset.  The inode blocks for all filesets are in the same inode file, but the blocks for each independent fileset are strided, making them easy to prefetch for policy scans.<br><br>-Wayne <BR>
</body></html>