Se você está se perguntando sobre o alinhamento de stripe, leia a man page para "mkfs.xfs" e procure por "sunit" e "swidth" (também chamado de su e sw). Na página do manual:
sunit=value: This is used to specify the stripe unit for a RAID device or a logical volume. The value has to be specified in
512-byte block units. Use the su suboption to specify the stripe unit size in bytes. This suboption ensures that
data allocations will be stripe unit aligned when the current end of file is being extended and the file size is
larger than 512KiB. Also inode allocations and the internal log will be stripe unit aligned.
swidth=value
This is used to specify the stripe width for a RAID device or a striped logical volume. The value has to be spec-
ified in 512-byte block units. Use the sw suboption to specify the stripe width size in bytes. This suboption is
required if -d sunit has been specified and it has to be a multiple of the -d sunit suboption.
Recapitulação rápida:
sunit: unidade de distribuição em blocos de 512 bytes
swidth: largura da faixa = sunit * $ num_data_disks
Desde que você tenha um RAID5 de 8 discos (paridade distribuída)
$ num_data_disks = 8
Tamanho da faixa = 1M = 1024kB
Então, para formatar
mkfs.xfs -d su = 1024k, sw = 8 / dev / sd {X}
Isso também pode ser encontrado no FAQ do XFS.org.