Re: 2.6.15-rt1

From: James Cloos
Date: Thu Jan 05 2006 - 15:51:24 EST


I get this compiling 15-rt1:

,----
| CC net/ipv6/mcast.o
| net/ipv6/mcast.c: In function `ipv6_sock_mc_join':
| net/ipv6/mcast.c:227: error: `RW_LOCK_UNLOCKED' undeclared (first use in this function)
| net/ipv6/mcast.c:227: error: (Each undeclared identifier is reported only once
| net/ipv6/mcast.c:227: error: for each function it appears in.)
| make[2]: *** [net/ipv6/mcast.o] Error 1
`----

I take it something on the order of this is needed?:

- mc_lst->sflock = RW_LOCK_UNLOCKED;
+ mc_lst->sflock = RW_LOCK_UNLOCKED(foo.bar);

for some foo.bar, yes?

Or is it?:

- mc_lst->sflock = RW_LOCK_UNLOCKED;
+ rwlock_init(mc_lst->sflock);

I'm trying the latter now, but won't be able to reboot for
a runtime test for a while....

-JimC
--
James H. Cloos, Jr. <cloos@xxxxxxxxxxx>
-
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/