statx.2: Reorder the list of structure fields to match the structure definition

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2017-04-26 14:21:59 +02:00
parent aabbefb4d5
commit 13470fd3ef
1 changed files with 27 additions and 27 deletions

View File

@ -359,10 +359,22 @@ Apart from
.I statx .I statx
structure are: structure are:
.TP .TP
.I stx_attributes_mask .I stx_blksize
A mask indicating which bits in The "preferred" block size for efficient filesystem I/O.
.IR stx_attributes (Writing to a file in
are supported by the VFS and the filesystem. smaller chunks may cause an inefficient read-modify-rewrite.)
.TP
.I stx_attributes
Further status information about the file (see below for more information).
.TP
.I stx_nlink
The number of hard links on a file.
.TP
.I stx_uid
This field contains the user ID of the owner of the file.
.TP
.I stx_gid
This field contains the ID of the group owner of the file.
.TP .TP
.I stx_mode .I stx_mode
The file type and mode. The file type and mode.
@ -381,29 +393,10 @@ The number of blocks allocated to the file on the medium, in 512-byte units.
.IR stx_size /512 .IR stx_size /512
when the file has holes.) when the file has holes.)
.TP .TP
.I stx_blksize .I stx_attributes_mask
The "preferred" block size for efficient filesystem I/O. A mask indicating which bits in
(Writing to a file in .IR stx_attributes
smaller chunks may cause an inefficient read-modify-rewrite.) are supported by the VFS and the filesystem.
.TP
.I stx_nlink
The number of hard links on a file.
.TP
.I stx_uid
This field contains the user ID of the owner of the file.
.TP
.I stx_gid
This field contains the ID of the group owner of the file.
.TP
.IR stx_dev_major " and " stx_dev_minor
The device on which this file (inode) resides.
.TP
.IR stx_rdev_major " and " stx_rdev_minor
The device that this file (inode) represents if the file is of block or
character device type.
.TP
.I stx_attributes
Further status information about the file (see below for more information).
.TP .TP
.I stx_atime .I stx_atime
The file's last access timestamp. The file's last access timestamp.
@ -416,6 +409,13 @@ The file's last status change timestamp.
.TP .TP
.I stx_mtime .I stx_mtime
The file's last modification timestamp. The file's last modification timestamp.
.TP
.IR stx_dev_major " and " stx_dev_minor
The device on which this file (inode) resides.
.TP
.IR stx_rdev_major " and " stx_rdev_minor
The device that this file (inode) represents if the file is of block or
character device type.
.PP .PP
For further information on the above fields, see For further information on the above fields, see
.BR inode (7). .BR inode (7).