- Remove LK_INTERLOCK from the vn_lock() in ffs_snapshot().

Pointy hat to:	me
Found by:	green
This commit is contained in:
Jeff Roberson 2002-10-08 21:00:52 +00:00
parent 3685096edb
commit a2c4ff970b

View File

@ -406,7 +406,7 @@ ffs_snapshot(mp, snapfile)
}
if (snapdebug)
vprint("ffs_snapshot: busy vnode", xvp);
if (vn_lock(xvp, LK_EXCLUSIVE | LK_INTERLOCK, td) != 0)
if (vn_lock(xvp, LK_EXCLUSIVE, td) != 0)
goto loop;
xp = VTOI(xvp);
/*