diff options
author | Peter Galbavy <peter@cvs.openbsd.org> | 1999-08-02 12:29:32 +0000 |
---|---|---|
committer | Peter Galbavy <peter@cvs.openbsd.org> | 1999-08-02 12:29:32 +0000 |
commit | 9f97a57ea5fe8113bfc6b48c336ea284dedb7d49 (patch) | |
tree | 714dda64bd0cc1815978a76f6cfc91b8ad5c200d /sys/dev/raidframe | |
parent | a142091aeb7ec9ff1f3e3758ed21605023e31505 (diff) |
restore the NetBSD specific files to their -current state from
NetBSD. There is no reason to mess with these; they are just being
carried around as a reference at the moment.
Diffstat (limited to 'sys/dev/raidframe')
-rw-r--r-- | sys/dev/raidframe/rf_netbsd.h | 3 | ||||
-rw-r--r-- | sys/dev/raidframe/rf_netbsdkintf.c | 77 |
2 files changed, 37 insertions, 43 deletions
diff --git a/sys/dev/raidframe/rf_netbsd.h b/sys/dev/raidframe/rf_netbsd.h index 04ba6b1ef07..b69f2f78c1e 100644 --- a/sys/dev/raidframe/rf_netbsd.h +++ b/sys/dev/raidframe/rf_netbsd.h @@ -1,5 +1,6 @@ -/* $OpenBSD: rf_netbsd.h,v 1.3 1999/07/30 14:45:32 peter Exp $ */ +/* $OpenBSD: rf_netbsd.h,v 1.4 1999/08/02 12:29:31 peter Exp $ */ /* $NetBSD: rf_netbsd.h,v 1.6 1999/05/13 21:46:17 ad Exp $ */ + /*- * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc. * All rights reserved. diff --git a/sys/dev/raidframe/rf_netbsdkintf.c b/sys/dev/raidframe/rf_netbsdkintf.c index a8fc295c0b1..e69a4601e2d 100644 --- a/sys/dev/raidframe/rf_netbsdkintf.c +++ b/sys/dev/raidframe/rf_netbsdkintf.c @@ -252,8 +252,8 @@ struct raidbuf { struct raid_softc { int sc_flags; /* flags */ int sc_cflags; /* configuration flags */ - size_t sc_size;/* size of the raid device */ - dev_t sc_dev; /* our device.. */ + size_t sc_size; /* size of the raid device */ + dev_t sc_dev; /* our device.. */ char sc_xname[20]; /* XXX external name */ struct disk sc_dkdev; /* generic disk device info */ struct pool sc_cbufpool; /* component buffer pool */ @@ -299,8 +299,8 @@ void raidattach(num) int num; { - int raidID; - int i, rc; + int raidID; + int i, rc; #ifdef DEBUG printf("raidattach: Asked for %d units\n", num); @@ -351,10 +351,10 @@ raidattach(num) } numraid = num; bzero(raid_softc, num * sizeof(struct raid_softc)); - + for (raidID = 0; raidID < num; raidID++) { RF_Calloc(raidPtrs[raidID], 1, sizeof(RF_Raid_t), - (RF_Raid_t *)); + (RF_Raid_t *)); if (raidPtrs[raidID] == NULL) { printf("raidPtrs[%d] is NULL\n", raidID); } @@ -520,15 +520,15 @@ raidclose(dev, flags, fmt, p) } rs->sc_dkdev.dk_openmask = rs->sc_dkdev.dk_copenmask | rs->sc_dkdev.dk_bopenmask; - - if ((rs->sc_dkdev.dk_openmask == 0) && - ((rs->sc_flags & RAIDF_INITED) != 0)) { - /* Last one... device is not unconfigured yet. - Device shutdown has taken care of setting the - clean bits if RAIDF_INITED is not set - mark things as clean... */ - rf_update_component_labels( raidPtrs[unit] ); - } + + if ((rs->sc_dkdev.dk_openmask == 0) && + ((rs->sc_flags & RAIDF_INITED) != 0)) { + /* Last one... device is not unconfigured yet. + Device shutdown has taken care of setting the + clean bits if RAIDF_INITED is not set + mark things as clean... */ + rf_update_component_labels( raidPtrs[unit] ); + } raidunlock(rs); return (0); @@ -680,17 +680,17 @@ raidioctl(dev, cmd, data, flag, p) /* struct raidbuf *raidbp; */ RF_Config_t *k_cfg, *u_cfg; u_char *specific_buf; - int retcode = 0; - int row; - int column; - int s; - struct rf_recon_req *rrcopy, *rr; - RF_ComponentLabel_t *component_label; - RF_ComponentLabel_t ci_label; - RF_ComponentLabel_t **c_label_ptr; - RF_SingleComponent_t *sparePtr,*componentPtr; - RF_SingleComponent_t hot_spare; - RF_SingleComponent_t component; + int retcode = 0; + int row; + int column; + int s; + struct rf_recon_req *rrcopy, *rr; + RF_ComponentLabel_t *component_label; + RF_ComponentLabel_t ci_label; + RF_ComponentLabel_t **c_label_ptr; + RF_SingleComponent_t *sparePtr,*componentPtr; + RF_SingleComponent_t hot_spare; + RF_SingleComponent_t component; if (unit >= numraid) return (ENXIO); @@ -863,7 +863,6 @@ raidioctl(dev, cmd, data, flag, p) raidunlock(rs); return (retcode); - case RAIDFRAME_GET_COMPONENT_LABEL: c_label_ptr = (RF_ComponentLabel_t **) data; /* need to read the component label for the disk indicated @@ -879,15 +878,15 @@ raidioctl(dev, cmd, data, flag, p) return (ENOMEM); bzero((char *) component_label, sizeof(RF_ComponentLabel_t)); - + retcode = copyin( *c_label_ptr, component_label, sizeof(RF_ComponentLabel_t)); if (retcode) { return(retcode); } - - row = component_label->row; + + row = component_label->row; printf("Row: %d\n",row); if (row > raidPtrs[unit]->numRow) { row = 0; /* XXX */ @@ -937,7 +936,7 @@ raidioctl(dev, cmd, data, flag, p) return(EINVAL); } - /* XXX this isn't allowed to do anything for now :-) */ + /* XXX this isn't allowed to do anything for now :-) */ #if 0 raidwrite_component_label( raidPtrs[unit]->Disks[row][column].dev, @@ -977,22 +976,16 @@ raidioctl(dev, cmd, data, flag, p) } return (retcode); - /* initialize all parity */ case RAIDFRAME_REWRITEPARITY: - + if (raidPtrs[unit]->Layout.map->faultsTolerated == 0) { /* Parity for RAID 0 is trivially correct */ raidPtrs[unit]->parity_good = RF_RAID_CLEAN; return(0); } - /* borrow the thread of the requesting process */ - raidPtrs[unit]->proc = p; /* Blah... :-p GO */ - retcode = rf_RewriteParity(raidPtrs[unit]); - /* return I/O Error if the parity rewrite fails */ - /* borrow the thread of the requesting process */ raidPtrs[unit]->proc = p; /* Blah... :-p GO */ retcode = rf_RewriteParity(raidPtrs[unit]); @@ -1036,7 +1029,7 @@ raidioctl(dev, cmd, data, flag, p) raidPtrs[unit]->proc = p; /* Blah... :-p GO */ retcode = rf_ReconstructInPlace(raidPtrs[unit], row, column); splx(s); - return (retcode); + return(retcode); /* issue a test-unit-ready through raidframe to the indicated * device */ @@ -1056,7 +1049,7 @@ raidioctl(dev, cmd, data, flag, p) return (ENODEV); ucfgp = (RF_DeviceConfig_t **) data; RF_Malloc(cfg, sizeof(RF_DeviceConfig_t), - (RF_DeviceConfig_t *)); + (RF_DeviceConfig_t *)); if (cfg == NULL) return (ENOMEM); bzero((char *) cfg, sizeof(RF_DeviceConfig_t)); @@ -1084,7 +1077,7 @@ raidioctl(dev, cmd, data, flag, p) cfg->spares[i] = raid->Disks[0][j]; } retcode = copyout((caddr_t) cfg, (caddr_t) * ucfgp, - sizeof(RF_DeviceConfig_t)); + sizeof(RF_DeviceConfig_t)); RF_Free(cfg, sizeof(RF_DeviceConfig_t)); return (retcode); @@ -1322,7 +1315,7 @@ raidinit(dev, raidPtr, unit) rs = &raid_softc[unit]; pool_init(&rs->sc_cbufpool, sizeof(struct raidbuf), 0, - 0, 0, "raidpl", 0, NULL, NULL, M_RAIDFRAME); + 0, 0, "raidpl", 0, NULL, NULL, M_RAIDFRAME); /* XXX should check return code first... */ |