svn commit: r307743 - stable/10/sys/vm
Mark Johnston
markj at FreeBSD.org
Fri Oct 21 17:43:27 UTC 2016
Author: markj
Date: Fri Oct 21 17:43:25 2016
New Revision: 307743
URL: https://svnweb.freebsd.org/changeset/base/307743
Log:
MFC r307236:
Plug a vnode lock leak in vm_fault_hold().
Modified:
stable/10/sys/vm/vm_fault.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/vm/vm_fault.c
==============================================================================
--- stable/10/sys/vm/vm_fault.c Fri Oct 21 17:39:05 2016 (r307742)
+++ stable/10/sys/vm/vm_fault.c Fri Oct 21 17:43:25 2016 (r307743)
@@ -320,6 +320,8 @@ RetryFault:;
growstack = FALSE;
goto RetryFault;
}
+ if (fs.vp != NULL)
+ vput(fs.vp);
return (result);
}
More information about the svn-src-stable-10
mailing list