diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2009-12-01 01:40:03 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2009-12-01 01:40:03 +0000 |
commit | 56901e51ebf1db9a1c61f31f83c5b6e63d702f20 (patch) | |
tree | e67ac5f8cc1747cdb9604d963d72edfc3d46c789 /sys/dev/ic | |
parent | 92a8e1a40ad01eb3ce5d68d4a5b10308e44cdf34 (diff) |
put the midlayer changes back in.
the two issues affecting it last time are gone. the first, mishandling of
TRY_AGAIN_LATER is not relevant now that krw got rid of TRY_AGAIN_LATER.
the second, the misbehaving IBM disk was found to be a problem with siop
using ordered tags on most ops combined with the speed of the new code.
putting this in so we can move forward.
ok krw@ "commit please" marco@
Diffstat (limited to 'sys/dev/ic')
-rw-r--r-- | sys/dev/ic/mpi.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/dev/ic/mpi.c b/sys/dev/ic/mpi.c index 0137a8dee4b..a08fddef6cd 100644 --- a/sys/dev/ic/mpi.c +++ b/sys/dev/ic/mpi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mpi.c,v 1.121 2009/11/12 06:20:27 dlg Exp $ */ +/* $OpenBSD: mpi.c,v 1.122 2009/12/01 01:40:02 dlg Exp $ */ /* * Copyright (c) 2005, 2006, 2009 David Gwynne <dlg@openbsd.org> @@ -2176,7 +2176,6 @@ mpi_eventnotify_done(struct mpi_ccb *ccb) void mpi_evt_sas(struct mpi_softc *sc, struct mpi_rcb *rcb) { -#if 0 struct mpi_evt_sas_change *ch; u_int8_t *data; @@ -2214,7 +2213,6 @@ mpi_evt_sas(struct mpi_softc *sc, struct mpi_rcb *rcb) "0x%02x\n", DEVNAME(sc), ch->reason); break; } -#endif } void |