Skip to content

Commit

Permalink
qlogicpti: Remove slash in QlogicPTI irq name
Browse files Browse the repository at this point in the history
qlogicpti driver registers its irq with a name containing slash.
This results in 

[   71.049735] WARNING: at fs/proc/generic.c:316 __xlate_proc_name+0xa8/0xb8()
[   71.132815] name 'Qlogic/PTI'

because proc_mkdir with the name of the irq fails. Fix it by just 
removing the slash from irq name. Discovered and tested on real hardware 
(Sun Ultra 1).

Signed-off-by: Meelis Roos <mroos@linux.ee>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Meelis Roos authored and David S. Miller committed Mar 8, 2010
1 parent 8a4fd1e commit 77d3926
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/scsi/qlogicpti.c
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ static int __devinit qpti_register_irq(struct qlogicpti *qpti)
* sanely maintain.
*/
if (request_irq(qpti->irq, qpti_intr,
IRQF_SHARED, "Qlogic/PTI", qpti))
IRQF_SHARED, "QlogicPTI", qpti))
goto fail;

printk("qlogicpti%d: IRQ %d ", qpti->qpti_id, qpti->irq);
Expand Down

0 comments on commit 77d3926

Please sign in to comment.