diff options
author | Mohamed Abbas <mohamed.abbas@intel.com> | 2009-05-22 14:01:47 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-05-22 14:06:04 -0400 |
commit | a8b50a0a966d7ac313f624c6ab4996231a5fe25a (patch) | |
tree | 8c000ee1d429f1e639fde9613cb48b268aee1ff6 /drivers/net/wireless/iwlwifi/iwl-dev.h | |
parent | 0848e297c2107dbc12a91a1709c879c73bd188d8 (diff) |
iwlcore: register locks
Add new lock to be used when accessing some registers. Also move
the register lock and iwl_grab_nic_access inside the function for register access. This
will prevent from forgetting to hold locks and nic access in the right way and make code
easier to maintain.
We over use the priv->lock spin lock and I guess we need to add new
one for Tx queue after that we might need to change most of these lock to
BH and just keep priv->lock as irq type.
Signed-off-by: Mohamed Abbas <mohamed.abbas@intel.com>
Signed-off-by: Reinette Chatre <reinette.chatre@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-dev.h')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-dev.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-dev.h b/drivers/net/wireless/iwlwifi/iwl-dev.h index 8282def00832..1310c4122199 100644 --- a/drivers/net/wireless/iwlwifi/iwl-dev.h +++ b/drivers/net/wireless/iwlwifi/iwl-dev.h | |||
@@ -896,6 +896,7 @@ struct iwl_priv { | |||
896 | /* spinlock */ | 896 | /* spinlock */ |
897 | spinlock_t lock; /* protect general shared data */ | 897 | spinlock_t lock; /* protect general shared data */ |
898 | spinlock_t hcmd_lock; /* protect hcmd */ | 898 | spinlock_t hcmd_lock; /* protect hcmd */ |
899 | spinlock_t reg_lock; /* protect hw register access */ | ||
899 | struct mutex mutex; | 900 | struct mutex mutex; |
900 | 901 | ||
901 | /* basic pci-network driver stuff */ | 902 | /* basic pci-network driver stuff */ |