Skip to content

Commit

Permalink
Revert "mt76: fix potential deadlock on cancelling workqueues"
Browse files Browse the repository at this point in the history
This reverts commit 3a7e6bb
to be replaced by upstream patch.

Signed-off-by: Felix Fietkau <nbd@nbd.name>
  • Loading branch information
nbd168 committed Apr 29, 2019
1 parent e9eea39 commit 98c5359
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 14 deletions.
4 changes: 1 addition & 3 deletions mt76x0/main.c
Expand Up @@ -21,6 +21,7 @@ mt76x0_set_channel(struct mt76x02_dev *dev, struct cfg80211_chan_def *chandef)
{
int ret;

cancel_delayed_work_sync(&dev->cal_work);
dev->beacon_ops->pre_tbtt_enable(dev, false);
if (mt76_is_mmio(dev))
tasklet_disable(&dev->dfs_pd.dfs_tasklet);
Expand Down Expand Up @@ -50,9 +51,6 @@ int mt76x0_config(struct ieee80211_hw *hw, u32 changed)
struct mt76x02_dev *dev = hw->priv;
int ret = 0;

if (changed & IEEE80211_CONF_CHANGE_CHANNEL)
cancel_delayed_work_sync(&dev->cal_work);

mutex_lock(&dev->mt76.mutex);

if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
Expand Down
4 changes: 2 additions & 2 deletions mt76x0/pci.c
Expand Up @@ -45,7 +45,6 @@ static void mt76x0e_stop_hw(struct mt76x02_dev *dev)
cancel_delayed_work_sync(&dev->cal_work);
cancel_delayed_work_sync(&dev->mt76.mac_work);

mutex_lock(&dev->mt76.mutex);
if (!mt76_poll(dev, MT_WPDMA_GLO_CFG, MT_WPDMA_GLO_CFG_TX_DMA_BUSY,
0, 1000))
dev_warn(dev->mt76.dev, "TX DMA did not stop\n");
Expand All @@ -57,15 +56,16 @@ static void mt76x0e_stop_hw(struct mt76x02_dev *dev)
0, 1000))
dev_warn(dev->mt76.dev, "TX DMA did not stop\n");
mt76_clear(dev, MT_WPDMA_GLO_CFG, MT_WPDMA_GLO_CFG_RX_DMA_EN);
mutex_unlock(&dev->mt76.mutex);
}

static void mt76x0e_stop(struct ieee80211_hw *hw)
{
struct mt76x02_dev *dev = hw->priv;

mutex_lock(&dev->mt76.mutex);
clear_bit(MT76_STATE_RUNNING, &dev->mt76.state);
mt76x0e_stop_hw(dev);
mutex_unlock(&dev->mt76.mutex);
}

static void
Expand Down
5 changes: 2 additions & 3 deletions mt76x0/usb.c
Expand Up @@ -92,16 +92,13 @@ static void mt76x0u_mac_stop(struct mt76x02_dev *dev)
if (test_bit(MT76_REMOVED, &dev->mt76.state))
return;

mutex_lock(&dev->mt76.mutex);

if (!mt76_poll(dev, MT_USB_DMA_CFG, MT_USB_DMA_CFG_TX_BUSY, 0, 1000))
dev_warn(dev->mt76.dev, "TX DMA did not stop\n");

mt76x0_mac_stop(dev);

if (!mt76_poll(dev, MT_USB_DMA_CFG, MT_USB_DMA_CFG_RX_BUSY, 0, 1000))
dev_warn(dev->mt76.dev, "RX DMA did not stop\n");
mutex_unlock(&dev->mt76.mutex);
}

static int mt76x0u_start(struct ieee80211_hw *hw)
Expand Down Expand Up @@ -131,7 +128,9 @@ static void mt76x0u_stop(struct ieee80211_hw *hw)
{
struct mt76x02_dev *dev = hw->priv;

mutex_lock(&dev->mt76.mutex);
mt76x0u_mac_stop(dev);
mutex_unlock(&dev->mt76.mutex);
}

static const struct ieee80211_ops mt76x0u_ops = {
Expand Down
7 changes: 4 additions & 3 deletions mt76x2/pci_main.c
Expand Up @@ -49,15 +49,19 @@ mt76x2_stop(struct ieee80211_hw *hw)
{
struct mt76x02_dev *dev = hw->priv;

mutex_lock(&dev->mt76.mutex);
clear_bit(MT76_STATE_RUNNING, &dev->mt76.state);
mt76x2_stop_hardware(dev);
mutex_unlock(&dev->mt76.mutex);
}

static int
mt76x2_set_channel(struct mt76x02_dev *dev, struct cfg80211_chan_def *chandef)
{
int ret;

cancel_delayed_work_sync(&dev->cal_work);

set_bit(MT76_RESET, &dev->mt76.state);

mt76_set_channel(&dev->mt76);
Expand Down Expand Up @@ -91,9 +95,6 @@ mt76x2_config(struct ieee80211_hw *hw, u32 changed)
struct mt76x02_dev *dev = hw->priv;
int ret = 0;

if (changed & IEEE80211_CONF_CHANGE_CHANNEL)
cancel_delayed_work_sync(&dev->cal_work);

mutex_lock(&dev->mt76.mutex);

if (changed & IEEE80211_CONF_CHANGE_MONITOR) {
Expand Down
4 changes: 1 addition & 3 deletions mt76x2/usb_main.c
Expand Up @@ -52,6 +52,7 @@ mt76x2u_set_channel(struct mt76x02_dev *dev,
{
int err;

cancel_delayed_work_sync(&dev->cal_work);
set_bit(MT76_RESET, &dev->mt76.state);

mt76_set_channel(&dev->mt76);
Expand Down Expand Up @@ -79,9 +80,6 @@ mt76x2u_config(struct ieee80211_hw *hw, u32 changed)
struct mt76x02_dev *dev = hw->priv;
int err = 0;

if (changed & IEEE80211_CONF_CHANGE_CHANNEL)
cancel_delayed_work_sync(&dev->cal_work);

mutex_lock(&dev->mt76.mutex);

if (changed & IEEE80211_CONF_CHANGE_MONITOR) {
Expand Down

0 comments on commit 98c5359

Please sign in to comment.