diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2010-04-23 15:25:22 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2010-04-23 15:25:22 +0000 |
commit | 38fc778c9782dbaa70fa6da92cfd8daaaa43d6fe (patch) | |
tree | ae3cdf39a2c58715ddd572c6ba0e0e6d72ea4ce2 /sys/arch/sparc/dev/presto.c | |
parent | ed069888a3c009f9af5ecffb1dd73b037a5b95c2 (diff) |
Recycle unused disklabel fields in order to create a disklabel unique
identifier, allowing the disk to be identified without relying on the
device name.
ok deraadt@ krw@ beck@ marco@ todd@
Diffstat (limited to 'sys/arch/sparc/dev/presto.c')
-rw-r--r-- | sys/arch/sparc/dev/presto.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/sparc/dev/presto.c b/sys/arch/sparc/dev/presto.c index 82e7c0c3ef2..a2435094985 100644 --- a/sys/arch/sparc/dev/presto.c +++ b/sys/arch/sparc/dev/presto.c @@ -1,4 +1,4 @@ -/* $OpenBSD: presto.c,v 1.15 2009/09/05 00:48:39 krw Exp $ */ +/* $OpenBSD: presto.c,v 1.16 2010/04/23 15:25:21 jsing Exp $ */ /* * Copyright (c) 2003, Miodrag Vallat. * All rights reserved. @@ -372,8 +372,6 @@ presto_getdisklabel(dev_t dev, struct presto_softc *sc) strncpy(lp->d_typename, "Prestoserve", 16); lp->d_type = DTYPE_SCSI; /* what better to put here? */ strncpy(lp->d_packname, sc->sc_model, 16); - lp->d_rpm = 3600; - lp->d_interleave = 1; lp->d_version = 1; lp->d_magic = DISKMAGIC; |