summaryrefslogtreecommitdiffstats
path: root/sys/pci/if_ste.c
diff options
context:
space:
mode:
authorwpaul <wpaul@FreeBSD.org>2000-12-04 22:46:50 +0000
committerwpaul <wpaul@FreeBSD.org>2000-12-04 22:46:50 +0000
commit9e208c7442e565fc1de970045410945e52702467 (patch)
tree3933565b0c0070018517c21c29b3ccc39d115ccb /sys/pci/if_ste.c
parente01a4c0fd9aff88ae8d9b70d8f82aaf56c9c9116 (diff)
downloadFreeBSD-src-9e208c7442e565fc1de970045410945e52702467.zip
FreeBSD-src-9e208c7442e565fc1de970045410945e52702467.tar.gz
Initialize/grab the mutex earlier in the attach phase, so that
bailing out to the fail: label where we release/destroy the mutex will work without exploding.
Diffstat (limited to 'sys/pci/if_ste.c')
-rw-r--r--sys/pci/if_ste.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/pci/if_ste.c b/sys/pci/if_ste.c
index 4120762..7b099e8 100644
--- a/sys/pci/if_ste.c
+++ b/sys/pci/if_ste.c
@@ -917,6 +917,9 @@ static int ste_attach(dev)
unit = device_get_unit(dev);
bzero(sc, sizeof(struct ste_softc));
+ mtx_init(&sc->ste_mtx, device_get_nameunit(dev), MTX_DEF);
+ STE_LOCK(sc);
+
/*
* Handle power management nonsense.
*/
@@ -1002,8 +1005,6 @@ static int ste_attach(dev)
}
callout_handle_init(&sc->ste_stat_ch);
- mtx_init(&sc->ste_mtx, device_get_nameunit(dev), MTX_DEF);
- STE_LOCK(sc);
/* Reset the adapter. */
ste_reset(sc);
OpenPOWER on IntegriCloud