getdents.2, capabilities.7, symlink.7: tfix: Change 'i-node' to 'inode'

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2014-11-12 22:32:40 +01:00
parent ac5ba355d5
commit e7e006f279
3 changed files with 6 additions and 6 deletions

View File

@ -202,7 +202,7 @@ program on an ext2 directory:
.nf
.RB "$" " ./a.out /testfs/"
--------------- nread=120 ---------------
i-node# file type d_reclen d_off d_name
inode# file type d_reclen d_off d_name
2 directory 16 12 .
2 directory 16 24 ..
11 directory 24 44 lost+found
@ -258,7 +258,7 @@ main(int argc, char *argv[])
break;
printf("\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- nread=%d \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\\n", nread);
printf("i\-node# file type d_reclen d_off d_name\\n");
printf("inode# file type d_reclen d_off d_name\\n");
for (bpos = 0; bpos < nread;) {
d = (struct linux_dirent *) (buf + bpos);
printf("%8ld ", d\->d_ino);

View File

@ -182,7 +182,7 @@ Set the
and
.B FS_IMMUTABLE_FL
.\" These attributes are now available on ext2, ext3, Reiserfs, XFS, JFS
i-node flags (see
inode flags (see
.BR chattr (1)).
.TP
.BR CAP_MAC_ADMIN " (since Linux 2.6.25)"

View File

@ -46,8 +46,8 @@ A hard link to a file is indistinguishable from the original file because
it is a reference to the object underlying the original filename.
(To be precise: each of the hard links to a file is a reference to
the same
.IR "i-node number" ,
where an i-node number is an index into the i-node table,
.IR "inode number" ,
where an inode number is an index into the inode table,
which contains metadata about all files on a filesystem.
See
.BR stat (2).)
@ -56,7 +56,7 @@ Hard links may not refer to directories
(to prevent the possibility of loops within the filesystem tree,
which would confuse many programs)
and may not refer to files on different filesystems
(because i-node numbers are not unique across filesystems).
(because inode numbers are not unique across filesystems).
A symbolic link is a special type of file whose contents are a string
that is the pathname of another file, the file to which the link refers.