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