From: David Miller <davem@xxxxxxxxxxxxx> Date: Wed, 19 Jul 2006 13:42:05 -0700 (PDT) > From: Raymond Burns <rayburns@xxxxxxxxxxx> > Date: Wed, 19 Jul 2006 13:47:09 -0700 (PDT) > > > Request for IRQ45 (ESP SCSI) SA_STATIC_ALLOC failed using kmalloc > > > > appears benign, guess I'm sensative to the word failed. > > This needs investigation. The problem is that SA_STATIC_ALLOC aliases another irq flag value, IRQF_SHARED, which is commonly used. Let's just use the following fix for now. We should kill this thing off eventually. diff --git a/include/asm-sparc/signal.h b/include/asm-sparc/signal.h index 0ae5084..d03a21c 100644 --- a/include/asm-sparc/signal.h +++ b/include/asm-sparc/signal.h @@ -168,7 +168,7 @@ struct sigstack { * statically allocated data.. which is NOT GOOD. * */ -#define SA_STATIC_ALLOC 0x80 +#define SA_STATIC_ALLOC 0x8000 #endif #include <asm-generic/signal.h> - To unsubscribe from this list: send the line "unsubscribe sparclinux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html