[XFS] How yo use real-time subvolume
Hi!
I created filesystem XFS on partition hda8 with subvolume real-time on partition hda5:
Code:
mkfs.xfs -r rtdev=/dev/hda5 /dev/hda8
and i mounted it:
Code:
mount -t xfs -o rtdev=/dev/hda5 /dev/hda8 /xfs
But I don't know how can I use this partition hda5 with subvolume real-time. I don't know how to create directories, copy files to it and another. Thanks for all answers!
EDIT:
in manual it is writen:
Quote:
The realtime section is used to store the data of realtime files.These files had an attribute bit set through xfsctl(3) after file creation, before any data was written to the file.
But I can't understand, how can I use it :( Can anybody give me any example how can I use function xfsctl, please?