Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fcc5f2665c81e087fb95143325ed769a41128d50
Commit:     fcc5f2665c81e087fb95143325ed769a41128d50
Parent:     b3b1514c90ab534ec6c9e4452953069f85aacf4d
Author:     Ayaz Abdulla <[EMAIL PROTECTED]>
AuthorDate: Fri Mar 23 05:49:37 2007 -0500
Committer:  Jeff Garzik <[EMAIL PROTECTED]>
CommitDate: Wed Mar 28 02:18:51 2007 -0400

    forcedeth: fix nic poll
    
    The nic poll routine was missing the call to the optimized irq routine.
    This patch adds the missing call for the optimized path.
    
    See http://bugzilla.kernel.org/show_bug.cgi?id=7950 for more information.
    
    Signed-Off-By: Ayaz Abdulla <[EMAIL PROTECTED]>
    
    Signed-off-by: Jeff Garzik <[EMAIL PROTECTED]>
---
 drivers/net/forcedeth.c |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/drivers/net/forcedeth.c b/drivers/net/forcedeth.c
index 46e1697..ae4e6f9 100644
--- a/drivers/net/forcedeth.c
+++ b/drivers/net/forcedeth.c
@@ -3536,7 +3536,10 @@ static void nv_do_nic_poll(unsigned long data)
        pci_push(base);
 
        if (!using_multi_irqs(dev)) {
-               nv_nic_irq(0, dev);
+               if (np->desc_ver == DESC_VER_3)
+                       nv_nic_irq_optimized(0, dev);
+               else
+                       nv_nic_irq(0, dev);
                if (np->msi_flags & NV_MSI_X_ENABLED)
                        
enable_irq_lockdep(np->msi_x_entry[NV_MSI_X_VECTOR_ALL].vector);
                else
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to