Commit f172f421 authored by Ursula Braun-Krahl's avatar Ursula Braun-Krahl Committed by Linus Torvalds

[PATCH] s390: remove irq_exit from iucv

Remove the irq_exit call on error path in iucv_irq_handler.  irq_exit is done
in do_extint().
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent f0736a22
/*
* $Id: iucv.c,v 1.41 2004/08/11 14:54:14 geraldsc Exp $
* $Id: iucv.c,v 1.42 2005/01/07 10:49:54 braunu Exp $
*
* IUCV network driver
*
......@@ -29,7 +29,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* RELEASE-TAG: IUCV lowlevel driver $Revision: 1.41 $
* RELEASE-TAG: IUCV lowlevel driver $Revision: 1.42 $
*
*/
......@@ -355,7 +355,7 @@ do { \
static void
iucv_banner(void)
{
char vbuf[] = "$Revision: 1.41 $";
char vbuf[] = "$Revision: 1.42 $";
char *version = vbuf;
if ((version = strchr(version, ':'))) {
......@@ -2285,7 +2285,6 @@ iucv_irq_handler(struct pt_regs *regs, __u16 code)
irqdata = kmalloc(sizeof(iucv_irqdata), GFP_ATOMIC);
if (!irqdata) {
printk(KERN_WARNING "%s: out of memory\n", __FUNCTION__);
irq_exit();
return;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment