netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH][ATM] iphase: BUG: sleeping function called from invalid context
@ 2008-06-05 16:12 Jorge Boncompte [DTI2]
  2008-06-14 21:05 ` Chas Williams (CONTRACTOR)
  0 siblings, 1 reply; 4+ messages in thread
From: Jorge Boncompte [DTI2] @ 2008-06-05 16:12 UTC (permalink / raw)
  To: netdev; +Cc: chas williams

	iphase driver calls ioremap under spinlock_irqsave in his
initialization function. The spinlock seems to be there just for the 
sole purpose of preventing initializing multiple cards at once. So I 
think that removing it should be fine.

Signed-off-by: Jorge Boncompte [DTI2] <jorge@dti2.net>
---
  drivers/atm/iphase.c |    6 ------
  drivers/atm/iphase.h |    2 +-
  2 files changed, 1 insertions(+), 7 deletions(-)

diff --git a/drivers/atm/iphase.c b/drivers/atm/iphase.c
index 5c28ca7..a51b7cb 100644
--- a/drivers/atm/iphase.c
+++ b/drivers/atm/iphase.c
@@ -3171,7 +3171,6 @@ static int __devinit ia_init_one(struct pci_dev *pdev,
  {
  	struct atm_dev *dev;
  	IADEV *iadev;
-        unsigned long flags;
  	int ret;

  	iadev = kzalloc(sizeof(*iadev), GFP_KERNEL);
@@ -3201,19 +3200,14 @@ static int __devinit ia_init_one(struct pci_dev 
*pdev,
  	ia_dev[iadev_count] = iadev;
  	_ia_dev[iadev_count] = dev;
  	iadev_count++;
-	spin_lock_init(&iadev->misc_lock);
-	/* First fixes first. I don't want to think about this now. */
-	spin_lock_irqsave(&iadev->misc_lock, flags);
  	if (ia_init(dev) || ia_start(dev)) {
  		IF_INIT(printk("IA register failed!\n");)
  		iadev_count--;
  		ia_dev[iadev_count] = NULL;
  		_ia_dev[iadev_count] = NULL;
-		spin_unlock_irqrestore(&iadev->misc_lock, flags);
  		ret = -EINVAL;
  		goto err_out_deregister_dev;
  	}
-	spin_unlock_irqrestore(&iadev->misc_lock, flags);
  	IF_EVENT(printk("iadev_count = %d\n", iadev_count);)

  	iadev->next_board = ia_boards;
diff --git a/drivers/atm/iphase.h b/drivers/atm/iphase.h
index b2cd20f..f3457a9 100644
--- a/drivers/atm/iphase.h
+++ b/drivers/atm/iphase.h
@@ -1022,7 +1022,7 @@ typedef struct iadev_t {
  	struct dle_q rx_dle_q;
  	struct free_desc_q *rx_free_desc_qhead;
  	struct sk_buff_head rx_dma_q;
-        spinlock_t rx_lock, misc_lock;
+        spinlock_t rx_lock;
  	struct atm_vcc **rx_open;	/* list of all open VCs */
          u16 num_rx_desc, rx_buf_sz, rxing;
          u32 rx_pkt_ram, rx_tmp_cnt;
-- 


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-06-15 14:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-05 16:12 [PATCH][ATM] iphase: BUG: sleeping function called from invalid context Jorge Boncompte [DTI2]
2008-06-14 21:05 ` Chas Williams (CONTRACTOR)
2008-06-15 13:00   ` Jorge Boncompte [DTI2]
2008-06-15 14:47     ` Chas Williams (CONTRACTOR)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).