brian@natinst.UUCP (Brian H. Powell) (07/08/88)
First of all, I'm on a Sun 3/160 with SunOS 3.2. I'm having trouble getting the bytes/inode parameter to newfs/mkfs work like I want it to. Normally, it uses 2048 bytes/inode. I want four times that many, so I want 512 bytes/inode. On the Sun, we've got a newfs program, which I'm not sure is standard. Below that, there's the equivalent mkfs call. The trouble is, I'm not getting as many inodes as I want. natinst# /etc/newfs -n -v -i 512 /dev/rxl0e /etc/mkfs /dev/rxl0e 390744 67 27 8192 1024 16 10 60 512 t 0 /dev/rxl0e: 390744 sectors in 216 cylinders of 27 tracks, 67 sectors 200.1Mb in 14 cyl groups (16 c/g, 14.82Mb/g, 2048 i/g) super-block backups (for fsck -b#) at: 32, 29056, 58080, 87104, 116128, 145152, 174176, 203200, 232224, 261248, 290272, 319296, 348320, 377344, natinst# /etc/mount /var and df /var and df -i /var show: Filesystem kbytes used avail capacity Mounted on /dev/xl0e 191547 9 172383 0% /var Filesystem iused ifree %iused Mounted on /dev/xl0e 4 28668 0% /var To have 512 bytes/inode, I'd have to have about 95000 inodes on that partition. I'm only getting 30% of that. Is there some other parameter that I have to tweak to get it to work? What's going on? Thanks in advance. Brian H. Powell National Instruments Corp. brian@natinst.uucp 12109 Technology Blvd. ut-sally!cs.utexas.edu!natinst!brian Austin, Texas 78727-6204 AppleLink:D0351 (512) 250-9119 x832
chris@mimsy.UUCP (Chris Torek) (07/09/88)
In article <699@natinst.UUCP> brian@natinst.UUCP (Brian H. Powell) writes: > First of all, I'm on a Sun 3/160 with SunOS 3.2. (Then why /var? That name has a special meaning in 4.0. Anyway:) SunOS 3.2 newfs+mkfs is like the 4.3BSD newfs+mkfs, and not like the 4.3BSD-tahoe newfs (no `mkfs' in 4.3-tahoe). >I'm having trouble getting the bytes/inode parameter to newfs/mkfs work >like I want it to. Normally, it uses 2048 bytes/inode. Sometimes. You are getting about 7K/inode, for reasons to be explained in a moment. >I want four times that many, so I want 512 bytes/inode. This is rather excessive. 2K/inode usually provides more than twice as many inode as you really need. On file systems with many tiny files, you might average as low as 1.5K/inode, or even 1K/inode. 512 bytes per inode, though, would mean not only that every file would have to be <= 512 bytes long, but every directory would also have to be <= 512 bytes long. Four times your current allocation is just a bit under 2K/inode. >natinst# /etc/newfs -n -v -i 512 /dev/rxl0e >/etc/mkfs /dev/rxl0e 390744 67 27 8192 1024 16 10 60 512 t 0 >/dev/rxl0e: 390744 sectors in 216 cylinders of 27 tracks, 67 sectors > 200.1Mb in 14 cyl groups (16 c/g, 14.82Mb/g, 2048 i/g) Look at the numbers in the last line: 16 c/g, 14.82MB/g (Mb is just wrong; the sizes are bytes, not bits! :-) ), 2048 i/g. Translation: 16 cylinders per cylinder group, 14.82 megabytes each, with 2048 inodes each. That is 2048 inodes per 14.82 MB of inode+data space, or just under 7 MB of data space per inode (the inodes take part of that 14.82 MB, as each inode consumes 128 bytes). Given that there are 16 cylinders per group, and that 16 cylinders is 14.82 MB, to get 512 bytes per inode, you should see: 512 bytes * #i + 128 bytes * i = 14.82 MB [1] 640 bytes * #i = 14.82 MB #i = 14.82*1024*1024 / 640 or around 24000 inodes per group! Where did they all go? >What's going on? ----- [1] these calculations are somewhat off; there is also a block map in each cylinder group. Still, they are good enough for demonstration purposes. ----- What is going on is that there is (was) a hard limit in the way: % egrep MAXIPG /sys/ufs/fs.h (on a Sun) * MAXIPG bounds the number of inodes per cylinder group, and * N.B.: MAXIPG must be a multiple of INOPB(fs). #define MAXIPG 2048 /* max number inodes/cyl group */ char cg_iused[MAXIPG/NBBY]; /* used inode map */ % Now, you cannot just raise MAXIPG wantonly; indeed, if you do not have source, you cannot raise it at all. So what *can* you do? There is a `-c' parameter to newfs, described as -c #cylinders/group The number of cylinders per cylinder group in a file system. The default value used is 16. If you lower c/g, you will lower MB/g. A smaller MB/g will give a smaller MB/inode ratio if i/g remains fixed. Hence newfs -c 4 /dev/rxl0e should give you `around' 2K/inode. Of course, your cylinder groups will be very small, which is not terribly advantageous. But there is another problem. Newfs cannot lower c/g below 16 when s/t and t/c are 67 and 27 and the blocksize is 8K [2]. So now what? It might work to claim that the device has only 66 sectors per track, which would let you use a c/g of 8; this loses 27 sectors, or 13.5KB, per cylinder, and goofs up the allocation policies, unfortunately. Or you could use a blocksize of 4K, but that prevents paging on a Sun 3. ----- [2] The problem has to do with the fact that 67*27 = 1809, which is odd, or more precisely, has no 2s in its prime factorisation. The magic calculations, from the 4.3BSD-tahoe newfs, are: sblock.fs_spc = secpercyl; for (sblock.fs_cpc = NSPB(&sblock), i = sblock.fs_spc; sblock.fs_cpc > 1 && (i & 1) == 0; sblock.fs_cpc >>= 1, i >>= 1) /* void */; mincpc = sblock.fs_cpc; bpcg = sblock.fs_spc * sectorsize; inospercg = roundup(bpcg / sizeof(struct dinode), INOPB(&sblock)); if (inospercg > MAXIPG(&sblock)) inospercg = MAXIPG(&sblock); used = (sblock.fs_iblkno + inospercg / INOPF(&sblock)) * NSPF(&sblock); mincpgcnt = howmany(sblock.fs_cgoffset * (~sblock.fs_cgmask) + used, sblock.fs_spc); mincpg = roundup(mincpgcnt, mincpc); secpercyl is 67*27; fs_cpc (cylinders per rotational position cycle) is (8192 bytes/block) / (512 bytes/sector) or 16 sectors/block. This gives a mincpc of 16, which carries on down into mincpg. ----- In short, there are really no good solutions. 4.3BSD-tahoe has eliminated the 2048 MAXIPG limit; MAXIPG is now computed as one third of the space in a cylinder group (via the MAXIPG(&sblock) macro above). We can hope that Sun will pick up Kirk's new code quickly. Until then, well, you may just have to create bigger files. . . . -- In-Real-Life: Chris Torek, Univ of MD Comp Sci Dept (+1 301 454 7163) Domain: chris@mimsy.umd.edu Path: uunet!mimsy!chris