Set the disk type to SCSI in the in-core label for the whole disk.

This commit is contained in:
Bruce Evans 1998-07-28 18:59:49 +00:00
parent 49a3215509
commit ce4fb6afc1
2 changed files with 4 additions and 2 deletions

View File

@ -28,7 +28,7 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE. * POSSIBILITY OF SUCH DAMAGE.
* *
* $Id: od.c,v 1.41 1998/07/04 22:30:24 julian Exp $ * $Id: od.c,v 1.42 1998/07/13 09:53:11 bde Exp $
*/ */
/* /*
@ -370,6 +370,7 @@ od_open(dev, mode, fmt, p, sc_link)
/* Build label for whole disk. */ /* Build label for whole disk. */
bzero(&label, sizeof label); bzero(&label, sizeof label);
label.d_type = DTYPE_SCSI;
label.d_secsize = od->params.secsiz; label.d_secsize = od->params.secsiz;
label.d_nsectors = od->params.sectors; label.d_nsectors = od->params.sectors;
label.d_ntracks = od->params.heads; label.d_ntracks = od->params.heads;

View File

@ -14,7 +14,7 @@
* *
* Ported to run under 386BSD by Julian Elischer (julian@dialix.oz.au) Sept 1992 * Ported to run under 386BSD by Julian Elischer (julian@dialix.oz.au) Sept 1992
* *
* $Id: sd.c,v 1.134 1998/07/13 08:23:05 julian Exp $ * $Id: sd.c,v 1.135 1998/07/14 11:34:22 bde Exp $
*/ */
#include "opt_bounce.h" #include "opt_bounce.h"
@ -474,6 +474,7 @@ sd_open(dev_t dev, int mode, int fmt, struct proc *p, struct scsi_link *sc_link)
#ifndef SLICE #ifndef SLICE
/* Build label for whole disk. */ /* Build label for whole disk. */
bzero(&label, sizeof label); bzero(&label, sizeof label);
label.d_type = DTYPE_SCSI;
label.d_secsize = sd->params.secsiz; label.d_secsize = sd->params.secsiz;
label.d_nsectors = sd->params.sectors; label.d_nsectors = sd->params.sectors;
label.d_ntracks = sd->params.heads; label.d_ntracks = sd->params.heads;