]> git.baikalelectronics.ru Git - kernel.git/commit
vfs: make O_PATH file descriptors usable for 'fstat()'
authorLinus Torvalds <torvalds@linux-foundation.org>
Fri, 14 Sep 2012 21:48:21 +0000 (14:48 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 14 Sep 2012 21:48:21 +0000 (14:48 -0700)
commitb65dcbf680decfa79dcc71a9151d7597ad507e10
treecebd3be422d89121a0bbca0b27a3a6125a6f4833
parent515813842e4bd153d72b18dd3658be08ce8718ab
vfs: make O_PATH file descriptors usable for 'fstat()'

We already use them for openat() and friends, but fstat() also wants to
be able to use O_PATH file descriptors.  This should make it more
directly comparable to the O_SEARCH of Solaris.

Note that you could already do the same thing with "fstatat()" and an
empty path, but just doing "fstat()" directly is simpler and faster, so
there is no reason not to just allow it directly.

See also commit 74a4de2f88d8, which did the same thing for fchdir, for
the same reasons.

Reported-by: ольга крыжановская <olga.kryzhanovska@gmail.com>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: stable@kernel.org # O_PATH introduced in 3.0+
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/stat.c