Skip to content

Commit

Permalink
IB/mthca: Remove "stop" flag for catastrophic error polling timer
Browse files Browse the repository at this point in the history
Since we use del_timer_sync() anyway, there's no need for an
additional flag to tell the timer not to rearm.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
  • Loading branch information
Roland Dreier committed Jul 15, 2008
1 parent bc3a290 commit 4522e08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 14 deletions.
15 changes: 2 additions & 13 deletions drivers/infiniband/hw/mthca/mthca_catas.c
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ static void handle_catas(struct mthca_dev *dev)
static void poll_catas(unsigned long dev_ptr)
{
struct mthca_dev *dev = (struct mthca_dev *) dev_ptr;
unsigned long flags;
int i;

for (i = 0; i < dev->catas_err.size; ++i)
Expand All @@ -135,21 +134,15 @@ static void poll_catas(unsigned long dev_ptr)
return;
}

spin_lock_irqsave(&catas_lock, flags);
if (!dev->catas_err.stop)
mod_timer(&dev->catas_err.timer,
jiffies + MTHCA_CATAS_POLL_INTERVAL);
spin_unlock_irqrestore(&catas_lock, flags);

return;
mod_timer(&dev->catas_err.timer,
jiffies + MTHCA_CATAS_POLL_INTERVAL);
}

void mthca_start_catas_poll(struct mthca_dev *dev)
{
unsigned long addr;

init_timer(&dev->catas_err.timer);
dev->catas_err.stop = 0;
dev->catas_err.map = NULL;

addr = pci_resource_start(dev->pdev, 0) +
Expand Down Expand Up @@ -180,10 +173,6 @@ void mthca_start_catas_poll(struct mthca_dev *dev)

void mthca_stop_catas_poll(struct mthca_dev *dev)
{
spin_lock_irq(&catas_lock);
dev->catas_err.stop = 1;
spin_unlock_irq(&catas_lock);

del_timer_sync(&dev->catas_err.timer);

if (dev->catas_err.map) {
Expand Down
1 change: 0 additions & 1 deletion drivers/infiniband/hw/mthca/mthca_dev.h
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,6 @@ struct mthca_mcg_table {
struct mthca_catas_err {
u64 addr;
u32 __iomem *map;
unsigned long stop;
u32 size;
struct timer_list timer;
struct list_head list;
Expand Down

0 comments on commit 4522e08

Please sign in to comment.