]> asedeno.scripts.mit.edu Git - linux.git/commit
dcache: d_splice_alias mustn't create directory aliases
authorJ. Bruce Fields <bfields@redhat.com>
Mon, 17 Feb 2014 22:58:42 +0000 (17:58 -0500)
committerAl Viro <viro@zeniv.linux.org.uk>
Thu, 7 Aug 2014 18:40:10 +0000 (14:40 -0400)
commit908790fa3b779d37365e6b28e3aa0f6e833020c3
tree60719e471e80dbbf48f984520de7e8f3e22e1a38
parent75a2352d0110960aeee1a28ddc09a55f97c99100
dcache: d_splice_alias mustn't create directory aliases

Currently if d_splice_alias finds a directory with an alias that is not
IS_ROOT or not DCACHE_DISCONNECTED, it creates a duplicate directory.

Duplicate directory dentries are unacceptable; it is better just to
error out.

(In the case of a local filesystem the most likely case is filesystem
corruption: for example, perhaps two directories point to the same child
directory, and the other parent has already been found and cached.)

Note that distributed filesystems may encounter this case in normal
operation if a remote host moves a directory to a location different
from the one we last cached in the dcache.  For that reason, such
filesystems should instead use d_materialise_unique, which tries to move
the old directory alias to the right place instead of erroring out.

Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/dcache.c