From 7e664d265e4edf28c214fc75f53eb341b55b6af2 Mon Sep 17 00:00:00 2001 From: mpi Date: Fri, 27 May 2022 11:10:54 +0000 Subject: [PATCH] Call uvm_vnp_uncache() before VOP_RENAME(). ok kettenis@ --- sys/nfs/nfs_serv.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sys/nfs/nfs_serv.c b/sys/nfs/nfs_serv.c index 4e18a83ae58..424fcc22f24 100644 --- a/sys/nfs/nfs_serv.c +++ b/sys/nfs/nfs_serv.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nfs_serv.c,v 1.120 2021/03/11 13:31:35 jsg Exp $ */ +/* $OpenBSD: nfs_serv.c,v 1.121 2022/05/27 11:10:54 mpi Exp $ */ /* $NetBSD: nfs_serv.c,v 1.34 1997/05/12 23:37:12 fvdl Exp $ */ /* @@ -1488,6 +1488,9 @@ nfsrv_rename(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp, error = -1; out: if (!error) { + if (tvp) { + (void)uvm_vnp_uncache(tvp); + } error = VOP_RENAME(fromnd.ni_dvp, fromnd.ni_vp, &fromnd.ni_cnd, tond.ni_dvp, tond.ni_vp, &tond.ni_cnd); } else { -- 2.20.1