diff options
author | wpaul <wpaul@FreeBSD.org> | 2000-12-04 22:46:50 +0000 |
---|---|---|
committer | wpaul <wpaul@FreeBSD.org> | 2000-12-04 22:46:50 +0000 |
commit | 9e208c7442e565fc1de970045410945e52702467 (patch) | |
tree | 3933565b0c0070018517c21c29b3ccc39d115ccb /sys/dev/sf | |
parent | e01a4c0fd9aff88ae8d9b70d8f82aaf56c9c9116 (diff) | |
download | FreeBSD-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/dev/sf')
-rw-r--r-- | sys/dev/sf/if_sf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sf/if_sf.c b/sys/dev/sf/if_sf.c index f2ca1e8..aa33e7d 100644 --- a/sys/dev/sf/if_sf.c +++ b/sys/dev/sf/if_sf.c @@ -679,6 +679,8 @@ static int sf_attach(dev) unit = device_get_unit(dev); bzero(sc, sizeof(struct sf_softc)); + mtx_init(&sc->sf_mtx, device_get_nameunit(dev), MTX_DEF); + SF_LOCK(sc); /* * Handle power management nonsense. */ @@ -765,8 +767,6 @@ static int sf_attach(dev) } callout_handle_init(&sc->sf_stat_ch); - mtx_init(&sc->sf_mtx, device_get_nameunit(dev), MTX_DEF); - SF_LOCK(sc); /* Reset the adapter. */ sf_reset(sc); |