Re: build error in current -git tree

From: Linus Torvalds
Date: Thu Nov 17 2005 - 12:42:24 EST




On Thu, 17 Nov 2005, Greg KH wrote:
>
> In trying to build your kernel tree right now, I get the following
> error:

Heh. That's what I get for being on ppc64 now.

This should fix it (and I'll try it out on my laptop before I commit it).

Linus

---
diff --git a/include/asm-i386/signal.h b/include/asm-i386/signal.h
index 6ba29f1..76524b4 100644
--- a/include/asm-i386/signal.h
+++ b/include/asm-i386/signal.h
@@ -186,7 +186,7 @@ static __inline__ void __gen_sigdelset(s
__asm__("btrl %1,%0" : "+m"(*set) : "Ir"(_sig - 1) : "cc");
}

-static __inline__ void __const_sigaddset(sigset_t *set, int _sig)
+static __inline__ void __const_sigdelset(sigset_t *set, int _sig)
{
unsigned long sig = _sig - 1;
set->sig[sig / _NSIG_BPW] &= ~(1 << (sig % _NSIG_BPW));
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/