diff options
author | Peter Galbavy <peter@cvs.openbsd.org> | 2001-01-02 09:06:27 +0000 |
---|---|---|
committer | Peter Galbavy <peter@cvs.openbsd.org> | 2001-01-02 09:06:27 +0000 |
commit | 2d9ebbc5e6b957be0a398b5491d6916e48bc6845 (patch) | |
tree | 245ebc9075f913d41bf061b4f6379830a2d977f3 /sys | |
parent | cbcf46f2a7c941c84070da8b53218bd8702c1284 (diff) |
Fix PR/1489 - apply patch supplied - thanks Michael Joosten <joost@c-lab.de>
The whole issue of processes and threads need looking at, as NetBSD
and OpenBSD do things slightly differently - think extra arg to
VOP_XXX calls for one.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/raidframe/rf_reconstruct.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/raidframe/rf_reconstruct.c b/sys/dev/raidframe/rf_reconstruct.c index 47884abd0c8..7425bb612de 100644 --- a/sys/dev/raidframe/rf_reconstruct.c +++ b/sys/dev/raidframe/rf_reconstruct.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rf_reconstruct.c,v 1.9 2000/08/08 16:07:45 peter Exp $ */ +/* $OpenBSD: rf_reconstruct.c,v 1.10 2001/01/02 09:06:26 peter Exp $ */ /* $NetBSD: rf_reconstruct.c,v 1.26 2000/06/04 02:05:13 oster Exp $ */ /* * Copyright (c) 1995 Carnegie-Mellon University. @@ -460,7 +460,7 @@ rf_ReconstructInPlace(raidPtr, row, col) badDisk = &raidPtr->Disks[row][col]; - proc = raidPtr->engine_thread; + proc = raidPtr->recon_thread; /* This device may have been opened successfully the first time. Close it before trying to open it again.. */ |