From 16ec4a91f179c9d047fe1cb7b7d68c657df986fc Mon Sep 17 00:00:00 2001 From: wpaul Date: Fri, 13 Oct 2000 17:54:19 +0000 Subject: First round of converting network drivers from spls to mutexes. This takes care of all the 10/100 and gigE PCI drivers that I've done. Next will be the wireless drivers, then the USB ones. I may pick up some stragglers along the way. I'm sort of playing this by ear: if anyone spots any places where I've screwed up horribly, please let me know. --- sys/pci/if_tireg.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'sys/pci/if_tireg.h') diff --git a/sys/pci/if_tireg.h b/sys/pci/if_tireg.h index 6346c67..d64cc7a 100644 --- a/sys/pci/if_tireg.h +++ b/sys/pci/if_tireg.h @@ -1148,8 +1148,12 @@ struct ti_softc { u_int32_t ti_tx_buf_ratio; int ti_if_flags; int ti_txcnt; + struct mtx ti_mtx; }; +#define TI_LOCK(_sc) mtx_enter(&(_sc)->ti_mtx, MTX_DEF) +#define TI_UNLOCK(_sc) mtx_exit(&(_sc)->ti_mtx, MTX_DEF) + /* * Microchip Technology 24Cxx EEPROM control bytes */ -- cgit v1.1