[SCSI] qla2xxx: Drop use of IRQF_DISABLE.
authorGiridhar Malavali <giridhar.malavali@qlogic.com>
Tue, 24 Mar 2009 16:08:13 +0000 (09:08 -0700)
committerJames Bottomley <James.Bottomley@HansenPartnership.com>
Fri, 3 Apr 2009 14:22:51 +0000 (09:22 -0500)
commitd1b1bef4c9e67aa550e602a6a7f93bbb47dff0b8
treeba34b0f43f1153c313acb3d1fe4c9610219f101e
parentad0ecd61f4ad3260ca8f7216765ddbb1a10677ea
[SCSI] qla2xxx: Drop use of IRQF_DISABLE.

When IRQs are shared by multiple controllers and if the first one
to register does not disable the IRQ, then IRQ will be enabled
for all other controllers by default, irrespective of their
setting. With IRQF_DISABLED registration, the driver interrupt
routine was called with interrupt enabled always. Disbaling the
registration with IRQF_DISABLED, since driver code is re-entrant
safe and all critical sections are guarded with interrupt safe
locks.

Signed-off-by: Giridhar Malavali <giridhar.malavali@qlogic.com>
Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
drivers/scsi/qla2xxx/qla_isr.c