svn commit: r244375 - stable/9/sys/ufs/ufs

Konstantin Belousov kib at FreeBSD.org
Tue Dec 18 04:27:34 UTC 2012


Author: kib
Date: Tue Dec 18 04:27:33 2012
New Revision: 244375
URL: http://svnweb.freebsd.org/changeset/base/244375

Log:
  MFC r244239:
  Fix a typo, resulting in the NULL pointer dereference.

Modified:
  stable/9/sys/ufs/ufs/ufs_quota.c
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/ufs/ufs/ufs_quota.c
==============================================================================
--- stable/9/sys/ufs/ufs/ufs_quota.c	Tue Dec 18 04:23:44 2012	(r244374)
+++ stable/9/sys/ufs/ufs/ufs_quota.c	Tue Dec 18 04:27:33 2012	(r244375)
@@ -1052,7 +1052,7 @@ again:
 		error = vget(vp, LK_EXCLUSIVE | LK_INTERLOCK, td);
 		if (error) {
 			if (error == ENOENT) {
-				MNT_VNODE_FOREACH_ALL_ABORT(mp, mvp);
+				MNT_VNODE_FOREACH_ACTIVE_ABORT(mp, mvp);
 				goto again;
 			}
 			continue;


More information about the svn-src-all mailing list