PUTST(8) — UNIX Programmer’s Manual
NAME
putst − manipulate kernel databases for striped disk partitions
SYNOPSIS
putst -vna [ /dev/rds? ... ]
DESCRIPTION
putst initializes a stripe description table in the DYNIX kernel for a “striped disk” partition. Striped disk partitions are logical disk partitions which are interleaved over several physical disk partitions. Striped disk partitions are used to take advantage of performance improvements made possible by the parallel operation of the several disk arms which make up the striped disk partition. This parallelism can be acheived either by distributing large transfers over many disks or by spreading multiple simultaneous requests to the same partition across multiple disks. Another possible advantage may come from the ability to create multi-volume virtual partitions whose size is larger than that of any physical disk involved in it. Striped disk partitions may be accessed just as “normal” disk partitions are, including for creating and mounting DYNIX file systems on them.
putst must be used before the striped partition can be initialized with newfs(8) or mkfs(8), or mounted as a DYNIX file system, or otherwise accessed for reading and writing.
Normally putst is invoked at reboot time by the startup script /etc/rc to load stripe tables from the stripe database file /etc/stripecap. For each stripe device name /dev/rdsX given as an argument, putst searches for an entry named dsX in /etc/stripecap, and uses the parameters defined by that entry to initialize the stripe partition’s configuration in the DYNIX kernel.
If the -a switch is used, no file name arguments need be given, and putst automatically loads the stripe tables for /dev/rds0 through /dev/rds255 by using the entries ds0 through ds7 in /etc/stripecap (if they exist).
If the -v switch is used, putst displays the information loaded into the Dynix kernel’s stripe table after obtaining it from /etc/stripecap to download to the driver.
If the -n switch is used, putst perform all of its normal actions, but will not actually update the kernel stripe table. This can be useful for checking the syntax of hand-generated stripecap entries.
For reasons of security, the stripe device entries ( /dev/rds? ) are owned by the superuser; hence you must be the superuser to use putst. Also, the download will not change the stripe table entry unless your’s is the only active open of that stripe device.
Entries in /etc/stripecap are normally created with the newst(8) utility, but may also be generated manually.
FILES
/etc/putst
/etc/stripecap
/dev/rds∗
SEE ALSO
getst(8), newst(8), ds(4), stripecap(5)
CAVEATS
It is assumed that the major and minor device numbers for the composit partitions are for the block interface, not the raw interface. Be careful that they are not overlapping partititions on the same device or data corruption may result from their use. Likewise, care must be taken to ensure that the same stripecap configuration is repeatedly used to access the stripe partition. Otherwise, previously written data may appear to be corrupt and subsequently get corrupted.
The partitions specified in the stripecap must be such that partition sizes are in descending order as the the partitions are in ascending order.
Stripe block sizes must be a minimum of 16 or a multiple thereof (representing 8kbytes). Stripe section sizes must be a multiple of the that section’s stripe block size. This can result in some wasted space and the end of each composit partition.
Performance may be reduced if partitions in the stripe partition are not on distict disk drives. It is also recommended that they be located on distinct disk controller channels. Likewise, it is best for partitions to be of equal lengths on identical drives and controllers, although not necessary.
Note that the newst(8) utility sets the stripe block size to match the stripe section size (no interleave) when only one partition is involved or when multiple partitions in that section reside on the same physical drive. In this situation a performance degradation may result otherwise. Also, some experimentation with stripe block sizes may be useful to tune performance to your application.
The total size of the entire stripe partition must be less than 2 gigabytes. This is currently a DYNIX addressing limitation.
Stripe partitions cannot be used for the root file system, since the DYNIX kernel and standalone utilities do not know the stripe partitions layout. This information is not available until the root file system is being used to execute putst. Similarly, do not use it as a swap partition.
The stripe partition’s data may be corrupted if one of its composit partitions is written to directly.
DYNIX