The branch main has been updated by mjg: URL: https://cgit.FreeBSD.org/src/commit/?id=5fc384d1810a3a0a0acefc67abe1daf6d6cd09e4
commit 5fc384d1810a3a0a0acefc67abe1daf6d6cd09e4 Author: Mateusz Guzik <[email protected]> AuthorDate: 2021-01-27 12:52:23 +0000 Commit: Mateusz Guzik <[email protected]> CommitDate: 2021-01-27 15:00:31 +0000 cache: fallback when encountering a mount point during .. lookup The current abort is overzealous. --- sys/kern/vfs_cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/kern/vfs_cache.c b/sys/kern/vfs_cache.c index b759affcc0ac..be06a2edc58b 100644 --- a/sys/kern/vfs_cache.c +++ b/sys/kern/vfs_cache.c @@ -4697,7 +4697,7 @@ cache_fplookup_dotdot(struct cache_fpl *fpl) * TODO * The opposite of climb mount is needed here. */ - return (cache_fpl_aborted(fpl)); + return (cache_fpl_partial(fpl)); } ncp = atomic_load_consume_ptr(&dvp->v_cache_dd); _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/dev-commits-src-main To unsubscribe, send any mail to "[email protected]"
