* RT : 2.6.15-rt1 and net/ipv6/mcast.c
@ 2006-01-04 17:32 Serge Noiraud
2006-01-04 20:34 ` Daniel Walker
0 siblings, 1 reply; 5+ messages in thread
From: Serge Noiraud @ 2006-01-04 17:32 UTC (permalink / raw)
To: linux-kernel, Ingo Molnar
Hi,
On my i386 machine I can't compile. I have an error in net/ipv6/mcast.c
I correct the error doing the correction below. No more compilation problem.
Not yet tested. perhaps someone already submit it, but I received no mail today from vger.kernel.org
Index: linux/net/ipv6/mcast.c
===================================================================
--- linux.orig/net/ipv6/mcast.c
+++ linux/net/ipv6/mcast.c
@@ -224,7 +224,7 @@
mc_lst->ifindex = dev->ifindex;
mc_lst->sfmode = MCAST_EXCLUDE;
- mc_lst->sflock = RW_LOCK_UNLOCKED;
+ mc_lst->sflock = RW_LOCK_UNLOCKED(mc_lst->sflock);
mc_lst->sflist = NULL;
/*
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: RT : 2.6.15-rt1 and net/ipv6/mcast.c
2006-01-04 17:32 RT : 2.6.15-rt1 and net/ipv6/mcast.c Serge Noiraud
@ 2006-01-04 20:34 ` Daniel Walker
2006-01-04 22:12 ` Steven Rostedt
0 siblings, 1 reply; 5+ messages in thread
From: Daniel Walker @ 2006-01-04 20:34 UTC (permalink / raw)
To: Serge Noiraud; +Cc: linux-kernel, Ingo Molnar
I thought I submitted an identical patch, but maybe I forgot to CC LKML .
On Wed, 4 Jan 2006, Serge Noiraud wrote:
> Hi,
>
> On my i386 machine I can't compile. I have an error in net/ipv6/mcast.c
> I correct the error doing the correction below. No more compilation problem.
> Not yet tested. perhaps someone already submit it, but I received no mail today from vger.kernel.org
>
> Index: linux/net/ipv6/mcast.c
> ===================================================================
> --- linux.orig/net/ipv6/mcast.c
> +++ linux/net/ipv6/mcast.c
> @@ -224,7 +224,7 @@
>
> mc_lst->ifindex = dev->ifindex;
> mc_lst->sfmode = MCAST_EXCLUDE;
> - mc_lst->sflock = RW_LOCK_UNLOCKED;
> + mc_lst->sflock = RW_LOCK_UNLOCKED(mc_lst->sflock);
> mc_lst->sflist = NULL;
>
> /*
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: RT : 2.6.15-rt1 and net/ipv6/mcast.c
2006-01-04 20:34 ` Daniel Walker
@ 2006-01-04 22:12 ` Steven Rostedt
2006-01-05 2:11 ` [Announce] RT patch updates while Ingo is busy Steven Rostedt
0 siblings, 1 reply; 5+ messages in thread
From: Steven Rostedt @ 2006-01-04 22:12 UTC (permalink / raw)
To: Daniel Walker; +Cc: Ingo Molnar, linux-kernel, Serge Noiraud
On Wed, 2006-01-04 at 12:34 -0800, Daniel Walker wrote:
> I thought I submitted an identical patch, but maybe I forgot to CC LKML .
Nope, you CC'd LKML:
http://marc.theaimsgroup.com/?l=linux-kernel&m=113630942301200&w=2
Ingo has been really busy with getting the mutex stuff into mainline, so
he hasn't had time to update RT or even work on it very much. Maybe,
I'll start up a patch website to hold patches to Ingo's -rt code until
he has time to work on it again.
-- Steve
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Announce] RT patch updates while Ingo is busy
2006-01-04 22:12 ` Steven Rostedt
@ 2006-01-05 2:11 ` Steven Rostedt
[not found] ` <43BEA35D.5030301@vt.edu>
0 siblings, 1 reply; 5+ messages in thread
From: Steven Rostedt @ 2006-01-05 2:11 UTC (permalink / raw)
To: Daniel Walker
Cc: Florian Schmidt, john stultz, Thomas Gleixner, Mark Knecht,
Mike Galbraith, K.R. Foley, Lee Revell, Serge Noiraud,
linux-kernel, Ingo Molnar
On Wed, 2006-01-04 at 17:12 -0500, Steven Rostedt wrote:
> Ingo has been really busy with getting the mutex stuff into mainline, so
> he hasn't had time to update RT or even work on it very much. Maybe,
> I'll start up a patch website to hold patches to Ingo's -rt code until
> he has time to work on it again.
While Ingo is busy working 48 hours a day on the new mutex
info-structure, the -rt patch set has been a little slow at getting
patch releases. So I've started up a little patch fix repository for
the -rt patch set until Ingo has time to get back to this again.
If you have a problem with the -rt patch set, please CC Ingo and myself,
and I'll try to fix the problem and post a patch here.
My updates will be named -sr, so the current release is at
2.6.15-rt1-sr1. Note, this is more like the stable branch, I'm only
updating bug fixes here. Although this is not as strict as the stable
branch, my adding a patch will be based mainly on how critical it is.
This release contains:
- latest rtc fix (Steven Rostedt)
- ipv6 mcast rwlock initialization fix (Daniel Walker)
Download from:
http://home.stny.rr.com/rostedt/patches/
Patch order is:
http://kernel.org/pub/linux/kernel/v2.6/linux-2.6.15.tar.bz2
http://redhat.com/~mingo/realtime-preempt/patch-2.6.15-rt1
http://home.stny.rr.com/rostedt/patches/patch-2.6.15-rt1-sr1
-- Steve
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2006-01-06 17:54 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-01-04 17:32 RT : 2.6.15-rt1 and net/ipv6/mcast.c Serge Noiraud
2006-01-04 20:34 ` Daniel Walker
2006-01-04 22:12 ` Steven Rostedt
2006-01-05 2:11 ` [Announce] RT patch updates while Ingo is busy Steven Rostedt
[not found] ` <43BEA35D.5030301@vt.edu>
2006-01-06 17:54 ` Steven Rostedt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®