Commit 09f14379 authored by Mike McCormack's avatar Mike McCormack Committed by Greg Kroah-Hartman

staging: rtl8192e: Use single spinlock in MgntActSet_RF_State

Signed-off-by: default avatarMike McCormack <mikem@ring3k.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 0903602e
...@@ -638,45 +638,10 @@ MgntActSet_RF_State( ...@@ -638,45 +638,10 @@ MgntActSet_RF_State(
bool bActionAllowed = false; bool bActionAllowed = false;
bool bConnectBySSID = false; bool bConnectBySSID = false;
RT_RF_POWER_STATE rtState; RT_RF_POWER_STATE rtState;
u16 RFWaitCounter = 0;
RT_TRACE(COMP_POWER, "===>MgntActSet_RF_State(): StateToSet(%d)\n",StateToSet);
//1//
//1//<1>Prevent the race condition of RF state change.
//1//
// Only one thread can change the RF state at one time, and others should wait to be executed. By Bruce, 2007-11-28.
while(true)
{
spin_lock(&priv->rf_ps_lock);
if(priv->RFChangeInProgress)
{
spin_unlock(&priv->rf_ps_lock);
RT_TRACE(COMP_POWER, "MgntActSet_RF_State(): RF Change in progress! Wait to set..StateToSet(%d).\n", StateToSet);
// Set RF after the previous action is done. RT_TRACE(COMP_POWER, "===>MgntActSet_RF_State(): StateToSet(%d)\n",StateToSet);
while(priv->RFChangeInProgress)
{
RFWaitCounter ++;
RT_TRACE(COMP_POWER, "MgntActSet_RF_State(): Wait 1 ms (%d times)...\n", RFWaitCounter);
udelay(1000); // 1 ms
// Wait too long, return FALSE to avoid to be stuck here. spin_lock(&priv->rf_ps_lock);
if(RFWaitCounter > 100)
{
RT_TRACE(COMP_ERR, "MgntActSet_RF_State(): Wait too logn to set RF\n");
// TODO: Reset RF state?
return false;
}
}
}
else
{
priv->RFChangeInProgress = true;
spin_unlock(&priv->rf_ps_lock);
break;
}
}
rtState = priv->ieee80211->eRFPowerState; rtState = priv->ieee80211->eRFPowerState;
...@@ -731,8 +696,6 @@ MgntActSet_RF_State( ...@@ -731,8 +696,6 @@ MgntActSet_RF_State(
} }
// Release RF spinlock // Release RF spinlock
spin_lock(&priv->rf_ps_lock);
priv->RFChangeInProgress = false;
spin_unlock(&priv->rf_ps_lock); spin_unlock(&priv->rf_ps_lock);
RT_TRACE(COMP_POWER, "<===MgntActSet_RF_State()\n"); RT_TRACE(COMP_POWER, "<===MgntActSet_RF_State()\n");
......
...@@ -1010,7 +1010,6 @@ typedef struct r8192_priv ...@@ -1010,7 +1010,6 @@ typedef struct r8192_priv
//by amy for gpio //by amy for gpio
bool bHwRadioOff; bool bHwRadioOff;
//by amy for ps //by amy for ps
bool RFChangeInProgress; // RF Chnage in progress, by Bruce, 2007-10-30
RT_OP_MODE OpMode; RT_OP_MODE OpMode;
//by amy for reset_count //by amy for reset_count
u32 reset_count; u32 reset_count;
......
...@@ -1849,17 +1849,6 @@ static short rtl8192_is_tx_queue_empty(struct net_device *dev) ...@@ -1849,17 +1849,6 @@ static short rtl8192_is_tx_queue_empty(struct net_device *dev)
static void rtl8192_hw_sleep_down(struct net_device *dev) static void rtl8192_hw_sleep_down(struct net_device *dev)
{ {
struct r8192_priv *priv = ieee80211_priv(dev);
spin_lock(&priv->rf_ps_lock);
if (priv->RFChangeInProgress) {
spin_unlock(&priv->rf_ps_lock);
RT_TRACE(COMP_RF, "rtl8192_hw_sleep_down(): RF Change in progress!\n");
printk("rtl8192_hw_sleep_down(): RF Change in progress!\n");
return;
}
spin_unlock(&priv->rf_ps_lock);
MgntActSet_RF_State(dev, eRfSleep, RF_CHANGE_BY_PS); MgntActSet_RF_State(dev, eRfSleep, RF_CHANGE_BY_PS);
} }
...@@ -1874,18 +1863,6 @@ static void rtl8192_hw_sleep_wq (struct work_struct *work) ...@@ -1874,18 +1863,6 @@ static void rtl8192_hw_sleep_wq (struct work_struct *work)
static void rtl8192_hw_wakeup(struct net_device* dev) static void rtl8192_hw_wakeup(struct net_device* dev)
{ {
struct r8192_priv *priv = ieee80211_priv(dev);
spin_lock(&priv->rf_ps_lock);
if (priv->RFChangeInProgress) {
spin_unlock(&priv->rf_ps_lock);
RT_TRACE(COMP_RF, "rtl8192_hw_wakeup(): RF Change in progress!\n");
printk("rtl8192_hw_wakeup(): RF Change in progress! schedule wake up task again\n");
queue_delayed_work(priv->ieee80211->wq,&priv->ieee80211->hw_wakeup_wq,MSECS(10));//PowerSave is not supported if kernel version is below 2.6.20
return;
}
spin_unlock(&priv->rf_ps_lock);
MgntActSet_RF_State(dev, eRfOn, RF_CHANGE_BY_PS); MgntActSet_RF_State(dev, eRfOn, RF_CHANGE_BY_PS);
} }
...@@ -1984,7 +1961,6 @@ static void rtl8192_init_priv_variable(struct net_device* dev) ...@@ -1984,7 +1961,6 @@ static void rtl8192_init_priv_variable(struct net_device* dev)
priv->force_reset = false; priv->force_reset = false;
//added by amy for power save //added by amy for power save
priv->ieee80211->RfOffReason = 0; priv->ieee80211->RfOffReason = 0;
priv->RFChangeInProgress = false;
priv->bHwRfOffAction = 0; priv->bHwRfOffAction = 0;
priv->ieee80211->PowerSaveControl.bInactivePs = true; priv->ieee80211->PowerSaveControl.bInactivePs = true;
priv->ieee80211->PowerSaveControl.bIPSModeBackup = false; priv->ieee80211->PowerSaveControl.bIPSModeBackup = false;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment