Lines 1519-1525
Link Here
|
1519 |
error = VOP_LOCK1(vp, flags, file, line); |
1519 |
error = VOP_LOCK1(vp, flags, file, line); |
1520 |
flags &= ~LK_INTERLOCK; /* Interlock is always dropped. */ |
1520 |
flags &= ~LK_INTERLOCK; /* Interlock is always dropped. */ |
1521 |
KASSERT((flags & LK_RETRY) == 0 || error == 0, |
1521 |
KASSERT((flags & LK_RETRY) == 0 || error == 0, |
1522 |
("LK_RETRY set with incompatible flags (0x%x) or an error occured (%d)", |
1522 |
("LK_RETRY set with incompatible flags (0x%x) and an error occured (%d)", |
1523 |
flags, error)); |
1523 |
flags, error)); |
1524 |
/* |
1524 |
/* |
1525 |
* Callers specify LK_RETRY if they wish to get dead vnodes. |
1525 |
* Callers specify LK_RETRY if they wish to get dead vnodes. |