Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 233621 Details for
Bug 321521
warm boot e100 x86_64 fc8 panic
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
patch fixes problem with e100 IRQ sharing
e100-irq-sharing.patch (text/plain), 907 bytes, created by
Christof Efkemann
on 2007-10-21 15:03:26 UTC
(
hide
)
Description:
patch fixes problem with e100 IRQ sharing
Filename:
MIME Type:
Creator:
Christof Efkemann
Created:
2007-10-21 15:03:26 UTC
Size:
907 bytes
patch
obsolete
>Authors: Christof Efkemann <chref@tzi.de>, Kai Thomsen <kthomsen@tzi.de> >Description: >Avoid interrupt handler execution if e100 interrupts are disabled. >Checks the interrupt mask bit before proceeding with the interrupt handling. > >--- drivers/net/e100.c.old 2007-10-20 18:32:40.000000000 +0200 >+++ drivers/net/e100.c 2007-10-20 18:36:02.000000000 +0200 >@@ -1960,11 +1960,13 @@ > struct net_device *netdev = dev_id; > struct nic *nic = netdev_priv(netdev); > u8 stat_ack = ioread8(&nic->csr->scb.stat_ack); >+ u8 cmd_hi = ioread8(&nic->csr->scb.cmd_hi); > > DPRINTK(INTR, DEBUG, "stat_ack = 0x%02X\n", stat_ack); > > if(stat_ack == stat_ack_not_ours || /* Not our interrupt */ >- stat_ack == stat_ack_not_present) /* Hardware is ejected */ >+ stat_ack == stat_ack_not_present || /* Hardware is ejected */ >+ cmd_hi & irq_mask_all) /* Interrupts masked */ > return IRQ_NONE; > > /* Ack interrupt(s) */
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 321521
:
218531
|
218541
|
220121
| 233621