diff options
Diffstat (limited to 'sys/dev/vinum')
-rw-r--r-- | sys/dev/vinum/vinumlock.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/sys/dev/vinum/vinumlock.c b/sys/dev/vinum/vinumlock.c index 78c4ce8..1834b84 100644 --- a/sys/dev/vinum/vinumlock.c +++ b/sys/dev/vinum/vinumlock.c @@ -37,7 +37,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: vinumlock.c,v 1.11 1999/10/12 04:35:37 grog Exp grog $ + * $Id: vinumlock.c,v 1.12 2000/01/05 22:17:25 grog Exp grog $ * $FreeBSD$ */ @@ -248,14 +248,13 @@ lockrange(daddr_t stripe, struct buf *bp, struct plex *plex) } #endif plex->lockwaits++; /* waited one more time */ - while (lock->stripe) /* wait for it to become free */ tsleep((void *) lock->stripe, PRIBIO, "vrlock", 2 * hz); - break; /* out of the inner level loop */ + lock = plex->lock; /* start again */ + foundlocks = 0; + pos = NULL; } - } else { - if (pos == NULL) /* still looking for somewhere? */ + } else if (pos == NULL) /* still looking for somewhere? */ pos = lock; /* a place to put this one */ - } } /* |