From: mpi Date: Fri, 27 May 2022 11:10:54 +0000 (+0000) Subject: Call uvm_vnp_uncache() before VOP_RENAME(). X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=7e664d265e4edf28c214fc75f53eb341b55b6af2;p=openbsd Call uvm_vnp_uncache() before VOP_RENAME(). ok kettenis@ --- 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 {