- Remove LK_INTERLOCK from the vn_lock() in ffs_snapshot().
Pointy hat to: me Found by: green
This commit is contained in:
parent
3685096edb
commit
a2c4ff970b
@ -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);
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user